1 //===-- ARMISelLowering.cpp - ARM DAG Lowering Implementation -------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines the interfaces that ARM uses to lower LLVM code into a 11 // selection DAG. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #define DEBUG_TYPE "arm-isel" 16 #include "ARM.h" 17 #include "ARMCallingConv.h" 18 #include "ARMConstantPoolValue.h" 19 #include "ARMISelLowering.h" 20 #include "ARMMachineFunctionInfo.h" 21 #include "ARMPerfectShuffle.h" 22 #include "ARMRegisterInfo.h" 23 #include "ARMSubtarget.h" 24 #include "ARMTargetMachine.h" 25 #include "ARMTargetObjectFile.h" 26 #include "MCTargetDesc/ARMAddressingModes.h" 27 #include "llvm/CallingConv.h" 28 #include "llvm/Constants.h" 29 #include "llvm/Function.h" 30 #include "llvm/GlobalValue.h" 31 #include "llvm/Instruction.h" 32 #include "llvm/Instructions.h" 33 #include "llvm/Intrinsics.h" 34 #include "llvm/Type.h" 35 #include "llvm/CodeGen/CallingConvLower.h" 36 #include "llvm/CodeGen/IntrinsicLowering.h" 37 #include "llvm/CodeGen/MachineBasicBlock.h" 38 #include "llvm/CodeGen/MachineFrameInfo.h" 39 #include "llvm/CodeGen/MachineFunction.h" 40 #include "llvm/CodeGen/MachineInstrBuilder.h" 41 #include "llvm/CodeGen/MachineModuleInfo.h" 42 #include "llvm/CodeGen/MachineRegisterInfo.h" 43 #include "llvm/CodeGen/PseudoSourceValue.h" 44 #include "llvm/CodeGen/SelectionDAG.h" 45 #include "llvm/MC/MCSectionMachO.h" 46 #include "llvm/Target/TargetOptions.h" 47 #include "llvm/ADT/VectorExtras.h" 48 #include "llvm/ADT/StringExtras.h" 49 #include "llvm/ADT/Statistic.h" 50 #include "llvm/Support/CommandLine.h" 51 #include "llvm/Support/ErrorHandling.h" 52 #include "llvm/Support/MathExtras.h" 53 #include "llvm/Support/raw_ostream.h" 54 #include <sstream> 55 using namespace llvm; 56 57 STATISTIC(NumTailCalls, "Number of tail calls"); 58 STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt"); 59 60 // This option should go away when tail calls fully work. 61 static cl::opt<bool> 62 EnableARMTailCalls("arm-tail-calls", cl::Hidden, 63 cl::desc("Generate tail calls (TEMPORARY OPTION)."), 64 cl::init(false)); 65 66 cl::opt<bool> 67 EnableARMLongCalls("arm-long-calls", cl::Hidden, 68 cl::desc("Generate calls via indirect call instructions"), 69 cl::init(false)); 70 71 static cl::opt<bool> 72 ARMInterworking("arm-interworking", cl::Hidden, 73 cl::desc("Enable / disable ARM interworking (for debugging only)"), 74 cl::init(true)); 75 76 namespace llvm { 77 class ARMCCState : public CCState { 78 public: 79 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, 80 const TargetMachine &TM, SmallVector<CCValAssign, 16> &locs, 81 LLVMContext &C, ParmContext PC) 82 : CCState(CC, isVarArg, MF, TM, locs, C) { 83 assert(((PC == Call) || (PC == Prologue)) && 84 "ARMCCState users must specify whether their context is call" 85 "or prologue generation."); 86 CallOrPrologue = PC; 87 } 88 }; 89 } 90 91 // The APCS parameter registers. 92 static const unsigned GPRArgRegs[] = { 93 ARM::R0, ARM::R1, ARM::R2, ARM::R3 94 }; 95 96 void ARMTargetLowering::addTypeForNEON(EVT VT, EVT PromotedLdStVT, 97 EVT PromotedBitwiseVT) { 98 if (VT != PromotedLdStVT) { 99 setOperationAction(ISD::LOAD, VT.getSimpleVT(), Promote); 100 AddPromotedToType (ISD::LOAD, VT.getSimpleVT(), 101 PromotedLdStVT.getSimpleVT()); 102 103 setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote); 104 AddPromotedToType (ISD::STORE, VT.getSimpleVT(), 105 PromotedLdStVT.getSimpleVT()); 106 } 107 108 EVT ElemTy = VT.getVectorElementType(); 109 if (ElemTy != MVT::i64 && ElemTy != MVT::f64) 110 setOperationAction(ISD::SETCC, VT.getSimpleVT(), Custom); 111 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT.getSimpleVT(), Custom); 112 if (ElemTy != MVT::i32) { 113 setOperationAction(ISD::SINT_TO_FP, VT.getSimpleVT(), Expand); 114 setOperationAction(ISD::UINT_TO_FP, VT.getSimpleVT(), Expand); 115 setOperationAction(ISD::FP_TO_SINT, VT.getSimpleVT(), Expand); 116 setOperationAction(ISD::FP_TO_UINT, VT.getSimpleVT(), Expand); 117 } 118 setOperationAction(ISD::BUILD_VECTOR, VT.getSimpleVT(), Custom); 119 setOperationAction(ISD::VECTOR_SHUFFLE, VT.getSimpleVT(), Custom); 120 setOperationAction(ISD::CONCAT_VECTORS, VT.getSimpleVT(), Legal); 121 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT.getSimpleVT(), Legal); 122 setOperationAction(ISD::SELECT, VT.getSimpleVT(), Expand); 123 setOperationAction(ISD::SELECT_CC, VT.getSimpleVT(), Expand); 124 if (VT.isInteger()) { 125 setOperationAction(ISD::SHL, VT.getSimpleVT(), Custom); 126 setOperationAction(ISD::SRA, VT.getSimpleVT(), Custom); 127 setOperationAction(ISD::SRL, VT.getSimpleVT(), Custom); 128 setLoadExtAction(ISD::SEXTLOAD, VT.getSimpleVT(), Expand); 129 setLoadExtAction(ISD::ZEXTLOAD, VT.getSimpleVT(), Expand); 130 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE; 131 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT) 132 setTruncStoreAction(VT.getSimpleVT(), 133 (MVT::SimpleValueType)InnerVT, Expand); 134 } 135 setLoadExtAction(ISD::EXTLOAD, VT.getSimpleVT(), Expand); 136 137 // Promote all bit-wise operations. 138 if (VT.isInteger() && VT != PromotedBitwiseVT) { 139 setOperationAction(ISD::AND, VT.getSimpleVT(), Promote); 140 AddPromotedToType (ISD::AND, VT.getSimpleVT(), 141 PromotedBitwiseVT.getSimpleVT()); 142 setOperationAction(ISD::OR, VT.getSimpleVT(), Promote); 143 AddPromotedToType (ISD::OR, VT.getSimpleVT(), 144 PromotedBitwiseVT.getSimpleVT()); 145 setOperationAction(ISD::XOR, VT.getSimpleVT(), Promote); 146 AddPromotedToType (ISD::XOR, VT.getSimpleVT(), 147 PromotedBitwiseVT.getSimpleVT()); 148 } 149 150 // Neon does not support vector divide/remainder operations. 151 setOperationAction(ISD::SDIV, VT.getSimpleVT(), Expand); 152 setOperationAction(ISD::UDIV, VT.getSimpleVT(), Expand); 153 setOperationAction(ISD::FDIV, VT.getSimpleVT(), Expand); 154 setOperationAction(ISD::SREM, VT.getSimpleVT(), Expand); 155 setOperationAction(ISD::UREM, VT.getSimpleVT(), Expand); 156 setOperationAction(ISD::FREM, VT.getSimpleVT(), Expand); 157 } 158 159 void ARMTargetLowering::addDRTypeForNEON(EVT VT) { 160 addRegisterClass(VT, ARM::DPRRegisterClass); 161 addTypeForNEON(VT, MVT::f64, MVT::v2i32); 162 } 163 164 void ARMTargetLowering::addQRTypeForNEON(EVT VT) { 165 addRegisterClass(VT, ARM::QPRRegisterClass); 166 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32); 167 } 168 169 static TargetLoweringObjectFile *createTLOF(TargetMachine &TM) { 170 if (TM.getSubtarget<ARMSubtarget>().isTargetDarwin()) 171 return new TargetLoweringObjectFileMachO(); 172 173 return new ARMElfTargetObjectFile(); 174 } 175 176 ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) 177 : TargetLowering(TM, createTLOF(TM)) { 178 Subtarget = &TM.getSubtarget<ARMSubtarget>(); 179 RegInfo = TM.getRegisterInfo(); 180 Itins = TM.getInstrItineraryData(); 181 182 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent); 183 184 if (Subtarget->isTargetDarwin()) { 185 // Uses VFP for Thumb libfuncs if available. 186 if (Subtarget->isThumb() && Subtarget->hasVFP2()) { 187 // Single-precision floating-point arithmetic. 188 setLibcallName(RTLIB::ADD_F32, "__addsf3vfp"); 189 setLibcallName(RTLIB::SUB_F32, "__subsf3vfp"); 190 setLibcallName(RTLIB::MUL_F32, "__mulsf3vfp"); 191 setLibcallName(RTLIB::DIV_F32, "__divsf3vfp"); 192 193 // Double-precision floating-point arithmetic. 194 setLibcallName(RTLIB::ADD_F64, "__adddf3vfp"); 195 setLibcallName(RTLIB::SUB_F64, "__subdf3vfp"); 196 setLibcallName(RTLIB::MUL_F64, "__muldf3vfp"); 197 setLibcallName(RTLIB::DIV_F64, "__divdf3vfp"); 198 199 // Single-precision comparisons. 200 setLibcallName(RTLIB::OEQ_F32, "__eqsf2vfp"); 201 setLibcallName(RTLIB::UNE_F32, "__nesf2vfp"); 202 setLibcallName(RTLIB::OLT_F32, "__ltsf2vfp"); 203 setLibcallName(RTLIB::OLE_F32, "__lesf2vfp"); 204 setLibcallName(RTLIB::OGE_F32, "__gesf2vfp"); 205 setLibcallName(RTLIB::OGT_F32, "__gtsf2vfp"); 206 setLibcallName(RTLIB::UO_F32, "__unordsf2vfp"); 207 setLibcallName(RTLIB::O_F32, "__unordsf2vfp"); 208 209 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE); 210 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETNE); 211 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE); 212 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE); 213 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE); 214 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE); 215 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE); 216 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ); 217 218 // Double-precision comparisons. 219 setLibcallName(RTLIB::OEQ_F64, "__eqdf2vfp"); 220 setLibcallName(RTLIB::UNE_F64, "__nedf2vfp"); 221 setLibcallName(RTLIB::OLT_F64, "__ltdf2vfp"); 222 setLibcallName(RTLIB::OLE_F64, "__ledf2vfp"); 223 setLibcallName(RTLIB::OGE_F64, "__gedf2vfp"); 224 setLibcallName(RTLIB::OGT_F64, "__gtdf2vfp"); 225 setLibcallName(RTLIB::UO_F64, "__unorddf2vfp"); 226 setLibcallName(RTLIB::O_F64, "__unorddf2vfp"); 227 228 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE); 229 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETNE); 230 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE); 231 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE); 232 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE); 233 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE); 234 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE); 235 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ); 236 237 // Floating-point to integer conversions. 238 // i64 conversions are done via library routines even when generating VFP 239 // instructions, so use the same ones. 240 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp"); 241 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp"); 242 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp"); 243 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp"); 244 245 // Conversions between floating types. 246 setLibcallName(RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp"); 247 setLibcallName(RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp"); 248 249 // Integer to floating-point conversions. 250 // i64 conversions are done via library routines even when generating VFP 251 // instructions, so use the same ones. 252 // FIXME: There appears to be some naming inconsistency in ARM libgcc: 253 // e.g., __floatunsidf vs. __floatunssidfvfp. 254 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp"); 255 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp"); 256 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp"); 257 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp"); 258 } 259 } 260 261 // These libcalls are not available in 32-bit. 262 setLibcallName(RTLIB::SHL_I128, 0); 263 setLibcallName(RTLIB::SRL_I128, 0); 264 setLibcallName(RTLIB::SRA_I128, 0); 265 266 if (Subtarget->isAAPCS_ABI()) { 267 // Double-precision floating-point arithmetic helper functions 268 // RTABI chapter 4.1.2, Table 2 269 setLibcallName(RTLIB::ADD_F64, "__aeabi_dadd"); 270 setLibcallName(RTLIB::DIV_F64, "__aeabi_ddiv"); 271 setLibcallName(RTLIB::MUL_F64, "__aeabi_dmul"); 272 setLibcallName(RTLIB::SUB_F64, "__aeabi_dsub"); 273 setLibcallCallingConv(RTLIB::ADD_F64, CallingConv::ARM_AAPCS); 274 setLibcallCallingConv(RTLIB::DIV_F64, CallingConv::ARM_AAPCS); 275 setLibcallCallingConv(RTLIB::MUL_F64, CallingConv::ARM_AAPCS); 276 setLibcallCallingConv(RTLIB::SUB_F64, CallingConv::ARM_AAPCS); 277 278 // Double-precision floating-point comparison helper functions 279 // RTABI chapter 4.1.2, Table 3 280 setLibcallName(RTLIB::OEQ_F64, "__aeabi_dcmpeq"); 281 setCmpLibcallCC(RTLIB::OEQ_F64, ISD::SETNE); 282 setLibcallName(RTLIB::UNE_F64, "__aeabi_dcmpeq"); 283 setCmpLibcallCC(RTLIB::UNE_F64, ISD::SETEQ); 284 setLibcallName(RTLIB::OLT_F64, "__aeabi_dcmplt"); 285 setCmpLibcallCC(RTLIB::OLT_F64, ISD::SETNE); 286 setLibcallName(RTLIB::OLE_F64, "__aeabi_dcmple"); 287 setCmpLibcallCC(RTLIB::OLE_F64, ISD::SETNE); 288 setLibcallName(RTLIB::OGE_F64, "__aeabi_dcmpge"); 289 setCmpLibcallCC(RTLIB::OGE_F64, ISD::SETNE); 290 setLibcallName(RTLIB::OGT_F64, "__aeabi_dcmpgt"); 291 setCmpLibcallCC(RTLIB::OGT_F64, ISD::SETNE); 292 setLibcallName(RTLIB::UO_F64, "__aeabi_dcmpun"); 293 setCmpLibcallCC(RTLIB::UO_F64, ISD::SETNE); 294 setLibcallName(RTLIB::O_F64, "__aeabi_dcmpun"); 295 setCmpLibcallCC(RTLIB::O_F64, ISD::SETEQ); 296 setLibcallCallingConv(RTLIB::OEQ_F64, CallingConv::ARM_AAPCS); 297 setLibcallCallingConv(RTLIB::UNE_F64, CallingConv::ARM_AAPCS); 298 setLibcallCallingConv(RTLIB::OLT_F64, CallingConv::ARM_AAPCS); 299 setLibcallCallingConv(RTLIB::OLE_F64, CallingConv::ARM_AAPCS); 300 setLibcallCallingConv(RTLIB::OGE_F64, CallingConv::ARM_AAPCS); 301 setLibcallCallingConv(RTLIB::OGT_F64, CallingConv::ARM_AAPCS); 302 setLibcallCallingConv(RTLIB::UO_F64, CallingConv::ARM_AAPCS); 303 setLibcallCallingConv(RTLIB::O_F64, CallingConv::ARM_AAPCS); 304 305 // Single-precision floating-point arithmetic helper functions 306 // RTABI chapter 4.1.2, Table 4 307 setLibcallName(RTLIB::ADD_F32, "__aeabi_fadd"); 308 setLibcallName(RTLIB::DIV_F32, "__aeabi_fdiv"); 309 setLibcallName(RTLIB::MUL_F32, "__aeabi_fmul"); 310 setLibcallName(RTLIB::SUB_F32, "__aeabi_fsub"); 311 setLibcallCallingConv(RTLIB::ADD_F32, CallingConv::ARM_AAPCS); 312 setLibcallCallingConv(RTLIB::DIV_F32, CallingConv::ARM_AAPCS); 313 setLibcallCallingConv(RTLIB::MUL_F32, CallingConv::ARM_AAPCS); 314 setLibcallCallingConv(RTLIB::SUB_F32, CallingConv::ARM_AAPCS); 315 316 // Single-precision floating-point comparison helper functions 317 // RTABI chapter 4.1.2, Table 5 318 setLibcallName(RTLIB::OEQ_F32, "__aeabi_fcmpeq"); 319 setCmpLibcallCC(RTLIB::OEQ_F32, ISD::SETNE); 320 setLibcallName(RTLIB::UNE_F32, "__aeabi_fcmpeq"); 321 setCmpLibcallCC(RTLIB::UNE_F32, ISD::SETEQ); 322 setLibcallName(RTLIB::OLT_F32, "__aeabi_fcmplt"); 323 setCmpLibcallCC(RTLIB::OLT_F32, ISD::SETNE); 324 setLibcallName(RTLIB::OLE_F32, "__aeabi_fcmple"); 325 setCmpLibcallCC(RTLIB::OLE_F32, ISD::SETNE); 326 setLibcallName(RTLIB::OGE_F32, "__aeabi_fcmpge"); 327 setCmpLibcallCC(RTLIB::OGE_F32, ISD::SETNE); 328 setLibcallName(RTLIB::OGT_F32, "__aeabi_fcmpgt"); 329 setCmpLibcallCC(RTLIB::OGT_F32, ISD::SETNE); 330 setLibcallName(RTLIB::UO_F32, "__aeabi_fcmpun"); 331 setCmpLibcallCC(RTLIB::UO_F32, ISD::SETNE); 332 setLibcallName(RTLIB::O_F32, "__aeabi_fcmpun"); 333 setCmpLibcallCC(RTLIB::O_F32, ISD::SETEQ); 334 setLibcallCallingConv(RTLIB::OEQ_F32, CallingConv::ARM_AAPCS); 335 setLibcallCallingConv(RTLIB::UNE_F32, CallingConv::ARM_AAPCS); 336 setLibcallCallingConv(RTLIB::OLT_F32, CallingConv::ARM_AAPCS); 337 setLibcallCallingConv(RTLIB::OLE_F32, CallingConv::ARM_AAPCS); 338 setLibcallCallingConv(RTLIB::OGE_F32, CallingConv::ARM_AAPCS); 339 setLibcallCallingConv(RTLIB::OGT_F32, CallingConv::ARM_AAPCS); 340 setLibcallCallingConv(RTLIB::UO_F32, CallingConv::ARM_AAPCS); 341 setLibcallCallingConv(RTLIB::O_F32, CallingConv::ARM_AAPCS); 342 343 // Floating-point to integer conversions. 344 // RTABI chapter 4.1.2, Table 6 345 setLibcallName(RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz"); 346 setLibcallName(RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz"); 347 setLibcallName(RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz"); 348 setLibcallName(RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz"); 349 setLibcallName(RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz"); 350 setLibcallName(RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz"); 351 setLibcallName(RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz"); 352 setLibcallName(RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz"); 353 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I32, CallingConv::ARM_AAPCS); 354 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I32, CallingConv::ARM_AAPCS); 355 setLibcallCallingConv(RTLIB::FPTOSINT_F64_I64, CallingConv::ARM_AAPCS); 356 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::ARM_AAPCS); 357 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I32, CallingConv::ARM_AAPCS); 358 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I32, CallingConv::ARM_AAPCS); 359 setLibcallCallingConv(RTLIB::FPTOSINT_F32_I64, CallingConv::ARM_AAPCS); 360 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::ARM_AAPCS); 361 362 // Conversions between floating types. 363 // RTABI chapter 4.1.2, Table 7 364 setLibcallName(RTLIB::FPROUND_F64_F32, "__aeabi_d2f"); 365 setLibcallName(RTLIB::FPEXT_F32_F64, "__aeabi_f2d"); 366 setLibcallCallingConv(RTLIB::FPROUND_F64_F32, CallingConv::ARM_AAPCS); 367 setLibcallCallingConv(RTLIB::FPEXT_F32_F64, CallingConv::ARM_AAPCS); 368 369 // Integer to floating-point conversions. 370 // RTABI chapter 4.1.2, Table 8 371 setLibcallName(RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d"); 372 setLibcallName(RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d"); 373 setLibcallName(RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d"); 374 setLibcallName(RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d"); 375 setLibcallName(RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f"); 376 setLibcallName(RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f"); 377 setLibcallName(RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f"); 378 setLibcallName(RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f"); 379 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F64, CallingConv::ARM_AAPCS); 380 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F64, CallingConv::ARM_AAPCS); 381 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F64, CallingConv::ARM_AAPCS); 382 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F64, CallingConv::ARM_AAPCS); 383 setLibcallCallingConv(RTLIB::SINTTOFP_I32_F32, CallingConv::ARM_AAPCS); 384 setLibcallCallingConv(RTLIB::UINTTOFP_I32_F32, CallingConv::ARM_AAPCS); 385 setLibcallCallingConv(RTLIB::SINTTOFP_I64_F32, CallingConv::ARM_AAPCS); 386 setLibcallCallingConv(RTLIB::UINTTOFP_I64_F32, CallingConv::ARM_AAPCS); 387 388 // Long long helper functions 389 // RTABI chapter 4.2, Table 9 390 setLibcallName(RTLIB::MUL_I64, "__aeabi_lmul"); 391 setLibcallName(RTLIB::SDIV_I64, "__aeabi_ldivmod"); 392 setLibcallName(RTLIB::UDIV_I64, "__aeabi_uldivmod"); 393 setLibcallName(RTLIB::SHL_I64, "__aeabi_llsl"); 394 setLibcallName(RTLIB::SRL_I64, "__aeabi_llsr"); 395 setLibcallName(RTLIB::SRA_I64, "__aeabi_lasr"); 396 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::ARM_AAPCS); 397 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::ARM_AAPCS); 398 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::ARM_AAPCS); 399 setLibcallCallingConv(RTLIB::SHL_I64, CallingConv::ARM_AAPCS); 400 setLibcallCallingConv(RTLIB::SRL_I64, CallingConv::ARM_AAPCS); 401 setLibcallCallingConv(RTLIB::SRA_I64, CallingConv::ARM_AAPCS); 402 403 // Integer division functions 404 // RTABI chapter 4.3.1 405 setLibcallName(RTLIB::SDIV_I8, "__aeabi_idiv"); 406 setLibcallName(RTLIB::SDIV_I16, "__aeabi_idiv"); 407 setLibcallName(RTLIB::SDIV_I32, "__aeabi_idiv"); 408 setLibcallName(RTLIB::UDIV_I8, "__aeabi_uidiv"); 409 setLibcallName(RTLIB::UDIV_I16, "__aeabi_uidiv"); 410 setLibcallName(RTLIB::UDIV_I32, "__aeabi_uidiv"); 411 setLibcallCallingConv(RTLIB::SDIV_I8, CallingConv::ARM_AAPCS); 412 setLibcallCallingConv(RTLIB::SDIV_I16, CallingConv::ARM_AAPCS); 413 setLibcallCallingConv(RTLIB::SDIV_I32, CallingConv::ARM_AAPCS); 414 setLibcallCallingConv(RTLIB::UDIV_I8, CallingConv::ARM_AAPCS); 415 setLibcallCallingConv(RTLIB::UDIV_I16, CallingConv::ARM_AAPCS); 416 setLibcallCallingConv(RTLIB::UDIV_I32, CallingConv::ARM_AAPCS); 417 418 // Memory operations 419 // RTABI chapter 4.3.4 420 setLibcallName(RTLIB::MEMCPY, "__aeabi_memcpy"); 421 setLibcallName(RTLIB::MEMMOVE, "__aeabi_memmove"); 422 setLibcallName(RTLIB::MEMSET, "__aeabi_memset"); 423 } 424 425 // Use divmod compiler-rt calls for iOS 5.0 and later. 426 if (Subtarget->getTargetTriple().getOS() == Triple::IOS && 427 !Subtarget->getTargetTriple().isOSVersionLT(5, 0)) { 428 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4"); 429 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4"); 430 } 431 432 if (Subtarget->isThumb1Only()) 433 addRegisterClass(MVT::i32, ARM::tGPRRegisterClass); 434 else 435 addRegisterClass(MVT::i32, ARM::GPRRegisterClass); 436 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) { 437 addRegisterClass(MVT::f32, ARM::SPRRegisterClass); 438 if (!Subtarget->isFPOnlySP()) 439 addRegisterClass(MVT::f64, ARM::DPRRegisterClass); 440 441 setTruncStoreAction(MVT::f64, MVT::f32, Expand); 442 } 443 444 if (Subtarget->hasNEON()) { 445 addDRTypeForNEON(MVT::v2f32); 446 addDRTypeForNEON(MVT::v8i8); 447 addDRTypeForNEON(MVT::v4i16); 448 addDRTypeForNEON(MVT::v2i32); 449 addDRTypeForNEON(MVT::v1i64); 450 451 addQRTypeForNEON(MVT::v4f32); 452 addQRTypeForNEON(MVT::v2f64); 453 addQRTypeForNEON(MVT::v16i8); 454 addQRTypeForNEON(MVT::v8i16); 455 addQRTypeForNEON(MVT::v4i32); 456 addQRTypeForNEON(MVT::v2i64); 457 458 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but 459 // neither Neon nor VFP support any arithmetic operations on it. 460 setOperationAction(ISD::FADD, MVT::v2f64, Expand); 461 setOperationAction(ISD::FSUB, MVT::v2f64, Expand); 462 setOperationAction(ISD::FMUL, MVT::v2f64, Expand); 463 setOperationAction(ISD::FDIV, MVT::v2f64, Expand); 464 setOperationAction(ISD::FREM, MVT::v2f64, Expand); 465 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand); 466 setOperationAction(ISD::SETCC, MVT::v2f64, Expand); 467 setOperationAction(ISD::FNEG, MVT::v2f64, Expand); 468 setOperationAction(ISD::FABS, MVT::v2f64, Expand); 469 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand); 470 setOperationAction(ISD::FSIN, MVT::v2f64, Expand); 471 setOperationAction(ISD::FCOS, MVT::v2f64, Expand); 472 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand); 473 setOperationAction(ISD::FPOW, MVT::v2f64, Expand); 474 setOperationAction(ISD::FLOG, MVT::v2f64, Expand); 475 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand); 476 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand); 477 setOperationAction(ISD::FEXP, MVT::v2f64, Expand); 478 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand); 479 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand); 480 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand); 481 setOperationAction(ISD::FRINT, MVT::v2f64, Expand); 482 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand); 483 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand); 484 485 setTruncStoreAction(MVT::v2f64, MVT::v2f32, Expand); 486 487 // Neon does not support some operations on v1i64 and v2i64 types. 488 setOperationAction(ISD::MUL, MVT::v1i64, Expand); 489 // Custom handling for some quad-vector types to detect VMULL. 490 setOperationAction(ISD::MUL, MVT::v8i16, Custom); 491 setOperationAction(ISD::MUL, MVT::v4i32, Custom); 492 setOperationAction(ISD::MUL, MVT::v2i64, Custom); 493 // Custom handling for some vector types to avoid expensive expansions 494 setOperationAction(ISD::SDIV, MVT::v4i16, Custom); 495 setOperationAction(ISD::SDIV, MVT::v8i8, Custom); 496 setOperationAction(ISD::UDIV, MVT::v4i16, Custom); 497 setOperationAction(ISD::UDIV, MVT::v8i8, Custom); 498 setOperationAction(ISD::SETCC, MVT::v1i64, Expand); 499 setOperationAction(ISD::SETCC, MVT::v2i64, Expand); 500 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with 501 // a destination type that is wider than the source. 502 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom); 503 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom); 504 505 setTargetDAGCombine(ISD::INTRINSIC_VOID); 506 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN); 507 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN); 508 setTargetDAGCombine(ISD::SHL); 509 setTargetDAGCombine(ISD::SRL); 510 setTargetDAGCombine(ISD::SRA); 511 setTargetDAGCombine(ISD::SIGN_EXTEND); 512 setTargetDAGCombine(ISD::ZERO_EXTEND); 513 setTargetDAGCombine(ISD::ANY_EXTEND); 514 setTargetDAGCombine(ISD::SELECT_CC); 515 setTargetDAGCombine(ISD::BUILD_VECTOR); 516 setTargetDAGCombine(ISD::VECTOR_SHUFFLE); 517 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT); 518 setTargetDAGCombine(ISD::STORE); 519 setTargetDAGCombine(ISD::FP_TO_SINT); 520 setTargetDAGCombine(ISD::FP_TO_UINT); 521 setTargetDAGCombine(ISD::FDIV); 522 } 523 524 computeRegisterProperties(); 525 526 // ARM does not have f32 extending load. 527 setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); 528 529 // ARM does not have i1 sign extending load. 530 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); 531 532 // ARM supports all 4 flavors of integer indexed load / store. 533 if (!Subtarget->isThumb1Only()) { 534 for (unsigned im = (unsigned)ISD::PRE_INC; 535 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) { 536 setIndexedLoadAction(im, MVT::i1, Legal); 537 setIndexedLoadAction(im, MVT::i8, Legal); 538 setIndexedLoadAction(im, MVT::i16, Legal); 539 setIndexedLoadAction(im, MVT::i32, Legal); 540 setIndexedStoreAction(im, MVT::i1, Legal); 541 setIndexedStoreAction(im, MVT::i8, Legal); 542 setIndexedStoreAction(im, MVT::i16, Legal); 543 setIndexedStoreAction(im, MVT::i32, Legal); 544 } 545 } 546 547 // i64 operation support. 548 setOperationAction(ISD::MUL, MVT::i64, Expand); 549 setOperationAction(ISD::MULHU, MVT::i32, Expand); 550 if (Subtarget->isThumb1Only()) { 551 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); 552 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand); 553 } 554 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops() 555 || (Subtarget->isThumb2() && !Subtarget->hasThumb2DSP())) 556 setOperationAction(ISD::MULHS, MVT::i32, Expand); 557 558 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom); 559 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom); 560 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom); 561 setOperationAction(ISD::SRL, MVT::i64, Custom); 562 setOperationAction(ISD::SRA, MVT::i64, Custom); 563 564 if (!Subtarget->isThumb1Only()) { 565 // FIXME: We should do this for Thumb1 as well. 566 setOperationAction(ISD::ADDC, MVT::i32, Custom); 567 setOperationAction(ISD::ADDE, MVT::i32, Custom); 568 setOperationAction(ISD::SUBC, MVT::i32, Custom); 569 setOperationAction(ISD::SUBE, MVT::i32, Custom); 570 } 571 572 // ARM does not have ROTL. 573 setOperationAction(ISD::ROTL, MVT::i32, Expand); 574 setOperationAction(ISD::CTTZ, MVT::i32, Custom); 575 setOperationAction(ISD::CTPOP, MVT::i32, Expand); 576 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only()) 577 setOperationAction(ISD::CTLZ, MVT::i32, Expand); 578 579 // Only ARMv6 has BSWAP. 580 if (!Subtarget->hasV6Ops()) 581 setOperationAction(ISD::BSWAP, MVT::i32, Expand); 582 583 // These are expanded into libcalls. 584 if (!Subtarget->hasDivide() || !Subtarget->isThumb2()) { 585 // v7M has a hardware divider 586 setOperationAction(ISD::SDIV, MVT::i32, Expand); 587 setOperationAction(ISD::UDIV, MVT::i32, Expand); 588 } 589 setOperationAction(ISD::SREM, MVT::i32, Expand); 590 setOperationAction(ISD::UREM, MVT::i32, Expand); 591 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); 592 setOperationAction(ISD::UDIVREM, MVT::i32, Expand); 593 594 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); 595 setOperationAction(ISD::ConstantPool, MVT::i32, Custom); 596 setOperationAction(ISD::GLOBAL_OFFSET_TABLE, MVT::i32, Custom); 597 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); 598 setOperationAction(ISD::BlockAddress, MVT::i32, Custom); 599 600 setOperationAction(ISD::TRAP, MVT::Other, Legal); 601 602 // Use the default implementation. 603 setOperationAction(ISD::VASTART, MVT::Other, Custom); 604 setOperationAction(ISD::VAARG, MVT::Other, Expand); 605 setOperationAction(ISD::VACOPY, MVT::Other, Expand); 606 setOperationAction(ISD::VAEND, MVT::Other, Expand); 607 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); 608 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); 609 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand); 610 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand); 611 setExceptionPointerRegister(ARM::R0); 612 setExceptionSelectorRegister(ARM::R1); 613 614 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand); 615 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use 616 // the default expansion. 617 // FIXME: This should be checking for v6k, not just v6. 618 if (Subtarget->hasDataBarrier() || 619 (Subtarget->hasV6Ops() && !Subtarget->isThumb())) { 620 // membarrier needs custom lowering; the rest are legal and handled 621 // normally. 622 setOperationAction(ISD::MEMBARRIER, MVT::Other, Custom); 623 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom); 624 // Custom lowering for 64-bit ops 625 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom); 626 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom); 627 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom); 628 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom); 629 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom); 630 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom); 631 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom); 632 // Automatically insert fences (dmb ist) around ATOMIC_SWAP etc. 633 setInsertFencesForAtomic(true); 634 } else { 635 // Set them all for expansion, which will force libcalls. 636 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand); 637 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Expand); 638 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand); 639 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand); 640 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand); 641 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand); 642 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand); 643 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand); 644 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand); 645 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand); 646 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand); 647 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand); 648 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand); 649 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand); 650 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the 651 // Unordered/Monotonic case. 652 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom); 653 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom); 654 // Since the libcalls include locking, fold in the fences 655 setShouldFoldAtomicFences(true); 656 } 657 658 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); 659 660 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes. 661 if (!Subtarget->hasV6Ops()) { 662 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand); 663 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand); 664 } 665 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 666 667 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) { 668 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR 669 // iff target supports vfp2. 670 setOperationAction(ISD::BITCAST, MVT::i64, Custom); 671 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom); 672 } 673 674 // We want to custom lower some of our intrinsics. 675 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 676 if (Subtarget->isTargetDarwin()) { 677 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom); 678 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom); 679 setOperationAction(ISD::EH_SJLJ_DISPATCHSETUP, MVT::Other, Custom); 680 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume"); 681 } 682 683 setOperationAction(ISD::SETCC, MVT::i32, Expand); 684 setOperationAction(ISD::SETCC, MVT::f32, Expand); 685 setOperationAction(ISD::SETCC, MVT::f64, Expand); 686 setOperationAction(ISD::SELECT, MVT::i32, Custom); 687 setOperationAction(ISD::SELECT, MVT::f32, Custom); 688 setOperationAction(ISD::SELECT, MVT::f64, Custom); 689 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); 690 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); 691 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); 692 693 setOperationAction(ISD::BRCOND, MVT::Other, Expand); 694 setOperationAction(ISD::BR_CC, MVT::i32, Custom); 695 setOperationAction(ISD::BR_CC, MVT::f32, Custom); 696 setOperationAction(ISD::BR_CC, MVT::f64, Custom); 697 setOperationAction(ISD::BR_JT, MVT::Other, Custom); 698 699 // We don't support sin/cos/fmod/copysign/pow 700 setOperationAction(ISD::FSIN, MVT::f64, Expand); 701 setOperationAction(ISD::FSIN, MVT::f32, Expand); 702 setOperationAction(ISD::FCOS, MVT::f32, Expand); 703 setOperationAction(ISD::FCOS, MVT::f64, Expand); 704 setOperationAction(ISD::FREM, MVT::f64, Expand); 705 setOperationAction(ISD::FREM, MVT::f32, Expand); 706 if (!UseSoftFloat && Subtarget->hasVFP2() && !Subtarget->isThumb1Only()) { 707 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom); 708 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom); 709 } 710 setOperationAction(ISD::FPOW, MVT::f64, Expand); 711 setOperationAction(ISD::FPOW, MVT::f32, Expand); 712 713 setOperationAction(ISD::FMA, MVT::f64, Expand); 714 setOperationAction(ISD::FMA, MVT::f32, Expand); 715 716 // Various VFP goodness 717 if (!UseSoftFloat && !Subtarget->isThumb1Only()) { 718 // int <-> fp are custom expanded into bit_convert + ARMISD ops. 719 if (Subtarget->hasVFP2()) { 720 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 721 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom); 722 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 723 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 724 } 725 // Special handling for half-precision FP. 726 if (!Subtarget->hasFP16()) { 727 setOperationAction(ISD::FP16_TO_FP32, MVT::f32, Expand); 728 setOperationAction(ISD::FP32_TO_FP16, MVT::i32, Expand); 729 } 730 } 731 732 // We have target-specific dag combine patterns for the following nodes: 733 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine 734 setTargetDAGCombine(ISD::ADD); 735 setTargetDAGCombine(ISD::SUB); 736 setTargetDAGCombine(ISD::MUL); 737 738 if (Subtarget->hasV6T2Ops() || Subtarget->hasNEON()) 739 setTargetDAGCombine(ISD::OR); 740 if (Subtarget->hasNEON()) 741 setTargetDAGCombine(ISD::AND); 742 743 setStackPointerRegisterToSaveRestore(ARM::SP); 744 745 if (UseSoftFloat || Subtarget->isThumb1Only() || !Subtarget->hasVFP2()) 746 setSchedulingPreference(Sched::RegPressure); 747 else 748 setSchedulingPreference(Sched::Hybrid); 749 750 //// temporary - rewrite interface to use type 751 maxStoresPerMemcpy = maxStoresPerMemcpyOptSize = 1; 752 753 // On ARM arguments smaller than 4 bytes are extended, so all arguments 754 // are at least 4 bytes aligned. 755 setMinStackArgumentAlignment(4); 756 757 benefitFromCodePlacementOpt = true; 758 759 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2); 760 } 761 762 // FIXME: It might make sense to define the representative register class as the 763 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is 764 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently, 765 // SPR's representative would be DPR_VFP2. This should work well if register 766 // pressure tracking were modified such that a register use would increment the 767 // pressure of the register class's representative and all of it's super 768 // classes' representatives transitively. We have not implemented this because 769 // of the difficulty prior to coalescing of modeling operand register classes 770 // due to the common occurrence of cross class copies and subregister insertions 771 // and extractions. 772 std::pair<const TargetRegisterClass*, uint8_t> 773 ARMTargetLowering::findRepresentativeClass(EVT VT) const{ 774 const TargetRegisterClass *RRC = 0; 775 uint8_t Cost = 1; 776 switch (VT.getSimpleVT().SimpleTy) { 777 default: 778 return TargetLowering::findRepresentativeClass(VT); 779 // Use DPR as representative register class for all floating point 780 // and vector types. Since there are 32 SPR registers and 32 DPR registers so 781 // the cost is 1 for both f32 and f64. 782 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16: 783 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32: 784 RRC = ARM::DPRRegisterClass; 785 // When NEON is used for SP, only half of the register file is available 786 // because operations that define both SP and DP results will be constrained 787 // to the VFP2 class (D0-D15). We currently model this constraint prior to 788 // coalescing by double-counting the SP regs. See the FIXME above. 789 if (Subtarget->useNEONForSinglePrecisionFP()) 790 Cost = 2; 791 break; 792 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64: 793 case MVT::v4f32: case MVT::v2f64: 794 RRC = ARM::DPRRegisterClass; 795 Cost = 2; 796 break; 797 case MVT::v4i64: 798 RRC = ARM::DPRRegisterClass; 799 Cost = 4; 800 break; 801 case MVT::v8i64: 802 RRC = ARM::DPRRegisterClass; 803 Cost = 8; 804 break; 805 } 806 return std::make_pair(RRC, Cost); 807 } 808 809 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const { 810 switch (Opcode) { 811 default: return 0; 812 case ARMISD::Wrapper: return "ARMISD::Wrapper"; 813 case ARMISD::WrapperDYN: return "ARMISD::WrapperDYN"; 814 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC"; 815 case ARMISD::WrapperJT: return "ARMISD::WrapperJT"; 816 case ARMISD::CALL: return "ARMISD::CALL"; 817 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED"; 818 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK"; 819 case ARMISD::tCALL: return "ARMISD::tCALL"; 820 case ARMISD::BRCOND: return "ARMISD::BRCOND"; 821 case ARMISD::BR_JT: return "ARMISD::BR_JT"; 822 case ARMISD::BR2_JT: return "ARMISD::BR2_JT"; 823 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG"; 824 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD"; 825 case ARMISD::CMP: return "ARMISD::CMP"; 826 case ARMISD::CMPZ: return "ARMISD::CMPZ"; 827 case ARMISD::CMPFP: return "ARMISD::CMPFP"; 828 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0"; 829 case ARMISD::BCC_i64: return "ARMISD::BCC_i64"; 830 case ARMISD::FMSTAT: return "ARMISD::FMSTAT"; 831 case ARMISD::CMOV: return "ARMISD::CMOV"; 832 833 case ARMISD::RBIT: return "ARMISD::RBIT"; 834 835 case ARMISD::FTOSI: return "ARMISD::FTOSI"; 836 case ARMISD::FTOUI: return "ARMISD::FTOUI"; 837 case ARMISD::SITOF: return "ARMISD::SITOF"; 838 case ARMISD::UITOF: return "ARMISD::UITOF"; 839 840 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG"; 841 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG"; 842 case ARMISD::RRX: return "ARMISD::RRX"; 843 844 case ARMISD::ADDC: return "ARMISD::ADDC"; 845 case ARMISD::ADDE: return "ARMISD::ADDE"; 846 case ARMISD::SUBC: return "ARMISD::SUBC"; 847 case ARMISD::SUBE: return "ARMISD::SUBE"; 848 849 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD"; 850 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR"; 851 852 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP"; 853 case ARMISD::EH_SJLJ_LONGJMP:return "ARMISD::EH_SJLJ_LONGJMP"; 854 case ARMISD::EH_SJLJ_DISPATCHSETUP:return "ARMISD::EH_SJLJ_DISPATCHSETUP"; 855 856 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN"; 857 858 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER"; 859 860 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC"; 861 862 case ARMISD::MEMBARRIER: return "ARMISD::MEMBARRIER"; 863 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR"; 864 865 case ARMISD::PRELOAD: return "ARMISD::PRELOAD"; 866 867 case ARMISD::VCEQ: return "ARMISD::VCEQ"; 868 case ARMISD::VCEQZ: return "ARMISD::VCEQZ"; 869 case ARMISD::VCGE: return "ARMISD::VCGE"; 870 case ARMISD::VCGEZ: return "ARMISD::VCGEZ"; 871 case ARMISD::VCLEZ: return "ARMISD::VCLEZ"; 872 case ARMISD::VCGEU: return "ARMISD::VCGEU"; 873 case ARMISD::VCGT: return "ARMISD::VCGT"; 874 case ARMISD::VCGTZ: return "ARMISD::VCGTZ"; 875 case ARMISD::VCLTZ: return "ARMISD::VCLTZ"; 876 case ARMISD::VCGTU: return "ARMISD::VCGTU"; 877 case ARMISD::VTST: return "ARMISD::VTST"; 878 879 case ARMISD::VSHL: return "ARMISD::VSHL"; 880 case ARMISD::VSHRs: return "ARMISD::VSHRs"; 881 case ARMISD::VSHRu: return "ARMISD::VSHRu"; 882 case ARMISD::VSHLLs: return "ARMISD::VSHLLs"; 883 case ARMISD::VSHLLu: return "ARMISD::VSHLLu"; 884 case ARMISD::VSHLLi: return "ARMISD::VSHLLi"; 885 case ARMISD::VSHRN: return "ARMISD::VSHRN"; 886 case ARMISD::VRSHRs: return "ARMISD::VRSHRs"; 887 case ARMISD::VRSHRu: return "ARMISD::VRSHRu"; 888 case ARMISD::VRSHRN: return "ARMISD::VRSHRN"; 889 case ARMISD::VQSHLs: return "ARMISD::VQSHLs"; 890 case ARMISD::VQSHLu: return "ARMISD::VQSHLu"; 891 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu"; 892 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs"; 893 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu"; 894 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu"; 895 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs"; 896 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu"; 897 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu"; 898 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu"; 899 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs"; 900 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM"; 901 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM"; 902 case ARMISD::VDUP: return "ARMISD::VDUP"; 903 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE"; 904 case ARMISD::VEXT: return "ARMISD::VEXT"; 905 case ARMISD::VREV64: return "ARMISD::VREV64"; 906 case ARMISD::VREV32: return "ARMISD::VREV32"; 907 case ARMISD::VREV16: return "ARMISD::VREV16"; 908 case ARMISD::VZIP: return "ARMISD::VZIP"; 909 case ARMISD::VUZP: return "ARMISD::VUZP"; 910 case ARMISD::VTRN: return "ARMISD::VTRN"; 911 case ARMISD::VTBL1: return "ARMISD::VTBL1"; 912 case ARMISD::VTBL2: return "ARMISD::VTBL2"; 913 case ARMISD::VMULLs: return "ARMISD::VMULLs"; 914 case ARMISD::VMULLu: return "ARMISD::VMULLu"; 915 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR"; 916 case ARMISD::FMAX: return "ARMISD::FMAX"; 917 case ARMISD::FMIN: return "ARMISD::FMIN"; 918 case ARMISD::BFI: return "ARMISD::BFI"; 919 case ARMISD::VORRIMM: return "ARMISD::VORRIMM"; 920 case ARMISD::VBICIMM: return "ARMISD::VBICIMM"; 921 case ARMISD::VBSL: return "ARMISD::VBSL"; 922 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP"; 923 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP"; 924 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP"; 925 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD"; 926 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD"; 927 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD"; 928 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD"; 929 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD"; 930 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD"; 931 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD"; 932 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD"; 933 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD"; 934 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD"; 935 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD"; 936 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD"; 937 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD"; 938 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD"; 939 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD"; 940 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD"; 941 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD"; 942 } 943 } 944 945 EVT ARMTargetLowering::getSetCCResultType(EVT VT) const { 946 if (!VT.isVector()) return getPointerTy(); 947 return VT.changeVectorElementTypeToInteger(); 948 } 949 950 /// getRegClassFor - Return the register class that should be used for the 951 /// specified value type. 952 TargetRegisterClass *ARMTargetLowering::getRegClassFor(EVT VT) const { 953 // Map v4i64 to QQ registers but do not make the type legal. Similarly map 954 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to 955 // load / store 4 to 8 consecutive D registers. 956 if (Subtarget->hasNEON()) { 957 if (VT == MVT::v4i64) 958 return ARM::QQPRRegisterClass; 959 else if (VT == MVT::v8i64) 960 return ARM::QQQQPRRegisterClass; 961 } 962 return TargetLowering::getRegClassFor(VT); 963 } 964 965 // Create a fast isel object. 966 FastISel * 967 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const { 968 return ARM::createFastISel(funcInfo); 969 } 970 971 /// getMaximalGlobalOffset - Returns the maximal possible offset which can 972 /// be used for loads / stores from the global. 973 unsigned ARMTargetLowering::getMaximalGlobalOffset() const { 974 return (Subtarget->isThumb1Only() ? 127 : 4095); 975 } 976 977 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const { 978 unsigned NumVals = N->getNumValues(); 979 if (!NumVals) 980 return Sched::RegPressure; 981 982 for (unsigned i = 0; i != NumVals; ++i) { 983 EVT VT = N->getValueType(i); 984 if (VT == MVT::Glue || VT == MVT::Other) 985 continue; 986 if (VT.isFloatingPoint() || VT.isVector()) 987 return Sched::Latency; 988 } 989 990 if (!N->isMachineOpcode()) 991 return Sched::RegPressure; 992 993 // Load are scheduled for latency even if there instruction itinerary 994 // is not available. 995 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 996 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode()); 997 998 if (MCID.getNumDefs() == 0) 999 return Sched::RegPressure; 1000 if (!Itins->isEmpty() && 1001 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2) 1002 return Sched::Latency; 1003 1004 return Sched::RegPressure; 1005 } 1006 1007 //===----------------------------------------------------------------------===// 1008 // Lowering Code 1009 //===----------------------------------------------------------------------===// 1010 1011 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC 1012 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) { 1013 switch (CC) { 1014 default: llvm_unreachable("Unknown condition code!"); 1015 case ISD::SETNE: return ARMCC::NE; 1016 case ISD::SETEQ: return ARMCC::EQ; 1017 case ISD::SETGT: return ARMCC::GT; 1018 case ISD::SETGE: return ARMCC::GE; 1019 case ISD::SETLT: return ARMCC::LT; 1020 case ISD::SETLE: return ARMCC::LE; 1021 case ISD::SETUGT: return ARMCC::HI; 1022 case ISD::SETUGE: return ARMCC::HS; 1023 case ISD::SETULT: return ARMCC::LO; 1024 case ISD::SETULE: return ARMCC::LS; 1025 } 1026 } 1027 1028 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC. 1029 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode, 1030 ARMCC::CondCodes &CondCode2) { 1031 CondCode2 = ARMCC::AL; 1032 switch (CC) { 1033 default: llvm_unreachable("Unknown FP condition!"); 1034 case ISD::SETEQ: 1035 case ISD::SETOEQ: CondCode = ARMCC::EQ; break; 1036 case ISD::SETGT: 1037 case ISD::SETOGT: CondCode = ARMCC::GT; break; 1038 case ISD::SETGE: 1039 case ISD::SETOGE: CondCode = ARMCC::GE; break; 1040 case ISD::SETOLT: CondCode = ARMCC::MI; break; 1041 case ISD::SETOLE: CondCode = ARMCC::LS; break; 1042 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break; 1043 case ISD::SETO: CondCode = ARMCC::VC; break; 1044 case ISD::SETUO: CondCode = ARMCC::VS; break; 1045 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break; 1046 case ISD::SETUGT: CondCode = ARMCC::HI; break; 1047 case ISD::SETUGE: CondCode = ARMCC::PL; break; 1048 case ISD::SETLT: 1049 case ISD::SETULT: CondCode = ARMCC::LT; break; 1050 case ISD::SETLE: 1051 case ISD::SETULE: CondCode = ARMCC::LE; break; 1052 case ISD::SETNE: 1053 case ISD::SETUNE: CondCode = ARMCC::NE; break; 1054 } 1055 } 1056 1057 //===----------------------------------------------------------------------===// 1058 // Calling Convention Implementation 1059 //===----------------------------------------------------------------------===// 1060 1061 #include "ARMGenCallingConv.inc" 1062 1063 /// CCAssignFnForNode - Selects the correct CCAssignFn for a the 1064 /// given CallingConvention value. 1065 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC, 1066 bool Return, 1067 bool isVarArg) const { 1068 switch (CC) { 1069 default: 1070 llvm_unreachable("Unsupported calling convention"); 1071 case CallingConv::Fast: 1072 if (Subtarget->hasVFP2() && !isVarArg) { 1073 if (!Subtarget->isAAPCS_ABI()) 1074 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS); 1075 // For AAPCS ABI targets, just use VFP variant of the calling convention. 1076 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP); 1077 } 1078 // Fallthrough 1079 case CallingConv::C: { 1080 // Use target triple & subtarget features to do actual dispatch. 1081 if (!Subtarget->isAAPCS_ABI()) 1082 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS); 1083 else if (Subtarget->hasVFP2() && 1084 FloatABIType == FloatABI::Hard && !isVarArg) 1085 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP); 1086 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS); 1087 } 1088 case CallingConv::ARM_AAPCS_VFP: 1089 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP); 1090 case CallingConv::ARM_AAPCS: 1091 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS); 1092 case CallingConv::ARM_APCS: 1093 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS); 1094 } 1095 } 1096 1097 /// LowerCallResult - Lower the result values of a call into the 1098 /// appropriate copies out of appropriate physical registers. 1099 SDValue 1100 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, 1101 CallingConv::ID CallConv, bool isVarArg, 1102 const SmallVectorImpl<ISD::InputArg> &Ins, 1103 DebugLoc dl, SelectionDAG &DAG, 1104 SmallVectorImpl<SDValue> &InVals) const { 1105 1106 // Assign locations to each value returned by this call. 1107 SmallVector<CCValAssign, 16> RVLocs; 1108 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), 1109 getTargetMachine(), RVLocs, *DAG.getContext(), Call); 1110 CCInfo.AnalyzeCallResult(Ins, 1111 CCAssignFnForNode(CallConv, /* Return*/ true, 1112 isVarArg)); 1113 1114 // Copy all of the result registers out of their specified physreg. 1115 for (unsigned i = 0; i != RVLocs.size(); ++i) { 1116 CCValAssign VA = RVLocs[i]; 1117 1118 SDValue Val; 1119 if (VA.needsCustom()) { 1120 // Handle f64 or half of a v2f64. 1121 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 1122 InFlag); 1123 Chain = Lo.getValue(1); 1124 InFlag = Lo.getValue(2); 1125 VA = RVLocs[++i]; // skip ahead to next loc 1126 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 1127 InFlag); 1128 Chain = Hi.getValue(1); 1129 InFlag = Hi.getValue(2); 1130 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 1131 1132 if (VA.getLocVT() == MVT::v2f64) { 1133 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64); 1134 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val, 1135 DAG.getConstant(0, MVT::i32)); 1136 1137 VA = RVLocs[++i]; // skip ahead to next loc 1138 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag); 1139 Chain = Lo.getValue(1); 1140 InFlag = Lo.getValue(2); 1141 VA = RVLocs[++i]; // skip ahead to next loc 1142 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag); 1143 Chain = Hi.getValue(1); 1144 InFlag = Hi.getValue(2); 1145 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 1146 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val, 1147 DAG.getConstant(1, MVT::i32)); 1148 } 1149 } else { 1150 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(), 1151 InFlag); 1152 Chain = Val.getValue(1); 1153 InFlag = Val.getValue(2); 1154 } 1155 1156 switch (VA.getLocInfo()) { 1157 default: llvm_unreachable("Unknown loc info!"); 1158 case CCValAssign::Full: break; 1159 case CCValAssign::BCvt: 1160 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val); 1161 break; 1162 } 1163 1164 InVals.push_back(Val); 1165 } 1166 1167 return Chain; 1168 } 1169 1170 /// LowerMemOpCallTo - Store the argument to the stack. 1171 SDValue 1172 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain, 1173 SDValue StackPtr, SDValue Arg, 1174 DebugLoc dl, SelectionDAG &DAG, 1175 const CCValAssign &VA, 1176 ISD::ArgFlagsTy Flags) const { 1177 unsigned LocMemOffset = VA.getLocMemOffset(); 1178 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset); 1179 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff); 1180 return DAG.getStore(Chain, dl, Arg, PtrOff, 1181 MachinePointerInfo::getStack(LocMemOffset), 1182 false, false, 0); 1183 } 1184 1185 void ARMTargetLowering::PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG, 1186 SDValue Chain, SDValue &Arg, 1187 RegsToPassVector &RegsToPass, 1188 CCValAssign &VA, CCValAssign &NextVA, 1189 SDValue &StackPtr, 1190 SmallVector<SDValue, 8> &MemOpChains, 1191 ISD::ArgFlagsTy Flags) const { 1192 1193 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl, 1194 DAG.getVTList(MVT::i32, MVT::i32), Arg); 1195 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd)); 1196 1197 if (NextVA.isRegLoc()) 1198 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1))); 1199 else { 1200 assert(NextVA.isMemLoc()); 1201 if (StackPtr.getNode() == 0) 1202 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy()); 1203 1204 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1), 1205 dl, DAG, NextVA, 1206 Flags)); 1207 } 1208 } 1209 1210 /// LowerCall - Lowering a call into a callseq_start <- 1211 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter 1212 /// nodes. 1213 SDValue 1214 ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee, 1215 CallingConv::ID CallConv, bool isVarArg, 1216 bool &isTailCall, 1217 const SmallVectorImpl<ISD::OutputArg> &Outs, 1218 const SmallVectorImpl<SDValue> &OutVals, 1219 const SmallVectorImpl<ISD::InputArg> &Ins, 1220 DebugLoc dl, SelectionDAG &DAG, 1221 SmallVectorImpl<SDValue> &InVals) const { 1222 MachineFunction &MF = DAG.getMachineFunction(); 1223 bool IsStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet(); 1224 bool IsSibCall = false; 1225 // Disable tail calls if they're not supported. 1226 if (!EnableARMTailCalls && !Subtarget->supportsTailCall()) 1227 isTailCall = false; 1228 if (isTailCall) { 1229 // Check if it's really possible to do a tail call. 1230 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, 1231 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(), 1232 Outs, OutVals, Ins, DAG); 1233 // We don't support GuaranteedTailCallOpt for ARM, only automatically 1234 // detected sibcalls. 1235 if (isTailCall) { 1236 ++NumTailCalls; 1237 IsSibCall = true; 1238 } 1239 } 1240 1241 // Analyze operands of the call, assigning locations to each operand. 1242 SmallVector<CCValAssign, 16> ArgLocs; 1243 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), 1244 getTargetMachine(), ArgLocs, *DAG.getContext(), Call); 1245 CCInfo.AnalyzeCallOperands(Outs, 1246 CCAssignFnForNode(CallConv, /* Return*/ false, 1247 isVarArg)); 1248 1249 // Get a count of how many bytes are to be pushed on the stack. 1250 unsigned NumBytes = CCInfo.getNextStackOffset(); 1251 1252 // For tail calls, memory operands are available in our caller's stack. 1253 if (IsSibCall) 1254 NumBytes = 0; 1255 1256 // Adjust the stack pointer for the new arguments... 1257 // These operations are automatically eliminated by the prolog/epilog pass 1258 if (!IsSibCall) 1259 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true)); 1260 1261 SDValue StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy()); 1262 1263 RegsToPassVector RegsToPass; 1264 SmallVector<SDValue, 8> MemOpChains; 1265 1266 // Walk the register/memloc assignments, inserting copies/loads. In the case 1267 // of tail call optimization, arguments are handled later. 1268 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); 1269 i != e; 1270 ++i, ++realArgIdx) { 1271 CCValAssign &VA = ArgLocs[i]; 1272 SDValue Arg = OutVals[realArgIdx]; 1273 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags; 1274 bool isByVal = Flags.isByVal(); 1275 1276 // Promote the value if needed. 1277 switch (VA.getLocInfo()) { 1278 default: llvm_unreachable("Unknown loc info!"); 1279 case CCValAssign::Full: break; 1280 case CCValAssign::SExt: 1281 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); 1282 break; 1283 case CCValAssign::ZExt: 1284 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); 1285 break; 1286 case CCValAssign::AExt: 1287 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg); 1288 break; 1289 case CCValAssign::BCvt: 1290 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg); 1291 break; 1292 } 1293 1294 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces 1295 if (VA.needsCustom()) { 1296 if (VA.getLocVT() == MVT::v2f64) { 1297 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1298 DAG.getConstant(0, MVT::i32)); 1299 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1300 DAG.getConstant(1, MVT::i32)); 1301 1302 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass, 1303 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags); 1304 1305 VA = ArgLocs[++i]; // skip ahead to next loc 1306 if (VA.isRegLoc()) { 1307 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass, 1308 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags); 1309 } else { 1310 assert(VA.isMemLoc()); 1311 1312 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1, 1313 dl, DAG, VA, Flags)); 1314 } 1315 } else { 1316 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i], 1317 StackPtr, MemOpChains, Flags); 1318 } 1319 } else if (VA.isRegLoc()) { 1320 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); 1321 } else if (isByVal) { 1322 assert(VA.isMemLoc()); 1323 unsigned offset = 0; 1324 1325 // True if this byval aggregate will be split between registers 1326 // and memory. 1327 if (CCInfo.isFirstByValRegValid()) { 1328 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 1329 unsigned int i, j; 1330 for (i = 0, j = CCInfo.getFirstByValReg(); j < ARM::R4; i++, j++) { 1331 SDValue Const = DAG.getConstant(4*i, MVT::i32); 1332 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 1333 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, 1334 MachinePointerInfo(), 1335 false, false, 0); 1336 MemOpChains.push_back(Load.getValue(1)); 1337 RegsToPass.push_back(std::make_pair(j, Load)); 1338 } 1339 offset = ARM::R4 - CCInfo.getFirstByValReg(); 1340 CCInfo.clearFirstByValReg(); 1341 } 1342 1343 unsigned LocMemOffset = VA.getLocMemOffset(); 1344 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset); 1345 SDValue Dst = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, 1346 StkPtrOff); 1347 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset); 1348 SDValue Src = DAG.getNode(ISD::ADD, dl, getPointerTy(), Arg, SrcOffset); 1349 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset, 1350 MVT::i32); 1351 // TODO: Disable AlwaysInline when it becomes possible 1352 // to emit a nested call sequence. 1353 MemOpChains.push_back(DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, 1354 Flags.getByValAlign(), 1355 /*isVolatile=*/false, 1356 /*AlwaysInline=*/true, 1357 MachinePointerInfo(0), 1358 MachinePointerInfo(0))); 1359 1360 } else if (!IsSibCall) { 1361 assert(VA.isMemLoc()); 1362 1363 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg, 1364 dl, DAG, VA, Flags)); 1365 } 1366 } 1367 1368 if (!MemOpChains.empty()) 1369 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 1370 &MemOpChains[0], MemOpChains.size()); 1371 1372 // Build a sequence of copy-to-reg nodes chained together with token chain 1373 // and flag operands which copy the outgoing args into the appropriate regs. 1374 SDValue InFlag; 1375 // Tail call byval lowering might overwrite argument registers so in case of 1376 // tail call optimization the copies to registers are lowered later. 1377 if (!isTailCall) 1378 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 1379 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 1380 RegsToPass[i].second, InFlag); 1381 InFlag = Chain.getValue(1); 1382 } 1383 1384 // For tail calls lower the arguments to the 'real' stack slot. 1385 if (isTailCall) { 1386 // Force all the incoming stack arguments to be loaded from the stack 1387 // before any new outgoing arguments are stored to the stack, because the 1388 // outgoing stack slots may alias the incoming argument stack slots, and 1389 // the alias isn't otherwise explicit. This is slightly more conservative 1390 // than necessary, because it means that each store effectively depends 1391 // on every argument instead of just those arguments it would clobber. 1392 1393 // Do not flag preceding copytoreg stuff together with the following stuff. 1394 InFlag = SDValue(); 1395 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 1396 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 1397 RegsToPass[i].second, InFlag); 1398 InFlag = Chain.getValue(1); 1399 } 1400 InFlag =SDValue(); 1401 } 1402 1403 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every 1404 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol 1405 // node so that legalize doesn't hack it. 1406 bool isDirect = false; 1407 bool isARMFunc = false; 1408 bool isLocalARMFunc = false; 1409 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 1410 1411 if (EnableARMLongCalls) { 1412 assert (getTargetMachine().getRelocationModel() == Reloc::Static 1413 && "long-calls with non-static relocation model!"); 1414 // Handle a global address or an external symbol. If it's not one of 1415 // those, the target's already in a register, so we don't need to do 1416 // anything extra. 1417 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 1418 const GlobalValue *GV = G->getGlobal(); 1419 // Create a constant pool entry for the callee address 1420 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1421 ARMConstantPoolValue *CPV = 1422 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0); 1423 1424 // Get the address of the callee into a register 1425 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4); 1426 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1427 Callee = DAG.getLoad(getPointerTy(), dl, 1428 DAG.getEntryNode(), CPAddr, 1429 MachinePointerInfo::getConstantPool(), 1430 false, false, 0); 1431 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) { 1432 const char *Sym = S->getSymbol(); 1433 1434 // Create a constant pool entry for the callee address 1435 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1436 ARMConstantPoolValue *CPV = 1437 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym, 1438 ARMPCLabelIndex, 0); 1439 // Get the address of the callee into a register 1440 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4); 1441 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1442 Callee = DAG.getLoad(getPointerTy(), dl, 1443 DAG.getEntryNode(), CPAddr, 1444 MachinePointerInfo::getConstantPool(), 1445 false, false, 0); 1446 } 1447 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 1448 const GlobalValue *GV = G->getGlobal(); 1449 isDirect = true; 1450 bool isExt = GV->isDeclaration() || GV->isWeakForLinker(); 1451 bool isStub = (isExt && Subtarget->isTargetDarwin()) && 1452 getTargetMachine().getRelocationModel() != Reloc::Static; 1453 isARMFunc = !Subtarget->isThumb() || isStub; 1454 // ARM call to a local ARM function is predicable. 1455 isLocalARMFunc = !Subtarget->isThumb() && (!isExt || !ARMInterworking); 1456 // tBX takes a register source operand. 1457 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) { 1458 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1459 ARMConstantPoolValue *CPV = 1460 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 4); 1461 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4); 1462 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1463 Callee = DAG.getLoad(getPointerTy(), dl, 1464 DAG.getEntryNode(), CPAddr, 1465 MachinePointerInfo::getConstantPool(), 1466 false, false, 0); 1467 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 1468 Callee = DAG.getNode(ARMISD::PIC_ADD, dl, 1469 getPointerTy(), Callee, PICLabel); 1470 } else { 1471 // On ELF targets for PIC code, direct calls should go through the PLT 1472 unsigned OpFlags = 0; 1473 if (Subtarget->isTargetELF() && 1474 getTargetMachine().getRelocationModel() == Reloc::PIC_) 1475 OpFlags = ARMII::MO_PLT; 1476 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags); 1477 } 1478 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { 1479 isDirect = true; 1480 bool isStub = Subtarget->isTargetDarwin() && 1481 getTargetMachine().getRelocationModel() != Reloc::Static; 1482 isARMFunc = !Subtarget->isThumb() || isStub; 1483 // tBX takes a register source operand. 1484 const char *Sym = S->getSymbol(); 1485 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) { 1486 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1487 ARMConstantPoolValue *CPV = 1488 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym, 1489 ARMPCLabelIndex, 4); 1490 SDValue CPAddr = DAG.getTargetConstantPool(CPV, getPointerTy(), 4); 1491 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1492 Callee = DAG.getLoad(getPointerTy(), dl, 1493 DAG.getEntryNode(), CPAddr, 1494 MachinePointerInfo::getConstantPool(), 1495 false, false, 0); 1496 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 1497 Callee = DAG.getNode(ARMISD::PIC_ADD, dl, 1498 getPointerTy(), Callee, PICLabel); 1499 } else { 1500 unsigned OpFlags = 0; 1501 // On ELF targets for PIC code, direct calls should go through the PLT 1502 if (Subtarget->isTargetELF() && 1503 getTargetMachine().getRelocationModel() == Reloc::PIC_) 1504 OpFlags = ARMII::MO_PLT; 1505 Callee = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlags); 1506 } 1507 } 1508 1509 // FIXME: handle tail calls differently. 1510 unsigned CallOpc; 1511 if (Subtarget->isThumb()) { 1512 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps()) 1513 CallOpc = ARMISD::CALL_NOLINK; 1514 else 1515 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL; 1516 } else { 1517 CallOpc = (isDirect || Subtarget->hasV5TOps()) 1518 ? (isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL) 1519 : ARMISD::CALL_NOLINK; 1520 } 1521 1522 std::vector<SDValue> Ops; 1523 Ops.push_back(Chain); 1524 Ops.push_back(Callee); 1525 1526 // Add argument registers to the end of the list so that they are known live 1527 // into the call. 1528 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) 1529 Ops.push_back(DAG.getRegister(RegsToPass[i].first, 1530 RegsToPass[i].second.getValueType())); 1531 1532 if (InFlag.getNode()) 1533 Ops.push_back(InFlag); 1534 1535 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue); 1536 if (isTailCall) 1537 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size()); 1538 1539 // Returns a chain and a flag for retval copy to use. 1540 Chain = DAG.getNode(CallOpc, dl, NodeTys, &Ops[0], Ops.size()); 1541 InFlag = Chain.getValue(1); 1542 1543 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true), 1544 DAG.getIntPtrConstant(0, true), InFlag); 1545 if (!Ins.empty()) 1546 InFlag = Chain.getValue(1); 1547 1548 // Handle result values, copying them out of physregs into vregs that we 1549 // return. 1550 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, 1551 dl, DAG, InVals); 1552 } 1553 1554 /// HandleByVal - Every parameter *after* a byval parameter is passed 1555 /// on the stack. Remember the next parameter register to allocate, 1556 /// and then confiscate the rest of the parameter registers to insure 1557 /// this. 1558 void 1559 llvm::ARMTargetLowering::HandleByVal(CCState *State, unsigned &size) const { 1560 unsigned reg = State->AllocateReg(GPRArgRegs, 4); 1561 assert((State->getCallOrPrologue() == Prologue || 1562 State->getCallOrPrologue() == Call) && 1563 "unhandled ParmContext"); 1564 if ((!State->isFirstByValRegValid()) && 1565 (ARM::R0 <= reg) && (reg <= ARM::R3)) { 1566 State->setFirstByValReg(reg); 1567 // At a call site, a byval parameter that is split between 1568 // registers and memory needs its size truncated here. In a 1569 // function prologue, such byval parameters are reassembled in 1570 // memory, and are not truncated. 1571 if (State->getCallOrPrologue() == Call) { 1572 unsigned excess = 4 * (ARM::R4 - reg); 1573 assert(size >= excess && "expected larger existing stack allocation"); 1574 size -= excess; 1575 } 1576 } 1577 // Confiscate any remaining parameter registers to preclude their 1578 // assignment to subsequent parameters. 1579 while (State->AllocateReg(GPRArgRegs, 4)) 1580 ; 1581 } 1582 1583 /// MatchingStackOffset - Return true if the given stack call argument is 1584 /// already available in the same position (relatively) of the caller's 1585 /// incoming argument stack. 1586 static 1587 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags, 1588 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI, 1589 const ARMInstrInfo *TII) { 1590 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8; 1591 int FI = INT_MAX; 1592 if (Arg.getOpcode() == ISD::CopyFromReg) { 1593 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); 1594 if (!TargetRegisterInfo::isVirtualRegister(VR)) 1595 return false; 1596 MachineInstr *Def = MRI->getVRegDef(VR); 1597 if (!Def) 1598 return false; 1599 if (!Flags.isByVal()) { 1600 if (!TII->isLoadFromStackSlot(Def, FI)) 1601 return false; 1602 } else { 1603 return false; 1604 } 1605 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) { 1606 if (Flags.isByVal()) 1607 // ByVal argument is passed in as a pointer but it's now being 1608 // dereferenced. e.g. 1609 // define @foo(%struct.X* %A) { 1610 // tail call @bar(%struct.X* byval %A) 1611 // } 1612 return false; 1613 SDValue Ptr = Ld->getBasePtr(); 1614 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr); 1615 if (!FINode) 1616 return false; 1617 FI = FINode->getIndex(); 1618 } else 1619 return false; 1620 1621 assert(FI != INT_MAX); 1622 if (!MFI->isFixedObjectIndex(FI)) 1623 return false; 1624 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI); 1625 } 1626 1627 /// IsEligibleForTailCallOptimization - Check whether the call is eligible 1628 /// for tail call optimization. Targets which want to do tail call 1629 /// optimization should implement this function. 1630 bool 1631 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, 1632 CallingConv::ID CalleeCC, 1633 bool isVarArg, 1634 bool isCalleeStructRet, 1635 bool isCallerStructRet, 1636 const SmallVectorImpl<ISD::OutputArg> &Outs, 1637 const SmallVectorImpl<SDValue> &OutVals, 1638 const SmallVectorImpl<ISD::InputArg> &Ins, 1639 SelectionDAG& DAG) const { 1640 const Function *CallerF = DAG.getMachineFunction().getFunction(); 1641 CallingConv::ID CallerCC = CallerF->getCallingConv(); 1642 bool CCMatch = CallerCC == CalleeCC; 1643 1644 // Look for obvious safe cases to perform tail call optimization that do not 1645 // require ABI changes. This is what gcc calls sibcall. 1646 1647 // Do not sibcall optimize vararg calls unless the call site is not passing 1648 // any arguments. 1649 if (isVarArg && !Outs.empty()) 1650 return false; 1651 1652 // Also avoid sibcall optimization if either caller or callee uses struct 1653 // return semantics. 1654 if (isCalleeStructRet || isCallerStructRet) 1655 return false; 1656 1657 // FIXME: Completely disable sibcall for Thumb1 since Thumb1RegisterInfo:: 1658 // emitEpilogue is not ready for them. Thumb tail calls also use t2B, as 1659 // the Thumb1 16-bit unconditional branch doesn't have sufficient relocation 1660 // support in the assembler and linker to be used. This would need to be 1661 // fixed to fully support tail calls in Thumb1. 1662 // 1663 // Doing this is tricky, since the LDM/POP instruction on Thumb doesn't take 1664 // LR. This means if we need to reload LR, it takes an extra instructions, 1665 // which outweighs the value of the tail call; but here we don't know yet 1666 // whether LR is going to be used. Probably the right approach is to 1667 // generate the tail call here and turn it back into CALL/RET in 1668 // emitEpilogue if LR is used. 1669 1670 // Thumb1 PIC calls to external symbols use BX, so they can be tail calls, 1671 // but we need to make sure there are enough registers; the only valid 1672 // registers are the 4 used for parameters. We don't currently do this 1673 // case. 1674 if (Subtarget->isThumb1Only()) 1675 return false; 1676 1677 // If the calling conventions do not match, then we'd better make sure the 1678 // results are returned in the same way as what the caller expects. 1679 if (!CCMatch) { 1680 SmallVector<CCValAssign, 16> RVLocs1; 1681 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), 1682 getTargetMachine(), RVLocs1, *DAG.getContext(), Call); 1683 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg)); 1684 1685 SmallVector<CCValAssign, 16> RVLocs2; 1686 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), 1687 getTargetMachine(), RVLocs2, *DAG.getContext(), Call); 1688 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg)); 1689 1690 if (RVLocs1.size() != RVLocs2.size()) 1691 return false; 1692 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) { 1693 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc()) 1694 return false; 1695 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo()) 1696 return false; 1697 if (RVLocs1[i].isRegLoc()) { 1698 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg()) 1699 return false; 1700 } else { 1701 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset()) 1702 return false; 1703 } 1704 } 1705 } 1706 1707 // If the callee takes no arguments then go on to check the results of the 1708 // call. 1709 if (!Outs.empty()) { 1710 // Check if stack adjustment is needed. For now, do not do this if any 1711 // argument is passed on the stack. 1712 SmallVector<CCValAssign, 16> ArgLocs; 1713 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), 1714 getTargetMachine(), ArgLocs, *DAG.getContext(), Call); 1715 CCInfo.AnalyzeCallOperands(Outs, 1716 CCAssignFnForNode(CalleeCC, false, isVarArg)); 1717 if (CCInfo.getNextStackOffset()) { 1718 MachineFunction &MF = DAG.getMachineFunction(); 1719 1720 // Check if the arguments are already laid out in the right way as 1721 // the caller's fixed stack objects. 1722 MachineFrameInfo *MFI = MF.getFrameInfo(); 1723 const MachineRegisterInfo *MRI = &MF.getRegInfo(); 1724 const ARMInstrInfo *TII = 1725 ((ARMTargetMachine&)getTargetMachine()).getInstrInfo(); 1726 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); 1727 i != e; 1728 ++i, ++realArgIdx) { 1729 CCValAssign &VA = ArgLocs[i]; 1730 EVT RegVT = VA.getLocVT(); 1731 SDValue Arg = OutVals[realArgIdx]; 1732 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags; 1733 if (VA.getLocInfo() == CCValAssign::Indirect) 1734 return false; 1735 if (VA.needsCustom()) { 1736 // f64 and vector types are split into multiple registers or 1737 // register/stack-slot combinations. The types will not match 1738 // the registers; give up on memory f64 refs until we figure 1739 // out what to do about this. 1740 if (!VA.isRegLoc()) 1741 return false; 1742 if (!ArgLocs[++i].isRegLoc()) 1743 return false; 1744 if (RegVT == MVT::v2f64) { 1745 if (!ArgLocs[++i].isRegLoc()) 1746 return false; 1747 if (!ArgLocs[++i].isRegLoc()) 1748 return false; 1749 } 1750 } else if (!VA.isRegLoc()) { 1751 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags, 1752 MFI, MRI, TII)) 1753 return false; 1754 } 1755 } 1756 } 1757 } 1758 1759 return true; 1760 } 1761 1762 SDValue 1763 ARMTargetLowering::LowerReturn(SDValue Chain, 1764 CallingConv::ID CallConv, bool isVarArg, 1765 const SmallVectorImpl<ISD::OutputArg> &Outs, 1766 const SmallVectorImpl<SDValue> &OutVals, 1767 DebugLoc dl, SelectionDAG &DAG) const { 1768 1769 // CCValAssign - represent the assignment of the return value to a location. 1770 SmallVector<CCValAssign, 16> RVLocs; 1771 1772 // CCState - Info about the registers and stack slots. 1773 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), 1774 getTargetMachine(), RVLocs, *DAG.getContext(), Call); 1775 1776 // Analyze outgoing return values. 1777 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true, 1778 isVarArg)); 1779 1780 // If this is the first return lowered for this function, add 1781 // the regs to the liveout set for the function. 1782 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) { 1783 for (unsigned i = 0; i != RVLocs.size(); ++i) 1784 if (RVLocs[i].isRegLoc()) 1785 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg()); 1786 } 1787 1788 SDValue Flag; 1789 1790 // Copy the result values into the output registers. 1791 for (unsigned i = 0, realRVLocIdx = 0; 1792 i != RVLocs.size(); 1793 ++i, ++realRVLocIdx) { 1794 CCValAssign &VA = RVLocs[i]; 1795 assert(VA.isRegLoc() && "Can only return in registers!"); 1796 1797 SDValue Arg = OutVals[realRVLocIdx]; 1798 1799 switch (VA.getLocInfo()) { 1800 default: llvm_unreachable("Unknown loc info!"); 1801 case CCValAssign::Full: break; 1802 case CCValAssign::BCvt: 1803 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg); 1804 break; 1805 } 1806 1807 if (VA.needsCustom()) { 1808 if (VA.getLocVT() == MVT::v2f64) { 1809 // Extract the first half and return it in two registers. 1810 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1811 DAG.getConstant(0, MVT::i32)); 1812 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl, 1813 DAG.getVTList(MVT::i32, MVT::i32), Half); 1814 1815 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), HalfGPRs, Flag); 1816 Flag = Chain.getValue(1); 1817 VA = RVLocs[++i]; // skip ahead to next loc 1818 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), 1819 HalfGPRs.getValue(1), Flag); 1820 Flag = Chain.getValue(1); 1821 VA = RVLocs[++i]; // skip ahead to next loc 1822 1823 // Extract the 2nd half and fall through to handle it as an f64 value. 1824 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1825 DAG.getConstant(1, MVT::i32)); 1826 } 1827 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is 1828 // available. 1829 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl, 1830 DAG.getVTList(MVT::i32, MVT::i32), &Arg, 1); 1831 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd, Flag); 1832 Flag = Chain.getValue(1); 1833 VA = RVLocs[++i]; // skip ahead to next loc 1834 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), fmrrd.getValue(1), 1835 Flag); 1836 } else 1837 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag); 1838 1839 // Guarantee that all emitted copies are 1840 // stuck together, avoiding something bad. 1841 Flag = Chain.getValue(1); 1842 } 1843 1844 SDValue result; 1845 if (Flag.getNode()) 1846 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain, Flag); 1847 else // Return Void 1848 result = DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, Chain); 1849 1850 return result; 1851 } 1852 1853 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N) const { 1854 if (N->getNumValues() != 1) 1855 return false; 1856 if (!N->hasNUsesOfValue(1, 0)) 1857 return false; 1858 1859 unsigned NumCopies = 0; 1860 SDNode* Copies[2]; 1861 SDNode *Use = *N->use_begin(); 1862 if (Use->getOpcode() == ISD::CopyToReg) { 1863 Copies[NumCopies++] = Use; 1864 } else if (Use->getOpcode() == ARMISD::VMOVRRD) { 1865 // f64 returned in a pair of GPRs. 1866 for (SDNode::use_iterator UI = Use->use_begin(), UE = Use->use_end(); 1867 UI != UE; ++UI) { 1868 if (UI->getOpcode() != ISD::CopyToReg) 1869 return false; 1870 Copies[UI.getUse().getResNo()] = *UI; 1871 ++NumCopies; 1872 } 1873 } else if (Use->getOpcode() == ISD::BITCAST) { 1874 // f32 returned in a single GPR. 1875 if (!Use->hasNUsesOfValue(1, 0)) 1876 return false; 1877 Use = *Use->use_begin(); 1878 if (Use->getOpcode() != ISD::CopyToReg || !Use->hasNUsesOfValue(1, 0)) 1879 return false; 1880 Copies[NumCopies++] = Use; 1881 } else { 1882 return false; 1883 } 1884 1885 if (NumCopies != 1 && NumCopies != 2) 1886 return false; 1887 1888 bool HasRet = false; 1889 for (unsigned i = 0; i < NumCopies; ++i) { 1890 SDNode *Copy = Copies[i]; 1891 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end(); 1892 UI != UE; ++UI) { 1893 if (UI->getOpcode() == ISD::CopyToReg) { 1894 SDNode *Use = *UI; 1895 if (Use == Copies[0] || Use == Copies[1]) 1896 continue; 1897 return false; 1898 } 1899 if (UI->getOpcode() != ARMISD::RET_FLAG) 1900 return false; 1901 HasRet = true; 1902 } 1903 } 1904 1905 return HasRet; 1906 } 1907 1908 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const { 1909 if (!EnableARMTailCalls) 1910 return false; 1911 1912 if (!CI->isTailCall()) 1913 return false; 1914 1915 return !Subtarget->isThumb1Only(); 1916 } 1917 1918 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as 1919 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is 1920 // one of the above mentioned nodes. It has to be wrapped because otherwise 1921 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only 1922 // be used to form addressing mode. These wrapped nodes will be selected 1923 // into MOVi. 1924 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) { 1925 EVT PtrVT = Op.getValueType(); 1926 // FIXME there is no actual debug info here 1927 DebugLoc dl = Op.getDebugLoc(); 1928 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); 1929 SDValue Res; 1930 if (CP->isMachineConstantPoolEntry()) 1931 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT, 1932 CP->getAlignment()); 1933 else 1934 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, 1935 CP->getAlignment()); 1936 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res); 1937 } 1938 1939 unsigned ARMTargetLowering::getJumpTableEncoding() const { 1940 return MachineJumpTableInfo::EK_Inline; 1941 } 1942 1943 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op, 1944 SelectionDAG &DAG) const { 1945 MachineFunction &MF = DAG.getMachineFunction(); 1946 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 1947 unsigned ARMPCLabelIndex = 0; 1948 DebugLoc DL = Op.getDebugLoc(); 1949 EVT PtrVT = getPointerTy(); 1950 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); 1951 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 1952 SDValue CPAddr; 1953 if (RelocM == Reloc::Static) { 1954 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4); 1955 } else { 1956 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8; 1957 ARMPCLabelIndex = AFI->createPICLabelUId(); 1958 ARMConstantPoolValue *CPV = 1959 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex, 1960 ARMCP::CPBlockAddress, PCAdj); 1961 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 1962 } 1963 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr); 1964 SDValue Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr, 1965 MachinePointerInfo::getConstantPool(), 1966 false, false, 0); 1967 if (RelocM == Reloc::Static) 1968 return Result; 1969 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 1970 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel); 1971 } 1972 1973 // Lower ISD::GlobalTLSAddress using the "general dynamic" model 1974 SDValue 1975 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, 1976 SelectionDAG &DAG) const { 1977 DebugLoc dl = GA->getDebugLoc(); 1978 EVT PtrVT = getPointerTy(); 1979 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8; 1980 MachineFunction &MF = DAG.getMachineFunction(); 1981 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 1982 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1983 ARMConstantPoolValue *CPV = 1984 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex, 1985 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true); 1986 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4); 1987 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument); 1988 Argument = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument, 1989 MachinePointerInfo::getConstantPool(), 1990 false, false, 0); 1991 SDValue Chain = Argument.getValue(1); 1992 1993 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 1994 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel); 1995 1996 // call __tls_get_addr. 1997 ArgListTy Args; 1998 ArgListEntry Entry; 1999 Entry.Node = Argument; 2000 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext()); 2001 Args.push_back(Entry); 2002 // FIXME: is there useful debug info available here? 2003 std::pair<SDValue, SDValue> CallResult = 2004 LowerCallTo(Chain, (Type *) Type::getInt32Ty(*DAG.getContext()), 2005 false, false, false, false, 2006 0, CallingConv::C, false, /*isReturnValueUsed=*/true, 2007 DAG.getExternalSymbol("__tls_get_addr", PtrVT), Args, DAG, dl); 2008 return CallResult.first; 2009 } 2010 2011 // Lower ISD::GlobalTLSAddress using the "initial exec" or 2012 // "local exec" model. 2013 SDValue 2014 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA, 2015 SelectionDAG &DAG) const { 2016 const GlobalValue *GV = GA->getGlobal(); 2017 DebugLoc dl = GA->getDebugLoc(); 2018 SDValue Offset; 2019 SDValue Chain = DAG.getEntryNode(); 2020 EVT PtrVT = getPointerTy(); 2021 // Get the Thread Pointer 2022 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT); 2023 2024 if (GV->isDeclaration()) { 2025 MachineFunction &MF = DAG.getMachineFunction(); 2026 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2027 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2028 // Initial exec model. 2029 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8; 2030 ARMConstantPoolValue *CPV = 2031 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex, 2032 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF, 2033 true); 2034 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2035 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset); 2036 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset, 2037 MachinePointerInfo::getConstantPool(), 2038 false, false, 0); 2039 Chain = Offset.getValue(1); 2040 2041 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 2042 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel); 2043 2044 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset, 2045 MachinePointerInfo::getConstantPool(), 2046 false, false, 0); 2047 } else { 2048 // local exec model 2049 ARMConstantPoolValue *CPV = 2050 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF); 2051 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2052 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset); 2053 Offset = DAG.getLoad(PtrVT, dl, Chain, Offset, 2054 MachinePointerInfo::getConstantPool(), 2055 false, false, 0); 2056 } 2057 2058 // The address of the thread local variable is the add of the thread 2059 // pointer with the offset of the variable. 2060 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset); 2061 } 2062 2063 SDValue 2064 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const { 2065 // TODO: implement the "local dynamic" model 2066 assert(Subtarget->isTargetELF() && 2067 "TLS not implemented for non-ELF targets"); 2068 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); 2069 // If the relocation model is PIC, use the "General Dynamic" TLS Model, 2070 // otherwise use the "Local Exec" TLS Model 2071 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) 2072 return LowerToTLSGeneralDynamicModel(GA, DAG); 2073 else 2074 return LowerToTLSExecModels(GA, DAG); 2075 } 2076 2077 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op, 2078 SelectionDAG &DAG) const { 2079 EVT PtrVT = getPointerTy(); 2080 DebugLoc dl = Op.getDebugLoc(); 2081 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); 2082 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2083 if (RelocM == Reloc::PIC_) { 2084 bool UseGOTOFF = GV->hasLocalLinkage() || GV->hasHiddenVisibility(); 2085 ARMConstantPoolValue *CPV = 2086 ARMConstantPoolConstant::Create(GV, 2087 UseGOTOFF ? ARMCP::GOTOFF : ARMCP::GOT); 2088 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2089 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2090 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), 2091 CPAddr, 2092 MachinePointerInfo::getConstantPool(), 2093 false, false, 0); 2094 SDValue Chain = Result.getValue(1); 2095 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(PtrVT); 2096 Result = DAG.getNode(ISD::ADD, dl, PtrVT, Result, GOT); 2097 if (!UseGOTOFF) 2098 Result = DAG.getLoad(PtrVT, dl, Chain, Result, 2099 MachinePointerInfo::getGOT(), false, false, 0); 2100 return Result; 2101 } 2102 2103 // If we have T2 ops, we can materialize the address directly via movt/movw 2104 // pair. This is always cheaper. 2105 if (Subtarget->useMovt()) { 2106 ++NumMovwMovt; 2107 // FIXME: Once remat is capable of dealing with instructions with register 2108 // operands, expand this into two nodes. 2109 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT, 2110 DAG.getTargetGlobalAddress(GV, dl, PtrVT)); 2111 } else { 2112 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4); 2113 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2114 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr, 2115 MachinePointerInfo::getConstantPool(), 2116 false, false, 0); 2117 } 2118 } 2119 2120 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op, 2121 SelectionDAG &DAG) const { 2122 EVT PtrVT = getPointerTy(); 2123 DebugLoc dl = Op.getDebugLoc(); 2124 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); 2125 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2126 MachineFunction &MF = DAG.getMachineFunction(); 2127 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2128 2129 // FIXME: Enable this for static codegen when tool issues are fixed. 2130 if (Subtarget->useMovt() && RelocM != Reloc::Static) { 2131 ++NumMovwMovt; 2132 // FIXME: Once remat is capable of dealing with instructions with register 2133 // operands, expand this into two nodes. 2134 if (RelocM == Reloc::Static) 2135 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT, 2136 DAG.getTargetGlobalAddress(GV, dl, PtrVT)); 2137 2138 unsigned Wrapper = (RelocM == Reloc::PIC_) 2139 ? ARMISD::WrapperPIC : ARMISD::WrapperDYN; 2140 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, 2141 DAG.getTargetGlobalAddress(GV, dl, PtrVT)); 2142 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) 2143 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result, 2144 MachinePointerInfo::getGOT(), false, false, 0); 2145 return Result; 2146 } 2147 2148 unsigned ARMPCLabelIndex = 0; 2149 SDValue CPAddr; 2150 if (RelocM == Reloc::Static) { 2151 CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4); 2152 } else { 2153 ARMPCLabelIndex = AFI->createPICLabelUId(); 2154 unsigned PCAdj = (RelocM != Reloc::PIC_) ? 0 : (Subtarget->isThumb()?4:8); 2155 ARMConstantPoolValue *CPV = 2156 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 2157 PCAdj); 2158 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2159 } 2160 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2161 2162 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr, 2163 MachinePointerInfo::getConstantPool(), 2164 false, false, 0); 2165 SDValue Chain = Result.getValue(1); 2166 2167 if (RelocM == Reloc::PIC_) { 2168 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 2169 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel); 2170 } 2171 2172 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) 2173 Result = DAG.getLoad(PtrVT, dl, Chain, Result, MachinePointerInfo::getGOT(), 2174 false, false, 0); 2175 2176 return Result; 2177 } 2178 2179 SDValue ARMTargetLowering::LowerGLOBAL_OFFSET_TABLE(SDValue Op, 2180 SelectionDAG &DAG) const { 2181 assert(Subtarget->isTargetELF() && 2182 "GLOBAL OFFSET TABLE not implemented for non-ELF targets"); 2183 MachineFunction &MF = DAG.getMachineFunction(); 2184 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2185 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2186 EVT PtrVT = getPointerTy(); 2187 DebugLoc dl = Op.getDebugLoc(); 2188 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8; 2189 ARMConstantPoolValue *CPV = 2190 ARMConstantPoolSymbol::Create(*DAG.getContext(), "_GLOBAL_OFFSET_TABLE_", 2191 ARMPCLabelIndex, PCAdj); 2192 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2193 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2194 SDValue Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr, 2195 MachinePointerInfo::getConstantPool(), 2196 false, false, 0); 2197 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 2198 return DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel); 2199 } 2200 2201 SDValue 2202 ARMTargetLowering::LowerEH_SJLJ_DISPATCHSETUP(SDValue Op, SelectionDAG &DAG) 2203 const { 2204 DebugLoc dl = Op.getDebugLoc(); 2205 return DAG.getNode(ARMISD::EH_SJLJ_DISPATCHSETUP, dl, MVT::Other, 2206 Op.getOperand(0), Op.getOperand(1)); 2207 } 2208 2209 SDValue 2210 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const { 2211 DebugLoc dl = Op.getDebugLoc(); 2212 SDValue Val = DAG.getConstant(0, MVT::i32); 2213 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl, 2214 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0), 2215 Op.getOperand(1), Val); 2216 } 2217 2218 SDValue 2219 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const { 2220 DebugLoc dl = Op.getDebugLoc(); 2221 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0), 2222 Op.getOperand(1), DAG.getConstant(0, MVT::i32)); 2223 } 2224 2225 SDValue 2226 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG, 2227 const ARMSubtarget *Subtarget) const { 2228 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 2229 DebugLoc dl = Op.getDebugLoc(); 2230 switch (IntNo) { 2231 default: return SDValue(); // Don't custom lower most intrinsics. 2232 case Intrinsic::arm_thread_pointer: { 2233 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2234 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT); 2235 } 2236 case Intrinsic::eh_sjlj_lsda: { 2237 MachineFunction &MF = DAG.getMachineFunction(); 2238 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2239 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2240 EVT PtrVT = getPointerTy(); 2241 DebugLoc dl = Op.getDebugLoc(); 2242 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2243 SDValue CPAddr; 2244 unsigned PCAdj = (RelocM != Reloc::PIC_) 2245 ? 0 : (Subtarget->isThumb() ? 4 : 8); 2246 ARMConstantPoolValue *CPV = 2247 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex, 2248 ARMCP::CPLSDA, PCAdj); 2249 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2250 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2251 SDValue Result = 2252 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), CPAddr, 2253 MachinePointerInfo::getConstantPool(), 2254 false, false, 0); 2255 2256 if (RelocM == Reloc::PIC_) { 2257 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, MVT::i32); 2258 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel); 2259 } 2260 return Result; 2261 } 2262 case Intrinsic::arm_neon_vmulls: 2263 case Intrinsic::arm_neon_vmullu: { 2264 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls) 2265 ? ARMISD::VMULLs : ARMISD::VMULLu; 2266 return DAG.getNode(NewOpc, Op.getDebugLoc(), Op.getValueType(), 2267 Op.getOperand(1), Op.getOperand(2)); 2268 } 2269 } 2270 } 2271 2272 static SDValue LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG, 2273 const ARMSubtarget *Subtarget) { 2274 DebugLoc dl = Op.getDebugLoc(); 2275 if (!Subtarget->hasDataBarrier()) { 2276 // Some ARMv6 cpus can support data barriers with an mcr instruction. 2277 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get 2278 // here. 2279 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() && 2280 "Unexpected ISD::MEMBARRIER encountered. Should be libcall!"); 2281 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0), 2282 DAG.getConstant(0, MVT::i32)); 2283 } 2284 2285 SDValue Op5 = Op.getOperand(5); 2286 bool isDeviceBarrier = cast<ConstantSDNode>(Op5)->getZExtValue() != 0; 2287 unsigned isLL = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); 2288 unsigned isLS = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue(); 2289 bool isOnlyStoreBarrier = (isLL == 0 && isLS == 0); 2290 2291 ARM_MB::MemBOpt DMBOpt; 2292 if (isDeviceBarrier) 2293 DMBOpt = isOnlyStoreBarrier ? ARM_MB::ST : ARM_MB::SY; 2294 else 2295 DMBOpt = isOnlyStoreBarrier ? ARM_MB::ISHST : ARM_MB::ISH; 2296 return DAG.getNode(ARMISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0), 2297 DAG.getConstant(DMBOpt, MVT::i32)); 2298 } 2299 2300 2301 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG, 2302 const ARMSubtarget *Subtarget) { 2303 // FIXME: handle "fence singlethread" more efficiently. 2304 DebugLoc dl = Op.getDebugLoc(); 2305 if (!Subtarget->hasDataBarrier()) { 2306 // Some ARMv6 cpus can support data barriers with an mcr instruction. 2307 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get 2308 // here. 2309 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() && 2310 "Unexpected ISD::MEMBARRIER encountered. Should be libcall!"); 2311 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0), 2312 DAG.getConstant(0, MVT::i32)); 2313 } 2314 2315 return DAG.getNode(ARMISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0), 2316 DAG.getConstant(ARM_MB::ISH, MVT::i32)); 2317 } 2318 2319 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG, 2320 const ARMSubtarget *Subtarget) { 2321 // ARM pre v5TE and Thumb1 does not have preload instructions. 2322 if (!(Subtarget->isThumb2() || 2323 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps()))) 2324 // Just preserve the chain. 2325 return Op.getOperand(0); 2326 2327 DebugLoc dl = Op.getDebugLoc(); 2328 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1; 2329 if (!isRead && 2330 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension())) 2331 // ARMv7 with MP extension has PLDW. 2332 return Op.getOperand(0); 2333 2334 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue(); 2335 if (Subtarget->isThumb()) { 2336 // Invert the bits. 2337 isRead = ~isRead & 1; 2338 isData = ~isData & 1; 2339 } 2340 2341 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0), 2342 Op.getOperand(1), DAG.getConstant(isRead, MVT::i32), 2343 DAG.getConstant(isData, MVT::i32)); 2344 } 2345 2346 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) { 2347 MachineFunction &MF = DAG.getMachineFunction(); 2348 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>(); 2349 2350 // vastart just stores the address of the VarArgsFrameIndex slot into the 2351 // memory location argument. 2352 DebugLoc dl = Op.getDebugLoc(); 2353 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2354 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 2355 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 2356 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), 2357 MachinePointerInfo(SV), false, false, 0); 2358 } 2359 2360 SDValue 2361 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA, 2362 SDValue &Root, SelectionDAG &DAG, 2363 DebugLoc dl) const { 2364 MachineFunction &MF = DAG.getMachineFunction(); 2365 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2366 2367 TargetRegisterClass *RC; 2368 if (AFI->isThumb1OnlyFunction()) 2369 RC = ARM::tGPRRegisterClass; 2370 else 2371 RC = ARM::GPRRegisterClass; 2372 2373 // Transform the arguments stored in physical registers into virtual ones. 2374 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 2375 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32); 2376 2377 SDValue ArgValue2; 2378 if (NextVA.isMemLoc()) { 2379 MachineFrameInfo *MFI = MF.getFrameInfo(); 2380 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true); 2381 2382 // Create load node to retrieve arguments from the stack. 2383 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); 2384 ArgValue2 = DAG.getLoad(MVT::i32, dl, Root, FIN, 2385 MachinePointerInfo::getFixedStack(FI), 2386 false, false, 0); 2387 } else { 2388 Reg = MF.addLiveIn(NextVA.getLocReg(), RC); 2389 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32); 2390 } 2391 2392 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2); 2393 } 2394 2395 void 2396 ARMTargetLowering::computeRegArea(CCState &CCInfo, MachineFunction &MF, 2397 unsigned &VARegSize, unsigned &VARegSaveSize) 2398 const { 2399 unsigned NumGPRs; 2400 if (CCInfo.isFirstByValRegValid()) 2401 NumGPRs = ARM::R4 - CCInfo.getFirstByValReg(); 2402 else { 2403 unsigned int firstUnalloced; 2404 firstUnalloced = CCInfo.getFirstUnallocated(GPRArgRegs, 2405 sizeof(GPRArgRegs) / 2406 sizeof(GPRArgRegs[0])); 2407 NumGPRs = (firstUnalloced <= 3) ? (4 - firstUnalloced) : 0; 2408 } 2409 2410 unsigned Align = MF.getTarget().getFrameLowering()->getStackAlignment(); 2411 VARegSize = NumGPRs * 4; 2412 VARegSaveSize = (VARegSize + Align - 1) & ~(Align - 1); 2413 } 2414 2415 // The remaining GPRs hold either the beginning of variable-argument 2416 // data, or the beginning of an aggregate passed by value (usuall 2417 // byval). Either way, we allocate stack slots adjacent to the data 2418 // provided by our caller, and store the unallocated registers there. 2419 // If this is a variadic function, the va_list pointer will begin with 2420 // these values; otherwise, this reassembles a (byval) structure that 2421 // was split between registers and memory. 2422 void 2423 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG, 2424 DebugLoc dl, SDValue &Chain, 2425 unsigned ArgOffset) const { 2426 MachineFunction &MF = DAG.getMachineFunction(); 2427 MachineFrameInfo *MFI = MF.getFrameInfo(); 2428 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2429 unsigned firstRegToSaveIndex; 2430 if (CCInfo.isFirstByValRegValid()) 2431 firstRegToSaveIndex = CCInfo.getFirstByValReg() - ARM::R0; 2432 else { 2433 firstRegToSaveIndex = CCInfo.getFirstUnallocated 2434 (GPRArgRegs, sizeof(GPRArgRegs) / sizeof(GPRArgRegs[0])); 2435 } 2436 2437 unsigned VARegSize, VARegSaveSize; 2438 computeRegArea(CCInfo, MF, VARegSize, VARegSaveSize); 2439 if (VARegSaveSize) { 2440 // If this function is vararg, store any remaining integer argument regs 2441 // to their spots on the stack so that they may be loaded by deferencing 2442 // the result of va_next. 2443 AFI->setVarArgsRegSaveSize(VARegSaveSize); 2444 AFI->setVarArgsFrameIndex(MFI->CreateFixedObject(VARegSaveSize, 2445 ArgOffset + VARegSaveSize 2446 - VARegSize, 2447 false)); 2448 SDValue FIN = DAG.getFrameIndex(AFI->getVarArgsFrameIndex(), 2449 getPointerTy()); 2450 2451 SmallVector<SDValue, 4> MemOps; 2452 for (; firstRegToSaveIndex < 4; ++firstRegToSaveIndex) { 2453 TargetRegisterClass *RC; 2454 if (AFI->isThumb1OnlyFunction()) 2455 RC = ARM::tGPRRegisterClass; 2456 else 2457 RC = ARM::GPRRegisterClass; 2458 2459 unsigned VReg = MF.addLiveIn(GPRArgRegs[firstRegToSaveIndex], RC); 2460 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32); 2461 SDValue Store = 2462 DAG.getStore(Val.getValue(1), dl, Val, FIN, 2463 MachinePointerInfo::getFixedStack(AFI->getVarArgsFrameIndex()), 2464 false, false, 0); 2465 MemOps.push_back(Store); 2466 FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN, 2467 DAG.getConstant(4, getPointerTy())); 2468 } 2469 if (!MemOps.empty()) 2470 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 2471 &MemOps[0], MemOps.size()); 2472 } else 2473 // This will point to the next argument passed via stack. 2474 AFI->setVarArgsFrameIndex(MFI->CreateFixedObject(4, ArgOffset, true)); 2475 } 2476 2477 SDValue 2478 ARMTargetLowering::LowerFormalArguments(SDValue Chain, 2479 CallingConv::ID CallConv, bool isVarArg, 2480 const SmallVectorImpl<ISD::InputArg> 2481 &Ins, 2482 DebugLoc dl, SelectionDAG &DAG, 2483 SmallVectorImpl<SDValue> &InVals) 2484 const { 2485 MachineFunction &MF = DAG.getMachineFunction(); 2486 MachineFrameInfo *MFI = MF.getFrameInfo(); 2487 2488 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2489 2490 // Assign locations to all of the incoming arguments. 2491 SmallVector<CCValAssign, 16> ArgLocs; 2492 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), 2493 getTargetMachine(), ArgLocs, *DAG.getContext(), Prologue); 2494 CCInfo.AnalyzeFormalArguments(Ins, 2495 CCAssignFnForNode(CallConv, /* Return*/ false, 2496 isVarArg)); 2497 2498 SmallVector<SDValue, 16> ArgValues; 2499 int lastInsIndex = -1; 2500 2501 SDValue ArgValue; 2502 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 2503 CCValAssign &VA = ArgLocs[i]; 2504 2505 // Arguments stored in registers. 2506 if (VA.isRegLoc()) { 2507 EVT RegVT = VA.getLocVT(); 2508 2509 if (VA.needsCustom()) { 2510 // f64 and vector types are split up into multiple registers or 2511 // combinations of registers and stack slots. 2512 if (VA.getLocVT() == MVT::v2f64) { 2513 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i], 2514 Chain, DAG, dl); 2515 VA = ArgLocs[++i]; // skip ahead to next loc 2516 SDValue ArgValue2; 2517 if (VA.isMemLoc()) { 2518 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true); 2519 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); 2520 ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN, 2521 MachinePointerInfo::getFixedStack(FI), 2522 false, false, 0); 2523 } else { 2524 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i], 2525 Chain, DAG, dl); 2526 } 2527 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64); 2528 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, 2529 ArgValue, ArgValue1, DAG.getIntPtrConstant(0)); 2530 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, 2531 ArgValue, ArgValue2, DAG.getIntPtrConstant(1)); 2532 } else 2533 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl); 2534 2535 } else { 2536 TargetRegisterClass *RC; 2537 2538 if (RegVT == MVT::f32) 2539 RC = ARM::SPRRegisterClass; 2540 else if (RegVT == MVT::f64) 2541 RC = ARM::DPRRegisterClass; 2542 else if (RegVT == MVT::v2f64) 2543 RC = ARM::QPRRegisterClass; 2544 else if (RegVT == MVT::i32) 2545 RC = (AFI->isThumb1OnlyFunction() ? 2546 ARM::tGPRRegisterClass : ARM::GPRRegisterClass); 2547 else 2548 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering"); 2549 2550 // Transform the arguments in physical registers into virtual ones. 2551 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 2552 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT); 2553 } 2554 2555 // If this is an 8 or 16-bit value, it is really passed promoted 2556 // to 32 bits. Insert an assert[sz]ext to capture this, then 2557 // truncate to the right size. 2558 switch (VA.getLocInfo()) { 2559 default: llvm_unreachable("Unknown loc info!"); 2560 case CCValAssign::Full: break; 2561 case CCValAssign::BCvt: 2562 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue); 2563 break; 2564 case CCValAssign::SExt: 2565 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue, 2566 DAG.getValueType(VA.getValVT())); 2567 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); 2568 break; 2569 case CCValAssign::ZExt: 2570 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue, 2571 DAG.getValueType(VA.getValVT())); 2572 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); 2573 break; 2574 } 2575 2576 InVals.push_back(ArgValue); 2577 2578 } else { // VA.isRegLoc() 2579 2580 // sanity check 2581 assert(VA.isMemLoc()); 2582 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered"); 2583 2584 int index = ArgLocs[i].getValNo(); 2585 2586 // Some Ins[] entries become multiple ArgLoc[] entries. 2587 // Process them only once. 2588 if (index != lastInsIndex) 2589 { 2590 ISD::ArgFlagsTy Flags = Ins[index].Flags; 2591 // FIXME: For now, all byval parameter objects are marked mutable. 2592 // This can be changed with more analysis. 2593 // In case of tail call optimization mark all arguments mutable. 2594 // Since they could be overwritten by lowering of arguments in case of 2595 // a tail call. 2596 if (Flags.isByVal()) { 2597 unsigned VARegSize, VARegSaveSize; 2598 computeRegArea(CCInfo, MF, VARegSize, VARegSaveSize); 2599 VarArgStyleRegisters(CCInfo, DAG, dl, Chain, 0); 2600 unsigned Bytes = Flags.getByValSize() - VARegSize; 2601 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects. 2602 int FI = MFI->CreateFixedObject(Bytes, 2603 VA.getLocMemOffset(), false); 2604 InVals.push_back(DAG.getFrameIndex(FI, getPointerTy())); 2605 } else { 2606 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8, 2607 VA.getLocMemOffset(), true); 2608 2609 // Create load nodes to retrieve arguments from the stack. 2610 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); 2611 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN, 2612 MachinePointerInfo::getFixedStack(FI), 2613 false, false, 0)); 2614 } 2615 lastInsIndex = index; 2616 } 2617 } 2618 } 2619 2620 // varargs 2621 if (isVarArg) 2622 VarArgStyleRegisters(CCInfo, DAG, dl, Chain, CCInfo.getNextStackOffset()); 2623 2624 return Chain; 2625 } 2626 2627 /// isFloatingPointZero - Return true if this is +0.0. 2628 static bool isFloatingPointZero(SDValue Op) { 2629 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) 2630 return CFP->getValueAPF().isPosZero(); 2631 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) { 2632 // Maybe this has already been legalized into the constant pool? 2633 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) { 2634 SDValue WrapperOp = Op.getOperand(1).getOperand(0); 2635 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp)) 2636 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal())) 2637 return CFP->getValueAPF().isPosZero(); 2638 } 2639 } 2640 return false; 2641 } 2642 2643 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for 2644 /// the given operands. 2645 SDValue 2646 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC, 2647 SDValue &ARMcc, SelectionDAG &DAG, 2648 DebugLoc dl) const { 2649 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) { 2650 unsigned C = RHSC->getZExtValue(); 2651 if (!isLegalICmpImmediate(C)) { 2652 // Constant does not fit, try adjusting it by one? 2653 switch (CC) { 2654 default: break; 2655 case ISD::SETLT: 2656 case ISD::SETGE: 2657 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) { 2658 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT; 2659 RHS = DAG.getConstant(C-1, MVT::i32); 2660 } 2661 break; 2662 case ISD::SETULT: 2663 case ISD::SETUGE: 2664 if (C != 0 && isLegalICmpImmediate(C-1)) { 2665 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT; 2666 RHS = DAG.getConstant(C-1, MVT::i32); 2667 } 2668 break; 2669 case ISD::SETLE: 2670 case ISD::SETGT: 2671 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) { 2672 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE; 2673 RHS = DAG.getConstant(C+1, MVT::i32); 2674 } 2675 break; 2676 case ISD::SETULE: 2677 case ISD::SETUGT: 2678 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) { 2679 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE; 2680 RHS = DAG.getConstant(C+1, MVT::i32); 2681 } 2682 break; 2683 } 2684 } 2685 } 2686 2687 ARMCC::CondCodes CondCode = IntCCToARMCC(CC); 2688 ARMISD::NodeType CompareType; 2689 switch (CondCode) { 2690 default: 2691 CompareType = ARMISD::CMP; 2692 break; 2693 case ARMCC::EQ: 2694 case ARMCC::NE: 2695 // Uses only Z Flag 2696 CompareType = ARMISD::CMPZ; 2697 break; 2698 } 2699 ARMcc = DAG.getConstant(CondCode, MVT::i32); 2700 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS); 2701 } 2702 2703 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands. 2704 SDValue 2705 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG, 2706 DebugLoc dl) const { 2707 SDValue Cmp; 2708 if (!isFloatingPointZero(RHS)) 2709 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS); 2710 else 2711 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS); 2712 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp); 2713 } 2714 2715 /// duplicateCmp - Glue values can have only one use, so this function 2716 /// duplicates a comparison node. 2717 SDValue 2718 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const { 2719 unsigned Opc = Cmp.getOpcode(); 2720 DebugLoc DL = Cmp.getDebugLoc(); 2721 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ) 2722 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1)); 2723 2724 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation"); 2725 Cmp = Cmp.getOperand(0); 2726 Opc = Cmp.getOpcode(); 2727 if (Opc == ARMISD::CMPFP) 2728 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1)); 2729 else { 2730 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT"); 2731 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0)); 2732 } 2733 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp); 2734 } 2735 2736 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const { 2737 SDValue Cond = Op.getOperand(0); 2738 SDValue SelectTrue = Op.getOperand(1); 2739 SDValue SelectFalse = Op.getOperand(2); 2740 DebugLoc dl = Op.getDebugLoc(); 2741 2742 // Convert: 2743 // 2744 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond) 2745 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond) 2746 // 2747 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) { 2748 const ConstantSDNode *CMOVTrue = 2749 dyn_cast<ConstantSDNode>(Cond.getOperand(0)); 2750 const ConstantSDNode *CMOVFalse = 2751 dyn_cast<ConstantSDNode>(Cond.getOperand(1)); 2752 2753 if (CMOVTrue && CMOVFalse) { 2754 unsigned CMOVTrueVal = CMOVTrue->getZExtValue(); 2755 unsigned CMOVFalseVal = CMOVFalse->getZExtValue(); 2756 2757 SDValue True; 2758 SDValue False; 2759 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) { 2760 True = SelectTrue; 2761 False = SelectFalse; 2762 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) { 2763 True = SelectFalse; 2764 False = SelectTrue; 2765 } 2766 2767 if (True.getNode() && False.getNode()) { 2768 EVT VT = Op.getValueType(); 2769 SDValue ARMcc = Cond.getOperand(2); 2770 SDValue CCR = Cond.getOperand(3); 2771 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG); 2772 assert(True.getValueType() == VT); 2773 return DAG.getNode(ARMISD::CMOV, dl, VT, True, False, ARMcc, CCR, Cmp); 2774 } 2775 } 2776 } 2777 2778 return DAG.getSelectCC(dl, Cond, 2779 DAG.getConstant(0, Cond.getValueType()), 2780 SelectTrue, SelectFalse, ISD::SETNE); 2781 } 2782 2783 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { 2784 EVT VT = Op.getValueType(); 2785 SDValue LHS = Op.getOperand(0); 2786 SDValue RHS = Op.getOperand(1); 2787 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); 2788 SDValue TrueVal = Op.getOperand(2); 2789 SDValue FalseVal = Op.getOperand(3); 2790 DebugLoc dl = Op.getDebugLoc(); 2791 2792 if (LHS.getValueType() == MVT::i32) { 2793 SDValue ARMcc; 2794 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 2795 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 2796 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR,Cmp); 2797 } 2798 2799 ARMCC::CondCodes CondCode, CondCode2; 2800 FPCCToARMCC(CC, CondCode, CondCode2); 2801 2802 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32); 2803 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl); 2804 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 2805 SDValue Result = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, 2806 ARMcc, CCR, Cmp); 2807 if (CondCode2 != ARMCC::AL) { 2808 SDValue ARMcc2 = DAG.getConstant(CondCode2, MVT::i32); 2809 // FIXME: Needs another CMP because flag can have but one use. 2810 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl); 2811 Result = DAG.getNode(ARMISD::CMOV, dl, VT, 2812 Result, TrueVal, ARMcc2, CCR, Cmp2); 2813 } 2814 return Result; 2815 } 2816 2817 /// canChangeToInt - Given the fp compare operand, return true if it is suitable 2818 /// to morph to an integer compare sequence. 2819 static bool canChangeToInt(SDValue Op, bool &SeenZero, 2820 const ARMSubtarget *Subtarget) { 2821 SDNode *N = Op.getNode(); 2822 if (!N->hasOneUse()) 2823 // Otherwise it requires moving the value from fp to integer registers. 2824 return false; 2825 if (!N->getNumValues()) 2826 return false; 2827 EVT VT = Op.getValueType(); 2828 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow()) 2829 // f32 case is generally profitable. f64 case only makes sense when vcmpe + 2830 // vmrs are very slow, e.g. cortex-a8. 2831 return false; 2832 2833 if (isFloatingPointZero(Op)) { 2834 SeenZero = true; 2835 return true; 2836 } 2837 return ISD::isNormalLoad(N); 2838 } 2839 2840 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) { 2841 if (isFloatingPointZero(Op)) 2842 return DAG.getConstant(0, MVT::i32); 2843 2844 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) 2845 return DAG.getLoad(MVT::i32, Op.getDebugLoc(), 2846 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(), 2847 Ld->isVolatile(), Ld->isNonTemporal(), 2848 Ld->getAlignment()); 2849 2850 llvm_unreachable("Unknown VFP cmp argument!"); 2851 } 2852 2853 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG, 2854 SDValue &RetVal1, SDValue &RetVal2) { 2855 if (isFloatingPointZero(Op)) { 2856 RetVal1 = DAG.getConstant(0, MVT::i32); 2857 RetVal2 = DAG.getConstant(0, MVT::i32); 2858 return; 2859 } 2860 2861 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) { 2862 SDValue Ptr = Ld->getBasePtr(); 2863 RetVal1 = DAG.getLoad(MVT::i32, Op.getDebugLoc(), 2864 Ld->getChain(), Ptr, 2865 Ld->getPointerInfo(), 2866 Ld->isVolatile(), Ld->isNonTemporal(), 2867 Ld->getAlignment()); 2868 2869 EVT PtrType = Ptr.getValueType(); 2870 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4); 2871 SDValue NewPtr = DAG.getNode(ISD::ADD, Op.getDebugLoc(), 2872 PtrType, Ptr, DAG.getConstant(4, PtrType)); 2873 RetVal2 = DAG.getLoad(MVT::i32, Op.getDebugLoc(), 2874 Ld->getChain(), NewPtr, 2875 Ld->getPointerInfo().getWithOffset(4), 2876 Ld->isVolatile(), Ld->isNonTemporal(), 2877 NewAlign); 2878 return; 2879 } 2880 2881 llvm_unreachable("Unknown VFP cmp argument!"); 2882 } 2883 2884 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some 2885 /// f32 and even f64 comparisons to integer ones. 2886 SDValue 2887 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const { 2888 SDValue Chain = Op.getOperand(0); 2889 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); 2890 SDValue LHS = Op.getOperand(2); 2891 SDValue RHS = Op.getOperand(3); 2892 SDValue Dest = Op.getOperand(4); 2893 DebugLoc dl = Op.getDebugLoc(); 2894 2895 bool SeenZero = false; 2896 if (canChangeToInt(LHS, SeenZero, Subtarget) && 2897 canChangeToInt(RHS, SeenZero, Subtarget) && 2898 // If one of the operand is zero, it's safe to ignore the NaN case since 2899 // we only care about equality comparisons. 2900 (SeenZero || (DAG.isKnownNeverNaN(LHS) && DAG.isKnownNeverNaN(RHS)))) { 2901 // If unsafe fp math optimization is enabled and there are no other uses of 2902 // the CMP operands, and the condition code is EQ or NE, we can optimize it 2903 // to an integer comparison. 2904 if (CC == ISD::SETOEQ) 2905 CC = ISD::SETEQ; 2906 else if (CC == ISD::SETUNE) 2907 CC = ISD::SETNE; 2908 2909 SDValue ARMcc; 2910 if (LHS.getValueType() == MVT::f32) { 2911 LHS = bitcastf32Toi32(LHS, DAG); 2912 RHS = bitcastf32Toi32(RHS, DAG); 2913 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 2914 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 2915 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other, 2916 Chain, Dest, ARMcc, CCR, Cmp); 2917 } 2918 2919 SDValue LHS1, LHS2; 2920 SDValue RHS1, RHS2; 2921 expandf64Toi32(LHS, DAG, LHS1, LHS2); 2922 expandf64Toi32(RHS, DAG, RHS1, RHS2); 2923 ARMCC::CondCodes CondCode = IntCCToARMCC(CC); 2924 ARMcc = DAG.getConstant(CondCode, MVT::i32); 2925 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue); 2926 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest }; 2927 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops, 7); 2928 } 2929 2930 return SDValue(); 2931 } 2932 2933 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const { 2934 SDValue Chain = Op.getOperand(0); 2935 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); 2936 SDValue LHS = Op.getOperand(2); 2937 SDValue RHS = Op.getOperand(3); 2938 SDValue Dest = Op.getOperand(4); 2939 DebugLoc dl = Op.getDebugLoc(); 2940 2941 if (LHS.getValueType() == MVT::i32) { 2942 SDValue ARMcc; 2943 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 2944 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 2945 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other, 2946 Chain, Dest, ARMcc, CCR, Cmp); 2947 } 2948 2949 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64); 2950 2951 if (UnsafeFPMath && 2952 (CC == ISD::SETEQ || CC == ISD::SETOEQ || 2953 CC == ISD::SETNE || CC == ISD::SETUNE)) { 2954 SDValue Result = OptimizeVFPBrcond(Op, DAG); 2955 if (Result.getNode()) 2956 return Result; 2957 } 2958 2959 ARMCC::CondCodes CondCode, CondCode2; 2960 FPCCToARMCC(CC, CondCode, CondCode2); 2961 2962 SDValue ARMcc = DAG.getConstant(CondCode, MVT::i32); 2963 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl); 2964 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 2965 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue); 2966 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp }; 2967 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5); 2968 if (CondCode2 != ARMCC::AL) { 2969 ARMcc = DAG.getConstant(CondCode2, MVT::i32); 2970 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) }; 2971 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops, 5); 2972 } 2973 return Res; 2974 } 2975 2976 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const { 2977 SDValue Chain = Op.getOperand(0); 2978 SDValue Table = Op.getOperand(1); 2979 SDValue Index = Op.getOperand(2); 2980 DebugLoc dl = Op.getDebugLoc(); 2981 2982 EVT PTy = getPointerTy(); 2983 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table); 2984 ARMFunctionInfo *AFI = DAG.getMachineFunction().getInfo<ARMFunctionInfo>(); 2985 SDValue UId = DAG.getConstant(AFI->createJumpTableUId(), PTy); 2986 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy); 2987 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI, UId); 2988 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, PTy)); 2989 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table); 2990 if (Subtarget->isThumb2()) { 2991 // Thumb2 uses a two-level jump. That is, it jumps into the jump table 2992 // which does another jump to the destination. This also makes it easier 2993 // to translate it to TBB / TBH later. 2994 // FIXME: This might not work if the function is extremely large. 2995 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain, 2996 Addr, Op.getOperand(2), JTI, UId); 2997 } 2998 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) { 2999 Addr = DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr, 3000 MachinePointerInfo::getJumpTable(), 3001 false, false, 0); 3002 Chain = Addr.getValue(1); 3003 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table); 3004 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId); 3005 } else { 3006 Addr = DAG.getLoad(PTy, dl, Chain, Addr, 3007 MachinePointerInfo::getJumpTable(), false, false, 0); 3008 Chain = Addr.getValue(1); 3009 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI, UId); 3010 } 3011 } 3012 3013 static SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) { 3014 DebugLoc dl = Op.getDebugLoc(); 3015 unsigned Opc; 3016 3017 switch (Op.getOpcode()) { 3018 default: 3019 assert(0 && "Invalid opcode!"); 3020 case ISD::FP_TO_SINT: 3021 Opc = ARMISD::FTOSI; 3022 break; 3023 case ISD::FP_TO_UINT: 3024 Opc = ARMISD::FTOUI; 3025 break; 3026 } 3027 Op = DAG.getNode(Opc, dl, MVT::f32, Op.getOperand(0)); 3028 return DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op); 3029 } 3030 3031 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) { 3032 EVT VT = Op.getValueType(); 3033 DebugLoc dl = Op.getDebugLoc(); 3034 3035 assert(Op.getOperand(0).getValueType() == MVT::v4i16 && 3036 "Invalid type for custom lowering!"); 3037 if (VT != MVT::v4f32) 3038 return DAG.UnrollVectorOp(Op.getNode()); 3039 3040 unsigned CastOpc; 3041 unsigned Opc; 3042 switch (Op.getOpcode()) { 3043 default: 3044 assert(0 && "Invalid opcode!"); 3045 case ISD::SINT_TO_FP: 3046 CastOpc = ISD::SIGN_EXTEND; 3047 Opc = ISD::SINT_TO_FP; 3048 break; 3049 case ISD::UINT_TO_FP: 3050 CastOpc = ISD::ZERO_EXTEND; 3051 Opc = ISD::UINT_TO_FP; 3052 break; 3053 } 3054 3055 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0)); 3056 return DAG.getNode(Opc, dl, VT, Op); 3057 } 3058 3059 static SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) { 3060 EVT VT = Op.getValueType(); 3061 if (VT.isVector()) 3062 return LowerVectorINT_TO_FP(Op, DAG); 3063 3064 DebugLoc dl = Op.getDebugLoc(); 3065 unsigned Opc; 3066 3067 switch (Op.getOpcode()) { 3068 default: 3069 assert(0 && "Invalid opcode!"); 3070 case ISD::SINT_TO_FP: 3071 Opc = ARMISD::SITOF; 3072 break; 3073 case ISD::UINT_TO_FP: 3074 Opc = ARMISD::UITOF; 3075 break; 3076 } 3077 3078 Op = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Op.getOperand(0)); 3079 return DAG.getNode(Opc, dl, VT, Op); 3080 } 3081 3082 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const { 3083 // Implement fcopysign with a fabs and a conditional fneg. 3084 SDValue Tmp0 = Op.getOperand(0); 3085 SDValue Tmp1 = Op.getOperand(1); 3086 DebugLoc dl = Op.getDebugLoc(); 3087 EVT VT = Op.getValueType(); 3088 EVT SrcVT = Tmp1.getValueType(); 3089 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST || 3090 Tmp0.getOpcode() == ARMISD::VMOVDRR; 3091 bool UseNEON = !InGPR && Subtarget->hasNEON(); 3092 3093 if (UseNEON) { 3094 // Use VBSL to copy the sign bit. 3095 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80); 3096 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32, 3097 DAG.getTargetConstant(EncodedVal, MVT::i32)); 3098 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64; 3099 if (VT == MVT::f64) 3100 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT, 3101 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask), 3102 DAG.getConstant(32, MVT::i32)); 3103 else /*if (VT == MVT::f32)*/ 3104 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0); 3105 if (SrcVT == MVT::f32) { 3106 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1); 3107 if (VT == MVT::f64) 3108 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT, 3109 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1), 3110 DAG.getConstant(32, MVT::i32)); 3111 } else if (VT == MVT::f32) 3112 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64, 3113 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1), 3114 DAG.getConstant(32, MVT::i32)); 3115 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0); 3116 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1); 3117 3118 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff), 3119 MVT::i32); 3120 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); 3121 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask, 3122 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); 3123 3124 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT, 3125 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask), 3126 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot)); 3127 if (VT == MVT::f32) { 3128 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res); 3129 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res, 3130 DAG.getConstant(0, MVT::i32)); 3131 } else { 3132 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res); 3133 } 3134 3135 return Res; 3136 } 3137 3138 // Bitcast operand 1 to i32. 3139 if (SrcVT == MVT::f64) 3140 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32), 3141 &Tmp1, 1).getValue(1); 3142 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1); 3143 3144 // Or in the signbit with integer operations. 3145 SDValue Mask1 = DAG.getConstant(0x80000000, MVT::i32); 3146 SDValue Mask2 = DAG.getConstant(0x7fffffff, MVT::i32); 3147 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1); 3148 if (VT == MVT::f32) { 3149 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32, 3150 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2); 3151 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, 3152 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1)); 3153 } 3154 3155 // f64: Or the high part with signbit and then combine two parts. 3156 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32), 3157 &Tmp0, 1); 3158 SDValue Lo = Tmp0.getValue(0); 3159 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2); 3160 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1); 3161 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 3162 } 3163 3164 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{ 3165 MachineFunction &MF = DAG.getMachineFunction(); 3166 MachineFrameInfo *MFI = MF.getFrameInfo(); 3167 MFI->setReturnAddressIsTaken(true); 3168 3169 EVT VT = Op.getValueType(); 3170 DebugLoc dl = Op.getDebugLoc(); 3171 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 3172 if (Depth) { 3173 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); 3174 SDValue Offset = DAG.getConstant(4, MVT::i32); 3175 return DAG.getLoad(VT, dl, DAG.getEntryNode(), 3176 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset), 3177 MachinePointerInfo(), false, false, 0); 3178 } 3179 3180 // Return LR, which contains the return address. Mark it an implicit live-in. 3181 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32)); 3182 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT); 3183 } 3184 3185 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const { 3186 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); 3187 MFI->setFrameAddressIsTaken(true); 3188 3189 EVT VT = Op.getValueType(); 3190 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful 3191 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 3192 unsigned FrameReg = (Subtarget->isThumb() || Subtarget->isTargetDarwin()) 3193 ? ARM::R7 : ARM::R11; 3194 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT); 3195 while (Depth--) 3196 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, 3197 MachinePointerInfo(), 3198 false, false, 0); 3199 return FrameAddr; 3200 } 3201 3202 /// ExpandBITCAST - If the target supports VFP, this function is called to 3203 /// expand a bit convert where either the source or destination type is i64 to 3204 /// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64 3205 /// operand type is illegal (e.g., v2f32 for a target that doesn't support 3206 /// vectors), since the legalizer won't know what to do with that. 3207 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) { 3208 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3209 DebugLoc dl = N->getDebugLoc(); 3210 SDValue Op = N->getOperand(0); 3211 3212 // This function is only supposed to be called for i64 types, either as the 3213 // source or destination of the bit convert. 3214 EVT SrcVT = Op.getValueType(); 3215 EVT DstVT = N->getValueType(0); 3216 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) && 3217 "ExpandBITCAST called for non-i64 type"); 3218 3219 // Turn i64->f64 into VMOVDRR. 3220 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) { 3221 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op, 3222 DAG.getConstant(0, MVT::i32)); 3223 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op, 3224 DAG.getConstant(1, MVT::i32)); 3225 return DAG.getNode(ISD::BITCAST, dl, DstVT, 3226 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi)); 3227 } 3228 3229 // Turn f64->i64 into VMOVRRD. 3230 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) { 3231 SDValue Cvt = DAG.getNode(ARMISD::VMOVRRD, dl, 3232 DAG.getVTList(MVT::i32, MVT::i32), &Op, 1); 3233 // Merge the pieces into a single i64 value. 3234 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1)); 3235 } 3236 3237 return SDValue(); 3238 } 3239 3240 /// getZeroVector - Returns a vector of specified type with all zero elements. 3241 /// Zero vectors are used to represent vector negation and in those cases 3242 /// will be implemented with the NEON VNEG instruction. However, VNEG does 3243 /// not support i64 elements, so sometimes the zero vectors will need to be 3244 /// explicitly constructed. Regardless, use a canonical VMOV to create the 3245 /// zero vector. 3246 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) { 3247 assert(VT.isVector() && "Expected a vector type"); 3248 // The canonical modified immediate encoding of a zero vector is....0! 3249 SDValue EncodedVal = DAG.getTargetConstant(0, MVT::i32); 3250 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32; 3251 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal); 3252 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 3253 } 3254 3255 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two 3256 /// i32 values and take a 2 x i32 value to shift plus a shift amount. 3257 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op, 3258 SelectionDAG &DAG) const { 3259 assert(Op.getNumOperands() == 3 && "Not a double-shift!"); 3260 EVT VT = Op.getValueType(); 3261 unsigned VTBits = VT.getSizeInBits(); 3262 DebugLoc dl = Op.getDebugLoc(); 3263 SDValue ShOpLo = Op.getOperand(0); 3264 SDValue ShOpHi = Op.getOperand(1); 3265 SDValue ShAmt = Op.getOperand(2); 3266 SDValue ARMcc; 3267 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL; 3268 3269 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS); 3270 3271 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, 3272 DAG.getConstant(VTBits, MVT::i32), ShAmt); 3273 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt); 3274 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt, 3275 DAG.getConstant(VTBits, MVT::i32)); 3276 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt); 3277 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); 3278 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt); 3279 3280 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3281 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE, 3282 ARMcc, DAG, dl); 3283 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt); 3284 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, 3285 CCR, Cmp); 3286 3287 SDValue Ops[2] = { Lo, Hi }; 3288 return DAG.getMergeValues(Ops, 2, dl); 3289 } 3290 3291 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two 3292 /// i32 values and take a 2 x i32 value to shift plus a shift amount. 3293 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op, 3294 SelectionDAG &DAG) const { 3295 assert(Op.getNumOperands() == 3 && "Not a double-shift!"); 3296 EVT VT = Op.getValueType(); 3297 unsigned VTBits = VT.getSizeInBits(); 3298 DebugLoc dl = Op.getDebugLoc(); 3299 SDValue ShOpLo = Op.getOperand(0); 3300 SDValue ShOpHi = Op.getOperand(1); 3301 SDValue ShAmt = Op.getOperand(2); 3302 SDValue ARMcc; 3303 3304 assert(Op.getOpcode() == ISD::SHL_PARTS); 3305 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, 3306 DAG.getConstant(VTBits, MVT::i32), ShAmt); 3307 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt); 3308 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt, 3309 DAG.getConstant(VTBits, MVT::i32)); 3310 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt); 3311 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt); 3312 3313 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); 3314 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3315 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, MVT::i32), ISD::SETGE, 3316 ARMcc, DAG, dl); 3317 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt); 3318 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc, 3319 CCR, Cmp); 3320 3321 SDValue Ops[2] = { Lo, Hi }; 3322 return DAG.getMergeValues(Ops, 2, dl); 3323 } 3324 3325 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op, 3326 SelectionDAG &DAG) const { 3327 // The rounding mode is in bits 23:22 of the FPSCR. 3328 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0 3329 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3) 3330 // so that the shift + and get folded into a bitfield extract. 3331 DebugLoc dl = Op.getDebugLoc(); 3332 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32, 3333 DAG.getConstant(Intrinsic::arm_get_fpscr, 3334 MVT::i32)); 3335 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR, 3336 DAG.getConstant(1U << 22, MVT::i32)); 3337 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds, 3338 DAG.getConstant(22, MVT::i32)); 3339 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE, 3340 DAG.getConstant(3, MVT::i32)); 3341 } 3342 3343 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG, 3344 const ARMSubtarget *ST) { 3345 EVT VT = N->getValueType(0); 3346 DebugLoc dl = N->getDebugLoc(); 3347 3348 if (!ST->hasV6T2Ops()) 3349 return SDValue(); 3350 3351 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0)); 3352 return DAG.getNode(ISD::CTLZ, dl, VT, rbit); 3353 } 3354 3355 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG, 3356 const ARMSubtarget *ST) { 3357 EVT VT = N->getValueType(0); 3358 DebugLoc dl = N->getDebugLoc(); 3359 3360 if (!VT.isVector()) 3361 return SDValue(); 3362 3363 // Lower vector shifts on NEON to use VSHL. 3364 assert(ST->hasNEON() && "unexpected vector shift"); 3365 3366 // Left shifts translate directly to the vshiftu intrinsic. 3367 if (N->getOpcode() == ISD::SHL) 3368 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, 3369 DAG.getConstant(Intrinsic::arm_neon_vshiftu, MVT::i32), 3370 N->getOperand(0), N->getOperand(1)); 3371 3372 assert((N->getOpcode() == ISD::SRA || 3373 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode"); 3374 3375 // NEON uses the same intrinsics for both left and right shifts. For 3376 // right shifts, the shift amounts are negative, so negate the vector of 3377 // shift amounts. 3378 EVT ShiftVT = N->getOperand(1).getValueType(); 3379 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT, 3380 getZeroVector(ShiftVT, DAG, dl), 3381 N->getOperand(1)); 3382 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ? 3383 Intrinsic::arm_neon_vshifts : 3384 Intrinsic::arm_neon_vshiftu); 3385 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, 3386 DAG.getConstant(vshiftInt, MVT::i32), 3387 N->getOperand(0), NegatedCount); 3388 } 3389 3390 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG, 3391 const ARMSubtarget *ST) { 3392 EVT VT = N->getValueType(0); 3393 DebugLoc dl = N->getDebugLoc(); 3394 3395 // We can get here for a node like i32 = ISD::SHL i32, i64 3396 if (VT != MVT::i64) 3397 return SDValue(); 3398 3399 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) && 3400 "Unknown shift to lower!"); 3401 3402 // We only lower SRA, SRL of 1 here, all others use generic lowering. 3403 if (!isa<ConstantSDNode>(N->getOperand(1)) || 3404 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1) 3405 return SDValue(); 3406 3407 // If we are in thumb mode, we don't have RRX. 3408 if (ST->isThumb1Only()) return SDValue(); 3409 3410 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr. 3411 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0), 3412 DAG.getConstant(0, MVT::i32)); 3413 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0), 3414 DAG.getConstant(1, MVT::i32)); 3415 3416 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and 3417 // captures the result into a carry flag. 3418 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG; 3419 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), &Hi, 1); 3420 3421 // The low part is an ARMISD::RRX operand, which shifts the carry in. 3422 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1)); 3423 3424 // Merge the pieces into a single i64 value. 3425 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi); 3426 } 3427 3428 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) { 3429 SDValue TmpOp0, TmpOp1; 3430 bool Invert = false; 3431 bool Swap = false; 3432 unsigned Opc = 0; 3433 3434 SDValue Op0 = Op.getOperand(0); 3435 SDValue Op1 = Op.getOperand(1); 3436 SDValue CC = Op.getOperand(2); 3437 EVT VT = Op.getValueType(); 3438 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get(); 3439 DebugLoc dl = Op.getDebugLoc(); 3440 3441 if (Op.getOperand(1).getValueType().isFloatingPoint()) { 3442 switch (SetCCOpcode) { 3443 default: llvm_unreachable("Illegal FP comparison"); break; 3444 case ISD::SETUNE: 3445 case ISD::SETNE: Invert = true; // Fallthrough 3446 case ISD::SETOEQ: 3447 case ISD::SETEQ: Opc = ARMISD::VCEQ; break; 3448 case ISD::SETOLT: 3449 case ISD::SETLT: Swap = true; // Fallthrough 3450 case ISD::SETOGT: 3451 case ISD::SETGT: Opc = ARMISD::VCGT; break; 3452 case ISD::SETOLE: 3453 case ISD::SETLE: Swap = true; // Fallthrough 3454 case ISD::SETOGE: 3455 case ISD::SETGE: Opc = ARMISD::VCGE; break; 3456 case ISD::SETUGE: Swap = true; // Fallthrough 3457 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break; 3458 case ISD::SETUGT: Swap = true; // Fallthrough 3459 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break; 3460 case ISD::SETUEQ: Invert = true; // Fallthrough 3461 case ISD::SETONE: 3462 // Expand this to (OLT | OGT). 3463 TmpOp0 = Op0; 3464 TmpOp1 = Op1; 3465 Opc = ISD::OR; 3466 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0); 3467 Op1 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp0, TmpOp1); 3468 break; 3469 case ISD::SETUO: Invert = true; // Fallthrough 3470 case ISD::SETO: 3471 // Expand this to (OLT | OGE). 3472 TmpOp0 = Op0; 3473 TmpOp1 = Op1; 3474 Opc = ISD::OR; 3475 Op0 = DAG.getNode(ARMISD::VCGT, dl, VT, TmpOp1, TmpOp0); 3476 Op1 = DAG.getNode(ARMISD::VCGE, dl, VT, TmpOp0, TmpOp1); 3477 break; 3478 } 3479 } else { 3480 // Integer comparisons. 3481 switch (SetCCOpcode) { 3482 default: llvm_unreachable("Illegal integer comparison"); break; 3483 case ISD::SETNE: Invert = true; 3484 case ISD::SETEQ: Opc = ARMISD::VCEQ; break; 3485 case ISD::SETLT: Swap = true; 3486 case ISD::SETGT: Opc = ARMISD::VCGT; break; 3487 case ISD::SETLE: Swap = true; 3488 case ISD::SETGE: Opc = ARMISD::VCGE; break; 3489 case ISD::SETULT: Swap = true; 3490 case ISD::SETUGT: Opc = ARMISD::VCGTU; break; 3491 case ISD::SETULE: Swap = true; 3492 case ISD::SETUGE: Opc = ARMISD::VCGEU; break; 3493 } 3494 3495 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero). 3496 if (Opc == ARMISD::VCEQ) { 3497 3498 SDValue AndOp; 3499 if (ISD::isBuildVectorAllZeros(Op1.getNode())) 3500 AndOp = Op0; 3501 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) 3502 AndOp = Op1; 3503 3504 // Ignore bitconvert. 3505 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST) 3506 AndOp = AndOp.getOperand(0); 3507 3508 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) { 3509 Opc = ARMISD::VTST; 3510 Op0 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(0)); 3511 Op1 = DAG.getNode(ISD::BITCAST, dl, VT, AndOp.getOperand(1)); 3512 Invert = !Invert; 3513 } 3514 } 3515 } 3516 3517 if (Swap) 3518 std::swap(Op0, Op1); 3519 3520 // If one of the operands is a constant vector zero, attempt to fold the 3521 // comparison to a specialized compare-against-zero form. 3522 SDValue SingleOp; 3523 if (ISD::isBuildVectorAllZeros(Op1.getNode())) 3524 SingleOp = Op0; 3525 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) { 3526 if (Opc == ARMISD::VCGE) 3527 Opc = ARMISD::VCLEZ; 3528 else if (Opc == ARMISD::VCGT) 3529 Opc = ARMISD::VCLTZ; 3530 SingleOp = Op1; 3531 } 3532 3533 SDValue Result; 3534 if (SingleOp.getNode()) { 3535 switch (Opc) { 3536 case ARMISD::VCEQ: 3537 Result = DAG.getNode(ARMISD::VCEQZ, dl, VT, SingleOp); break; 3538 case ARMISD::VCGE: 3539 Result = DAG.getNode(ARMISD::VCGEZ, dl, VT, SingleOp); break; 3540 case ARMISD::VCLEZ: 3541 Result = DAG.getNode(ARMISD::VCLEZ, dl, VT, SingleOp); break; 3542 case ARMISD::VCGT: 3543 Result = DAG.getNode(ARMISD::VCGTZ, dl, VT, SingleOp); break; 3544 case ARMISD::VCLTZ: 3545 Result = DAG.getNode(ARMISD::VCLTZ, dl, VT, SingleOp); break; 3546 default: 3547 Result = DAG.getNode(Opc, dl, VT, Op0, Op1); 3548 } 3549 } else { 3550 Result = DAG.getNode(Opc, dl, VT, Op0, Op1); 3551 } 3552 3553 if (Invert) 3554 Result = DAG.getNOT(dl, Result, VT); 3555 3556 return Result; 3557 } 3558 3559 /// isNEONModifiedImm - Check if the specified splat value corresponds to a 3560 /// valid vector constant for a NEON instruction with a "modified immediate" 3561 /// operand (e.g., VMOV). If so, return the encoded value. 3562 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, 3563 unsigned SplatBitSize, SelectionDAG &DAG, 3564 EVT &VT, bool is128Bits, NEONModImmType type) { 3565 unsigned OpCmode, Imm; 3566 3567 // SplatBitSize is set to the smallest size that splats the vector, so a 3568 // zero vector will always have SplatBitSize == 8. However, NEON modified 3569 // immediate instructions others than VMOV do not support the 8-bit encoding 3570 // of a zero vector, and the default encoding of zero is supposed to be the 3571 // 32-bit version. 3572 if (SplatBits == 0) 3573 SplatBitSize = 32; 3574 3575 switch (SplatBitSize) { 3576 case 8: 3577 if (type != VMOVModImm) 3578 return SDValue(); 3579 // Any 1-byte value is OK. Op=0, Cmode=1110. 3580 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big"); 3581 OpCmode = 0xe; 3582 Imm = SplatBits; 3583 VT = is128Bits ? MVT::v16i8 : MVT::v8i8; 3584 break; 3585 3586 case 16: 3587 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero. 3588 VT = is128Bits ? MVT::v8i16 : MVT::v4i16; 3589 if ((SplatBits & ~0xff) == 0) { 3590 // Value = 0x00nn: Op=x, Cmode=100x. 3591 OpCmode = 0x8; 3592 Imm = SplatBits; 3593 break; 3594 } 3595 if ((SplatBits & ~0xff00) == 0) { 3596 // Value = 0xnn00: Op=x, Cmode=101x. 3597 OpCmode = 0xa; 3598 Imm = SplatBits >> 8; 3599 break; 3600 } 3601 return SDValue(); 3602 3603 case 32: 3604 // NEON's 32-bit VMOV supports splat values where: 3605 // * only one byte is nonzero, or 3606 // * the least significant byte is 0xff and the second byte is nonzero, or 3607 // * the least significant 2 bytes are 0xff and the third is nonzero. 3608 VT = is128Bits ? MVT::v4i32 : MVT::v2i32; 3609 if ((SplatBits & ~0xff) == 0) { 3610 // Value = 0x000000nn: Op=x, Cmode=000x. 3611 OpCmode = 0; 3612 Imm = SplatBits; 3613 break; 3614 } 3615 if ((SplatBits & ~0xff00) == 0) { 3616 // Value = 0x0000nn00: Op=x, Cmode=001x. 3617 OpCmode = 0x2; 3618 Imm = SplatBits >> 8; 3619 break; 3620 } 3621 if ((SplatBits & ~0xff0000) == 0) { 3622 // Value = 0x00nn0000: Op=x, Cmode=010x. 3623 OpCmode = 0x4; 3624 Imm = SplatBits >> 16; 3625 break; 3626 } 3627 if ((SplatBits & ~0xff000000) == 0) { 3628 // Value = 0xnn000000: Op=x, Cmode=011x. 3629 OpCmode = 0x6; 3630 Imm = SplatBits >> 24; 3631 break; 3632 } 3633 3634 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC 3635 if (type == OtherModImm) return SDValue(); 3636 3637 if ((SplatBits & ~0xffff) == 0 && 3638 ((SplatBits | SplatUndef) & 0xff) == 0xff) { 3639 // Value = 0x0000nnff: Op=x, Cmode=1100. 3640 OpCmode = 0xc; 3641 Imm = SplatBits >> 8; 3642 SplatBits |= 0xff; 3643 break; 3644 } 3645 3646 if ((SplatBits & ~0xffffff) == 0 && 3647 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) { 3648 // Value = 0x00nnffff: Op=x, Cmode=1101. 3649 OpCmode = 0xd; 3650 Imm = SplatBits >> 16; 3651 SplatBits |= 0xffff; 3652 break; 3653 } 3654 3655 // Note: there are a few 32-bit splat values (specifically: 00ffff00, 3656 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not 3657 // VMOV.I32. A (very) minor optimization would be to replicate the value 3658 // and fall through here to test for a valid 64-bit splat. But, then the 3659 // caller would also need to check and handle the change in size. 3660 return SDValue(); 3661 3662 case 64: { 3663 if (type != VMOVModImm) 3664 return SDValue(); 3665 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff. 3666 uint64_t BitMask = 0xff; 3667 uint64_t Val = 0; 3668 unsigned ImmMask = 1; 3669 Imm = 0; 3670 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) { 3671 if (((SplatBits | SplatUndef) & BitMask) == BitMask) { 3672 Val |= BitMask; 3673 Imm |= ImmMask; 3674 } else if ((SplatBits & BitMask) != 0) { 3675 return SDValue(); 3676 } 3677 BitMask <<= 8; 3678 ImmMask <<= 1; 3679 } 3680 // Op=1, Cmode=1110. 3681 OpCmode = 0x1e; 3682 SplatBits = Val; 3683 VT = is128Bits ? MVT::v2i64 : MVT::v1i64; 3684 break; 3685 } 3686 3687 default: 3688 llvm_unreachable("unexpected size for isNEONModifiedImm"); 3689 return SDValue(); 3690 } 3691 3692 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm); 3693 return DAG.getTargetConstant(EncodedVal, MVT::i32); 3694 } 3695 3696 static bool isVEXTMask(const SmallVectorImpl<int> &M, EVT VT, 3697 bool &ReverseVEXT, unsigned &Imm) { 3698 unsigned NumElts = VT.getVectorNumElements(); 3699 ReverseVEXT = false; 3700 3701 // Assume that the first shuffle index is not UNDEF. Fail if it is. 3702 if (M[0] < 0) 3703 return false; 3704 3705 Imm = M[0]; 3706 3707 // If this is a VEXT shuffle, the immediate value is the index of the first 3708 // element. The other shuffle indices must be the successive elements after 3709 // the first one. 3710 unsigned ExpectedElt = Imm; 3711 for (unsigned i = 1; i < NumElts; ++i) { 3712 // Increment the expected index. If it wraps around, it may still be 3713 // a VEXT but the source vectors must be swapped. 3714 ExpectedElt += 1; 3715 if (ExpectedElt == NumElts * 2) { 3716 ExpectedElt = 0; 3717 ReverseVEXT = true; 3718 } 3719 3720 if (M[i] < 0) continue; // ignore UNDEF indices 3721 if (ExpectedElt != static_cast<unsigned>(M[i])) 3722 return false; 3723 } 3724 3725 // Adjust the index value if the source operands will be swapped. 3726 if (ReverseVEXT) 3727 Imm -= NumElts; 3728 3729 return true; 3730 } 3731 3732 /// isVREVMask - Check if a vector shuffle corresponds to a VREV 3733 /// instruction with the specified blocksize. (The order of the elements 3734 /// within each block of the vector is reversed.) 3735 static bool isVREVMask(const SmallVectorImpl<int> &M, EVT VT, 3736 unsigned BlockSize) { 3737 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) && 3738 "Only possible block sizes for VREV are: 16, 32, 64"); 3739 3740 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3741 if (EltSz == 64) 3742 return false; 3743 3744 unsigned NumElts = VT.getVectorNumElements(); 3745 unsigned BlockElts = M[0] + 1; 3746 // If the first shuffle index is UNDEF, be optimistic. 3747 if (M[0] < 0) 3748 BlockElts = BlockSize / EltSz; 3749 3750 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz) 3751 return false; 3752 3753 for (unsigned i = 0; i < NumElts; ++i) { 3754 if (M[i] < 0) continue; // ignore UNDEF indices 3755 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts)) 3756 return false; 3757 } 3758 3759 return true; 3760 } 3761 3762 static bool isVTBLMask(const SmallVectorImpl<int> &M, EVT VT) { 3763 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of 3764 // range, then 0 is placed into the resulting vector. So pretty much any mask 3765 // of 8 elements can work here. 3766 return VT == MVT::v8i8 && M.size() == 8; 3767 } 3768 3769 static bool isVTRNMask(const SmallVectorImpl<int> &M, EVT VT, 3770 unsigned &WhichResult) { 3771 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3772 if (EltSz == 64) 3773 return false; 3774 3775 unsigned NumElts = VT.getVectorNumElements(); 3776 WhichResult = (M[0] == 0 ? 0 : 1); 3777 for (unsigned i = 0; i < NumElts; i += 2) { 3778 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) || 3779 (M[i+1] >= 0 && (unsigned) M[i+1] != i + NumElts + WhichResult)) 3780 return false; 3781 } 3782 return true; 3783 } 3784 3785 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of 3786 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 3787 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>. 3788 static bool isVTRN_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT, 3789 unsigned &WhichResult) { 3790 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3791 if (EltSz == 64) 3792 return false; 3793 3794 unsigned NumElts = VT.getVectorNumElements(); 3795 WhichResult = (M[0] == 0 ? 0 : 1); 3796 for (unsigned i = 0; i < NumElts; i += 2) { 3797 if ((M[i] >= 0 && (unsigned) M[i] != i + WhichResult) || 3798 (M[i+1] >= 0 && (unsigned) M[i+1] != i + WhichResult)) 3799 return false; 3800 } 3801 return true; 3802 } 3803 3804 static bool isVUZPMask(const SmallVectorImpl<int> &M, EVT VT, 3805 unsigned &WhichResult) { 3806 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3807 if (EltSz == 64) 3808 return false; 3809 3810 unsigned NumElts = VT.getVectorNumElements(); 3811 WhichResult = (M[0] == 0 ? 0 : 1); 3812 for (unsigned i = 0; i != NumElts; ++i) { 3813 if (M[i] < 0) continue; // ignore UNDEF indices 3814 if ((unsigned) M[i] != 2 * i + WhichResult) 3815 return false; 3816 } 3817 3818 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 3819 if (VT.is64BitVector() && EltSz == 32) 3820 return false; 3821 3822 return true; 3823 } 3824 3825 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of 3826 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 3827 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>, 3828 static bool isVUZP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT, 3829 unsigned &WhichResult) { 3830 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3831 if (EltSz == 64) 3832 return false; 3833 3834 unsigned Half = VT.getVectorNumElements() / 2; 3835 WhichResult = (M[0] == 0 ? 0 : 1); 3836 for (unsigned j = 0; j != 2; ++j) { 3837 unsigned Idx = WhichResult; 3838 for (unsigned i = 0; i != Half; ++i) { 3839 int MIdx = M[i + j * Half]; 3840 if (MIdx >= 0 && (unsigned) MIdx != Idx) 3841 return false; 3842 Idx += 2; 3843 } 3844 } 3845 3846 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 3847 if (VT.is64BitVector() && EltSz == 32) 3848 return false; 3849 3850 return true; 3851 } 3852 3853 static bool isVZIPMask(const SmallVectorImpl<int> &M, EVT VT, 3854 unsigned &WhichResult) { 3855 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3856 if (EltSz == 64) 3857 return false; 3858 3859 unsigned NumElts = VT.getVectorNumElements(); 3860 WhichResult = (M[0] == 0 ? 0 : 1); 3861 unsigned Idx = WhichResult * NumElts / 2; 3862 for (unsigned i = 0; i != NumElts; i += 2) { 3863 if ((M[i] >= 0 && (unsigned) M[i] != Idx) || 3864 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx + NumElts)) 3865 return false; 3866 Idx += 1; 3867 } 3868 3869 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 3870 if (VT.is64BitVector() && EltSz == 32) 3871 return false; 3872 3873 return true; 3874 } 3875 3876 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of 3877 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 3878 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>. 3879 static bool isVZIP_v_undef_Mask(const SmallVectorImpl<int> &M, EVT VT, 3880 unsigned &WhichResult) { 3881 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 3882 if (EltSz == 64) 3883 return false; 3884 3885 unsigned NumElts = VT.getVectorNumElements(); 3886 WhichResult = (M[0] == 0 ? 0 : 1); 3887 unsigned Idx = WhichResult * NumElts / 2; 3888 for (unsigned i = 0; i != NumElts; i += 2) { 3889 if ((M[i] >= 0 && (unsigned) M[i] != Idx) || 3890 (M[i+1] >= 0 && (unsigned) M[i+1] != Idx)) 3891 return false; 3892 Idx += 1; 3893 } 3894 3895 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 3896 if (VT.is64BitVector() && EltSz == 32) 3897 return false; 3898 3899 return true; 3900 } 3901 3902 // If N is an integer constant that can be moved into a register in one 3903 // instruction, return an SDValue of such a constant (will become a MOV 3904 // instruction). Otherwise return null. 3905 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG, 3906 const ARMSubtarget *ST, DebugLoc dl) { 3907 uint64_t Val; 3908 if (!isa<ConstantSDNode>(N)) 3909 return SDValue(); 3910 Val = cast<ConstantSDNode>(N)->getZExtValue(); 3911 3912 if (ST->isThumb1Only()) { 3913 if (Val <= 255 || ~Val <= 255) 3914 return DAG.getConstant(Val, MVT::i32); 3915 } else { 3916 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1) 3917 return DAG.getConstant(Val, MVT::i32); 3918 } 3919 return SDValue(); 3920 } 3921 3922 // If this is a case we can't handle, return null and let the default 3923 // expansion code take care of it. 3924 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG, 3925 const ARMSubtarget *ST) const { 3926 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode()); 3927 DebugLoc dl = Op.getDebugLoc(); 3928 EVT VT = Op.getValueType(); 3929 3930 APInt SplatBits, SplatUndef; 3931 unsigned SplatBitSize; 3932 bool HasAnyUndefs; 3933 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 3934 if (SplatBitSize <= 64) { 3935 // Check if an immediate VMOV works. 3936 EVT VmovVT; 3937 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(), 3938 SplatUndef.getZExtValue(), SplatBitSize, 3939 DAG, VmovVT, VT.is128BitVector(), 3940 VMOVModImm); 3941 if (Val.getNode()) { 3942 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val); 3943 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 3944 } 3945 3946 // Try an immediate VMVN. 3947 uint64_t NegatedImm = (~SplatBits).getZExtValue(); 3948 Val = isNEONModifiedImm(NegatedImm, 3949 SplatUndef.getZExtValue(), SplatBitSize, 3950 DAG, VmovVT, VT.is128BitVector(), 3951 VMVNModImm); 3952 if (Val.getNode()) { 3953 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val); 3954 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 3955 } 3956 } 3957 } 3958 3959 // Scan through the operands to see if only one value is used. 3960 unsigned NumElts = VT.getVectorNumElements(); 3961 bool isOnlyLowElement = true; 3962 bool usesOnlyOneValue = true; 3963 bool isConstant = true; 3964 SDValue Value; 3965 for (unsigned i = 0; i < NumElts; ++i) { 3966 SDValue V = Op.getOperand(i); 3967 if (V.getOpcode() == ISD::UNDEF) 3968 continue; 3969 if (i > 0) 3970 isOnlyLowElement = false; 3971 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V)) 3972 isConstant = false; 3973 3974 if (!Value.getNode()) 3975 Value = V; 3976 else if (V != Value) 3977 usesOnlyOneValue = false; 3978 } 3979 3980 if (!Value.getNode()) 3981 return DAG.getUNDEF(VT); 3982 3983 if (isOnlyLowElement) 3984 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value); 3985 3986 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 3987 3988 // Use VDUP for non-constant splats. For f32 constant splats, reduce to 3989 // i32 and try again. 3990 if (usesOnlyOneValue && EltSize <= 32) { 3991 if (!isConstant) 3992 return DAG.getNode(ARMISD::VDUP, dl, VT, Value); 3993 if (VT.getVectorElementType().isFloatingPoint()) { 3994 SmallVector<SDValue, 8> Ops; 3995 for (unsigned i = 0; i < NumElts; ++i) 3996 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32, 3997 Op.getOperand(i))); 3998 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts); 3999 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], NumElts); 4000 Val = LowerBUILD_VECTOR(Val, DAG, ST); 4001 if (Val.getNode()) 4002 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 4003 } 4004 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl); 4005 if (Val.getNode()) 4006 return DAG.getNode(ARMISD::VDUP, dl, VT, Val); 4007 } 4008 4009 // If all elements are constants and the case above didn't get hit, fall back 4010 // to the default expansion, which will generate a load from the constant 4011 // pool. 4012 if (isConstant) 4013 return SDValue(); 4014 4015 // Empirical tests suggest this is rarely worth it for vectors of length <= 2. 4016 if (NumElts >= 4) { 4017 SDValue shuffle = ReconstructShuffle(Op, DAG); 4018 if (shuffle != SDValue()) 4019 return shuffle; 4020 } 4021 4022 // Vectors with 32- or 64-bit elements can be built by directly assigning 4023 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands 4024 // will be legalized. 4025 if (EltSize >= 32) { 4026 // Do the expansion with floating-point types, since that is what the VFP 4027 // registers are defined to use, and since i64 is not legal. 4028 EVT EltVT = EVT::getFloatingPointVT(EltSize); 4029 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts); 4030 SmallVector<SDValue, 8> Ops; 4031 for (unsigned i = 0; i < NumElts; ++i) 4032 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i))); 4033 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts); 4034 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 4035 } 4036 4037 return SDValue(); 4038 } 4039 4040 // Gather data to see if the operation can be modelled as a 4041 // shuffle in combination with VEXTs. 4042 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op, 4043 SelectionDAG &DAG) const { 4044 DebugLoc dl = Op.getDebugLoc(); 4045 EVT VT = Op.getValueType(); 4046 unsigned NumElts = VT.getVectorNumElements(); 4047 4048 SmallVector<SDValue, 2> SourceVecs; 4049 SmallVector<unsigned, 2> MinElts; 4050 SmallVector<unsigned, 2> MaxElts; 4051 4052 for (unsigned i = 0; i < NumElts; ++i) { 4053 SDValue V = Op.getOperand(i); 4054 if (V.getOpcode() == ISD::UNDEF) 4055 continue; 4056 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) { 4057 // A shuffle can only come from building a vector from various 4058 // elements of other vectors. 4059 return SDValue(); 4060 } else if (V.getOperand(0).getValueType().getVectorElementType() != 4061 VT.getVectorElementType()) { 4062 // This code doesn't know how to handle shuffles where the vector 4063 // element types do not match (this happens because type legalization 4064 // promotes the return type of EXTRACT_VECTOR_ELT). 4065 // FIXME: It might be appropriate to extend this code to handle 4066 // mismatched types. 4067 return SDValue(); 4068 } 4069 4070 // Record this extraction against the appropriate vector if possible... 4071 SDValue SourceVec = V.getOperand(0); 4072 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue(); 4073 bool FoundSource = false; 4074 for (unsigned j = 0; j < SourceVecs.size(); ++j) { 4075 if (SourceVecs[j] == SourceVec) { 4076 if (MinElts[j] > EltNo) 4077 MinElts[j] = EltNo; 4078 if (MaxElts[j] < EltNo) 4079 MaxElts[j] = EltNo; 4080 FoundSource = true; 4081 break; 4082 } 4083 } 4084 4085 // Or record a new source if not... 4086 if (!FoundSource) { 4087 SourceVecs.push_back(SourceVec); 4088 MinElts.push_back(EltNo); 4089 MaxElts.push_back(EltNo); 4090 } 4091 } 4092 4093 // Currently only do something sane when at most two source vectors 4094 // involved. 4095 if (SourceVecs.size() > 2) 4096 return SDValue(); 4097 4098 SDValue ShuffleSrcs[2] = {DAG.getUNDEF(VT), DAG.getUNDEF(VT) }; 4099 int VEXTOffsets[2] = {0, 0}; 4100 4101 // This loop extracts the usage patterns of the source vectors 4102 // and prepares appropriate SDValues for a shuffle if possible. 4103 for (unsigned i = 0; i < SourceVecs.size(); ++i) { 4104 if (SourceVecs[i].getValueType() == VT) { 4105 // No VEXT necessary 4106 ShuffleSrcs[i] = SourceVecs[i]; 4107 VEXTOffsets[i] = 0; 4108 continue; 4109 } else if (SourceVecs[i].getValueType().getVectorNumElements() < NumElts) { 4110 // It probably isn't worth padding out a smaller vector just to 4111 // break it down again in a shuffle. 4112 return SDValue(); 4113 } 4114 4115 // Since only 64-bit and 128-bit vectors are legal on ARM and 4116 // we've eliminated the other cases... 4117 assert(SourceVecs[i].getValueType().getVectorNumElements() == 2*NumElts && 4118 "unexpected vector sizes in ReconstructShuffle"); 4119 4120 if (MaxElts[i] - MinElts[i] >= NumElts) { 4121 // Span too large for a VEXT to cope 4122 return SDValue(); 4123 } 4124 4125 if (MinElts[i] >= NumElts) { 4126 // The extraction can just take the second half 4127 VEXTOffsets[i] = NumElts; 4128 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, 4129 SourceVecs[i], 4130 DAG.getIntPtrConstant(NumElts)); 4131 } else if (MaxElts[i] < NumElts) { 4132 // The extraction can just take the first half 4133 VEXTOffsets[i] = 0; 4134 ShuffleSrcs[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, 4135 SourceVecs[i], 4136 DAG.getIntPtrConstant(0)); 4137 } else { 4138 // An actual VEXT is needed 4139 VEXTOffsets[i] = MinElts[i]; 4140 SDValue VEXTSrc1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, 4141 SourceVecs[i], 4142 DAG.getIntPtrConstant(0)); 4143 SDValue VEXTSrc2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, 4144 SourceVecs[i], 4145 DAG.getIntPtrConstant(NumElts)); 4146 ShuffleSrcs[i] = DAG.getNode(ARMISD::VEXT, dl, VT, VEXTSrc1, VEXTSrc2, 4147 DAG.getConstant(VEXTOffsets[i], MVT::i32)); 4148 } 4149 } 4150 4151 SmallVector<int, 8> Mask; 4152 4153 for (unsigned i = 0; i < NumElts; ++i) { 4154 SDValue Entry = Op.getOperand(i); 4155 if (Entry.getOpcode() == ISD::UNDEF) { 4156 Mask.push_back(-1); 4157 continue; 4158 } 4159 4160 SDValue ExtractVec = Entry.getOperand(0); 4161 int ExtractElt = cast<ConstantSDNode>(Op.getOperand(i) 4162 .getOperand(1))->getSExtValue(); 4163 if (ExtractVec == SourceVecs[0]) { 4164 Mask.push_back(ExtractElt - VEXTOffsets[0]); 4165 } else { 4166 Mask.push_back(ExtractElt + NumElts - VEXTOffsets[1]); 4167 } 4168 } 4169 4170 // Final check before we try to produce nonsense... 4171 if (isShuffleMaskLegal(Mask, VT)) 4172 return DAG.getVectorShuffle(VT, dl, ShuffleSrcs[0], ShuffleSrcs[1], 4173 &Mask[0]); 4174 4175 return SDValue(); 4176 } 4177 4178 /// isShuffleMaskLegal - Targets can use this to indicate that they only 4179 /// support *some* VECTOR_SHUFFLE operations, those with specific masks. 4180 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values 4181 /// are assumed to be legal. 4182 bool 4183 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M, 4184 EVT VT) const { 4185 if (VT.getVectorNumElements() == 4 && 4186 (VT.is128BitVector() || VT.is64BitVector())) { 4187 unsigned PFIndexes[4]; 4188 for (unsigned i = 0; i != 4; ++i) { 4189 if (M[i] < 0) 4190 PFIndexes[i] = 8; 4191 else 4192 PFIndexes[i] = M[i]; 4193 } 4194 4195 // Compute the index in the perfect shuffle table. 4196 unsigned PFTableIndex = 4197 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 4198 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 4199 unsigned Cost = (PFEntry >> 30); 4200 4201 if (Cost <= 4) 4202 return true; 4203 } 4204 4205 bool ReverseVEXT; 4206 unsigned Imm, WhichResult; 4207 4208 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 4209 return (EltSize >= 32 || 4210 ShuffleVectorSDNode::isSplatMask(&M[0], VT) || 4211 isVREVMask(M, VT, 64) || 4212 isVREVMask(M, VT, 32) || 4213 isVREVMask(M, VT, 16) || 4214 isVEXTMask(M, VT, ReverseVEXT, Imm) || 4215 isVTBLMask(M, VT) || 4216 isVTRNMask(M, VT, WhichResult) || 4217 isVUZPMask(M, VT, WhichResult) || 4218 isVZIPMask(M, VT, WhichResult) || 4219 isVTRN_v_undef_Mask(M, VT, WhichResult) || 4220 isVUZP_v_undef_Mask(M, VT, WhichResult) || 4221 isVZIP_v_undef_Mask(M, VT, WhichResult)); 4222 } 4223 4224 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit 4225 /// the specified operations to build the shuffle. 4226 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS, 4227 SDValue RHS, SelectionDAG &DAG, 4228 DebugLoc dl) { 4229 unsigned OpNum = (PFEntry >> 26) & 0x0F; 4230 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1); 4231 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1); 4232 4233 enum { 4234 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3> 4235 OP_VREV, 4236 OP_VDUP0, 4237 OP_VDUP1, 4238 OP_VDUP2, 4239 OP_VDUP3, 4240 OP_VEXT1, 4241 OP_VEXT2, 4242 OP_VEXT3, 4243 OP_VUZPL, // VUZP, left result 4244 OP_VUZPR, // VUZP, right result 4245 OP_VZIPL, // VZIP, left result 4246 OP_VZIPR, // VZIP, right result 4247 OP_VTRNL, // VTRN, left result 4248 OP_VTRNR // VTRN, right result 4249 }; 4250 4251 if (OpNum == OP_COPY) { 4252 if (LHSID == (1*9+2)*9+3) return LHS; 4253 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!"); 4254 return RHS; 4255 } 4256 4257 SDValue OpLHS, OpRHS; 4258 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl); 4259 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl); 4260 EVT VT = OpLHS.getValueType(); 4261 4262 switch (OpNum) { 4263 default: llvm_unreachable("Unknown shuffle opcode!"); 4264 case OP_VREV: 4265 // VREV divides the vector in half and swaps within the half. 4266 if (VT.getVectorElementType() == MVT::i32 || 4267 VT.getVectorElementType() == MVT::f32) 4268 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS); 4269 // vrev <4 x i16> -> VREV32 4270 if (VT.getVectorElementType() == MVT::i16) 4271 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS); 4272 // vrev <4 x i8> -> VREV16 4273 assert(VT.getVectorElementType() == MVT::i8); 4274 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS); 4275 case OP_VDUP0: 4276 case OP_VDUP1: 4277 case OP_VDUP2: 4278 case OP_VDUP3: 4279 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, 4280 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, MVT::i32)); 4281 case OP_VEXT1: 4282 case OP_VEXT2: 4283 case OP_VEXT3: 4284 return DAG.getNode(ARMISD::VEXT, dl, VT, 4285 OpLHS, OpRHS, 4286 DAG.getConstant(OpNum-OP_VEXT1+1, MVT::i32)); 4287 case OP_VUZPL: 4288 case OP_VUZPR: 4289 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT), 4290 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL); 4291 case OP_VZIPL: 4292 case OP_VZIPR: 4293 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT), 4294 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL); 4295 case OP_VTRNL: 4296 case OP_VTRNR: 4297 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT), 4298 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL); 4299 } 4300 } 4301 4302 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op, 4303 SmallVectorImpl<int> &ShuffleMask, 4304 SelectionDAG &DAG) { 4305 // Check to see if we can use the VTBL instruction. 4306 SDValue V1 = Op.getOperand(0); 4307 SDValue V2 = Op.getOperand(1); 4308 DebugLoc DL = Op.getDebugLoc(); 4309 4310 SmallVector<SDValue, 8> VTBLMask; 4311 for (SmallVectorImpl<int>::iterator 4312 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I) 4313 VTBLMask.push_back(DAG.getConstant(*I, MVT::i32)); 4314 4315 if (V2.getNode()->getOpcode() == ISD::UNDEF) 4316 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1, 4317 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, 4318 &VTBLMask[0], 8)); 4319 4320 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2, 4321 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, 4322 &VTBLMask[0], 8)); 4323 } 4324 4325 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) { 4326 SDValue V1 = Op.getOperand(0); 4327 SDValue V2 = Op.getOperand(1); 4328 DebugLoc dl = Op.getDebugLoc(); 4329 EVT VT = Op.getValueType(); 4330 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode()); 4331 SmallVector<int, 8> ShuffleMask; 4332 4333 // Convert shuffles that are directly supported on NEON to target-specific 4334 // DAG nodes, instead of keeping them as shuffles and matching them again 4335 // during code selection. This is more efficient and avoids the possibility 4336 // of inconsistencies between legalization and selection. 4337 // FIXME: floating-point vectors should be canonicalized to integer vectors 4338 // of the same time so that they get CSEd properly. 4339 SVN->getMask(ShuffleMask); 4340 4341 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 4342 if (EltSize <= 32) { 4343 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) { 4344 int Lane = SVN->getSplatIndex(); 4345 // If this is undef splat, generate it via "just" vdup, if possible. 4346 if (Lane == -1) Lane = 0; 4347 4348 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) { 4349 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0)); 4350 } 4351 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1, 4352 DAG.getConstant(Lane, MVT::i32)); 4353 } 4354 4355 bool ReverseVEXT; 4356 unsigned Imm; 4357 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) { 4358 if (ReverseVEXT) 4359 std::swap(V1, V2); 4360 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2, 4361 DAG.getConstant(Imm, MVT::i32)); 4362 } 4363 4364 if (isVREVMask(ShuffleMask, VT, 64)) 4365 return DAG.getNode(ARMISD::VREV64, dl, VT, V1); 4366 if (isVREVMask(ShuffleMask, VT, 32)) 4367 return DAG.getNode(ARMISD::VREV32, dl, VT, V1); 4368 if (isVREVMask(ShuffleMask, VT, 16)) 4369 return DAG.getNode(ARMISD::VREV16, dl, VT, V1); 4370 4371 // Check for Neon shuffles that modify both input vectors in place. 4372 // If both results are used, i.e., if there are two shuffles with the same 4373 // source operands and with masks corresponding to both results of one of 4374 // these operations, DAG memoization will ensure that a single node is 4375 // used for both shuffles. 4376 unsigned WhichResult; 4377 if (isVTRNMask(ShuffleMask, VT, WhichResult)) 4378 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT), 4379 V1, V2).getValue(WhichResult); 4380 if (isVUZPMask(ShuffleMask, VT, WhichResult)) 4381 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT), 4382 V1, V2).getValue(WhichResult); 4383 if (isVZIPMask(ShuffleMask, VT, WhichResult)) 4384 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT), 4385 V1, V2).getValue(WhichResult); 4386 4387 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) 4388 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT), 4389 V1, V1).getValue(WhichResult); 4390 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) 4391 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT), 4392 V1, V1).getValue(WhichResult); 4393 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) 4394 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT), 4395 V1, V1).getValue(WhichResult); 4396 } 4397 4398 // If the shuffle is not directly supported and it has 4 elements, use 4399 // the PerfectShuffle-generated table to synthesize it from other shuffles. 4400 unsigned NumElts = VT.getVectorNumElements(); 4401 if (NumElts == 4) { 4402 unsigned PFIndexes[4]; 4403 for (unsigned i = 0; i != 4; ++i) { 4404 if (ShuffleMask[i] < 0) 4405 PFIndexes[i] = 8; 4406 else 4407 PFIndexes[i] = ShuffleMask[i]; 4408 } 4409 4410 // Compute the index in the perfect shuffle table. 4411 unsigned PFTableIndex = 4412 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 4413 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 4414 unsigned Cost = (PFEntry >> 30); 4415 4416 if (Cost <= 4) 4417 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl); 4418 } 4419 4420 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs. 4421 if (EltSize >= 32) { 4422 // Do the expansion with floating-point types, since that is what the VFP 4423 // registers are defined to use, and since i64 is not legal. 4424 EVT EltVT = EVT::getFloatingPointVT(EltSize); 4425 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts); 4426 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1); 4427 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2); 4428 SmallVector<SDValue, 8> Ops; 4429 for (unsigned i = 0; i < NumElts; ++i) { 4430 if (ShuffleMask[i] < 0) 4431 Ops.push_back(DAG.getUNDEF(EltVT)); 4432 else 4433 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, 4434 ShuffleMask[i] < (int)NumElts ? V1 : V2, 4435 DAG.getConstant(ShuffleMask[i] & (NumElts-1), 4436 MVT::i32))); 4437 } 4438 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, &Ops[0],NumElts); 4439 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 4440 } 4441 4442 if (VT == MVT::v8i8) { 4443 SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG); 4444 if (NewOp.getNode()) 4445 return NewOp; 4446 } 4447 4448 return SDValue(); 4449 } 4450 4451 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) { 4452 // EXTRACT_VECTOR_ELT is legal only for immediate indexes. 4453 SDValue Lane = Op.getOperand(1); 4454 if (!isa<ConstantSDNode>(Lane)) 4455 return SDValue(); 4456 4457 SDValue Vec = Op.getOperand(0); 4458 if (Op.getValueType() == MVT::i32 && 4459 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) { 4460 DebugLoc dl = Op.getDebugLoc(); 4461 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane); 4462 } 4463 4464 return Op; 4465 } 4466 4467 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) { 4468 // The only time a CONCAT_VECTORS operation can have legal types is when 4469 // two 64-bit vectors are concatenated to a 128-bit vector. 4470 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 && 4471 "unexpected CONCAT_VECTORS"); 4472 DebugLoc dl = Op.getDebugLoc(); 4473 SDValue Val = DAG.getUNDEF(MVT::v2f64); 4474 SDValue Op0 = Op.getOperand(0); 4475 SDValue Op1 = Op.getOperand(1); 4476 if (Op0.getOpcode() != ISD::UNDEF) 4477 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val, 4478 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0), 4479 DAG.getIntPtrConstant(0)); 4480 if (Op1.getOpcode() != ISD::UNDEF) 4481 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val, 4482 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1), 4483 DAG.getIntPtrConstant(1)); 4484 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val); 4485 } 4486 4487 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each 4488 /// element has been zero/sign-extended, depending on the isSigned parameter, 4489 /// from an integer type half its size. 4490 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG, 4491 bool isSigned) { 4492 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32. 4493 EVT VT = N->getValueType(0); 4494 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) { 4495 SDNode *BVN = N->getOperand(0).getNode(); 4496 if (BVN->getValueType(0) != MVT::v4i32 || 4497 BVN->getOpcode() != ISD::BUILD_VECTOR) 4498 return false; 4499 unsigned LoElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0; 4500 unsigned HiElt = 1 - LoElt; 4501 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt)); 4502 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt)); 4503 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2)); 4504 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2)); 4505 if (!Lo0 || !Hi0 || !Lo1 || !Hi1) 4506 return false; 4507 if (isSigned) { 4508 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 && 4509 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32) 4510 return true; 4511 } else { 4512 if (Hi0->isNullValue() && Hi1->isNullValue()) 4513 return true; 4514 } 4515 return false; 4516 } 4517 4518 if (N->getOpcode() != ISD::BUILD_VECTOR) 4519 return false; 4520 4521 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 4522 SDNode *Elt = N->getOperand(i).getNode(); 4523 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) { 4524 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 4525 unsigned HalfSize = EltSize / 2; 4526 if (isSigned) { 4527 int64_t SExtVal = C->getSExtValue(); 4528 if ((SExtVal >> HalfSize) != (SExtVal >> EltSize)) 4529 return false; 4530 } else { 4531 if ((C->getZExtValue() >> HalfSize) != 0) 4532 return false; 4533 } 4534 continue; 4535 } 4536 return false; 4537 } 4538 4539 return true; 4540 } 4541 4542 /// isSignExtended - Check if a node is a vector value that is sign-extended 4543 /// or a constant BUILD_VECTOR with sign-extended elements. 4544 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) { 4545 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N)) 4546 return true; 4547 if (isExtendedBUILD_VECTOR(N, DAG, true)) 4548 return true; 4549 return false; 4550 } 4551 4552 /// isZeroExtended - Check if a node is a vector value that is zero-extended 4553 /// or a constant BUILD_VECTOR with zero-extended elements. 4554 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) { 4555 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N)) 4556 return true; 4557 if (isExtendedBUILD_VECTOR(N, DAG, false)) 4558 return true; 4559 return false; 4560 } 4561 4562 /// SkipExtension - For a node that is a SIGN_EXTEND, ZERO_EXTEND, extending 4563 /// load, or BUILD_VECTOR with extended elements, return the unextended value. 4564 static SDValue SkipExtension(SDNode *N, SelectionDAG &DAG) { 4565 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND) 4566 return N->getOperand(0); 4567 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) 4568 return DAG.getLoad(LD->getMemoryVT(), N->getDebugLoc(), LD->getChain(), 4569 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(), 4570 LD->isNonTemporal(), LD->getAlignment()); 4571 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will 4572 // have been legalized as a BITCAST from v4i32. 4573 if (N->getOpcode() == ISD::BITCAST) { 4574 SDNode *BVN = N->getOperand(0).getNode(); 4575 assert(BVN->getOpcode() == ISD::BUILD_VECTOR && 4576 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR"); 4577 unsigned LowElt = DAG.getTargetLoweringInfo().isBigEndian() ? 1 : 0; 4578 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), MVT::v2i32, 4579 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2)); 4580 } 4581 // Construct a new BUILD_VECTOR with elements truncated to half the size. 4582 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR"); 4583 EVT VT = N->getValueType(0); 4584 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2; 4585 unsigned NumElts = VT.getVectorNumElements(); 4586 MVT TruncVT = MVT::getIntegerVT(EltSize); 4587 SmallVector<SDValue, 8> Ops; 4588 for (unsigned i = 0; i != NumElts; ++i) { 4589 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i)); 4590 const APInt &CInt = C->getAPIntValue(); 4591 Ops.push_back(DAG.getConstant(CInt.trunc(EltSize), TruncVT)); 4592 } 4593 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), 4594 MVT::getVectorVT(TruncVT, NumElts), Ops.data(), NumElts); 4595 } 4596 4597 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) { 4598 unsigned Opcode = N->getOpcode(); 4599 if (Opcode == ISD::ADD || Opcode == ISD::SUB) { 4600 SDNode *N0 = N->getOperand(0).getNode(); 4601 SDNode *N1 = N->getOperand(1).getNode(); 4602 return N0->hasOneUse() && N1->hasOneUse() && 4603 isSignExtended(N0, DAG) && isSignExtended(N1, DAG); 4604 } 4605 return false; 4606 } 4607 4608 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) { 4609 unsigned Opcode = N->getOpcode(); 4610 if (Opcode == ISD::ADD || Opcode == ISD::SUB) { 4611 SDNode *N0 = N->getOperand(0).getNode(); 4612 SDNode *N1 = N->getOperand(1).getNode(); 4613 return N0->hasOneUse() && N1->hasOneUse() && 4614 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG); 4615 } 4616 return false; 4617 } 4618 4619 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) { 4620 // Multiplications are only custom-lowered for 128-bit vectors so that 4621 // VMULL can be detected. Otherwise v2i64 multiplications are not legal. 4622 EVT VT = Op.getValueType(); 4623 assert(VT.is128BitVector() && "unexpected type for custom-lowering ISD::MUL"); 4624 SDNode *N0 = Op.getOperand(0).getNode(); 4625 SDNode *N1 = Op.getOperand(1).getNode(); 4626 unsigned NewOpc = 0; 4627 bool isMLA = false; 4628 bool isN0SExt = isSignExtended(N0, DAG); 4629 bool isN1SExt = isSignExtended(N1, DAG); 4630 if (isN0SExt && isN1SExt) 4631 NewOpc = ARMISD::VMULLs; 4632 else { 4633 bool isN0ZExt = isZeroExtended(N0, DAG); 4634 bool isN1ZExt = isZeroExtended(N1, DAG); 4635 if (isN0ZExt && isN1ZExt) 4636 NewOpc = ARMISD::VMULLu; 4637 else if (isN1SExt || isN1ZExt) { 4638 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these 4639 // into (s/zext A * s/zext C) + (s/zext B * s/zext C) 4640 if (isN1SExt && isAddSubSExt(N0, DAG)) { 4641 NewOpc = ARMISD::VMULLs; 4642 isMLA = true; 4643 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) { 4644 NewOpc = ARMISD::VMULLu; 4645 isMLA = true; 4646 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) { 4647 std::swap(N0, N1); 4648 NewOpc = ARMISD::VMULLu; 4649 isMLA = true; 4650 } 4651 } 4652 4653 if (!NewOpc) { 4654 if (VT == MVT::v2i64) 4655 // Fall through to expand this. It is not legal. 4656 return SDValue(); 4657 else 4658 // Other vector multiplications are legal. 4659 return Op; 4660 } 4661 } 4662 4663 // Legalize to a VMULL instruction. 4664 DebugLoc DL = Op.getDebugLoc(); 4665 SDValue Op0; 4666 SDValue Op1 = SkipExtension(N1, DAG); 4667 if (!isMLA) { 4668 Op0 = SkipExtension(N0, DAG); 4669 assert(Op0.getValueType().is64BitVector() && 4670 Op1.getValueType().is64BitVector() && 4671 "unexpected types for extended operands to VMULL"); 4672 return DAG.getNode(NewOpc, DL, VT, Op0, Op1); 4673 } 4674 4675 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during 4676 // isel lowering to take advantage of no-stall back to back vmul + vmla. 4677 // vmull q0, d4, d6 4678 // vmlal q0, d5, d6 4679 // is faster than 4680 // vaddl q0, d4, d5 4681 // vmovl q1, d6 4682 // vmul q0, q0, q1 4683 SDValue N00 = SkipExtension(N0->getOperand(0).getNode(), DAG); 4684 SDValue N01 = SkipExtension(N0->getOperand(1).getNode(), DAG); 4685 EVT Op1VT = Op1.getValueType(); 4686 return DAG.getNode(N0->getOpcode(), DL, VT, 4687 DAG.getNode(NewOpc, DL, VT, 4688 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1), 4689 DAG.getNode(NewOpc, DL, VT, 4690 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1)); 4691 } 4692 4693 static SDValue 4694 LowerSDIV_v4i8(SDValue X, SDValue Y, DebugLoc dl, SelectionDAG &DAG) { 4695 // Convert to float 4696 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo)); 4697 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo)); 4698 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X); 4699 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y); 4700 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X); 4701 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y); 4702 // Get reciprocal estimate. 4703 // float4 recip = vrecpeq_f32(yf); 4704 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4705 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), Y); 4706 // Because char has a smaller range than uchar, we can actually get away 4707 // without any newton steps. This requires that we use a weird bias 4708 // of 0xb000, however (again, this has been exhaustively tested). 4709 // float4 result = as_float4(as_int4(xf*recip) + 0xb000); 4710 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y); 4711 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X); 4712 Y = DAG.getConstant(0xb000, MVT::i32); 4713 Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y); 4714 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y); 4715 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X); 4716 // Convert back to short. 4717 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X); 4718 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X); 4719 return X; 4720 } 4721 4722 static SDValue 4723 LowerSDIV_v4i16(SDValue N0, SDValue N1, DebugLoc dl, SelectionDAG &DAG) { 4724 SDValue N2; 4725 // Convert to float. 4726 // float4 yf = vcvt_f32_s32(vmovl_s16(y)); 4727 // float4 xf = vcvt_f32_s32(vmovl_s16(x)); 4728 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0); 4729 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1); 4730 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0); 4731 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1); 4732 4733 // Use reciprocal estimate and one refinement step. 4734 // float4 recip = vrecpeq_f32(yf); 4735 // recip *= vrecpsq_f32(yf, recip); 4736 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4737 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), N1); 4738 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4739 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32), 4740 N1, N2); 4741 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 4742 // Because short has a smaller range than ushort, we can actually get away 4743 // with only a single newton step. This requires that we use a weird bias 4744 // of 89, however (again, this has been exhaustively tested). 4745 // float4 result = as_float4(as_int4(xf*recip) + 0x89); 4746 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2); 4747 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0); 4748 N1 = DAG.getConstant(0x89, MVT::i32); 4749 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1); 4750 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1); 4751 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0); 4752 // Convert back to integer and return. 4753 // return vmovn_s32(vcvt_s32_f32(result)); 4754 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0); 4755 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0); 4756 return N0; 4757 } 4758 4759 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) { 4760 EVT VT = Op.getValueType(); 4761 assert((VT == MVT::v4i16 || VT == MVT::v8i8) && 4762 "unexpected type for custom-lowering ISD::SDIV"); 4763 4764 DebugLoc dl = Op.getDebugLoc(); 4765 SDValue N0 = Op.getOperand(0); 4766 SDValue N1 = Op.getOperand(1); 4767 SDValue N2, N3; 4768 4769 if (VT == MVT::v8i8) { 4770 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0); 4771 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1); 4772 4773 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 4774 DAG.getIntPtrConstant(4)); 4775 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 4776 DAG.getIntPtrConstant(4)); 4777 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 4778 DAG.getIntPtrConstant(0)); 4779 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 4780 DAG.getIntPtrConstant(0)); 4781 4782 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16 4783 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16 4784 4785 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2); 4786 N0 = LowerCONCAT_VECTORS(N0, DAG); 4787 4788 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0); 4789 return N0; 4790 } 4791 return LowerSDIV_v4i16(N0, N1, dl, DAG); 4792 } 4793 4794 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) { 4795 EVT VT = Op.getValueType(); 4796 assert((VT == MVT::v4i16 || VT == MVT::v8i8) && 4797 "unexpected type for custom-lowering ISD::UDIV"); 4798 4799 DebugLoc dl = Op.getDebugLoc(); 4800 SDValue N0 = Op.getOperand(0); 4801 SDValue N1 = Op.getOperand(1); 4802 SDValue N2, N3; 4803 4804 if (VT == MVT::v8i8) { 4805 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0); 4806 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1); 4807 4808 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 4809 DAG.getIntPtrConstant(4)); 4810 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 4811 DAG.getIntPtrConstant(4)); 4812 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 4813 DAG.getIntPtrConstant(0)); 4814 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 4815 DAG.getIntPtrConstant(0)); 4816 4817 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16 4818 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16 4819 4820 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2); 4821 N0 = LowerCONCAT_VECTORS(N0, DAG); 4822 4823 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8, 4824 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, MVT::i32), 4825 N0); 4826 return N0; 4827 } 4828 4829 // v4i16 sdiv ... Convert to float. 4830 // float4 yf = vcvt_f32_s32(vmovl_u16(y)); 4831 // float4 xf = vcvt_f32_s32(vmovl_u16(x)); 4832 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0); 4833 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1); 4834 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0); 4835 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1); 4836 4837 // Use reciprocal estimate and two refinement steps. 4838 // float4 recip = vrecpeq_f32(yf); 4839 // recip *= vrecpsq_f32(yf, recip); 4840 // recip *= vrecpsq_f32(yf, recip); 4841 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4842 DAG.getConstant(Intrinsic::arm_neon_vrecpe, MVT::i32), BN1); 4843 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4844 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32), 4845 BN1, N2); 4846 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 4847 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 4848 DAG.getConstant(Intrinsic::arm_neon_vrecps, MVT::i32), 4849 BN1, N2); 4850 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 4851 // Simply multiplying by the reciprocal estimate can leave us a few ulps 4852 // too low, so we add 2 ulps (exhaustive testing shows that this is enough, 4853 // and that it will never cause us to return an answer too large). 4854 // float4 result = as_float4(as_int4(xf*recip) + 2); 4855 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2); 4856 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0); 4857 N1 = DAG.getConstant(2, MVT::i32); 4858 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1); 4859 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1); 4860 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0); 4861 // Convert back to integer and return. 4862 // return vmovn_u32(vcvt_s32_f32(result)); 4863 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0); 4864 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0); 4865 return N0; 4866 } 4867 4868 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) { 4869 EVT VT = Op.getNode()->getValueType(0); 4870 SDVTList VTs = DAG.getVTList(VT, MVT::i32); 4871 4872 unsigned Opc; 4873 bool ExtraOp = false; 4874 switch (Op.getOpcode()) { 4875 default: assert(0 && "Invalid code"); 4876 case ISD::ADDC: Opc = ARMISD::ADDC; break; 4877 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break; 4878 case ISD::SUBC: Opc = ARMISD::SUBC; break; 4879 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break; 4880 } 4881 4882 if (!ExtraOp) 4883 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0), 4884 Op.getOperand(1)); 4885 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0), 4886 Op.getOperand(1), Op.getOperand(2)); 4887 } 4888 4889 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) { 4890 // Monotonic load/store is legal for all targets 4891 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic) 4892 return Op; 4893 4894 // Aquire/Release load/store is not legal for targets without a 4895 // dmb or equivalent available. 4896 return SDValue(); 4897 } 4898 4899 4900 static void 4901 ReplaceATOMIC_OP_64(SDNode *Node, SmallVectorImpl<SDValue>& Results, 4902 SelectionDAG &DAG, unsigned NewOp) { 4903 DebugLoc dl = Node->getDebugLoc(); 4904 assert (Node->getValueType(0) == MVT::i64 && 4905 "Only know how to expand i64 atomics"); 4906 4907 SmallVector<SDValue, 6> Ops; 4908 Ops.push_back(Node->getOperand(0)); // Chain 4909 Ops.push_back(Node->getOperand(1)); // Ptr 4910 // Low part of Val1 4911 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, 4912 Node->getOperand(2), DAG.getIntPtrConstant(0))); 4913 // High part of Val1 4914 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, 4915 Node->getOperand(2), DAG.getIntPtrConstant(1))); 4916 if (NewOp == ARMISD::ATOMCMPXCHG64_DAG) { 4917 // High part of Val1 4918 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, 4919 Node->getOperand(3), DAG.getIntPtrConstant(0))); 4920 // High part of Val2 4921 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, 4922 Node->getOperand(3), DAG.getIntPtrConstant(1))); 4923 } 4924 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); 4925 SDValue Result = 4926 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops.data(), Ops.size(), MVT::i64, 4927 cast<MemSDNode>(Node)->getMemOperand()); 4928 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1) }; 4929 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2)); 4930 Results.push_back(Result.getValue(2)); 4931 } 4932 4933 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 4934 switch (Op.getOpcode()) { 4935 default: llvm_unreachable("Don't know how to custom lower this!"); 4936 case ISD::ConstantPool: return LowerConstantPool(Op, DAG); 4937 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); 4938 case ISD::GlobalAddress: 4939 return Subtarget->isTargetDarwin() ? LowerGlobalAddressDarwin(Op, DAG) : 4940 LowerGlobalAddressELF(Op, DAG); 4941 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); 4942 case ISD::SELECT: return LowerSELECT(Op, DAG); 4943 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); 4944 case ISD::BR_CC: return LowerBR_CC(Op, DAG); 4945 case ISD::BR_JT: return LowerBR_JT(Op, DAG); 4946 case ISD::VASTART: return LowerVASTART(Op, DAG); 4947 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op, DAG, Subtarget); 4948 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget); 4949 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget); 4950 case ISD::SINT_TO_FP: 4951 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG); 4952 case ISD::FP_TO_SINT: 4953 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG); 4954 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG); 4955 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); 4956 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); 4957 case ISD::GLOBAL_OFFSET_TABLE: return LowerGLOBAL_OFFSET_TABLE(Op, DAG); 4958 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG); 4959 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG); 4960 case ISD::EH_SJLJ_DISPATCHSETUP: return LowerEH_SJLJ_DISPATCHSETUP(Op, DAG); 4961 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG, 4962 Subtarget); 4963 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG); 4964 case ISD::SHL: 4965 case ISD::SRL: 4966 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget); 4967 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG); 4968 case ISD::SRL_PARTS: 4969 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG); 4970 case ISD::CTTZ: return LowerCTTZ(Op.getNode(), DAG, Subtarget); 4971 case ISD::SETCC: return LowerVSETCC(Op, DAG); 4972 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget); 4973 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); 4974 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); 4975 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG); 4976 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); 4977 case ISD::MUL: return LowerMUL(Op, DAG); 4978 case ISD::SDIV: return LowerSDIV(Op, DAG); 4979 case ISD::UDIV: return LowerUDIV(Op, DAG); 4980 case ISD::ADDC: 4981 case ISD::ADDE: 4982 case ISD::SUBC: 4983 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG); 4984 case ISD::ATOMIC_LOAD: 4985 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG); 4986 } 4987 return SDValue(); 4988 } 4989 4990 /// ReplaceNodeResults - Replace the results of node with an illegal result 4991 /// type with new values built out of custom code. 4992 void ARMTargetLowering::ReplaceNodeResults(SDNode *N, 4993 SmallVectorImpl<SDValue>&Results, 4994 SelectionDAG &DAG) const { 4995 SDValue Res; 4996 switch (N->getOpcode()) { 4997 default: 4998 llvm_unreachable("Don't know how to custom expand this!"); 4999 break; 5000 case ISD::BITCAST: 5001 Res = ExpandBITCAST(N, DAG); 5002 break; 5003 case ISD::SRL: 5004 case ISD::SRA: 5005 Res = Expand64BitShift(N, DAG, Subtarget); 5006 break; 5007 case ISD::ATOMIC_LOAD_ADD: 5008 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMADD64_DAG); 5009 return; 5010 case ISD::ATOMIC_LOAD_AND: 5011 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMAND64_DAG); 5012 return; 5013 case ISD::ATOMIC_LOAD_NAND: 5014 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMNAND64_DAG); 5015 return; 5016 case ISD::ATOMIC_LOAD_OR: 5017 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMOR64_DAG); 5018 return; 5019 case ISD::ATOMIC_LOAD_SUB: 5020 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMSUB64_DAG); 5021 return; 5022 case ISD::ATOMIC_LOAD_XOR: 5023 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMXOR64_DAG); 5024 return; 5025 case ISD::ATOMIC_SWAP: 5026 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMSWAP64_DAG); 5027 return; 5028 case ISD::ATOMIC_CMP_SWAP: 5029 ReplaceATOMIC_OP_64(N, Results, DAG, ARMISD::ATOMCMPXCHG64_DAG); 5030 return; 5031 } 5032 if (Res.getNode()) 5033 Results.push_back(Res); 5034 } 5035 5036 //===----------------------------------------------------------------------===// 5037 // ARM Scheduler Hooks 5038 //===----------------------------------------------------------------------===// 5039 5040 MachineBasicBlock * 5041 ARMTargetLowering::EmitAtomicCmpSwap(MachineInstr *MI, 5042 MachineBasicBlock *BB, 5043 unsigned Size) const { 5044 unsigned dest = MI->getOperand(0).getReg(); 5045 unsigned ptr = MI->getOperand(1).getReg(); 5046 unsigned oldval = MI->getOperand(2).getReg(); 5047 unsigned newval = MI->getOperand(3).getReg(); 5048 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5049 DebugLoc dl = MI->getDebugLoc(); 5050 bool isThumb2 = Subtarget->isThumb2(); 5051 5052 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); 5053 unsigned scratch = 5054 MRI.createVirtualRegister(isThumb2 ? ARM::rGPRRegisterClass 5055 : ARM::GPRRegisterClass); 5056 5057 if (isThumb2) { 5058 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass); 5059 MRI.constrainRegClass(oldval, ARM::rGPRRegisterClass); 5060 MRI.constrainRegClass(newval, ARM::rGPRRegisterClass); 5061 } 5062 5063 unsigned ldrOpc, strOpc; 5064 switch (Size) { 5065 default: llvm_unreachable("unsupported size for AtomicCmpSwap!"); 5066 case 1: 5067 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB; 5068 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB; 5069 break; 5070 case 2: 5071 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH; 5072 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH; 5073 break; 5074 case 4: 5075 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX; 5076 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX; 5077 break; 5078 } 5079 5080 MachineFunction *MF = BB->getParent(); 5081 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 5082 MachineFunction::iterator It = BB; 5083 ++It; // insert the new blocks after the current block 5084 5085 MachineBasicBlock *loop1MBB = MF->CreateMachineBasicBlock(LLVM_BB); 5086 MachineBasicBlock *loop2MBB = MF->CreateMachineBasicBlock(LLVM_BB); 5087 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5088 MF->insert(It, loop1MBB); 5089 MF->insert(It, loop2MBB); 5090 MF->insert(It, exitMBB); 5091 5092 // Transfer the remainder of BB and its successor edges to exitMBB. 5093 exitMBB->splice(exitMBB->begin(), BB, 5094 llvm::next(MachineBasicBlock::iterator(MI)), 5095 BB->end()); 5096 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 5097 5098 // thisMBB: 5099 // ... 5100 // fallthrough --> loop1MBB 5101 BB->addSuccessor(loop1MBB); 5102 5103 // loop1MBB: 5104 // ldrex dest, [ptr] 5105 // cmp dest, oldval 5106 // bne exitMBB 5107 BB = loop1MBB; 5108 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr); 5109 if (ldrOpc == ARM::t2LDREX) 5110 MIB.addImm(0); 5111 AddDefaultPred(MIB); 5112 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 5113 .addReg(dest).addReg(oldval)); 5114 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5115 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5116 BB->addSuccessor(loop2MBB); 5117 BB->addSuccessor(exitMBB); 5118 5119 // loop2MBB: 5120 // strex scratch, newval, [ptr] 5121 // cmp scratch, #0 5122 // bne loop1MBB 5123 BB = loop2MBB; 5124 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(newval).addReg(ptr); 5125 if (strOpc == ARM::t2STREX) 5126 MIB.addImm(0); 5127 AddDefaultPred(MIB); 5128 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 5129 .addReg(scratch).addImm(0)); 5130 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5131 .addMBB(loop1MBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5132 BB->addSuccessor(loop1MBB); 5133 BB->addSuccessor(exitMBB); 5134 5135 // exitMBB: 5136 // ... 5137 BB = exitMBB; 5138 5139 MI->eraseFromParent(); // The instruction is gone now. 5140 5141 return BB; 5142 } 5143 5144 MachineBasicBlock * 5145 ARMTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB, 5146 unsigned Size, unsigned BinOpcode) const { 5147 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0. 5148 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5149 5150 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 5151 MachineFunction *MF = BB->getParent(); 5152 MachineFunction::iterator It = BB; 5153 ++It; 5154 5155 unsigned dest = MI->getOperand(0).getReg(); 5156 unsigned ptr = MI->getOperand(1).getReg(); 5157 unsigned incr = MI->getOperand(2).getReg(); 5158 DebugLoc dl = MI->getDebugLoc(); 5159 bool isThumb2 = Subtarget->isThumb2(); 5160 5161 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); 5162 if (isThumb2) { 5163 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass); 5164 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass); 5165 } 5166 5167 unsigned ldrOpc, strOpc; 5168 switch (Size) { 5169 default: llvm_unreachable("unsupported size for AtomicCmpSwap!"); 5170 case 1: 5171 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB; 5172 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB; 5173 break; 5174 case 2: 5175 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH; 5176 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH; 5177 break; 5178 case 4: 5179 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX; 5180 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX; 5181 break; 5182 } 5183 5184 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5185 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5186 MF->insert(It, loopMBB); 5187 MF->insert(It, exitMBB); 5188 5189 // Transfer the remainder of BB and its successor edges to exitMBB. 5190 exitMBB->splice(exitMBB->begin(), BB, 5191 llvm::next(MachineBasicBlock::iterator(MI)), 5192 BB->end()); 5193 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 5194 5195 TargetRegisterClass *TRC = 5196 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass; 5197 unsigned scratch = MRI.createVirtualRegister(TRC); 5198 unsigned scratch2 = (!BinOpcode) ? incr : MRI.createVirtualRegister(TRC); 5199 5200 // thisMBB: 5201 // ... 5202 // fallthrough --> loopMBB 5203 BB->addSuccessor(loopMBB); 5204 5205 // loopMBB: 5206 // ldrex dest, ptr 5207 // <binop> scratch2, dest, incr 5208 // strex scratch, scratch2, ptr 5209 // cmp scratch, #0 5210 // bne- loopMBB 5211 // fallthrough --> exitMBB 5212 BB = loopMBB; 5213 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr); 5214 if (ldrOpc == ARM::t2LDREX) 5215 MIB.addImm(0); 5216 AddDefaultPred(MIB); 5217 if (BinOpcode) { 5218 // operand order needs to go the other way for NAND 5219 if (BinOpcode == ARM::BICrr || BinOpcode == ARM::t2BICrr) 5220 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2). 5221 addReg(incr).addReg(dest)).addReg(0); 5222 else 5223 AddDefaultPred(BuildMI(BB, dl, TII->get(BinOpcode), scratch2). 5224 addReg(dest).addReg(incr)).addReg(0); 5225 } 5226 5227 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2).addReg(ptr); 5228 if (strOpc == ARM::t2STREX) 5229 MIB.addImm(0); 5230 AddDefaultPred(MIB); 5231 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 5232 .addReg(scratch).addImm(0)); 5233 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5234 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5235 5236 BB->addSuccessor(loopMBB); 5237 BB->addSuccessor(exitMBB); 5238 5239 // exitMBB: 5240 // ... 5241 BB = exitMBB; 5242 5243 MI->eraseFromParent(); // The instruction is gone now. 5244 5245 return BB; 5246 } 5247 5248 MachineBasicBlock * 5249 ARMTargetLowering::EmitAtomicBinaryMinMax(MachineInstr *MI, 5250 MachineBasicBlock *BB, 5251 unsigned Size, 5252 bool signExtend, 5253 ARMCC::CondCodes Cond) const { 5254 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5255 5256 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 5257 MachineFunction *MF = BB->getParent(); 5258 MachineFunction::iterator It = BB; 5259 ++It; 5260 5261 unsigned dest = MI->getOperand(0).getReg(); 5262 unsigned ptr = MI->getOperand(1).getReg(); 5263 unsigned incr = MI->getOperand(2).getReg(); 5264 unsigned oldval = dest; 5265 DebugLoc dl = MI->getDebugLoc(); 5266 bool isThumb2 = Subtarget->isThumb2(); 5267 5268 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); 5269 if (isThumb2) { 5270 MRI.constrainRegClass(dest, ARM::rGPRRegisterClass); 5271 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass); 5272 } 5273 5274 unsigned ldrOpc, strOpc, extendOpc; 5275 switch (Size) { 5276 default: llvm_unreachable("unsupported size for AtomicCmpSwap!"); 5277 case 1: 5278 ldrOpc = isThumb2 ? ARM::t2LDREXB : ARM::LDREXB; 5279 strOpc = isThumb2 ? ARM::t2STREXB : ARM::STREXB; 5280 extendOpc = isThumb2 ? ARM::t2SXTB : ARM::SXTB; 5281 break; 5282 case 2: 5283 ldrOpc = isThumb2 ? ARM::t2LDREXH : ARM::LDREXH; 5284 strOpc = isThumb2 ? ARM::t2STREXH : ARM::STREXH; 5285 extendOpc = isThumb2 ? ARM::t2SXTH : ARM::SXTH; 5286 break; 5287 case 4: 5288 ldrOpc = isThumb2 ? ARM::t2LDREX : ARM::LDREX; 5289 strOpc = isThumb2 ? ARM::t2STREX : ARM::STREX; 5290 extendOpc = 0; 5291 break; 5292 } 5293 5294 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5295 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5296 MF->insert(It, loopMBB); 5297 MF->insert(It, exitMBB); 5298 5299 // Transfer the remainder of BB and its successor edges to exitMBB. 5300 exitMBB->splice(exitMBB->begin(), BB, 5301 llvm::next(MachineBasicBlock::iterator(MI)), 5302 BB->end()); 5303 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 5304 5305 TargetRegisterClass *TRC = 5306 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass; 5307 unsigned scratch = MRI.createVirtualRegister(TRC); 5308 unsigned scratch2 = MRI.createVirtualRegister(TRC); 5309 5310 // thisMBB: 5311 // ... 5312 // fallthrough --> loopMBB 5313 BB->addSuccessor(loopMBB); 5314 5315 // loopMBB: 5316 // ldrex dest, ptr 5317 // (sign extend dest, if required) 5318 // cmp dest, incr 5319 // cmov.cond scratch2, dest, incr 5320 // strex scratch, scratch2, ptr 5321 // cmp scratch, #0 5322 // bne- loopMBB 5323 // fallthrough --> exitMBB 5324 BB = loopMBB; 5325 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(ldrOpc), dest).addReg(ptr); 5326 if (ldrOpc == ARM::t2LDREX) 5327 MIB.addImm(0); 5328 AddDefaultPred(MIB); 5329 5330 // Sign extend the value, if necessary. 5331 if (signExtend && extendOpc) { 5332 oldval = MRI.createVirtualRegister(ARM::GPRRegisterClass); 5333 AddDefaultPred(BuildMI(BB, dl, TII->get(extendOpc), oldval) 5334 .addReg(dest) 5335 .addImm(0)); 5336 } 5337 5338 // Build compare and cmov instructions. 5339 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 5340 .addReg(oldval).addReg(incr)); 5341 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2MOVCCr : ARM::MOVCCr), scratch2) 5342 .addReg(oldval).addReg(incr).addImm(Cond).addReg(ARM::CPSR); 5343 5344 MIB = BuildMI(BB, dl, TII->get(strOpc), scratch).addReg(scratch2).addReg(ptr); 5345 if (strOpc == ARM::t2STREX) 5346 MIB.addImm(0); 5347 AddDefaultPred(MIB); 5348 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 5349 .addReg(scratch).addImm(0)); 5350 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5351 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5352 5353 BB->addSuccessor(loopMBB); 5354 BB->addSuccessor(exitMBB); 5355 5356 // exitMBB: 5357 // ... 5358 BB = exitMBB; 5359 5360 MI->eraseFromParent(); // The instruction is gone now. 5361 5362 return BB; 5363 } 5364 5365 MachineBasicBlock * 5366 ARMTargetLowering::EmitAtomicBinary64(MachineInstr *MI, MachineBasicBlock *BB, 5367 unsigned Op1, unsigned Op2, 5368 bool NeedsCarry, bool IsCmpxchg) const { 5369 // This also handles ATOMIC_SWAP, indicated by Op1==0. 5370 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5371 5372 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 5373 MachineFunction *MF = BB->getParent(); 5374 MachineFunction::iterator It = BB; 5375 ++It; 5376 5377 unsigned destlo = MI->getOperand(0).getReg(); 5378 unsigned desthi = MI->getOperand(1).getReg(); 5379 unsigned ptr = MI->getOperand(2).getReg(); 5380 unsigned vallo = MI->getOperand(3).getReg(); 5381 unsigned valhi = MI->getOperand(4).getReg(); 5382 DebugLoc dl = MI->getDebugLoc(); 5383 bool isThumb2 = Subtarget->isThumb2(); 5384 5385 MachineRegisterInfo &MRI = BB->getParent()->getRegInfo(); 5386 if (isThumb2) { 5387 MRI.constrainRegClass(destlo, ARM::rGPRRegisterClass); 5388 MRI.constrainRegClass(desthi, ARM::rGPRRegisterClass); 5389 MRI.constrainRegClass(ptr, ARM::rGPRRegisterClass); 5390 } 5391 5392 unsigned ldrOpc = isThumb2 ? ARM::t2LDREXD : ARM::LDREXD; 5393 unsigned strOpc = isThumb2 ? ARM::t2STREXD : ARM::STREXD; 5394 5395 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5396 MachineBasicBlock *contBB = 0, *cont2BB = 0; 5397 if (IsCmpxchg) { 5398 contBB = MF->CreateMachineBasicBlock(LLVM_BB); 5399 cont2BB = MF->CreateMachineBasicBlock(LLVM_BB); 5400 } 5401 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB); 5402 MF->insert(It, loopMBB); 5403 if (IsCmpxchg) { 5404 MF->insert(It, contBB); 5405 MF->insert(It, cont2BB); 5406 } 5407 MF->insert(It, exitMBB); 5408 5409 // Transfer the remainder of BB and its successor edges to exitMBB. 5410 exitMBB->splice(exitMBB->begin(), BB, 5411 llvm::next(MachineBasicBlock::iterator(MI)), 5412 BB->end()); 5413 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 5414 5415 TargetRegisterClass *TRC = 5416 isThumb2 ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass; 5417 unsigned storesuccess = MRI.createVirtualRegister(TRC); 5418 5419 // thisMBB: 5420 // ... 5421 // fallthrough --> loopMBB 5422 BB->addSuccessor(loopMBB); 5423 5424 // loopMBB: 5425 // ldrexd r2, r3, ptr 5426 // <binopa> r0, r2, incr 5427 // <binopb> r1, r3, incr 5428 // strexd storesuccess, r0, r1, ptr 5429 // cmp storesuccess, #0 5430 // bne- loopMBB 5431 // fallthrough --> exitMBB 5432 // 5433 // Note that the registers are explicitly specified because there is not any 5434 // way to force the register allocator to allocate a register pair. 5435 // 5436 // FIXME: The hardcoded registers are not necessary for Thumb2, but we 5437 // need to properly enforce the restriction that the two output registers 5438 // for ldrexd must be different. 5439 BB = loopMBB; 5440 // Load 5441 AddDefaultPred(BuildMI(BB, dl, TII->get(ldrOpc)) 5442 .addReg(ARM::R2, RegState::Define) 5443 .addReg(ARM::R3, RegState::Define).addReg(ptr)); 5444 // Copy r2/r3 into dest. (This copy will normally be coalesced.) 5445 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), destlo).addReg(ARM::R2); 5446 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), desthi).addReg(ARM::R3); 5447 5448 if (IsCmpxchg) { 5449 // Add early exit 5450 for (unsigned i = 0; i < 2; i++) { 5451 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : 5452 ARM::CMPrr)) 5453 .addReg(i == 0 ? destlo : desthi) 5454 .addReg(i == 0 ? vallo : valhi)); 5455 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5456 .addMBB(exitMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5457 BB->addSuccessor(exitMBB); 5458 BB->addSuccessor(i == 0 ? contBB : cont2BB); 5459 BB = (i == 0 ? contBB : cont2BB); 5460 } 5461 5462 // Copy to physregs for strexd 5463 unsigned setlo = MI->getOperand(5).getReg(); 5464 unsigned sethi = MI->getOperand(6).getReg(); 5465 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R0).addReg(setlo); 5466 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R1).addReg(sethi); 5467 } else if (Op1) { 5468 // Perform binary operation 5469 AddDefaultPred(BuildMI(BB, dl, TII->get(Op1), ARM::R0) 5470 .addReg(destlo).addReg(vallo)) 5471 .addReg(NeedsCarry ? ARM::CPSR : 0, getDefRegState(NeedsCarry)); 5472 AddDefaultPred(BuildMI(BB, dl, TII->get(Op2), ARM::R1) 5473 .addReg(desthi).addReg(valhi)).addReg(0); 5474 } else { 5475 // Copy to physregs for strexd 5476 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R0).addReg(vallo); 5477 BuildMI(BB, dl, TII->get(TargetOpcode::COPY), ARM::R1).addReg(valhi); 5478 } 5479 5480 // Store 5481 AddDefaultPred(BuildMI(BB, dl, TII->get(strOpc), storesuccess) 5482 .addReg(ARM::R0).addReg(ARM::R1).addReg(ptr)); 5483 // Cmp+jump 5484 AddDefaultPred(BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 5485 .addReg(storesuccess).addImm(0)); 5486 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 5487 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 5488 5489 BB->addSuccessor(loopMBB); 5490 BB->addSuccessor(exitMBB); 5491 5492 // exitMBB: 5493 // ... 5494 BB = exitMBB; 5495 5496 MI->eraseFromParent(); // The instruction is gone now. 5497 5498 return BB; 5499 } 5500 5501 /// EmitBasePointerRecalculation - For functions using a base pointer, we 5502 /// rematerialize it (via the frame pointer). 5503 void ARMTargetLowering:: 5504 EmitBasePointerRecalculation(MachineInstr *MI, MachineBasicBlock *MBB, 5505 MachineBasicBlock *DispatchBB) const { 5506 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5507 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII); 5508 MachineFunction &MF = *MI->getParent()->getParent(); 5509 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 5510 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo(); 5511 5512 if (!RI.hasBasePointer(MF)) return; 5513 5514 MachineBasicBlock::iterator MBBI = MI; 5515 5516 int32_t NumBytes = AFI->getFramePtrSpillOffset(); 5517 unsigned FramePtr = RI.getFrameRegister(MF); 5518 assert(MF.getTarget().getFrameLowering()->hasFP(MF) && 5519 "Base pointer without frame pointer?"); 5520 5521 if (AFI->isThumb2Function()) 5522 llvm::emitT2RegPlusImmediate(*MBB, MBBI, MI->getDebugLoc(), ARM::R6, 5523 FramePtr, -NumBytes, ARMCC::AL, 0, *AII); 5524 else if (AFI->isThumbFunction()) 5525 llvm::emitThumbRegPlusImmediate(*MBB, MBBI, MI->getDebugLoc(), ARM::R6, 5526 FramePtr, -NumBytes, *AII, RI); 5527 else 5528 llvm::emitARMRegPlusImmediate(*MBB, MBBI, MI->getDebugLoc(), ARM::R6, 5529 FramePtr, -NumBytes, ARMCC::AL, 0, *AII); 5530 5531 if (!RI.needsStackRealignment(MF)) return; 5532 5533 // If there's dynamic realignment, adjust for it. 5534 MachineFrameInfo *MFI = MF.getFrameInfo(); 5535 unsigned MaxAlign = MFI->getMaxAlignment(); 5536 assert(!AFI->isThumb1OnlyFunction()); 5537 5538 // Emit bic r6, r6, MaxAlign 5539 unsigned bicOpc = AFI->isThumbFunction() ? ARM::t2BICri : ARM::BICri; 5540 AddDefaultCC( 5541 AddDefaultPred( 5542 BuildMI(*MBB, MBBI, MI->getDebugLoc(), TII->get(bicOpc), ARM::R6) 5543 .addReg(ARM::R6, RegState::Kill) 5544 .addImm(MaxAlign - 1))); 5545 } 5546 5547 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and 5548 /// registers the function context. 5549 void ARMTargetLowering:: 5550 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB, 5551 MachineBasicBlock *DispatchBB, int FI) const { 5552 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5553 DebugLoc dl = MI->getDebugLoc(); 5554 MachineFunction *MF = MBB->getParent(); 5555 MachineRegisterInfo *MRI = &MF->getRegInfo(); 5556 MachineConstantPool *MCP = MF->getConstantPool(); 5557 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>(); 5558 const Function *F = MF->getFunction(); 5559 5560 bool isThumb = Subtarget->isThumb(); 5561 bool isThumb2 = Subtarget->isThumb2(); 5562 5563 unsigned PCLabelId = AFI->createPICLabelUId(); 5564 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8; 5565 ARMConstantPoolValue *CPV = 5566 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj); 5567 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4); 5568 5569 const TargetRegisterClass *TRC = 5570 isThumb ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass; 5571 5572 // Grab constant pool and fixed stack memory operands. 5573 MachineMemOperand *CPMMO = 5574 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(), 5575 MachineMemOperand::MOLoad, 4, 4); 5576 5577 MachineMemOperand *FIMMOSt = 5578 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), 5579 MachineMemOperand::MOStore, 4, 4); 5580 5581 EmitBasePointerRecalculation(MI, MBB, DispatchBB); 5582 5583 // Load the address of the dispatch MBB into the jump buffer. 5584 if (isThumb2) { 5585 // Incoming value: jbuf 5586 // ldr.n r5, LCPI1_1 5587 // orr r5, r5, #1 5588 // add r5, pc 5589 // str r5, [$jbuf, #+4] ; &jbuf[1] 5590 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5591 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1) 5592 .addConstantPoolIndex(CPI) 5593 .addMemOperand(CPMMO)); 5594 // Set the low bit because of thumb mode. 5595 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5596 AddDefaultCC( 5597 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2) 5598 .addReg(NewVReg1, RegState::Kill) 5599 .addImm(0x01))); 5600 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 5601 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3) 5602 .addReg(NewVReg2, RegState::Kill) 5603 .addImm(PCLabelId); 5604 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12)) 5605 .addReg(NewVReg3, RegState::Kill) 5606 .addFrameIndex(FI) 5607 .addImm(36) // &jbuf[1] :: pc 5608 .addMemOperand(FIMMOSt)); 5609 } else if (isThumb) { 5610 // Incoming value: jbuf 5611 // ldr.n r1, LCPI1_4 5612 // add r1, pc 5613 // mov r2, #1 5614 // orrs r1, r2 5615 // add r2, $jbuf, #+4 ; &jbuf[1] 5616 // str r1, [r2] 5617 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5618 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1) 5619 .addConstantPoolIndex(CPI) 5620 .addMemOperand(CPMMO)); 5621 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5622 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2) 5623 .addReg(NewVReg1, RegState::Kill) 5624 .addImm(PCLabelId); 5625 // Set the low bit because of thumb mode. 5626 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 5627 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3) 5628 .addReg(ARM::CPSR, RegState::Define) 5629 .addImm(1)); 5630 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 5631 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4) 5632 .addReg(ARM::CPSR, RegState::Define) 5633 .addReg(NewVReg2, RegState::Kill) 5634 .addReg(NewVReg3, RegState::Kill)); 5635 unsigned NewVReg5 = MRI->createVirtualRegister(TRC); 5636 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tADDrSPi), NewVReg5) 5637 .addFrameIndex(FI) 5638 .addImm(36)); // &jbuf[1] :: pc 5639 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi)) 5640 .addReg(NewVReg4, RegState::Kill) 5641 .addReg(NewVReg5, RegState::Kill) 5642 .addImm(0) 5643 .addMemOperand(FIMMOSt)); 5644 } else { 5645 // Incoming value: jbuf 5646 // ldr r1, LCPI1_1 5647 // add r1, pc, r1 5648 // str r1, [$jbuf, #+4] ; &jbuf[1] 5649 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5650 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1) 5651 .addConstantPoolIndex(CPI) 5652 .addImm(0) 5653 .addMemOperand(CPMMO)); 5654 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5655 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2) 5656 .addReg(NewVReg1, RegState::Kill) 5657 .addImm(PCLabelId)); 5658 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12)) 5659 .addReg(NewVReg2, RegState::Kill) 5660 .addFrameIndex(FI) 5661 .addImm(36) // &jbuf[1] :: pc 5662 .addMemOperand(FIMMOSt)); 5663 } 5664 } 5665 5666 MachineBasicBlock *ARMTargetLowering:: 5667 EmitSjLjDispatchBlock(MachineInstr *MI, MachineBasicBlock *MBB) const { 5668 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5669 DebugLoc dl = MI->getDebugLoc(); 5670 MachineFunction *MF = MBB->getParent(); 5671 MachineRegisterInfo *MRI = &MF->getRegInfo(); 5672 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>(); 5673 MachineFrameInfo *MFI = MF->getFrameInfo(); 5674 int FI = MFI->getFunctionContextIndex(); 5675 5676 const TargetRegisterClass *TRC = 5677 Subtarget->isThumb() ? ARM::tGPRRegisterClass : ARM::GPRRegisterClass; 5678 5679 // Get a mapping of the call site numbers to all of the landing pads they're 5680 // associated with. 5681 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad; 5682 unsigned MaxCSNum = 0; 5683 MachineModuleInfo &MMI = MF->getMMI(); 5684 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E; ++BB) { 5685 if (!BB->isLandingPad()) continue; 5686 5687 // FIXME: We should assert that the EH_LABEL is the first MI in the landing 5688 // pad. 5689 for (MachineBasicBlock::iterator 5690 II = BB->begin(), IE = BB->end(); II != IE; ++II) { 5691 if (!II->isEHLabel()) continue; 5692 5693 MCSymbol *Sym = II->getOperand(0).getMCSymbol(); 5694 if (!MMI.hasCallSiteLandingPad(Sym)) continue; 5695 5696 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym); 5697 for (SmallVectorImpl<unsigned>::iterator 5698 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end(); 5699 CSI != CSE; ++CSI) { 5700 CallSiteNumToLPad[*CSI].push_back(BB); 5701 MaxCSNum = std::max(MaxCSNum, *CSI); 5702 } 5703 break; 5704 } 5705 } 5706 5707 // Get an ordered list of the machine basic blocks for the jump table. 5708 std::vector<MachineBasicBlock*> LPadList; 5709 SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs; 5710 LPadList.reserve(CallSiteNumToLPad.size()); 5711 for (unsigned I = 1; I <= MaxCSNum; ++I) { 5712 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I]; 5713 for (SmallVectorImpl<MachineBasicBlock*>::iterator 5714 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) { 5715 LPadList.push_back(*II); 5716 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end()); 5717 } 5718 } 5719 5720 assert(!LPadList.empty() && 5721 "No landing pad destinations for the dispatch jump table!"); 5722 5723 // Create the jump table and associated information. 5724 MachineJumpTableInfo *JTI = 5725 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline); 5726 unsigned MJTI = JTI->createJumpTableIndex(LPadList); 5727 unsigned UId = AFI->createJumpTableUId(); 5728 5729 // Create the MBBs for the dispatch code. 5730 5731 // Shove the dispatch's address into the return slot in the function context. 5732 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock(); 5733 DispatchBB->setIsLandingPad(); 5734 5735 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock(); 5736 BuildMI(TrapBB, dl, TII->get(Subtarget->isThumb() ? ARM::tTRAP : ARM::TRAP)); 5737 DispatchBB->addSuccessor(TrapBB); 5738 5739 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock(); 5740 DispatchBB->addSuccessor(DispContBB); 5741 5742 // Insert and renumber MBBs. 5743 MachineBasicBlock *Last = &MF->back(); 5744 MF->insert(MF->end(), DispatchBB); 5745 MF->insert(MF->end(), DispContBB); 5746 MF->insert(MF->end(), TrapBB); 5747 MF->RenumberBlocks(Last); 5748 5749 // Insert code into the entry block that creates and registers the function 5750 // context. 5751 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI); 5752 5753 MachineMemOperand *FIMMOLd = 5754 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), 5755 MachineMemOperand::MOLoad | 5756 MachineMemOperand::MOVolatile, 4, 4); 5757 5758 if (Subtarget->isThumb2()) { 5759 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5760 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1) 5761 .addFrameIndex(FI) 5762 .addImm(4) 5763 .addMemOperand(FIMMOLd)); 5764 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri)) 5765 .addReg(NewVReg1) 5766 .addImm(LPadList.size())); 5767 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc)) 5768 .addMBB(TrapBB) 5769 .addImm(ARMCC::HI) 5770 .addReg(ARM::CPSR); 5771 5772 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5773 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg2) 5774 .addJumpTableIndex(MJTI) 5775 .addImm(UId)); 5776 5777 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 5778 AddDefaultCC( 5779 AddDefaultPred( 5780 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg3) 5781 .addReg(NewVReg2, RegState::Kill) 5782 .addReg(NewVReg1) 5783 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2)))); 5784 5785 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT)) 5786 .addReg(NewVReg3, RegState::Kill) 5787 .addReg(NewVReg1) 5788 .addJumpTableIndex(MJTI) 5789 .addImm(UId); 5790 } else if (Subtarget->isThumb()) { 5791 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5792 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1) 5793 .addFrameIndex(FI) 5794 .addImm(1) 5795 .addMemOperand(FIMMOLd)); 5796 5797 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8)) 5798 .addReg(NewVReg1) 5799 .addImm(LPadList.size())); 5800 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc)) 5801 .addMBB(TrapBB) 5802 .addImm(ARMCC::HI) 5803 .addReg(ARM::CPSR); 5804 5805 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5806 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2) 5807 .addReg(ARM::CPSR, RegState::Define) 5808 .addReg(NewVReg1) 5809 .addImm(2)); 5810 5811 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 5812 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3) 5813 .addJumpTableIndex(MJTI) 5814 .addImm(UId)); 5815 5816 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 5817 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4) 5818 .addReg(ARM::CPSR, RegState::Define) 5819 .addReg(NewVReg2, RegState::Kill) 5820 .addReg(NewVReg3)); 5821 5822 MachineMemOperand *JTMMOLd = 5823 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(), 5824 MachineMemOperand::MOLoad, 4, 4); 5825 5826 unsigned NewVReg5 = MRI->createVirtualRegister(TRC); 5827 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5) 5828 .addReg(NewVReg4, RegState::Kill) 5829 .addImm(0) 5830 .addMemOperand(JTMMOLd)); 5831 5832 unsigned NewVReg6 = MRI->createVirtualRegister(TRC); 5833 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6) 5834 .addReg(ARM::CPSR, RegState::Define) 5835 .addReg(NewVReg5, RegState::Kill) 5836 .addReg(NewVReg3)); 5837 5838 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr)) 5839 .addReg(NewVReg6, RegState::Kill) 5840 .addJumpTableIndex(MJTI) 5841 .addImm(UId); 5842 } else { 5843 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 5844 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1) 5845 .addFrameIndex(FI) 5846 .addImm(4) 5847 .addMemOperand(FIMMOLd)); 5848 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri)) 5849 .addReg(NewVReg1) 5850 .addImm(LPadList.size())); 5851 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc)) 5852 .addMBB(TrapBB) 5853 .addImm(ARMCC::HI) 5854 .addReg(ARM::CPSR); 5855 5856 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 5857 AddDefaultCC( 5858 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg2) 5859 .addReg(NewVReg1) 5860 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2)))); 5861 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 5862 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg3) 5863 .addJumpTableIndex(MJTI) 5864 .addImm(UId)); 5865 5866 MachineMemOperand *JTMMOLd = 5867 MF->getMachineMemOperand(MachinePointerInfo::getJumpTable(), 5868 MachineMemOperand::MOLoad, 4, 4); 5869 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 5870 AddDefaultPred( 5871 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg4) 5872 .addReg(NewVReg2, RegState::Kill) 5873 .addReg(NewVReg3) 5874 .addImm(0) 5875 .addMemOperand(JTMMOLd)); 5876 5877 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd)) 5878 .addReg(NewVReg4, RegState::Kill) 5879 .addReg(NewVReg3) 5880 .addJumpTableIndex(MJTI) 5881 .addImm(UId); 5882 } 5883 5884 // Add the jump table entries as successors to the MBB. 5885 MachineBasicBlock *PrevMBB = 0; 5886 for (std::vector<MachineBasicBlock*>::iterator 5887 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) { 5888 MachineBasicBlock *CurMBB = *I; 5889 if (PrevMBB != CurMBB) 5890 DispContBB->addSuccessor(CurMBB); 5891 PrevMBB = CurMBB; 5892 } 5893 5894 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII); 5895 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo(); 5896 const unsigned *SavedRegs = RI.getCalleeSavedRegs(MF); 5897 for (SmallPtrSet<MachineBasicBlock*, 64>::iterator 5898 I = InvokeBBs.begin(), E = InvokeBBs.end(); I != E; ++I) { 5899 MachineBasicBlock *BB = *I; 5900 5901 // Remove the landing pad successor from the invoke block and replace it 5902 // with the new dispatch block. 5903 for (MachineBasicBlock::succ_iterator 5904 SI = BB->succ_begin(), SE = BB->succ_end(); SI != SE; ++SI) { 5905 MachineBasicBlock *SMBB = *SI; 5906 if (SMBB->isLandingPad()) { 5907 BB->removeSuccessor(SMBB); 5908 SMBB->setIsLandingPad(false); 5909 } 5910 } 5911 5912 BB->addSuccessor(DispatchBB); 5913 5914 // Find the invoke call and mark all of the callee-saved registers as 5915 // 'implicit defined' so that they're spilled. This prevents code from 5916 // moving instructions to before the EH block, where they will never be 5917 // executed. 5918 for (MachineBasicBlock::reverse_iterator 5919 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) { 5920 if (!II->getDesc().isCall()) continue; 5921 5922 DenseMap<unsigned, bool> DefRegs; 5923 for (MachineInstr::mop_iterator 5924 OI = II->operands_begin(), OE = II->operands_end(); 5925 OI != OE; ++OI) { 5926 if (!OI->isReg()) continue; 5927 DefRegs[OI->getReg()] = true; 5928 } 5929 5930 MachineInstrBuilder MIB(&*II); 5931 5932 for (unsigned i = 0; SavedRegs[i] != 0; ++i) { 5933 if (!TRC->contains(SavedRegs[i])) continue; 5934 if (!DefRegs[SavedRegs[i]]) 5935 MIB.addReg(SavedRegs[i], RegState::ImplicitDefine | RegState::Dead); 5936 } 5937 5938 break; 5939 } 5940 } 5941 5942 // The instruction is gone now. 5943 MI->eraseFromParent(); 5944 5945 return MBB; 5946 } 5947 5948 static 5949 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) { 5950 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(), 5951 E = MBB->succ_end(); I != E; ++I) 5952 if (*I != Succ) 5953 return *I; 5954 llvm_unreachable("Expecting a BB with two successors!"); 5955 } 5956 5957 MachineBasicBlock * 5958 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, 5959 MachineBasicBlock *BB) const { 5960 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); 5961 DebugLoc dl = MI->getDebugLoc(); 5962 bool isThumb2 = Subtarget->isThumb2(); 5963 switch (MI->getOpcode()) { 5964 default: { 5965 MI->dump(); 5966 llvm_unreachable("Unexpected instr type to insert"); 5967 } 5968 // The Thumb2 pre-indexed stores have the same MI operands, they just 5969 // define them differently in the .td files from the isel patterns, so 5970 // they need pseudos. 5971 case ARM::t2STR_preidx: 5972 MI->setDesc(TII->get(ARM::t2STR_PRE)); 5973 return BB; 5974 case ARM::t2STRB_preidx: 5975 MI->setDesc(TII->get(ARM::t2STRB_PRE)); 5976 return BB; 5977 case ARM::t2STRH_preidx: 5978 MI->setDesc(TII->get(ARM::t2STRH_PRE)); 5979 return BB; 5980 5981 case ARM::STRi_preidx: 5982 case ARM::STRBi_preidx: { 5983 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ? 5984 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM; 5985 // Decode the offset. 5986 unsigned Offset = MI->getOperand(4).getImm(); 5987 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub; 5988 Offset = ARM_AM::getAM2Offset(Offset); 5989 if (isSub) 5990 Offset = -Offset; 5991 5992 MachineMemOperand *MMO = *MI->memoperands_begin(); 5993 BuildMI(*BB, MI, dl, TII->get(NewOpc)) 5994 .addOperand(MI->getOperand(0)) // Rn_wb 5995 .addOperand(MI->getOperand(1)) // Rt 5996 .addOperand(MI->getOperand(2)) // Rn 5997 .addImm(Offset) // offset (skip GPR==zero_reg) 5998 .addOperand(MI->getOperand(5)) // pred 5999 .addOperand(MI->getOperand(6)) 6000 .addMemOperand(MMO); 6001 MI->eraseFromParent(); 6002 return BB; 6003 } 6004 case ARM::STRr_preidx: 6005 case ARM::STRBr_preidx: 6006 case ARM::STRH_preidx: { 6007 unsigned NewOpc; 6008 switch (MI->getOpcode()) { 6009 default: llvm_unreachable("unexpected opcode!"); 6010 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break; 6011 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break; 6012 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break; 6013 } 6014 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc)); 6015 for (unsigned i = 0; i < MI->getNumOperands(); ++i) 6016 MIB.addOperand(MI->getOperand(i)); 6017 MI->eraseFromParent(); 6018 return BB; 6019 } 6020 case ARM::ATOMIC_LOAD_ADD_I8: 6021 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr); 6022 case ARM::ATOMIC_LOAD_ADD_I16: 6023 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr); 6024 case ARM::ATOMIC_LOAD_ADD_I32: 6025 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr); 6026 6027 case ARM::ATOMIC_LOAD_AND_I8: 6028 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr); 6029 case ARM::ATOMIC_LOAD_AND_I16: 6030 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr); 6031 case ARM::ATOMIC_LOAD_AND_I32: 6032 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr); 6033 6034 case ARM::ATOMIC_LOAD_OR_I8: 6035 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr); 6036 case ARM::ATOMIC_LOAD_OR_I16: 6037 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr); 6038 case ARM::ATOMIC_LOAD_OR_I32: 6039 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr); 6040 6041 case ARM::ATOMIC_LOAD_XOR_I8: 6042 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2EORrr : ARM::EORrr); 6043 case ARM::ATOMIC_LOAD_XOR_I16: 6044 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2EORrr : ARM::EORrr); 6045 case ARM::ATOMIC_LOAD_XOR_I32: 6046 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2EORrr : ARM::EORrr); 6047 6048 case ARM::ATOMIC_LOAD_NAND_I8: 6049 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2BICrr : ARM::BICrr); 6050 case ARM::ATOMIC_LOAD_NAND_I16: 6051 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2BICrr : ARM::BICrr); 6052 case ARM::ATOMIC_LOAD_NAND_I32: 6053 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2BICrr : ARM::BICrr); 6054 6055 case ARM::ATOMIC_LOAD_SUB_I8: 6056 return EmitAtomicBinary(MI, BB, 1, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr); 6057 case ARM::ATOMIC_LOAD_SUB_I16: 6058 return EmitAtomicBinary(MI, BB, 2, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr); 6059 case ARM::ATOMIC_LOAD_SUB_I32: 6060 return EmitAtomicBinary(MI, BB, 4, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr); 6061 6062 case ARM::ATOMIC_LOAD_MIN_I8: 6063 return EmitAtomicBinaryMinMax(MI, BB, 1, true, ARMCC::LT); 6064 case ARM::ATOMIC_LOAD_MIN_I16: 6065 return EmitAtomicBinaryMinMax(MI, BB, 2, true, ARMCC::LT); 6066 case ARM::ATOMIC_LOAD_MIN_I32: 6067 return EmitAtomicBinaryMinMax(MI, BB, 4, true, ARMCC::LT); 6068 6069 case ARM::ATOMIC_LOAD_MAX_I8: 6070 return EmitAtomicBinaryMinMax(MI, BB, 1, true, ARMCC::GT); 6071 case ARM::ATOMIC_LOAD_MAX_I16: 6072 return EmitAtomicBinaryMinMax(MI, BB, 2, true, ARMCC::GT); 6073 case ARM::ATOMIC_LOAD_MAX_I32: 6074 return EmitAtomicBinaryMinMax(MI, BB, 4, true, ARMCC::GT); 6075 6076 case ARM::ATOMIC_LOAD_UMIN_I8: 6077 return EmitAtomicBinaryMinMax(MI, BB, 1, false, ARMCC::LO); 6078 case ARM::ATOMIC_LOAD_UMIN_I16: 6079 return EmitAtomicBinaryMinMax(MI, BB, 2, false, ARMCC::LO); 6080 case ARM::ATOMIC_LOAD_UMIN_I32: 6081 return EmitAtomicBinaryMinMax(MI, BB, 4, false, ARMCC::LO); 6082 6083 case ARM::ATOMIC_LOAD_UMAX_I8: 6084 return EmitAtomicBinaryMinMax(MI, BB, 1, false, ARMCC::HI); 6085 case ARM::ATOMIC_LOAD_UMAX_I16: 6086 return EmitAtomicBinaryMinMax(MI, BB, 2, false, ARMCC::HI); 6087 case ARM::ATOMIC_LOAD_UMAX_I32: 6088 return EmitAtomicBinaryMinMax(MI, BB, 4, false, ARMCC::HI); 6089 6090 case ARM::ATOMIC_SWAP_I8: return EmitAtomicBinary(MI, BB, 1, 0); 6091 case ARM::ATOMIC_SWAP_I16: return EmitAtomicBinary(MI, BB, 2, 0); 6092 case ARM::ATOMIC_SWAP_I32: return EmitAtomicBinary(MI, BB, 4, 0); 6093 6094 case ARM::ATOMIC_CMP_SWAP_I8: return EmitAtomicCmpSwap(MI, BB, 1); 6095 case ARM::ATOMIC_CMP_SWAP_I16: return EmitAtomicCmpSwap(MI, BB, 2); 6096 case ARM::ATOMIC_CMP_SWAP_I32: return EmitAtomicCmpSwap(MI, BB, 4); 6097 6098 6099 case ARM::ATOMADD6432: 6100 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ADDrr : ARM::ADDrr, 6101 isThumb2 ? ARM::t2ADCrr : ARM::ADCrr, 6102 /*NeedsCarry*/ true); 6103 case ARM::ATOMSUB6432: 6104 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr, 6105 isThumb2 ? ARM::t2SBCrr : ARM::SBCrr, 6106 /*NeedsCarry*/ true); 6107 case ARM::ATOMOR6432: 6108 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ORRrr : ARM::ORRrr, 6109 isThumb2 ? ARM::t2ORRrr : ARM::ORRrr); 6110 case ARM::ATOMXOR6432: 6111 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2EORrr : ARM::EORrr, 6112 isThumb2 ? ARM::t2EORrr : ARM::EORrr); 6113 case ARM::ATOMAND6432: 6114 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2ANDrr : ARM::ANDrr, 6115 isThumb2 ? ARM::t2ANDrr : ARM::ANDrr); 6116 case ARM::ATOMSWAP6432: 6117 return EmitAtomicBinary64(MI, BB, 0, 0, false); 6118 case ARM::ATOMCMPXCHG6432: 6119 return EmitAtomicBinary64(MI, BB, isThumb2 ? ARM::t2SUBrr : ARM::SUBrr, 6120 isThumb2 ? ARM::t2SBCrr : ARM::SBCrr, 6121 /*NeedsCarry*/ false, /*IsCmpxchg*/true); 6122 6123 case ARM::tMOVCCr_pseudo: { 6124 // To "insert" a SELECT_CC instruction, we actually have to insert the 6125 // diamond control-flow pattern. The incoming instruction knows the 6126 // destination vreg to set, the condition code register to branch on, the 6127 // true/false values to select between, and a branch opcode to use. 6128 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 6129 MachineFunction::iterator It = BB; 6130 ++It; 6131 6132 // thisMBB: 6133 // ... 6134 // TrueVal = ... 6135 // cmpTY ccX, r1, r2 6136 // bCC copy1MBB 6137 // fallthrough --> copy0MBB 6138 MachineBasicBlock *thisMBB = BB; 6139 MachineFunction *F = BB->getParent(); 6140 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); 6141 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 6142 F->insert(It, copy0MBB); 6143 F->insert(It, sinkMBB); 6144 6145 // Transfer the remainder of BB and its successor edges to sinkMBB. 6146 sinkMBB->splice(sinkMBB->begin(), BB, 6147 llvm::next(MachineBasicBlock::iterator(MI)), 6148 BB->end()); 6149 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 6150 6151 BB->addSuccessor(copy0MBB); 6152 BB->addSuccessor(sinkMBB); 6153 6154 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB) 6155 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg()); 6156 6157 // copy0MBB: 6158 // %FalseValue = ... 6159 // # fallthrough to sinkMBB 6160 BB = copy0MBB; 6161 6162 // Update machine-CFG edges 6163 BB->addSuccessor(sinkMBB); 6164 6165 // sinkMBB: 6166 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] 6167 // ... 6168 BB = sinkMBB; 6169 BuildMI(*BB, BB->begin(), dl, 6170 TII->get(ARM::PHI), MI->getOperand(0).getReg()) 6171 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB) 6172 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB); 6173 6174 MI->eraseFromParent(); // The pseudo instruction is gone now. 6175 return BB; 6176 } 6177 6178 case ARM::BCCi64: 6179 case ARM::BCCZi64: { 6180 // If there is an unconditional branch to the other successor, remove it. 6181 BB->erase(llvm::next(MachineBasicBlock::iterator(MI)), BB->end()); 6182 6183 // Compare both parts that make up the double comparison separately for 6184 // equality. 6185 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64; 6186 6187 unsigned LHS1 = MI->getOperand(1).getReg(); 6188 unsigned LHS2 = MI->getOperand(2).getReg(); 6189 if (RHSisZero) { 6190 AddDefaultPred(BuildMI(BB, dl, 6191 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 6192 .addReg(LHS1).addImm(0)); 6193 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 6194 .addReg(LHS2).addImm(0) 6195 .addImm(ARMCC::EQ).addReg(ARM::CPSR); 6196 } else { 6197 unsigned RHS1 = MI->getOperand(3).getReg(); 6198 unsigned RHS2 = MI->getOperand(4).getReg(); 6199 AddDefaultPred(BuildMI(BB, dl, 6200 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 6201 .addReg(LHS1).addReg(RHS1)); 6202 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 6203 .addReg(LHS2).addReg(RHS2) 6204 .addImm(ARMCC::EQ).addReg(ARM::CPSR); 6205 } 6206 6207 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB(); 6208 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB); 6209 if (MI->getOperand(0).getImm() == ARMCC::NE) 6210 std::swap(destMBB, exitMBB); 6211 6212 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 6213 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR); 6214 if (isThumb2) 6215 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB)); 6216 else 6217 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB); 6218 6219 MI->eraseFromParent(); // The pseudo instruction is gone now. 6220 return BB; 6221 } 6222 6223 case ARM::ABS: 6224 case ARM::t2ABS: { 6225 // To insert an ABS instruction, we have to insert the 6226 // diamond control-flow pattern. The incoming instruction knows the 6227 // source vreg to test against 0, the destination vreg to set, 6228 // the condition code register to branch on, the 6229 // true/false values to select between, and a branch opcode to use. 6230 // It transforms 6231 // V1 = ABS V0 6232 // into 6233 // V2 = MOVS V0 6234 // BCC (branch to SinkBB if V0 >= 0) 6235 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0) 6236 // SinkBB: V1 = PHI(V2, V3) 6237 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 6238 MachineFunction::iterator BBI = BB; 6239 ++BBI; 6240 MachineFunction *Fn = BB->getParent(); 6241 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB); 6242 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB); 6243 Fn->insert(BBI, RSBBB); 6244 Fn->insert(BBI, SinkBB); 6245 6246 unsigned int ABSSrcReg = MI->getOperand(1).getReg(); 6247 unsigned int ABSDstReg = MI->getOperand(0).getReg(); 6248 bool isThumb2 = Subtarget->isThumb2(); 6249 MachineRegisterInfo &MRI = Fn->getRegInfo(); 6250 // In Thumb mode S must not be specified if source register is the SP or 6251 // PC and if destination register is the SP, so restrict register class 6252 unsigned NewMovDstReg = MRI.createVirtualRegister( 6253 isThumb2 ? ARM::rGPRRegisterClass : ARM::GPRRegisterClass); 6254 unsigned NewRsbDstReg = MRI.createVirtualRegister( 6255 isThumb2 ? ARM::rGPRRegisterClass : ARM::GPRRegisterClass); 6256 6257 // Transfer the remainder of BB and its successor edges to sinkMBB. 6258 SinkBB->splice(SinkBB->begin(), BB, 6259 llvm::next(MachineBasicBlock::iterator(MI)), 6260 BB->end()); 6261 SinkBB->transferSuccessorsAndUpdatePHIs(BB); 6262 6263 BB->addSuccessor(RSBBB); 6264 BB->addSuccessor(SinkBB); 6265 6266 // fall through to SinkMBB 6267 RSBBB->addSuccessor(SinkBB); 6268 6269 // insert a movs at the end of BB 6270 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2MOVr : ARM::MOVr), 6271 NewMovDstReg) 6272 .addReg(ABSSrcReg, RegState::Kill) 6273 .addImm((unsigned)ARMCC::AL).addReg(0) 6274 .addReg(ARM::CPSR, RegState::Define); 6275 6276 // insert a bcc with opposite CC to ARMCC::MI at the end of BB 6277 BuildMI(BB, dl, 6278 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB) 6279 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR); 6280 6281 // insert rsbri in RSBBB 6282 // Note: BCC and rsbri will be converted into predicated rsbmi 6283 // by if-conversion pass 6284 BuildMI(*RSBBB, RSBBB->begin(), dl, 6285 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg) 6286 .addReg(NewMovDstReg, RegState::Kill) 6287 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0); 6288 6289 // insert PHI in SinkBB, 6290 // reuse ABSDstReg to not change uses of ABS instruction 6291 BuildMI(*SinkBB, SinkBB->begin(), dl, 6292 TII->get(ARM::PHI), ABSDstReg) 6293 .addReg(NewRsbDstReg).addMBB(RSBBB) 6294 .addReg(NewMovDstReg).addMBB(BB); 6295 6296 // remove ABS instruction 6297 MI->eraseFromParent(); 6298 6299 // return last added BB 6300 return SinkBB; 6301 } 6302 } 6303 } 6304 6305 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI, 6306 SDNode *Node) const { 6307 const MCInstrDesc &MCID = MI->getDesc(); 6308 if (!MCID.hasPostISelHook()) { 6309 assert(!convertAddSubFlagsOpcode(MI->getOpcode()) && 6310 "Pseudo flag-setting opcodes must be marked with 'hasPostISelHook'"); 6311 return; 6312 } 6313 6314 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB, 6315 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional 6316 // operand is still set to noreg. If needed, set the optional operand's 6317 // register to CPSR, and remove the redundant implicit def. 6318 // 6319 // e.g. ADCS (...opt:%noreg, CPSR<imp-def>) -> ADC (... opt:CPSR<def>). 6320 6321 // Rename pseudo opcodes. 6322 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode()); 6323 if (NewOpc) { 6324 const ARMBaseInstrInfo *TII = 6325 static_cast<const ARMBaseInstrInfo*>(getTargetMachine().getInstrInfo()); 6326 MI->setDesc(TII->get(NewOpc)); 6327 } 6328 unsigned ccOutIdx = MCID.getNumOperands() - 1; 6329 6330 // Any ARM instruction that sets the 's' bit should specify an optional 6331 // "cc_out" operand in the last operand position. 6332 if (!MCID.hasOptionalDef() || !MCID.OpInfo[ccOutIdx].isOptionalDef()) { 6333 assert(!NewOpc && "Optional cc_out operand required"); 6334 return; 6335 } 6336 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it 6337 // since we already have an optional CPSR def. 6338 bool definesCPSR = false; 6339 bool deadCPSR = false; 6340 for (unsigned i = MCID.getNumOperands(), e = MI->getNumOperands(); 6341 i != e; ++i) { 6342 const MachineOperand &MO = MI->getOperand(i); 6343 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) { 6344 definesCPSR = true; 6345 if (MO.isDead()) 6346 deadCPSR = true; 6347 MI->RemoveOperand(i); 6348 break; 6349 } 6350 } 6351 if (!definesCPSR) { 6352 assert(!NewOpc && "Optional cc_out operand required"); 6353 return; 6354 } 6355 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag"); 6356 if (deadCPSR) { 6357 assert(!MI->getOperand(ccOutIdx).getReg() && 6358 "expect uninitialized optional cc_out operand"); 6359 return; 6360 } 6361 6362 // If this instruction was defined with an optional CPSR def and its dag node 6363 // had a live implicit CPSR def, then activate the optional CPSR def. 6364 MachineOperand &MO = MI->getOperand(ccOutIdx); 6365 MO.setReg(ARM::CPSR); 6366 MO.setIsDef(true); 6367 } 6368 6369 //===----------------------------------------------------------------------===// 6370 // ARM Optimization Hooks 6371 //===----------------------------------------------------------------------===// 6372 6373 static 6374 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, 6375 TargetLowering::DAGCombinerInfo &DCI) { 6376 SelectionDAG &DAG = DCI.DAG; 6377 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6378 EVT VT = N->getValueType(0); 6379 unsigned Opc = N->getOpcode(); 6380 bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC; 6381 SDValue LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1); 6382 SDValue RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2); 6383 ISD::CondCode CC = ISD::SETCC_INVALID; 6384 6385 if (isSlctCC) { 6386 CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get(); 6387 } else { 6388 SDValue CCOp = Slct.getOperand(0); 6389 if (CCOp.getOpcode() == ISD::SETCC) 6390 CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get(); 6391 } 6392 6393 bool DoXform = false; 6394 bool InvCC = false; 6395 assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) && 6396 "Bad input!"); 6397 6398 if (LHS.getOpcode() == ISD::Constant && 6399 cast<ConstantSDNode>(LHS)->isNullValue()) { 6400 DoXform = true; 6401 } else if (CC != ISD::SETCC_INVALID && 6402 RHS.getOpcode() == ISD::Constant && 6403 cast<ConstantSDNode>(RHS)->isNullValue()) { 6404 std::swap(LHS, RHS); 6405 SDValue Op0 = Slct.getOperand(0); 6406 EVT OpVT = isSlctCC ? Op0.getValueType() : 6407 Op0.getOperand(0).getValueType(); 6408 bool isInt = OpVT.isInteger(); 6409 CC = ISD::getSetCCInverse(CC, isInt); 6410 6411 if (!TLI.isCondCodeLegal(CC, OpVT)) 6412 return SDValue(); // Inverse operator isn't legal. 6413 6414 DoXform = true; 6415 InvCC = true; 6416 } 6417 6418 if (DoXform) { 6419 SDValue Result = DAG.getNode(Opc, RHS.getDebugLoc(), VT, OtherOp, RHS); 6420 if (isSlctCC) 6421 return DAG.getSelectCC(N->getDebugLoc(), OtherOp, Result, 6422 Slct.getOperand(0), Slct.getOperand(1), CC); 6423 SDValue CCOp = Slct.getOperand(0); 6424 if (InvCC) 6425 CCOp = DAG.getSetCC(Slct.getDebugLoc(), CCOp.getValueType(), 6426 CCOp.getOperand(0), CCOp.getOperand(1), CC); 6427 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT, 6428 CCOp, OtherOp, Result); 6429 } 6430 return SDValue(); 6431 } 6432 6433 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction 6434 // (only after legalization). 6435 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1, 6436 TargetLowering::DAGCombinerInfo &DCI, 6437 const ARMSubtarget *Subtarget) { 6438 6439 // Only perform optimization if after legalize, and if NEON is available. We 6440 // also expected both operands to be BUILD_VECTORs. 6441 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON() 6442 || N0.getOpcode() != ISD::BUILD_VECTOR 6443 || N1.getOpcode() != ISD::BUILD_VECTOR) 6444 return SDValue(); 6445 6446 // Check output type since VPADDL operand elements can only be 8, 16, or 32. 6447 EVT VT = N->getValueType(0); 6448 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64) 6449 return SDValue(); 6450 6451 // Check that the vector operands are of the right form. 6452 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR 6453 // operands, where N is the size of the formed vector. 6454 // Each EXTRACT_VECTOR should have the same input vector and odd or even 6455 // index such that we have a pair wise add pattern. 6456 6457 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing. 6458 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT) 6459 return SDValue(); 6460 SDValue Vec = N0->getOperand(0)->getOperand(0); 6461 SDNode *V = Vec.getNode(); 6462 unsigned nextIndex = 0; 6463 6464 // For each operands to the ADD which are BUILD_VECTORs, 6465 // check to see if each of their operands are an EXTRACT_VECTOR with 6466 // the same vector and appropriate index. 6467 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) { 6468 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT 6469 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 6470 6471 SDValue ExtVec0 = N0->getOperand(i); 6472 SDValue ExtVec1 = N1->getOperand(i); 6473 6474 // First operand is the vector, verify its the same. 6475 if (V != ExtVec0->getOperand(0).getNode() || 6476 V != ExtVec1->getOperand(0).getNode()) 6477 return SDValue(); 6478 6479 // Second is the constant, verify its correct. 6480 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1)); 6481 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1)); 6482 6483 // For the constant, we want to see all the even or all the odd. 6484 if (!C0 || !C1 || C0->getZExtValue() != nextIndex 6485 || C1->getZExtValue() != nextIndex+1) 6486 return SDValue(); 6487 6488 // Increment index. 6489 nextIndex+=2; 6490 } else 6491 return SDValue(); 6492 } 6493 6494 // Create VPADDL node. 6495 SelectionDAG &DAG = DCI.DAG; 6496 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6497 6498 // Build operand list. 6499 SmallVector<SDValue, 8> Ops; 6500 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls, 6501 TLI.getPointerTy())); 6502 6503 // Input is the vector. 6504 Ops.push_back(Vec); 6505 6506 // Get widened type and narrowed type. 6507 MVT widenType; 6508 unsigned numElem = VT.getVectorNumElements(); 6509 switch (VT.getVectorElementType().getSimpleVT().SimpleTy) { 6510 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break; 6511 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break; 6512 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break; 6513 default: 6514 assert(0 && "Invalid vector element type for padd optimization."); 6515 } 6516 6517 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(), 6518 widenType, &Ops[0], Ops.size()); 6519 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, tmp); 6520 } 6521 6522 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with 6523 /// operands N0 and N1. This is a helper for PerformADDCombine that is 6524 /// called with the default operands, and if that fails, with commuted 6525 /// operands. 6526 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1, 6527 TargetLowering::DAGCombinerInfo &DCI, 6528 const ARMSubtarget *Subtarget){ 6529 6530 // Attempt to create vpaddl for this add. 6531 SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget); 6532 if (Result.getNode()) 6533 return Result; 6534 6535 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c)) 6536 if (N0.getOpcode() == ISD::SELECT && N0.getNode()->hasOneUse()) { 6537 SDValue Result = combineSelectAndUse(N, N0, N1, DCI); 6538 if (Result.getNode()) return Result; 6539 } 6540 return SDValue(); 6541 } 6542 6543 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD. 6544 /// 6545 static SDValue PerformADDCombine(SDNode *N, 6546 TargetLowering::DAGCombinerInfo &DCI, 6547 const ARMSubtarget *Subtarget) { 6548 SDValue N0 = N->getOperand(0); 6549 SDValue N1 = N->getOperand(1); 6550 6551 // First try with the default operand order. 6552 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget); 6553 if (Result.getNode()) 6554 return Result; 6555 6556 // If that didn't work, try again with the operands commuted. 6557 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget); 6558 } 6559 6560 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB. 6561 /// 6562 static SDValue PerformSUBCombine(SDNode *N, 6563 TargetLowering::DAGCombinerInfo &DCI) { 6564 SDValue N0 = N->getOperand(0); 6565 SDValue N1 = N->getOperand(1); 6566 6567 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c)) 6568 if (N1.getOpcode() == ISD::SELECT && N1.getNode()->hasOneUse()) { 6569 SDValue Result = combineSelectAndUse(N, N1, N0, DCI); 6570 if (Result.getNode()) return Result; 6571 } 6572 6573 return SDValue(); 6574 } 6575 6576 /// PerformVMULCombine 6577 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the 6578 /// special multiplier accumulator forwarding. 6579 /// vmul d3, d0, d2 6580 /// vmla d3, d1, d2 6581 /// is faster than 6582 /// vadd d3, d0, d1 6583 /// vmul d3, d3, d2 6584 static SDValue PerformVMULCombine(SDNode *N, 6585 TargetLowering::DAGCombinerInfo &DCI, 6586 const ARMSubtarget *Subtarget) { 6587 if (!Subtarget->hasVMLxForwarding()) 6588 return SDValue(); 6589 6590 SelectionDAG &DAG = DCI.DAG; 6591 SDValue N0 = N->getOperand(0); 6592 SDValue N1 = N->getOperand(1); 6593 unsigned Opcode = N0.getOpcode(); 6594 if (Opcode != ISD::ADD && Opcode != ISD::SUB && 6595 Opcode != ISD::FADD && Opcode != ISD::FSUB) { 6596 Opcode = N1.getOpcode(); 6597 if (Opcode != ISD::ADD && Opcode != ISD::SUB && 6598 Opcode != ISD::FADD && Opcode != ISD::FSUB) 6599 return SDValue(); 6600 std::swap(N0, N1); 6601 } 6602 6603 EVT VT = N->getValueType(0); 6604 DebugLoc DL = N->getDebugLoc(); 6605 SDValue N00 = N0->getOperand(0); 6606 SDValue N01 = N0->getOperand(1); 6607 return DAG.getNode(Opcode, DL, VT, 6608 DAG.getNode(ISD::MUL, DL, VT, N00, N1), 6609 DAG.getNode(ISD::MUL, DL, VT, N01, N1)); 6610 } 6611 6612 static SDValue PerformMULCombine(SDNode *N, 6613 TargetLowering::DAGCombinerInfo &DCI, 6614 const ARMSubtarget *Subtarget) { 6615 SelectionDAG &DAG = DCI.DAG; 6616 6617 if (Subtarget->isThumb1Only()) 6618 return SDValue(); 6619 6620 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) 6621 return SDValue(); 6622 6623 EVT VT = N->getValueType(0); 6624 if (VT.is64BitVector() || VT.is128BitVector()) 6625 return PerformVMULCombine(N, DCI, Subtarget); 6626 if (VT != MVT::i32) 6627 return SDValue(); 6628 6629 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); 6630 if (!C) 6631 return SDValue(); 6632 6633 uint64_t MulAmt = C->getZExtValue(); 6634 unsigned ShiftAmt = CountTrailingZeros_64(MulAmt); 6635 ShiftAmt = ShiftAmt & (32 - 1); 6636 SDValue V = N->getOperand(0); 6637 DebugLoc DL = N->getDebugLoc(); 6638 6639 SDValue Res; 6640 MulAmt >>= ShiftAmt; 6641 if (isPowerOf2_32(MulAmt - 1)) { 6642 // (mul x, 2^N + 1) => (add (shl x, N), x) 6643 Res = DAG.getNode(ISD::ADD, DL, VT, 6644 V, DAG.getNode(ISD::SHL, DL, VT, 6645 V, DAG.getConstant(Log2_32(MulAmt-1), 6646 MVT::i32))); 6647 } else if (isPowerOf2_32(MulAmt + 1)) { 6648 // (mul x, 2^N - 1) => (sub (shl x, N), x) 6649 Res = DAG.getNode(ISD::SUB, DL, VT, 6650 DAG.getNode(ISD::SHL, DL, VT, 6651 V, DAG.getConstant(Log2_32(MulAmt+1), 6652 MVT::i32)), 6653 V); 6654 } else 6655 return SDValue(); 6656 6657 if (ShiftAmt != 0) 6658 Res = DAG.getNode(ISD::SHL, DL, VT, Res, 6659 DAG.getConstant(ShiftAmt, MVT::i32)); 6660 6661 // Do not add new nodes to DAG combiner worklist. 6662 DCI.CombineTo(N, Res, false); 6663 return SDValue(); 6664 } 6665 6666 static SDValue PerformANDCombine(SDNode *N, 6667 TargetLowering::DAGCombinerInfo &DCI) { 6668 6669 // Attempt to use immediate-form VBIC 6670 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1)); 6671 DebugLoc dl = N->getDebugLoc(); 6672 EVT VT = N->getValueType(0); 6673 SelectionDAG &DAG = DCI.DAG; 6674 6675 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT)) 6676 return SDValue(); 6677 6678 APInt SplatBits, SplatUndef; 6679 unsigned SplatBitSize; 6680 bool HasAnyUndefs; 6681 if (BVN && 6682 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 6683 if (SplatBitSize <= 64) { 6684 EVT VbicVT; 6685 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(), 6686 SplatUndef.getZExtValue(), SplatBitSize, 6687 DAG, VbicVT, VT.is128BitVector(), 6688 OtherModImm); 6689 if (Val.getNode()) { 6690 SDValue Input = 6691 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0)); 6692 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val); 6693 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic); 6694 } 6695 } 6696 } 6697 6698 return SDValue(); 6699 } 6700 6701 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR 6702 static SDValue PerformORCombine(SDNode *N, 6703 TargetLowering::DAGCombinerInfo &DCI, 6704 const ARMSubtarget *Subtarget) { 6705 // Attempt to use immediate-form VORR 6706 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1)); 6707 DebugLoc dl = N->getDebugLoc(); 6708 EVT VT = N->getValueType(0); 6709 SelectionDAG &DAG = DCI.DAG; 6710 6711 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT)) 6712 return SDValue(); 6713 6714 APInt SplatBits, SplatUndef; 6715 unsigned SplatBitSize; 6716 bool HasAnyUndefs; 6717 if (BVN && Subtarget->hasNEON() && 6718 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 6719 if (SplatBitSize <= 64) { 6720 EVT VorrVT; 6721 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(), 6722 SplatUndef.getZExtValue(), SplatBitSize, 6723 DAG, VorrVT, VT.is128BitVector(), 6724 OtherModImm); 6725 if (Val.getNode()) { 6726 SDValue Input = 6727 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0)); 6728 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val); 6729 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr); 6730 } 6731 } 6732 } 6733 6734 SDValue N0 = N->getOperand(0); 6735 if (N0.getOpcode() != ISD::AND) 6736 return SDValue(); 6737 SDValue N1 = N->getOperand(1); 6738 6739 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant. 6740 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() && 6741 DAG.getTargetLoweringInfo().isTypeLegal(VT)) { 6742 APInt SplatUndef; 6743 unsigned SplatBitSize; 6744 bool HasAnyUndefs; 6745 6746 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1)); 6747 APInt SplatBits0; 6748 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize, 6749 HasAnyUndefs) && !HasAnyUndefs) { 6750 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1)); 6751 APInt SplatBits1; 6752 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize, 6753 HasAnyUndefs) && !HasAnyUndefs && 6754 SplatBits0 == ~SplatBits1) { 6755 // Canonicalize the vector type to make instruction selection simpler. 6756 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32; 6757 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT, 6758 N0->getOperand(1), N0->getOperand(0), 6759 N1->getOperand(0)); 6760 return DAG.getNode(ISD::BITCAST, dl, VT, Result); 6761 } 6762 } 6763 } 6764 6765 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when 6766 // reasonable. 6767 6768 // BFI is only available on V6T2+ 6769 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops()) 6770 return SDValue(); 6771 6772 DebugLoc DL = N->getDebugLoc(); 6773 // 1) or (and A, mask), val => ARMbfi A, val, mask 6774 // iff (val & mask) == val 6775 // 6776 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask 6777 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2) 6778 // && mask == ~mask2 6779 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2) 6780 // && ~mask == mask2 6781 // (i.e., copy a bitfield value into another bitfield of the same width) 6782 6783 if (VT != MVT::i32) 6784 return SDValue(); 6785 6786 SDValue N00 = N0.getOperand(0); 6787 6788 // The value and the mask need to be constants so we can verify this is 6789 // actually a bitfield set. If the mask is 0xffff, we can do better 6790 // via a movt instruction, so don't use BFI in that case. 6791 SDValue MaskOp = N0.getOperand(1); 6792 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp); 6793 if (!MaskC) 6794 return SDValue(); 6795 unsigned Mask = MaskC->getZExtValue(); 6796 if (Mask == 0xffff) 6797 return SDValue(); 6798 SDValue Res; 6799 // Case (1): or (and A, mask), val => ARMbfi A, val, mask 6800 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 6801 if (N1C) { 6802 unsigned Val = N1C->getZExtValue(); 6803 if ((Val & ~Mask) != Val) 6804 return SDValue(); 6805 6806 if (ARM::isBitFieldInvertedMask(Mask)) { 6807 Val >>= CountTrailingZeros_32(~Mask); 6808 6809 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, 6810 DAG.getConstant(Val, MVT::i32), 6811 DAG.getConstant(Mask, MVT::i32)); 6812 6813 // Do not add new nodes to DAG combiner worklist. 6814 DCI.CombineTo(N, Res, false); 6815 return SDValue(); 6816 } 6817 } else if (N1.getOpcode() == ISD::AND) { 6818 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask 6819 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 6820 if (!N11C) 6821 return SDValue(); 6822 unsigned Mask2 = N11C->getZExtValue(); 6823 6824 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern 6825 // as is to match. 6826 if (ARM::isBitFieldInvertedMask(Mask) && 6827 (Mask == ~Mask2)) { 6828 // The pack halfword instruction works better for masks that fit it, 6829 // so use that when it's available. 6830 if (Subtarget->hasT2ExtractPack() && 6831 (Mask == 0xffff || Mask == 0xffff0000)) 6832 return SDValue(); 6833 // 2a 6834 unsigned amt = CountTrailingZeros_32(Mask2); 6835 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0), 6836 DAG.getConstant(amt, MVT::i32)); 6837 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res, 6838 DAG.getConstant(Mask, MVT::i32)); 6839 // Do not add new nodes to DAG combiner worklist. 6840 DCI.CombineTo(N, Res, false); 6841 return SDValue(); 6842 } else if (ARM::isBitFieldInvertedMask(~Mask) && 6843 (~Mask == Mask2)) { 6844 // The pack halfword instruction works better for masks that fit it, 6845 // so use that when it's available. 6846 if (Subtarget->hasT2ExtractPack() && 6847 (Mask2 == 0xffff || Mask2 == 0xffff0000)) 6848 return SDValue(); 6849 // 2b 6850 unsigned lsb = CountTrailingZeros_32(Mask); 6851 Res = DAG.getNode(ISD::SRL, DL, VT, N00, 6852 DAG.getConstant(lsb, MVT::i32)); 6853 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res, 6854 DAG.getConstant(Mask2, MVT::i32)); 6855 // Do not add new nodes to DAG combiner worklist. 6856 DCI.CombineTo(N, Res, false); 6857 return SDValue(); 6858 } 6859 } 6860 6861 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) && 6862 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) && 6863 ARM::isBitFieldInvertedMask(~Mask)) { 6864 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask 6865 // where lsb(mask) == #shamt and masked bits of B are known zero. 6866 SDValue ShAmt = N00.getOperand(1); 6867 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue(); 6868 unsigned LSB = CountTrailingZeros_32(Mask); 6869 if (ShAmtC != LSB) 6870 return SDValue(); 6871 6872 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0), 6873 DAG.getConstant(~Mask, MVT::i32)); 6874 6875 // Do not add new nodes to DAG combiner worklist. 6876 DCI.CombineTo(N, Res, false); 6877 } 6878 6879 return SDValue(); 6880 } 6881 6882 /// PerformBFICombine - (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff 6883 /// the bits being cleared by the AND are not demanded by the BFI. 6884 static SDValue PerformBFICombine(SDNode *N, 6885 TargetLowering::DAGCombinerInfo &DCI) { 6886 SDValue N1 = N->getOperand(1); 6887 if (N1.getOpcode() == ISD::AND) { 6888 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 6889 if (!N11C) 6890 return SDValue(); 6891 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); 6892 unsigned LSB = CountTrailingZeros_32(~InvMask); 6893 unsigned Width = (32 - CountLeadingZeros_32(~InvMask)) - LSB; 6894 unsigned Mask = (1 << Width)-1; 6895 unsigned Mask2 = N11C->getZExtValue(); 6896 if ((Mask & (~Mask2)) == 0) 6897 return DCI.DAG.getNode(ARMISD::BFI, N->getDebugLoc(), N->getValueType(0), 6898 N->getOperand(0), N1.getOperand(0), 6899 N->getOperand(2)); 6900 } 6901 return SDValue(); 6902 } 6903 6904 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for 6905 /// ARMISD::VMOVRRD. 6906 static SDValue PerformVMOVRRDCombine(SDNode *N, 6907 TargetLowering::DAGCombinerInfo &DCI) { 6908 // vmovrrd(vmovdrr x, y) -> x,y 6909 SDValue InDouble = N->getOperand(0); 6910 if (InDouble.getOpcode() == ARMISD::VMOVDRR) 6911 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1)); 6912 6913 // vmovrrd(load f64) -> (load i32), (load i32) 6914 SDNode *InNode = InDouble.getNode(); 6915 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() && 6916 InNode->getValueType(0) == MVT::f64 && 6917 InNode->getOperand(1).getOpcode() == ISD::FrameIndex && 6918 !cast<LoadSDNode>(InNode)->isVolatile()) { 6919 // TODO: Should this be done for non-FrameIndex operands? 6920 LoadSDNode *LD = cast<LoadSDNode>(InNode); 6921 6922 SelectionDAG &DAG = DCI.DAG; 6923 DebugLoc DL = LD->getDebugLoc(); 6924 SDValue BasePtr = LD->getBasePtr(); 6925 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr, 6926 LD->getPointerInfo(), LD->isVolatile(), 6927 LD->isNonTemporal(), LD->getAlignment()); 6928 6929 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, 6930 DAG.getConstant(4, MVT::i32)); 6931 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr, 6932 LD->getPointerInfo(), LD->isVolatile(), 6933 LD->isNonTemporal(), 6934 std::min(4U, LD->getAlignment() / 2)); 6935 6936 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1)); 6937 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2); 6938 DCI.RemoveFromWorklist(LD); 6939 DAG.DeleteNode(LD); 6940 return Result; 6941 } 6942 6943 return SDValue(); 6944 } 6945 6946 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for 6947 /// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands. 6948 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) { 6949 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X) 6950 SDValue Op0 = N->getOperand(0); 6951 SDValue Op1 = N->getOperand(1); 6952 if (Op0.getOpcode() == ISD::BITCAST) 6953 Op0 = Op0.getOperand(0); 6954 if (Op1.getOpcode() == ISD::BITCAST) 6955 Op1 = Op1.getOperand(0); 6956 if (Op0.getOpcode() == ARMISD::VMOVRRD && 6957 Op0.getNode() == Op1.getNode() && 6958 Op0.getResNo() == 0 && Op1.getResNo() == 1) 6959 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), 6960 N->getValueType(0), Op0.getOperand(0)); 6961 return SDValue(); 6962 } 6963 6964 /// PerformSTORECombine - Target-specific dag combine xforms for 6965 /// ISD::STORE. 6966 static SDValue PerformSTORECombine(SDNode *N, 6967 TargetLowering::DAGCombinerInfo &DCI) { 6968 // Bitcast an i64 store extracted from a vector to f64. 6969 // Otherwise, the i64 value will be legalized to a pair of i32 values. 6970 StoreSDNode *St = cast<StoreSDNode>(N); 6971 SDValue StVal = St->getValue(); 6972 if (!ISD::isNormalStore(St) || St->isVolatile()) 6973 return SDValue(); 6974 6975 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR && 6976 StVal.getNode()->hasOneUse() && !St->isVolatile()) { 6977 SelectionDAG &DAG = DCI.DAG; 6978 DebugLoc DL = St->getDebugLoc(); 6979 SDValue BasePtr = St->getBasePtr(); 6980 SDValue NewST1 = DAG.getStore(St->getChain(), DL, 6981 StVal.getNode()->getOperand(0), BasePtr, 6982 St->getPointerInfo(), St->isVolatile(), 6983 St->isNonTemporal(), St->getAlignment()); 6984 6985 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, 6986 DAG.getConstant(4, MVT::i32)); 6987 return DAG.getStore(NewST1.getValue(0), DL, StVal.getNode()->getOperand(1), 6988 OffsetPtr, St->getPointerInfo(), St->isVolatile(), 6989 St->isNonTemporal(), 6990 std::min(4U, St->getAlignment() / 2)); 6991 } 6992 6993 if (StVal.getValueType() != MVT::i64 || 6994 StVal.getNode()->getOpcode() != ISD::EXTRACT_VECTOR_ELT) 6995 return SDValue(); 6996 6997 SelectionDAG &DAG = DCI.DAG; 6998 DebugLoc dl = StVal.getDebugLoc(); 6999 SDValue IntVec = StVal.getOperand(0); 7000 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, 7001 IntVec.getValueType().getVectorNumElements()); 7002 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec); 7003 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, 7004 Vec, StVal.getOperand(1)); 7005 dl = N->getDebugLoc(); 7006 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt); 7007 // Make the DAGCombiner fold the bitcasts. 7008 DCI.AddToWorklist(Vec.getNode()); 7009 DCI.AddToWorklist(ExtElt.getNode()); 7010 DCI.AddToWorklist(V.getNode()); 7011 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(), 7012 St->getPointerInfo(), St->isVolatile(), 7013 St->isNonTemporal(), St->getAlignment(), 7014 St->getTBAAInfo()); 7015 } 7016 7017 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node 7018 /// are normal, non-volatile loads. If so, it is profitable to bitcast an 7019 /// i64 vector to have f64 elements, since the value can then be loaded 7020 /// directly into a VFP register. 7021 static bool hasNormalLoadOperand(SDNode *N) { 7022 unsigned NumElts = N->getValueType(0).getVectorNumElements(); 7023 for (unsigned i = 0; i < NumElts; ++i) { 7024 SDNode *Elt = N->getOperand(i).getNode(); 7025 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile()) 7026 return true; 7027 } 7028 return false; 7029 } 7030 7031 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for 7032 /// ISD::BUILD_VECTOR. 7033 static SDValue PerformBUILD_VECTORCombine(SDNode *N, 7034 TargetLowering::DAGCombinerInfo &DCI){ 7035 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X): 7036 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value 7037 // into a pair of GPRs, which is fine when the value is used as a scalar, 7038 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD. 7039 SelectionDAG &DAG = DCI.DAG; 7040 if (N->getNumOperands() == 2) { 7041 SDValue RV = PerformVMOVDRRCombine(N, DAG); 7042 if (RV.getNode()) 7043 return RV; 7044 } 7045 7046 // Load i64 elements as f64 values so that type legalization does not split 7047 // them up into i32 values. 7048 EVT VT = N->getValueType(0); 7049 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N)) 7050 return SDValue(); 7051 DebugLoc dl = N->getDebugLoc(); 7052 SmallVector<SDValue, 8> Ops; 7053 unsigned NumElts = VT.getVectorNumElements(); 7054 for (unsigned i = 0; i < NumElts; ++i) { 7055 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i)); 7056 Ops.push_back(V); 7057 // Make the DAGCombiner fold the bitcast. 7058 DCI.AddToWorklist(V.getNode()); 7059 } 7060 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts); 7061 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops.data(), NumElts); 7062 return DAG.getNode(ISD::BITCAST, dl, VT, BV); 7063 } 7064 7065 /// PerformInsertEltCombine - Target-specific dag combine xforms for 7066 /// ISD::INSERT_VECTOR_ELT. 7067 static SDValue PerformInsertEltCombine(SDNode *N, 7068 TargetLowering::DAGCombinerInfo &DCI) { 7069 // Bitcast an i64 load inserted into a vector to f64. 7070 // Otherwise, the i64 value will be legalized to a pair of i32 values. 7071 EVT VT = N->getValueType(0); 7072 SDNode *Elt = N->getOperand(1).getNode(); 7073 if (VT.getVectorElementType() != MVT::i64 || 7074 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile()) 7075 return SDValue(); 7076 7077 SelectionDAG &DAG = DCI.DAG; 7078 DebugLoc dl = N->getDebugLoc(); 7079 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, 7080 VT.getVectorNumElements()); 7081 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0)); 7082 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1)); 7083 // Make the DAGCombiner fold the bitcasts. 7084 DCI.AddToWorklist(Vec.getNode()); 7085 DCI.AddToWorklist(V.getNode()); 7086 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT, 7087 Vec, V, N->getOperand(2)); 7088 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt); 7089 } 7090 7091 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for 7092 /// ISD::VECTOR_SHUFFLE. 7093 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) { 7094 // The LLVM shufflevector instruction does not require the shuffle mask 7095 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does 7096 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the 7097 // operands do not match the mask length, they are extended by concatenating 7098 // them with undef vectors. That is probably the right thing for other 7099 // targets, but for NEON it is better to concatenate two double-register 7100 // size vector operands into a single quad-register size vector. Do that 7101 // transformation here: 7102 // shuffle(concat(v1, undef), concat(v2, undef)) -> 7103 // shuffle(concat(v1, v2), undef) 7104 SDValue Op0 = N->getOperand(0); 7105 SDValue Op1 = N->getOperand(1); 7106 if (Op0.getOpcode() != ISD::CONCAT_VECTORS || 7107 Op1.getOpcode() != ISD::CONCAT_VECTORS || 7108 Op0.getNumOperands() != 2 || 7109 Op1.getNumOperands() != 2) 7110 return SDValue(); 7111 SDValue Concat0Op1 = Op0.getOperand(1); 7112 SDValue Concat1Op1 = Op1.getOperand(1); 7113 if (Concat0Op1.getOpcode() != ISD::UNDEF || 7114 Concat1Op1.getOpcode() != ISD::UNDEF) 7115 return SDValue(); 7116 // Skip the transformation if any of the types are illegal. 7117 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7118 EVT VT = N->getValueType(0); 7119 if (!TLI.isTypeLegal(VT) || 7120 !TLI.isTypeLegal(Concat0Op1.getValueType()) || 7121 !TLI.isTypeLegal(Concat1Op1.getValueType())) 7122 return SDValue(); 7123 7124 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT, 7125 Op0.getOperand(0), Op1.getOperand(0)); 7126 // Translate the shuffle mask. 7127 SmallVector<int, 16> NewMask; 7128 unsigned NumElts = VT.getVectorNumElements(); 7129 unsigned HalfElts = NumElts/2; 7130 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 7131 for (unsigned n = 0; n < NumElts; ++n) { 7132 int MaskElt = SVN->getMaskElt(n); 7133 int NewElt = -1; 7134 if (MaskElt < (int)HalfElts) 7135 NewElt = MaskElt; 7136 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts)) 7137 NewElt = HalfElts + MaskElt - NumElts; 7138 NewMask.push_back(NewElt); 7139 } 7140 return DAG.getVectorShuffle(VT, N->getDebugLoc(), NewConcat, 7141 DAG.getUNDEF(VT), NewMask.data()); 7142 } 7143 7144 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP and 7145 /// NEON load/store intrinsics to merge base address updates. 7146 static SDValue CombineBaseUpdate(SDNode *N, 7147 TargetLowering::DAGCombinerInfo &DCI) { 7148 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) 7149 return SDValue(); 7150 7151 SelectionDAG &DAG = DCI.DAG; 7152 bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID || 7153 N->getOpcode() == ISD::INTRINSIC_W_CHAIN); 7154 unsigned AddrOpIdx = (isIntrinsic ? 2 : 1); 7155 SDValue Addr = N->getOperand(AddrOpIdx); 7156 7157 // Search for a use of the address operand that is an increment. 7158 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), 7159 UE = Addr.getNode()->use_end(); UI != UE; ++UI) { 7160 SDNode *User = *UI; 7161 if (User->getOpcode() != ISD::ADD || 7162 UI.getUse().getResNo() != Addr.getResNo()) 7163 continue; 7164 7165 // Check that the add is independent of the load/store. Otherwise, folding 7166 // it would create a cycle. 7167 if (User->isPredecessorOf(N) || N->isPredecessorOf(User)) 7168 continue; 7169 7170 // Find the new opcode for the updating load/store. 7171 bool isLoad = true; 7172 bool isLaneOp = false; 7173 unsigned NewOpc = 0; 7174 unsigned NumVecs = 0; 7175 if (isIntrinsic) { 7176 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue(); 7177 switch (IntNo) { 7178 default: assert(0 && "unexpected intrinsic for Neon base update"); 7179 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD; 7180 NumVecs = 1; break; 7181 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD; 7182 NumVecs = 2; break; 7183 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD; 7184 NumVecs = 3; break; 7185 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD; 7186 NumVecs = 4; break; 7187 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD; 7188 NumVecs = 2; isLaneOp = true; break; 7189 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD; 7190 NumVecs = 3; isLaneOp = true; break; 7191 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD; 7192 NumVecs = 4; isLaneOp = true; break; 7193 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD; 7194 NumVecs = 1; isLoad = false; break; 7195 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD; 7196 NumVecs = 2; isLoad = false; break; 7197 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD; 7198 NumVecs = 3; isLoad = false; break; 7199 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD; 7200 NumVecs = 4; isLoad = false; break; 7201 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD; 7202 NumVecs = 2; isLoad = false; isLaneOp = true; break; 7203 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD; 7204 NumVecs = 3; isLoad = false; isLaneOp = true; break; 7205 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD; 7206 NumVecs = 4; isLoad = false; isLaneOp = true; break; 7207 } 7208 } else { 7209 isLaneOp = true; 7210 switch (N->getOpcode()) { 7211 default: assert(0 && "unexpected opcode for Neon base update"); 7212 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break; 7213 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break; 7214 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break; 7215 } 7216 } 7217 7218 // Find the size of memory referenced by the load/store. 7219 EVT VecTy; 7220 if (isLoad) 7221 VecTy = N->getValueType(0); 7222 else 7223 VecTy = N->getOperand(AddrOpIdx+1).getValueType(); 7224 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8; 7225 if (isLaneOp) 7226 NumBytes /= VecTy.getVectorNumElements(); 7227 7228 // If the increment is a constant, it must match the memory ref size. 7229 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0); 7230 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) { 7231 uint64_t IncVal = CInc->getZExtValue(); 7232 if (IncVal != NumBytes) 7233 continue; 7234 } else if (NumBytes >= 3 * 16) { 7235 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two 7236 // separate instructions that make it harder to use a non-constant update. 7237 continue; 7238 } 7239 7240 // Create the new updating load/store node. 7241 EVT Tys[6]; 7242 unsigned NumResultVecs = (isLoad ? NumVecs : 0); 7243 unsigned n; 7244 for (n = 0; n < NumResultVecs; ++n) 7245 Tys[n] = VecTy; 7246 Tys[n++] = MVT::i32; 7247 Tys[n] = MVT::Other; 7248 SDVTList SDTys = DAG.getVTList(Tys, NumResultVecs+2); 7249 SmallVector<SDValue, 8> Ops; 7250 Ops.push_back(N->getOperand(0)); // incoming chain 7251 Ops.push_back(N->getOperand(AddrOpIdx)); 7252 Ops.push_back(Inc); 7253 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands(); ++i) { 7254 Ops.push_back(N->getOperand(i)); 7255 } 7256 MemIntrinsicSDNode *MemInt = cast<MemIntrinsicSDNode>(N); 7257 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, N->getDebugLoc(), SDTys, 7258 Ops.data(), Ops.size(), 7259 MemInt->getMemoryVT(), 7260 MemInt->getMemOperand()); 7261 7262 // Update the uses. 7263 std::vector<SDValue> NewResults; 7264 for (unsigned i = 0; i < NumResultVecs; ++i) { 7265 NewResults.push_back(SDValue(UpdN.getNode(), i)); 7266 } 7267 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain 7268 DCI.CombineTo(N, NewResults); 7269 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs)); 7270 7271 break; 7272 } 7273 return SDValue(); 7274 } 7275 7276 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a 7277 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic 7278 /// are also VDUPLANEs. If so, combine them to a vldN-dup operation and 7279 /// return true. 7280 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) { 7281 SelectionDAG &DAG = DCI.DAG; 7282 EVT VT = N->getValueType(0); 7283 // vldN-dup instructions only support 64-bit vectors for N > 1. 7284 if (!VT.is64BitVector()) 7285 return false; 7286 7287 // Check if the VDUPLANE operand is a vldN-dup intrinsic. 7288 SDNode *VLD = N->getOperand(0).getNode(); 7289 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN) 7290 return false; 7291 unsigned NumVecs = 0; 7292 unsigned NewOpc = 0; 7293 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue(); 7294 if (IntNo == Intrinsic::arm_neon_vld2lane) { 7295 NumVecs = 2; 7296 NewOpc = ARMISD::VLD2DUP; 7297 } else if (IntNo == Intrinsic::arm_neon_vld3lane) { 7298 NumVecs = 3; 7299 NewOpc = ARMISD::VLD3DUP; 7300 } else if (IntNo == Intrinsic::arm_neon_vld4lane) { 7301 NumVecs = 4; 7302 NewOpc = ARMISD::VLD4DUP; 7303 } else { 7304 return false; 7305 } 7306 7307 // First check that all the vldN-lane uses are VDUPLANEs and that the lane 7308 // numbers match the load. 7309 unsigned VLDLaneNo = 7310 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue(); 7311 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end(); 7312 UI != UE; ++UI) { 7313 // Ignore uses of the chain result. 7314 if (UI.getUse().getResNo() == NumVecs) 7315 continue; 7316 SDNode *User = *UI; 7317 if (User->getOpcode() != ARMISD::VDUPLANE || 7318 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue()) 7319 return false; 7320 } 7321 7322 // Create the vldN-dup node. 7323 EVT Tys[5]; 7324 unsigned n; 7325 for (n = 0; n < NumVecs; ++n) 7326 Tys[n] = VT; 7327 Tys[n] = MVT::Other; 7328 SDVTList SDTys = DAG.getVTList(Tys, NumVecs+1); 7329 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) }; 7330 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD); 7331 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, VLD->getDebugLoc(), SDTys, 7332 Ops, 2, VLDMemInt->getMemoryVT(), 7333 VLDMemInt->getMemOperand()); 7334 7335 // Update the uses. 7336 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end(); 7337 UI != UE; ++UI) { 7338 unsigned ResNo = UI.getUse().getResNo(); 7339 // Ignore uses of the chain result. 7340 if (ResNo == NumVecs) 7341 continue; 7342 SDNode *User = *UI; 7343 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo)); 7344 } 7345 7346 // Now the vldN-lane intrinsic is dead except for its chain result. 7347 // Update uses of the chain. 7348 std::vector<SDValue> VLDDupResults; 7349 for (unsigned n = 0; n < NumVecs; ++n) 7350 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n)); 7351 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs)); 7352 DCI.CombineTo(VLD, VLDDupResults); 7353 7354 return true; 7355 } 7356 7357 /// PerformVDUPLANECombine - Target-specific dag combine xforms for 7358 /// ARMISD::VDUPLANE. 7359 static SDValue PerformVDUPLANECombine(SDNode *N, 7360 TargetLowering::DAGCombinerInfo &DCI) { 7361 SDValue Op = N->getOperand(0); 7362 7363 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses 7364 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation. 7365 if (CombineVLDDUP(N, DCI)) 7366 return SDValue(N, 0); 7367 7368 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is 7369 // redundant. Ignore bit_converts for now; element sizes are checked below. 7370 while (Op.getOpcode() == ISD::BITCAST) 7371 Op = Op.getOperand(0); 7372 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM) 7373 return SDValue(); 7374 7375 // Make sure the VMOV element size is not bigger than the VDUPLANE elements. 7376 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits(); 7377 // The canonical VMOV for a zero vector uses a 32-bit element size. 7378 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 7379 unsigned EltBits; 7380 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0) 7381 EltSize = 8; 7382 EVT VT = N->getValueType(0); 7383 if (EltSize > VT.getVectorElementType().getSizeInBits()) 7384 return SDValue(); 7385 7386 return DCI.DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op); 7387 } 7388 7389 // isConstVecPow2 - Return true if each vector element is a power of 2, all 7390 // elements are the same constant, C, and Log2(C) ranges from 1 to 32. 7391 static bool isConstVecPow2(SDValue ConstVec, bool isSigned, uint64_t &C) 7392 { 7393 integerPart cN; 7394 integerPart c0 = 0; 7395 for (unsigned I = 0, E = ConstVec.getValueType().getVectorNumElements(); 7396 I != E; I++) { 7397 ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(ConstVec.getOperand(I)); 7398 if (!C) 7399 return false; 7400 7401 bool isExact; 7402 APFloat APF = C->getValueAPF(); 7403 if (APF.convertToInteger(&cN, 64, isSigned, APFloat::rmTowardZero, &isExact) 7404 != APFloat::opOK || !isExact) 7405 return false; 7406 7407 c0 = (I == 0) ? cN : c0; 7408 if (!isPowerOf2_64(cN) || c0 != cN || Log2_64(c0) < 1 || Log2_64(c0) > 32) 7409 return false; 7410 } 7411 C = c0; 7412 return true; 7413 } 7414 7415 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD) 7416 /// can replace combinations of VMUL and VCVT (floating-point to integer) 7417 /// when the VMUL has a constant operand that is a power of 2. 7418 /// 7419 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>): 7420 /// vmul.f32 d16, d17, d16 7421 /// vcvt.s32.f32 d16, d16 7422 /// becomes: 7423 /// vcvt.s32.f32 d16, d16, #3 7424 static SDValue PerformVCVTCombine(SDNode *N, 7425 TargetLowering::DAGCombinerInfo &DCI, 7426 const ARMSubtarget *Subtarget) { 7427 SelectionDAG &DAG = DCI.DAG; 7428 SDValue Op = N->getOperand(0); 7429 7430 if (!Subtarget->hasNEON() || !Op.getValueType().isVector() || 7431 Op.getOpcode() != ISD::FMUL) 7432 return SDValue(); 7433 7434 uint64_t C; 7435 SDValue N0 = Op->getOperand(0); 7436 SDValue ConstVec = Op->getOperand(1); 7437 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT; 7438 7439 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR || 7440 !isConstVecPow2(ConstVec, isSigned, C)) 7441 return SDValue(); 7442 7443 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs : 7444 Intrinsic::arm_neon_vcvtfp2fxu; 7445 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(), 7446 N->getValueType(0), 7447 DAG.getConstant(IntrinsicOpcode, MVT::i32), N0, 7448 DAG.getConstant(Log2_64(C), MVT::i32)); 7449 } 7450 7451 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD) 7452 /// can replace combinations of VCVT (integer to floating-point) and VDIV 7453 /// when the VDIV has a constant operand that is a power of 2. 7454 /// 7455 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>): 7456 /// vcvt.f32.s32 d16, d16 7457 /// vdiv.f32 d16, d17, d16 7458 /// becomes: 7459 /// vcvt.f32.s32 d16, d16, #3 7460 static SDValue PerformVDIVCombine(SDNode *N, 7461 TargetLowering::DAGCombinerInfo &DCI, 7462 const ARMSubtarget *Subtarget) { 7463 SelectionDAG &DAG = DCI.DAG; 7464 SDValue Op = N->getOperand(0); 7465 unsigned OpOpcode = Op.getNode()->getOpcode(); 7466 7467 if (!Subtarget->hasNEON() || !N->getValueType(0).isVector() || 7468 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP)) 7469 return SDValue(); 7470 7471 uint64_t C; 7472 SDValue ConstVec = N->getOperand(1); 7473 bool isSigned = OpOpcode == ISD::SINT_TO_FP; 7474 7475 if (ConstVec.getOpcode() != ISD::BUILD_VECTOR || 7476 !isConstVecPow2(ConstVec, isSigned, C)) 7477 return SDValue(); 7478 7479 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp : 7480 Intrinsic::arm_neon_vcvtfxu2fp; 7481 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, N->getDebugLoc(), 7482 Op.getValueType(), 7483 DAG.getConstant(IntrinsicOpcode, MVT::i32), 7484 Op.getOperand(0), DAG.getConstant(Log2_64(C), MVT::i32)); 7485 } 7486 7487 /// Getvshiftimm - Check if this is a valid build_vector for the immediate 7488 /// operand of a vector shift operation, where all the elements of the 7489 /// build_vector must have the same constant integer value. 7490 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { 7491 // Ignore bit_converts. 7492 while (Op.getOpcode() == ISD::BITCAST) 7493 Op = Op.getOperand(0); 7494 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode()); 7495 APInt SplatBits, SplatUndef; 7496 unsigned SplatBitSize; 7497 bool HasAnyUndefs; 7498 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, 7499 HasAnyUndefs, ElementBits) || 7500 SplatBitSize > ElementBits) 7501 return false; 7502 Cnt = SplatBits.getSExtValue(); 7503 return true; 7504 } 7505 7506 /// isVShiftLImm - Check if this is a valid build_vector for the immediate 7507 /// operand of a vector shift left operation. That value must be in the range: 7508 /// 0 <= Value < ElementBits for a left shift; or 7509 /// 0 <= Value <= ElementBits for a long left shift. 7510 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { 7511 assert(VT.isVector() && "vector shift count is not a vector type"); 7512 unsigned ElementBits = VT.getVectorElementType().getSizeInBits(); 7513 if (! getVShiftImm(Op, ElementBits, Cnt)) 7514 return false; 7515 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits); 7516 } 7517 7518 /// isVShiftRImm - Check if this is a valid build_vector for the immediate 7519 /// operand of a vector shift right operation. For a shift opcode, the value 7520 /// is positive, but for an intrinsic the value count must be negative. The 7521 /// absolute value must be in the range: 7522 /// 1 <= |Value| <= ElementBits for a right shift; or 7523 /// 1 <= |Value| <= ElementBits/2 for a narrow right shift. 7524 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, 7525 int64_t &Cnt) { 7526 assert(VT.isVector() && "vector shift count is not a vector type"); 7527 unsigned ElementBits = VT.getVectorElementType().getSizeInBits(); 7528 if (! getVShiftImm(Op, ElementBits, Cnt)) 7529 return false; 7530 if (isIntrinsic) 7531 Cnt = -Cnt; 7532 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits)); 7533 } 7534 7535 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics. 7536 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) { 7537 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue(); 7538 switch (IntNo) { 7539 default: 7540 // Don't do anything for most intrinsics. 7541 break; 7542 7543 // Vector shifts: check for immediate versions and lower them. 7544 // Note: This is done during DAG combining instead of DAG legalizing because 7545 // the build_vectors for 64-bit vector element shift counts are generally 7546 // not legal, and it is hard to see their values after they get legalized to 7547 // loads from a constant pool. 7548 case Intrinsic::arm_neon_vshifts: 7549 case Intrinsic::arm_neon_vshiftu: 7550 case Intrinsic::arm_neon_vshiftls: 7551 case Intrinsic::arm_neon_vshiftlu: 7552 case Intrinsic::arm_neon_vshiftn: 7553 case Intrinsic::arm_neon_vrshifts: 7554 case Intrinsic::arm_neon_vrshiftu: 7555 case Intrinsic::arm_neon_vrshiftn: 7556 case Intrinsic::arm_neon_vqshifts: 7557 case Intrinsic::arm_neon_vqshiftu: 7558 case Intrinsic::arm_neon_vqshiftsu: 7559 case Intrinsic::arm_neon_vqshiftns: 7560 case Intrinsic::arm_neon_vqshiftnu: 7561 case Intrinsic::arm_neon_vqshiftnsu: 7562 case Intrinsic::arm_neon_vqrshiftns: 7563 case Intrinsic::arm_neon_vqrshiftnu: 7564 case Intrinsic::arm_neon_vqrshiftnsu: { 7565 EVT VT = N->getOperand(1).getValueType(); 7566 int64_t Cnt; 7567 unsigned VShiftOpc = 0; 7568 7569 switch (IntNo) { 7570 case Intrinsic::arm_neon_vshifts: 7571 case Intrinsic::arm_neon_vshiftu: 7572 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) { 7573 VShiftOpc = ARMISD::VSHL; 7574 break; 7575 } 7576 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) { 7577 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ? 7578 ARMISD::VSHRs : ARMISD::VSHRu); 7579 break; 7580 } 7581 return SDValue(); 7582 7583 case Intrinsic::arm_neon_vshiftls: 7584 case Intrinsic::arm_neon_vshiftlu: 7585 if (isVShiftLImm(N->getOperand(2), VT, true, Cnt)) 7586 break; 7587 llvm_unreachable("invalid shift count for vshll intrinsic"); 7588 7589 case Intrinsic::arm_neon_vrshifts: 7590 case Intrinsic::arm_neon_vrshiftu: 7591 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) 7592 break; 7593 return SDValue(); 7594 7595 case Intrinsic::arm_neon_vqshifts: 7596 case Intrinsic::arm_neon_vqshiftu: 7597 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) 7598 break; 7599 return SDValue(); 7600 7601 case Intrinsic::arm_neon_vqshiftsu: 7602 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) 7603 break; 7604 llvm_unreachable("invalid shift count for vqshlu intrinsic"); 7605 7606 case Intrinsic::arm_neon_vshiftn: 7607 case Intrinsic::arm_neon_vrshiftn: 7608 case Intrinsic::arm_neon_vqshiftns: 7609 case Intrinsic::arm_neon_vqshiftnu: 7610 case Intrinsic::arm_neon_vqshiftnsu: 7611 case Intrinsic::arm_neon_vqrshiftns: 7612 case Intrinsic::arm_neon_vqrshiftnu: 7613 case Intrinsic::arm_neon_vqrshiftnsu: 7614 // Narrowing shifts require an immediate right shift. 7615 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt)) 7616 break; 7617 llvm_unreachable("invalid shift count for narrowing vector shift " 7618 "intrinsic"); 7619 7620 default: 7621 llvm_unreachable("unhandled vector shift"); 7622 } 7623 7624 switch (IntNo) { 7625 case Intrinsic::arm_neon_vshifts: 7626 case Intrinsic::arm_neon_vshiftu: 7627 // Opcode already set above. 7628 break; 7629 case Intrinsic::arm_neon_vshiftls: 7630 case Intrinsic::arm_neon_vshiftlu: 7631 if (Cnt == VT.getVectorElementType().getSizeInBits()) 7632 VShiftOpc = ARMISD::VSHLLi; 7633 else 7634 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshiftls ? 7635 ARMISD::VSHLLs : ARMISD::VSHLLu); 7636 break; 7637 case Intrinsic::arm_neon_vshiftn: 7638 VShiftOpc = ARMISD::VSHRN; break; 7639 case Intrinsic::arm_neon_vrshifts: 7640 VShiftOpc = ARMISD::VRSHRs; break; 7641 case Intrinsic::arm_neon_vrshiftu: 7642 VShiftOpc = ARMISD::VRSHRu; break; 7643 case Intrinsic::arm_neon_vrshiftn: 7644 VShiftOpc = ARMISD::VRSHRN; break; 7645 case Intrinsic::arm_neon_vqshifts: 7646 VShiftOpc = ARMISD::VQSHLs; break; 7647 case Intrinsic::arm_neon_vqshiftu: 7648 VShiftOpc = ARMISD::VQSHLu; break; 7649 case Intrinsic::arm_neon_vqshiftsu: 7650 VShiftOpc = ARMISD::VQSHLsu; break; 7651 case Intrinsic::arm_neon_vqshiftns: 7652 VShiftOpc = ARMISD::VQSHRNs; break; 7653 case Intrinsic::arm_neon_vqshiftnu: 7654 VShiftOpc = ARMISD::VQSHRNu; break; 7655 case Intrinsic::arm_neon_vqshiftnsu: 7656 VShiftOpc = ARMISD::VQSHRNsu; break; 7657 case Intrinsic::arm_neon_vqrshiftns: 7658 VShiftOpc = ARMISD::VQRSHRNs; break; 7659 case Intrinsic::arm_neon_vqrshiftnu: 7660 VShiftOpc = ARMISD::VQRSHRNu; break; 7661 case Intrinsic::arm_neon_vqrshiftnsu: 7662 VShiftOpc = ARMISD::VQRSHRNsu; break; 7663 } 7664 7665 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0), 7666 N->getOperand(1), DAG.getConstant(Cnt, MVT::i32)); 7667 } 7668 7669 case Intrinsic::arm_neon_vshiftins: { 7670 EVT VT = N->getOperand(1).getValueType(); 7671 int64_t Cnt; 7672 unsigned VShiftOpc = 0; 7673 7674 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt)) 7675 VShiftOpc = ARMISD::VSLI; 7676 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt)) 7677 VShiftOpc = ARMISD::VSRI; 7678 else { 7679 llvm_unreachable("invalid shift count for vsli/vsri intrinsic"); 7680 } 7681 7682 return DAG.getNode(VShiftOpc, N->getDebugLoc(), N->getValueType(0), 7683 N->getOperand(1), N->getOperand(2), 7684 DAG.getConstant(Cnt, MVT::i32)); 7685 } 7686 7687 case Intrinsic::arm_neon_vqrshifts: 7688 case Intrinsic::arm_neon_vqrshiftu: 7689 // No immediate versions of these to check for. 7690 break; 7691 } 7692 7693 return SDValue(); 7694 } 7695 7696 /// PerformShiftCombine - Checks for immediate versions of vector shifts and 7697 /// lowers them. As with the vector shift intrinsics, this is done during DAG 7698 /// combining instead of DAG legalizing because the build_vectors for 64-bit 7699 /// vector element shift counts are generally not legal, and it is hard to see 7700 /// their values after they get legalized to loads from a constant pool. 7701 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG, 7702 const ARMSubtarget *ST) { 7703 EVT VT = N->getValueType(0); 7704 7705 // Nothing to be done for scalar shifts. 7706 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7707 if (!VT.isVector() || !TLI.isTypeLegal(VT)) 7708 return SDValue(); 7709 7710 assert(ST->hasNEON() && "unexpected vector shift"); 7711 int64_t Cnt; 7712 7713 switch (N->getOpcode()) { 7714 default: llvm_unreachable("unexpected shift opcode"); 7715 7716 case ISD::SHL: 7717 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt)) 7718 return DAG.getNode(ARMISD::VSHL, N->getDebugLoc(), VT, N->getOperand(0), 7719 DAG.getConstant(Cnt, MVT::i32)); 7720 break; 7721 7722 case ISD::SRA: 7723 case ISD::SRL: 7724 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) { 7725 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ? 7726 ARMISD::VSHRs : ARMISD::VSHRu); 7727 return DAG.getNode(VShiftOpc, N->getDebugLoc(), VT, N->getOperand(0), 7728 DAG.getConstant(Cnt, MVT::i32)); 7729 } 7730 } 7731 return SDValue(); 7732 } 7733 7734 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND, 7735 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND. 7736 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG, 7737 const ARMSubtarget *ST) { 7738 SDValue N0 = N->getOperand(0); 7739 7740 // Check for sign- and zero-extensions of vector extract operations of 8- 7741 // and 16-bit vector elements. NEON supports these directly. They are 7742 // handled during DAG combining because type legalization will promote them 7743 // to 32-bit types and it is messy to recognize the operations after that. 7744 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 7745 SDValue Vec = N0.getOperand(0); 7746 SDValue Lane = N0.getOperand(1); 7747 EVT VT = N->getValueType(0); 7748 EVT EltVT = N0.getValueType(); 7749 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7750 7751 if (VT == MVT::i32 && 7752 (EltVT == MVT::i8 || EltVT == MVT::i16) && 7753 TLI.isTypeLegal(Vec.getValueType()) && 7754 isa<ConstantSDNode>(Lane)) { 7755 7756 unsigned Opc = 0; 7757 switch (N->getOpcode()) { 7758 default: llvm_unreachable("unexpected opcode"); 7759 case ISD::SIGN_EXTEND: 7760 Opc = ARMISD::VGETLANEs; 7761 break; 7762 case ISD::ZERO_EXTEND: 7763 case ISD::ANY_EXTEND: 7764 Opc = ARMISD::VGETLANEu; 7765 break; 7766 } 7767 return DAG.getNode(Opc, N->getDebugLoc(), VT, Vec, Lane); 7768 } 7769 } 7770 7771 return SDValue(); 7772 } 7773 7774 /// PerformSELECT_CCCombine - Target-specific DAG combining for ISD::SELECT_CC 7775 /// to match f32 max/min patterns to use NEON vmax/vmin instructions. 7776 static SDValue PerformSELECT_CCCombine(SDNode *N, SelectionDAG &DAG, 7777 const ARMSubtarget *ST) { 7778 // If the target supports NEON, try to use vmax/vmin instructions for f32 7779 // selects like "x < y ? x : y". Unless the NoNaNsFPMath option is set, 7780 // be careful about NaNs: NEON's vmax/vmin return NaN if either operand is 7781 // a NaN; only do the transformation when it matches that behavior. 7782 7783 // For now only do this when using NEON for FP operations; if using VFP, it 7784 // is not obvious that the benefit outweighs the cost of switching to the 7785 // NEON pipeline. 7786 if (!ST->hasNEON() || !ST->useNEONForSinglePrecisionFP() || 7787 N->getValueType(0) != MVT::f32) 7788 return SDValue(); 7789 7790 SDValue CondLHS = N->getOperand(0); 7791 SDValue CondRHS = N->getOperand(1); 7792 SDValue LHS = N->getOperand(2); 7793 SDValue RHS = N->getOperand(3); 7794 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get(); 7795 7796 unsigned Opcode = 0; 7797 bool IsReversed; 7798 if (DAG.isEqualTo(LHS, CondLHS) && DAG.isEqualTo(RHS, CondRHS)) { 7799 IsReversed = false; // x CC y ? x : y 7800 } else if (DAG.isEqualTo(LHS, CondRHS) && DAG.isEqualTo(RHS, CondLHS)) { 7801 IsReversed = true ; // x CC y ? y : x 7802 } else { 7803 return SDValue(); 7804 } 7805 7806 bool IsUnordered; 7807 switch (CC) { 7808 default: break; 7809 case ISD::SETOLT: 7810 case ISD::SETOLE: 7811 case ISD::SETLT: 7812 case ISD::SETLE: 7813 case ISD::SETULT: 7814 case ISD::SETULE: 7815 // If LHS is NaN, an ordered comparison will be false and the result will 7816 // be the RHS, but vmin(NaN, RHS) = NaN. Avoid this by checking that LHS 7817 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN. 7818 IsUnordered = (CC == ISD::SETULT || CC == ISD::SETULE); 7819 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS)) 7820 break; 7821 // For less-than-or-equal comparisons, "+0 <= -0" will be true but vmin 7822 // will return -0, so vmin can only be used for unsafe math or if one of 7823 // the operands is known to be nonzero. 7824 if ((CC == ISD::SETLE || CC == ISD::SETOLE || CC == ISD::SETULE) && 7825 !UnsafeFPMath && 7826 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) 7827 break; 7828 Opcode = IsReversed ? ARMISD::FMAX : ARMISD::FMIN; 7829 break; 7830 7831 case ISD::SETOGT: 7832 case ISD::SETOGE: 7833 case ISD::SETGT: 7834 case ISD::SETGE: 7835 case ISD::SETUGT: 7836 case ISD::SETUGE: 7837 // If LHS is NaN, an ordered comparison will be false and the result will 7838 // be the RHS, but vmax(NaN, RHS) = NaN. Avoid this by checking that LHS 7839 // != NaN. Likewise, for unordered comparisons, check for RHS != NaN. 7840 IsUnordered = (CC == ISD::SETUGT || CC == ISD::SETUGE); 7841 if (!DAG.isKnownNeverNaN(IsUnordered ? RHS : LHS)) 7842 break; 7843 // For greater-than-or-equal comparisons, "-0 >= +0" will be true but vmax 7844 // will return +0, so vmax can only be used for unsafe math or if one of 7845 // the operands is known to be nonzero. 7846 if ((CC == ISD::SETGE || CC == ISD::SETOGE || CC == ISD::SETUGE) && 7847 !UnsafeFPMath && 7848 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) 7849 break; 7850 Opcode = IsReversed ? ARMISD::FMIN : ARMISD::FMAX; 7851 break; 7852 } 7853 7854 if (!Opcode) 7855 return SDValue(); 7856 return DAG.getNode(Opcode, N->getDebugLoc(), N->getValueType(0), LHS, RHS); 7857 } 7858 7859 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV. 7860 SDValue 7861 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const { 7862 SDValue Cmp = N->getOperand(4); 7863 if (Cmp.getOpcode() != ARMISD::CMPZ) 7864 // Only looking at EQ and NE cases. 7865 return SDValue(); 7866 7867 EVT VT = N->getValueType(0); 7868 DebugLoc dl = N->getDebugLoc(); 7869 SDValue LHS = Cmp.getOperand(0); 7870 SDValue RHS = Cmp.getOperand(1); 7871 SDValue FalseVal = N->getOperand(0); 7872 SDValue TrueVal = N->getOperand(1); 7873 SDValue ARMcc = N->getOperand(2); 7874 ARMCC::CondCodes CC = 7875 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue(); 7876 7877 // Simplify 7878 // mov r1, r0 7879 // cmp r1, x 7880 // mov r0, y 7881 // moveq r0, x 7882 // to 7883 // cmp r0, x 7884 // movne r0, y 7885 // 7886 // mov r1, r0 7887 // cmp r1, x 7888 // mov r0, x 7889 // movne r0, y 7890 // to 7891 // cmp r0, x 7892 // movne r0, y 7893 /// FIXME: Turn this into a target neutral optimization? 7894 SDValue Res; 7895 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) { 7896 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc, 7897 N->getOperand(3), Cmp); 7898 } else if (CC == ARMCC::EQ && TrueVal == RHS) { 7899 SDValue ARMcc; 7900 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl); 7901 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc, 7902 N->getOperand(3), NewCmp); 7903 } 7904 7905 if (Res.getNode()) { 7906 APInt KnownZero, KnownOne; 7907 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits()); 7908 DAG.ComputeMaskedBits(SDValue(N,0), Mask, KnownZero, KnownOne); 7909 // Capture demanded bits information that would be otherwise lost. 7910 if (KnownZero == 0xfffffffe) 7911 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 7912 DAG.getValueType(MVT::i1)); 7913 else if (KnownZero == 0xffffff00) 7914 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 7915 DAG.getValueType(MVT::i8)); 7916 else if (KnownZero == 0xffff0000) 7917 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 7918 DAG.getValueType(MVT::i16)); 7919 } 7920 7921 return Res; 7922 } 7923 7924 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N, 7925 DAGCombinerInfo &DCI) const { 7926 switch (N->getOpcode()) { 7927 default: break; 7928 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget); 7929 case ISD::SUB: return PerformSUBCombine(N, DCI); 7930 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget); 7931 case ISD::OR: return PerformORCombine(N, DCI, Subtarget); 7932 case ISD::AND: return PerformANDCombine(N, DCI); 7933 case ARMISD::BFI: return PerformBFICombine(N, DCI); 7934 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI); 7935 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG); 7936 case ISD::STORE: return PerformSTORECombine(N, DCI); 7937 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI); 7938 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI); 7939 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG); 7940 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI); 7941 case ISD::FP_TO_SINT: 7942 case ISD::FP_TO_UINT: return PerformVCVTCombine(N, DCI, Subtarget); 7943 case ISD::FDIV: return PerformVDIVCombine(N, DCI, Subtarget); 7944 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG); 7945 case ISD::SHL: 7946 case ISD::SRA: 7947 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget); 7948 case ISD::SIGN_EXTEND: 7949 case ISD::ZERO_EXTEND: 7950 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget); 7951 case ISD::SELECT_CC: return PerformSELECT_CCCombine(N, DCI.DAG, Subtarget); 7952 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG); 7953 case ARMISD::VLD2DUP: 7954 case ARMISD::VLD3DUP: 7955 case ARMISD::VLD4DUP: 7956 return CombineBaseUpdate(N, DCI); 7957 case ISD::INTRINSIC_VOID: 7958 case ISD::INTRINSIC_W_CHAIN: 7959 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 7960 case Intrinsic::arm_neon_vld1: 7961 case Intrinsic::arm_neon_vld2: 7962 case Intrinsic::arm_neon_vld3: 7963 case Intrinsic::arm_neon_vld4: 7964 case Intrinsic::arm_neon_vld2lane: 7965 case Intrinsic::arm_neon_vld3lane: 7966 case Intrinsic::arm_neon_vld4lane: 7967 case Intrinsic::arm_neon_vst1: 7968 case Intrinsic::arm_neon_vst2: 7969 case Intrinsic::arm_neon_vst3: 7970 case Intrinsic::arm_neon_vst4: 7971 case Intrinsic::arm_neon_vst2lane: 7972 case Intrinsic::arm_neon_vst3lane: 7973 case Intrinsic::arm_neon_vst4lane: 7974 return CombineBaseUpdate(N, DCI); 7975 default: break; 7976 } 7977 break; 7978 } 7979 return SDValue(); 7980 } 7981 7982 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc, 7983 EVT VT) const { 7984 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE); 7985 } 7986 7987 bool ARMTargetLowering::allowsUnalignedMemoryAccesses(EVT VT) const { 7988 if (!Subtarget->allowsUnalignedMem()) 7989 return false; 7990 7991 switch (VT.getSimpleVT().SimpleTy) { 7992 default: 7993 return false; 7994 case MVT::i8: 7995 case MVT::i16: 7996 case MVT::i32: 7997 return true; 7998 // FIXME: VLD1 etc with standard alignment is legal. 7999 } 8000 } 8001 8002 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) { 8003 if (V < 0) 8004 return false; 8005 8006 unsigned Scale = 1; 8007 switch (VT.getSimpleVT().SimpleTy) { 8008 default: return false; 8009 case MVT::i1: 8010 case MVT::i8: 8011 // Scale == 1; 8012 break; 8013 case MVT::i16: 8014 // Scale == 2; 8015 Scale = 2; 8016 break; 8017 case MVT::i32: 8018 // Scale == 4; 8019 Scale = 4; 8020 break; 8021 } 8022 8023 if ((V & (Scale - 1)) != 0) 8024 return false; 8025 V /= Scale; 8026 return V == (V & ((1LL << 5) - 1)); 8027 } 8028 8029 static bool isLegalT2AddressImmediate(int64_t V, EVT VT, 8030 const ARMSubtarget *Subtarget) { 8031 bool isNeg = false; 8032 if (V < 0) { 8033 isNeg = true; 8034 V = - V; 8035 } 8036 8037 switch (VT.getSimpleVT().SimpleTy) { 8038 default: return false; 8039 case MVT::i1: 8040 case MVT::i8: 8041 case MVT::i16: 8042 case MVT::i32: 8043 // + imm12 or - imm8 8044 if (isNeg) 8045 return V == (V & ((1LL << 8) - 1)); 8046 return V == (V & ((1LL << 12) - 1)); 8047 case MVT::f32: 8048 case MVT::f64: 8049 // Same as ARM mode. FIXME: NEON? 8050 if (!Subtarget->hasVFP2()) 8051 return false; 8052 if ((V & 3) != 0) 8053 return false; 8054 V >>= 2; 8055 return V == (V & ((1LL << 8) - 1)); 8056 } 8057 } 8058 8059 /// isLegalAddressImmediate - Return true if the integer value can be used 8060 /// as the offset of the target addressing mode for load / store of the 8061 /// given type. 8062 static bool isLegalAddressImmediate(int64_t V, EVT VT, 8063 const ARMSubtarget *Subtarget) { 8064 if (V == 0) 8065 return true; 8066 8067 if (!VT.isSimple()) 8068 return false; 8069 8070 if (Subtarget->isThumb1Only()) 8071 return isLegalT1AddressImmediate(V, VT); 8072 else if (Subtarget->isThumb2()) 8073 return isLegalT2AddressImmediate(V, VT, Subtarget); 8074 8075 // ARM mode. 8076 if (V < 0) 8077 V = - V; 8078 switch (VT.getSimpleVT().SimpleTy) { 8079 default: return false; 8080 case MVT::i1: 8081 case MVT::i8: 8082 case MVT::i32: 8083 // +- imm12 8084 return V == (V & ((1LL << 12) - 1)); 8085 case MVT::i16: 8086 // +- imm8 8087 return V == (V & ((1LL << 8) - 1)); 8088 case MVT::f32: 8089 case MVT::f64: 8090 if (!Subtarget->hasVFP2()) // FIXME: NEON? 8091 return false; 8092 if ((V & 3) != 0) 8093 return false; 8094 V >>= 2; 8095 return V == (V & ((1LL << 8) - 1)); 8096 } 8097 } 8098 8099 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM, 8100 EVT VT) const { 8101 int Scale = AM.Scale; 8102 if (Scale < 0) 8103 return false; 8104 8105 switch (VT.getSimpleVT().SimpleTy) { 8106 default: return false; 8107 case MVT::i1: 8108 case MVT::i8: 8109 case MVT::i16: 8110 case MVT::i32: 8111 if (Scale == 1) 8112 return true; 8113 // r + r << imm 8114 Scale = Scale & ~1; 8115 return Scale == 2 || Scale == 4 || Scale == 8; 8116 case MVT::i64: 8117 // r + r 8118 if (((unsigned)AM.HasBaseReg + Scale) <= 2) 8119 return true; 8120 return false; 8121 case MVT::isVoid: 8122 // Note, we allow "void" uses (basically, uses that aren't loads or 8123 // stores), because arm allows folding a scale into many arithmetic 8124 // operations. This should be made more precise and revisited later. 8125 8126 // Allow r << imm, but the imm has to be a multiple of two. 8127 if (Scale & 1) return false; 8128 return isPowerOf2_32(Scale); 8129 } 8130 } 8131 8132 /// isLegalAddressingMode - Return true if the addressing mode represented 8133 /// by AM is legal for this target, for a load/store of the specified type. 8134 bool ARMTargetLowering::isLegalAddressingMode(const AddrMode &AM, 8135 Type *Ty) const { 8136 EVT VT = getValueType(Ty, true); 8137 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget)) 8138 return false; 8139 8140 // Can never fold addr of global into load/store. 8141 if (AM.BaseGV) 8142 return false; 8143 8144 switch (AM.Scale) { 8145 case 0: // no scale reg, must be "r+i" or "r", or "i". 8146 break; 8147 case 1: 8148 if (Subtarget->isThumb1Only()) 8149 return false; 8150 // FALL THROUGH. 8151 default: 8152 // ARM doesn't support any R+R*scale+imm addr modes. 8153 if (AM.BaseOffs) 8154 return false; 8155 8156 if (!VT.isSimple()) 8157 return false; 8158 8159 if (Subtarget->isThumb2()) 8160 return isLegalT2ScaledAddressingMode(AM, VT); 8161 8162 int Scale = AM.Scale; 8163 switch (VT.getSimpleVT().SimpleTy) { 8164 default: return false; 8165 case MVT::i1: 8166 case MVT::i8: 8167 case MVT::i32: 8168 if (Scale < 0) Scale = -Scale; 8169 if (Scale == 1) 8170 return true; 8171 // r + r << imm 8172 return isPowerOf2_32(Scale & ~1); 8173 case MVT::i16: 8174 case MVT::i64: 8175 // r + r 8176 if (((unsigned)AM.HasBaseReg + Scale) <= 2) 8177 return true; 8178 return false; 8179 8180 case MVT::isVoid: 8181 // Note, we allow "void" uses (basically, uses that aren't loads or 8182 // stores), because arm allows folding a scale into many arithmetic 8183 // operations. This should be made more precise and revisited later. 8184 8185 // Allow r << imm, but the imm has to be a multiple of two. 8186 if (Scale & 1) return false; 8187 return isPowerOf2_32(Scale); 8188 } 8189 break; 8190 } 8191 return true; 8192 } 8193 8194 /// isLegalICmpImmediate - Return true if the specified immediate is legal 8195 /// icmp immediate, that is the target has icmp instructions which can compare 8196 /// a register against the immediate without having to materialize the 8197 /// immediate into a register. 8198 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const { 8199 if (!Subtarget->isThumb()) 8200 return ARM_AM::getSOImmVal(Imm) != -1; 8201 if (Subtarget->isThumb2()) 8202 return ARM_AM::getT2SOImmVal(Imm) != -1; 8203 return Imm >= 0 && Imm <= 255; 8204 } 8205 8206 /// isLegalAddImmediate - Return true if the specified immediate is legal 8207 /// add immediate, that is the target has add instructions which can add 8208 /// a register with the immediate without having to materialize the 8209 /// immediate into a register. 8210 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const { 8211 return ARM_AM::getSOImmVal(Imm) != -1; 8212 } 8213 8214 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT, 8215 bool isSEXTLoad, SDValue &Base, 8216 SDValue &Offset, bool &isInc, 8217 SelectionDAG &DAG) { 8218 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB) 8219 return false; 8220 8221 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) { 8222 // AddressingMode 3 8223 Base = Ptr->getOperand(0); 8224 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 8225 int RHSC = (int)RHS->getZExtValue(); 8226 if (RHSC < 0 && RHSC > -256) { 8227 assert(Ptr->getOpcode() == ISD::ADD); 8228 isInc = false; 8229 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0)); 8230 return true; 8231 } 8232 } 8233 isInc = (Ptr->getOpcode() == ISD::ADD); 8234 Offset = Ptr->getOperand(1); 8235 return true; 8236 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) { 8237 // AddressingMode 2 8238 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 8239 int RHSC = (int)RHS->getZExtValue(); 8240 if (RHSC < 0 && RHSC > -0x1000) { 8241 assert(Ptr->getOpcode() == ISD::ADD); 8242 isInc = false; 8243 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0)); 8244 Base = Ptr->getOperand(0); 8245 return true; 8246 } 8247 } 8248 8249 if (Ptr->getOpcode() == ISD::ADD) { 8250 isInc = true; 8251 ARM_AM::ShiftOpc ShOpcVal= 8252 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode()); 8253 if (ShOpcVal != ARM_AM::no_shift) { 8254 Base = Ptr->getOperand(1); 8255 Offset = Ptr->getOperand(0); 8256 } else { 8257 Base = Ptr->getOperand(0); 8258 Offset = Ptr->getOperand(1); 8259 } 8260 return true; 8261 } 8262 8263 isInc = (Ptr->getOpcode() == ISD::ADD); 8264 Base = Ptr->getOperand(0); 8265 Offset = Ptr->getOperand(1); 8266 return true; 8267 } 8268 8269 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store. 8270 return false; 8271 } 8272 8273 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT, 8274 bool isSEXTLoad, SDValue &Base, 8275 SDValue &Offset, bool &isInc, 8276 SelectionDAG &DAG) { 8277 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB) 8278 return false; 8279 8280 Base = Ptr->getOperand(0); 8281 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 8282 int RHSC = (int)RHS->getZExtValue(); 8283 if (RHSC < 0 && RHSC > -0x100) { // 8 bits. 8284 assert(Ptr->getOpcode() == ISD::ADD); 8285 isInc = false; 8286 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0)); 8287 return true; 8288 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero. 8289 isInc = Ptr->getOpcode() == ISD::ADD; 8290 Offset = DAG.getConstant(RHSC, RHS->getValueType(0)); 8291 return true; 8292 } 8293 } 8294 8295 return false; 8296 } 8297 8298 /// getPreIndexedAddressParts - returns true by value, base pointer and 8299 /// offset pointer and addressing mode by reference if the node's address 8300 /// can be legally represented as pre-indexed load / store address. 8301 bool 8302 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base, 8303 SDValue &Offset, 8304 ISD::MemIndexedMode &AM, 8305 SelectionDAG &DAG) const { 8306 if (Subtarget->isThumb1Only()) 8307 return false; 8308 8309 EVT VT; 8310 SDValue Ptr; 8311 bool isSEXTLoad = false; 8312 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 8313 Ptr = LD->getBasePtr(); 8314 VT = LD->getMemoryVT(); 8315 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD; 8316 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 8317 Ptr = ST->getBasePtr(); 8318 VT = ST->getMemoryVT(); 8319 } else 8320 return false; 8321 8322 bool isInc; 8323 bool isLegal = false; 8324 if (Subtarget->isThumb2()) 8325 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base, 8326 Offset, isInc, DAG); 8327 else 8328 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base, 8329 Offset, isInc, DAG); 8330 if (!isLegal) 8331 return false; 8332 8333 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC; 8334 return true; 8335 } 8336 8337 /// getPostIndexedAddressParts - returns true by value, base pointer and 8338 /// offset pointer and addressing mode by reference if this node can be 8339 /// combined with a load / store to form a post-indexed load / store. 8340 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op, 8341 SDValue &Base, 8342 SDValue &Offset, 8343 ISD::MemIndexedMode &AM, 8344 SelectionDAG &DAG) const { 8345 if (Subtarget->isThumb1Only()) 8346 return false; 8347 8348 EVT VT; 8349 SDValue Ptr; 8350 bool isSEXTLoad = false; 8351 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 8352 VT = LD->getMemoryVT(); 8353 Ptr = LD->getBasePtr(); 8354 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD; 8355 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 8356 VT = ST->getMemoryVT(); 8357 Ptr = ST->getBasePtr(); 8358 } else 8359 return false; 8360 8361 bool isInc; 8362 bool isLegal = false; 8363 if (Subtarget->isThumb2()) 8364 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset, 8365 isInc, DAG); 8366 else 8367 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset, 8368 isInc, DAG); 8369 if (!isLegal) 8370 return false; 8371 8372 if (Ptr != Base) { 8373 // Swap base ptr and offset to catch more post-index load / store when 8374 // it's legal. In Thumb2 mode, offset must be an immediate. 8375 if (Ptr == Offset && Op->getOpcode() == ISD::ADD && 8376 !Subtarget->isThumb2()) 8377 std::swap(Base, Offset); 8378 8379 // Post-indexed load / store update the base pointer. 8380 if (Ptr != Base) 8381 return false; 8382 } 8383 8384 AM = isInc ? ISD::POST_INC : ISD::POST_DEC; 8385 return true; 8386 } 8387 8388 void ARMTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op, 8389 const APInt &Mask, 8390 APInt &KnownZero, 8391 APInt &KnownOne, 8392 const SelectionDAG &DAG, 8393 unsigned Depth) const { 8394 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); 8395 switch (Op.getOpcode()) { 8396 default: break; 8397 case ARMISD::CMOV: { 8398 // Bits are known zero/one if known on the LHS and RHS. 8399 DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1); 8400 if (KnownZero == 0 && KnownOne == 0) return; 8401 8402 APInt KnownZeroRHS, KnownOneRHS; 8403 DAG.ComputeMaskedBits(Op.getOperand(1), Mask, 8404 KnownZeroRHS, KnownOneRHS, Depth+1); 8405 KnownZero &= KnownZeroRHS; 8406 KnownOne &= KnownOneRHS; 8407 return; 8408 } 8409 } 8410 } 8411 8412 //===----------------------------------------------------------------------===// 8413 // ARM Inline Assembly Support 8414 //===----------------------------------------------------------------------===// 8415 8416 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const { 8417 // Looking for "rev" which is V6+. 8418 if (!Subtarget->hasV6Ops()) 8419 return false; 8420 8421 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue()); 8422 std::string AsmStr = IA->getAsmString(); 8423 SmallVector<StringRef, 4> AsmPieces; 8424 SplitString(AsmStr, AsmPieces, ";\n"); 8425 8426 switch (AsmPieces.size()) { 8427 default: return false; 8428 case 1: 8429 AsmStr = AsmPieces[0]; 8430 AsmPieces.clear(); 8431 SplitString(AsmStr, AsmPieces, " \t,"); 8432 8433 // rev $0, $1 8434 if (AsmPieces.size() == 3 && 8435 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" && 8436 IA->getConstraintString().compare(0, 4, "=l,l") == 0) { 8437 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType()); 8438 if (Ty && Ty->getBitWidth() == 32) 8439 return IntrinsicLowering::LowerToByteSwap(CI); 8440 } 8441 break; 8442 } 8443 8444 return false; 8445 } 8446 8447 /// getConstraintType - Given a constraint letter, return the type of 8448 /// constraint it is for this target. 8449 ARMTargetLowering::ConstraintType 8450 ARMTargetLowering::getConstraintType(const std::string &Constraint) const { 8451 if (Constraint.size() == 1) { 8452 switch (Constraint[0]) { 8453 default: break; 8454 case 'l': return C_RegisterClass; 8455 case 'w': return C_RegisterClass; 8456 case 'h': return C_RegisterClass; 8457 case 'x': return C_RegisterClass; 8458 case 't': return C_RegisterClass; 8459 case 'j': return C_Other; // Constant for movw. 8460 // An address with a single base register. Due to the way we 8461 // currently handle addresses it is the same as an 'r' memory constraint. 8462 case 'Q': return C_Memory; 8463 } 8464 } else if (Constraint.size() == 2) { 8465 switch (Constraint[0]) { 8466 default: break; 8467 // All 'U+' constraints are addresses. 8468 case 'U': return C_Memory; 8469 } 8470 } 8471 return TargetLowering::getConstraintType(Constraint); 8472 } 8473 8474 /// Examine constraint type and operand type and determine a weight value. 8475 /// This object must already have been set up with the operand type 8476 /// and the current alternative constraint selected. 8477 TargetLowering::ConstraintWeight 8478 ARMTargetLowering::getSingleConstraintMatchWeight( 8479 AsmOperandInfo &info, const char *constraint) const { 8480 ConstraintWeight weight = CW_Invalid; 8481 Value *CallOperandVal = info.CallOperandVal; 8482 // If we don't have a value, we can't do a match, 8483 // but allow it at the lowest weight. 8484 if (CallOperandVal == NULL) 8485 return CW_Default; 8486 Type *type = CallOperandVal->getType(); 8487 // Look at the constraint type. 8488 switch (*constraint) { 8489 default: 8490 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); 8491 break; 8492 case 'l': 8493 if (type->isIntegerTy()) { 8494 if (Subtarget->isThumb()) 8495 weight = CW_SpecificReg; 8496 else 8497 weight = CW_Register; 8498 } 8499 break; 8500 case 'w': 8501 if (type->isFloatingPointTy()) 8502 weight = CW_Register; 8503 break; 8504 } 8505 return weight; 8506 } 8507 8508 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair; 8509 RCPair 8510 ARMTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, 8511 EVT VT) const { 8512 if (Constraint.size() == 1) { 8513 // GCC ARM Constraint Letters 8514 switch (Constraint[0]) { 8515 case 'l': // Low regs or general regs. 8516 if (Subtarget->isThumb()) 8517 return RCPair(0U, ARM::tGPRRegisterClass); 8518 else 8519 return RCPair(0U, ARM::GPRRegisterClass); 8520 case 'h': // High regs or no regs. 8521 if (Subtarget->isThumb()) 8522 return RCPair(0U, ARM::hGPRRegisterClass); 8523 break; 8524 case 'r': 8525 return RCPair(0U, ARM::GPRRegisterClass); 8526 case 'w': 8527 if (VT == MVT::f32) 8528 return RCPair(0U, ARM::SPRRegisterClass); 8529 if (VT.getSizeInBits() == 64) 8530 return RCPair(0U, ARM::DPRRegisterClass); 8531 if (VT.getSizeInBits() == 128) 8532 return RCPair(0U, ARM::QPRRegisterClass); 8533 break; 8534 case 'x': 8535 if (VT == MVT::f32) 8536 return RCPair(0U, ARM::SPR_8RegisterClass); 8537 if (VT.getSizeInBits() == 64) 8538 return RCPair(0U, ARM::DPR_8RegisterClass); 8539 if (VT.getSizeInBits() == 128) 8540 return RCPair(0U, ARM::QPR_8RegisterClass); 8541 break; 8542 case 't': 8543 if (VT == MVT::f32) 8544 return RCPair(0U, ARM::SPRRegisterClass); 8545 break; 8546 } 8547 } 8548 if (StringRef("{cc}").equals_lower(Constraint)) 8549 return std::make_pair(unsigned(ARM::CPSR), ARM::CCRRegisterClass); 8550 8551 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); 8552 } 8553 8554 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops 8555 /// vector. If it is invalid, don't add anything to Ops. 8556 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op, 8557 std::string &Constraint, 8558 std::vector<SDValue>&Ops, 8559 SelectionDAG &DAG) const { 8560 SDValue Result(0, 0); 8561 8562 // Currently only support length 1 constraints. 8563 if (Constraint.length() != 1) return; 8564 8565 char ConstraintLetter = Constraint[0]; 8566 switch (ConstraintLetter) { 8567 default: break; 8568 case 'j': 8569 case 'I': case 'J': case 'K': case 'L': 8570 case 'M': case 'N': case 'O': 8571 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); 8572 if (!C) 8573 return; 8574 8575 int64_t CVal64 = C->getSExtValue(); 8576 int CVal = (int) CVal64; 8577 // None of these constraints allow values larger than 32 bits. Check 8578 // that the value fits in an int. 8579 if (CVal != CVal64) 8580 return; 8581 8582 switch (ConstraintLetter) { 8583 case 'j': 8584 // Constant suitable for movw, must be between 0 and 8585 // 65535. 8586 if (Subtarget->hasV6T2Ops()) 8587 if (CVal >= 0 && CVal <= 65535) 8588 break; 8589 return; 8590 case 'I': 8591 if (Subtarget->isThumb1Only()) { 8592 // This must be a constant between 0 and 255, for ADD 8593 // immediates. 8594 if (CVal >= 0 && CVal <= 255) 8595 break; 8596 } else if (Subtarget->isThumb2()) { 8597 // A constant that can be used as an immediate value in a 8598 // data-processing instruction. 8599 if (ARM_AM::getT2SOImmVal(CVal) != -1) 8600 break; 8601 } else { 8602 // A constant that can be used as an immediate value in a 8603 // data-processing instruction. 8604 if (ARM_AM::getSOImmVal(CVal) != -1) 8605 break; 8606 } 8607 return; 8608 8609 case 'J': 8610 if (Subtarget->isThumb()) { // FIXME thumb2 8611 // This must be a constant between -255 and -1, for negated ADD 8612 // immediates. This can be used in GCC with an "n" modifier that 8613 // prints the negated value, for use with SUB instructions. It is 8614 // not useful otherwise but is implemented for compatibility. 8615 if (CVal >= -255 && CVal <= -1) 8616 break; 8617 } else { 8618 // This must be a constant between -4095 and 4095. It is not clear 8619 // what this constraint is intended for. Implemented for 8620 // compatibility with GCC. 8621 if (CVal >= -4095 && CVal <= 4095) 8622 break; 8623 } 8624 return; 8625 8626 case 'K': 8627 if (Subtarget->isThumb1Only()) { 8628 // A 32-bit value where only one byte has a nonzero value. Exclude 8629 // zero to match GCC. This constraint is used by GCC internally for 8630 // constants that can be loaded with a move/shift combination. 8631 // It is not useful otherwise but is implemented for compatibility. 8632 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal)) 8633 break; 8634 } else if (Subtarget->isThumb2()) { 8635 // A constant whose bitwise inverse can be used as an immediate 8636 // value in a data-processing instruction. This can be used in GCC 8637 // with a "B" modifier that prints the inverted value, for use with 8638 // BIC and MVN instructions. It is not useful otherwise but is 8639 // implemented for compatibility. 8640 if (ARM_AM::getT2SOImmVal(~CVal) != -1) 8641 break; 8642 } else { 8643 // A constant whose bitwise inverse can be used as an immediate 8644 // value in a data-processing instruction. This can be used in GCC 8645 // with a "B" modifier that prints the inverted value, for use with 8646 // BIC and MVN instructions. It is not useful otherwise but is 8647 // implemented for compatibility. 8648 if (ARM_AM::getSOImmVal(~CVal) != -1) 8649 break; 8650 } 8651 return; 8652 8653 case 'L': 8654 if (Subtarget->isThumb1Only()) { 8655 // This must be a constant between -7 and 7, 8656 // for 3-operand ADD/SUB immediate instructions. 8657 if (CVal >= -7 && CVal < 7) 8658 break; 8659 } else if (Subtarget->isThumb2()) { 8660 // A constant whose negation can be used as an immediate value in a 8661 // data-processing instruction. This can be used in GCC with an "n" 8662 // modifier that prints the negated value, for use with SUB 8663 // instructions. It is not useful otherwise but is implemented for 8664 // compatibility. 8665 if (ARM_AM::getT2SOImmVal(-CVal) != -1) 8666 break; 8667 } else { 8668 // A constant whose negation can be used as an immediate value in a 8669 // data-processing instruction. This can be used in GCC with an "n" 8670 // modifier that prints the negated value, for use with SUB 8671 // instructions. It is not useful otherwise but is implemented for 8672 // compatibility. 8673 if (ARM_AM::getSOImmVal(-CVal) != -1) 8674 break; 8675 } 8676 return; 8677 8678 case 'M': 8679 if (Subtarget->isThumb()) { // FIXME thumb2 8680 // This must be a multiple of 4 between 0 and 1020, for 8681 // ADD sp + immediate. 8682 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0)) 8683 break; 8684 } else { 8685 // A power of two or a constant between 0 and 32. This is used in 8686 // GCC for the shift amount on shifted register operands, but it is 8687 // useful in general for any shift amounts. 8688 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0)) 8689 break; 8690 } 8691 return; 8692 8693 case 'N': 8694 if (Subtarget->isThumb()) { // FIXME thumb2 8695 // This must be a constant between 0 and 31, for shift amounts. 8696 if (CVal >= 0 && CVal <= 31) 8697 break; 8698 } 8699 return; 8700 8701 case 'O': 8702 if (Subtarget->isThumb()) { // FIXME thumb2 8703 // This must be a multiple of 4 between -508 and 508, for 8704 // ADD/SUB sp = sp + immediate. 8705 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0)) 8706 break; 8707 } 8708 return; 8709 } 8710 Result = DAG.getTargetConstant(CVal, Op.getValueType()); 8711 break; 8712 } 8713 8714 if (Result.getNode()) { 8715 Ops.push_back(Result); 8716 return; 8717 } 8718 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); 8719 } 8720 8721 bool 8722 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 8723 // The ARM target isn't yet aware of offsets. 8724 return false; 8725 } 8726 8727 bool ARM::isBitFieldInvertedMask(unsigned v) { 8728 if (v == 0xffffffff) 8729 return 0; 8730 // there can be 1's on either or both "outsides", all the "inside" 8731 // bits must be 0's 8732 unsigned int lsb = 0, msb = 31; 8733 while (v & (1 << msb)) --msb; 8734 while (v & (1 << lsb)) ++lsb; 8735 for (unsigned int i = lsb; i <= msb; ++i) { 8736 if (v & (1 << i)) 8737 return 0; 8738 } 8739 return 1; 8740 } 8741 8742 /// isFPImmLegal - Returns true if the target can instruction select the 8743 /// specified FP immediate natively. If false, the legalizer will 8744 /// materialize the FP immediate as a load from a constant pool. 8745 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const { 8746 if (!Subtarget->hasVFP3()) 8747 return false; 8748 if (VT == MVT::f32) 8749 return ARM_AM::getFP32Imm(Imm) != -1; 8750 if (VT == MVT::f64) 8751 return ARM_AM::getFP64Imm(Imm) != -1; 8752 return false; 8753 } 8754 8755 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as 8756 /// MemIntrinsicNodes. The associated MachineMemOperands record the alignment 8757 /// specified in the intrinsic calls. 8758 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info, 8759 const CallInst &I, 8760 unsigned Intrinsic) const { 8761 switch (Intrinsic) { 8762 case Intrinsic::arm_neon_vld1: 8763 case Intrinsic::arm_neon_vld2: 8764 case Intrinsic::arm_neon_vld3: 8765 case Intrinsic::arm_neon_vld4: 8766 case Intrinsic::arm_neon_vld2lane: 8767 case Intrinsic::arm_neon_vld3lane: 8768 case Intrinsic::arm_neon_vld4lane: { 8769 Info.opc = ISD::INTRINSIC_W_CHAIN; 8770 // Conservatively set memVT to the entire set of vectors loaded. 8771 uint64_t NumElts = getTargetData()->getTypeAllocSize(I.getType()) / 8; 8772 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts); 8773 Info.ptrVal = I.getArgOperand(0); 8774 Info.offset = 0; 8775 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1); 8776 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue(); 8777 Info.vol = false; // volatile loads with NEON intrinsics not supported 8778 Info.readMem = true; 8779 Info.writeMem = false; 8780 return true; 8781 } 8782 case Intrinsic::arm_neon_vst1: 8783 case Intrinsic::arm_neon_vst2: 8784 case Intrinsic::arm_neon_vst3: 8785 case Intrinsic::arm_neon_vst4: 8786 case Intrinsic::arm_neon_vst2lane: 8787 case Intrinsic::arm_neon_vst3lane: 8788 case Intrinsic::arm_neon_vst4lane: { 8789 Info.opc = ISD::INTRINSIC_VOID; 8790 // Conservatively set memVT to the entire set of vectors stored. 8791 unsigned NumElts = 0; 8792 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) { 8793 Type *ArgTy = I.getArgOperand(ArgI)->getType(); 8794 if (!ArgTy->isVectorTy()) 8795 break; 8796 NumElts += getTargetData()->getTypeAllocSize(ArgTy) / 8; 8797 } 8798 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts); 8799 Info.ptrVal = I.getArgOperand(0); 8800 Info.offset = 0; 8801 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1); 8802 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue(); 8803 Info.vol = false; // volatile stores with NEON intrinsics not supported 8804 Info.readMem = false; 8805 Info.writeMem = true; 8806 return true; 8807 } 8808 case Intrinsic::arm_strexd: { 8809 Info.opc = ISD::INTRINSIC_W_CHAIN; 8810 Info.memVT = MVT::i64; 8811 Info.ptrVal = I.getArgOperand(2); 8812 Info.offset = 0; 8813 Info.align = 8; 8814 Info.vol = true; 8815 Info.readMem = false; 8816 Info.writeMem = true; 8817 return true; 8818 } 8819 case Intrinsic::arm_ldrexd: { 8820 Info.opc = ISD::INTRINSIC_W_CHAIN; 8821 Info.memVT = MVT::i64; 8822 Info.ptrVal = I.getArgOperand(0); 8823 Info.offset = 0; 8824 Info.align = 8; 8825 Info.vol = true; 8826 Info.readMem = true; 8827 Info.writeMem = false; 8828 return true; 8829 } 8830 default: 8831 break; 8832 } 8833 8834 return false; 8835 } 8836