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 #include "ARMISelLowering.h" 16 #include "ARMCallingConv.h" 17 #include "ARMConstantPoolValue.h" 18 #include "ARMMachineFunctionInfo.h" 19 #include "ARMPerfectShuffle.h" 20 #include "ARMSubtarget.h" 21 #include "ARMTargetMachine.h" 22 #include "ARMTargetObjectFile.h" 23 #include "MCTargetDesc/ARMAddressingModes.h" 24 #include "llvm/ADT/Statistic.h" 25 #include "llvm/ADT/StringExtras.h" 26 #include "llvm/ADT/StringSwitch.h" 27 #include "llvm/CodeGen/CallingConvLower.h" 28 #include "llvm/CodeGen/IntrinsicLowering.h" 29 #include "llvm/CodeGen/MachineBasicBlock.h" 30 #include "llvm/CodeGen/MachineFrameInfo.h" 31 #include "llvm/CodeGen/MachineFunction.h" 32 #include "llvm/CodeGen/MachineInstrBuilder.h" 33 #include "llvm/CodeGen/MachineJumpTableInfo.h" 34 #include "llvm/CodeGen/MachineModuleInfo.h" 35 #include "llvm/CodeGen/MachineRegisterInfo.h" 36 #include "llvm/CodeGen/SelectionDAG.h" 37 #include "llvm/IR/CallingConv.h" 38 #include "llvm/IR/Constants.h" 39 #include "llvm/IR/Function.h" 40 #include "llvm/IR/GlobalValue.h" 41 #include "llvm/IR/IRBuilder.h" 42 #include "llvm/IR/Instruction.h" 43 #include "llvm/IR/Instructions.h" 44 #include "llvm/IR/IntrinsicInst.h" 45 #include "llvm/IR/Intrinsics.h" 46 #include "llvm/IR/Type.h" 47 #include "llvm/MC/MCSectionMachO.h" 48 #include "llvm/Support/CommandLine.h" 49 #include "llvm/Support/Debug.h" 50 #include "llvm/Support/ErrorHandling.h" 51 #include "llvm/Support/MathExtras.h" 52 #include "llvm/Support/raw_ostream.h" 53 #include "llvm/Target/TargetOptions.h" 54 #include <utility> 55 using namespace llvm; 56 57 #define DEBUG_TYPE "arm-isel" 58 59 STATISTIC(NumTailCalls, "Number of tail calls"); 60 STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt"); 61 STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments"); 62 63 static cl::opt<bool> 64 ARMInterworking("arm-interworking", cl::Hidden, 65 cl::desc("Enable / disable ARM interworking (for debugging only)"), 66 cl::init(true)); 67 68 namespace { 69 class ARMCCState : public CCState { 70 public: 71 ARMCCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF, 72 SmallVectorImpl<CCValAssign> &locs, LLVMContext &C, 73 ParmContext PC) 74 : CCState(CC, isVarArg, MF, locs, C) { 75 assert(((PC == Call) || (PC == Prologue)) && 76 "ARMCCState users must specify whether their context is call" 77 "or prologue generation."); 78 CallOrPrologue = PC; 79 } 80 }; 81 } 82 83 // The APCS parameter registers. 84 static const MCPhysReg GPRArgRegs[] = { 85 ARM::R0, ARM::R1, ARM::R2, ARM::R3 86 }; 87 88 void ARMTargetLowering::addTypeForNEON(MVT VT, MVT PromotedLdStVT, 89 MVT PromotedBitwiseVT) { 90 if (VT != PromotedLdStVT) { 91 setOperationAction(ISD::LOAD, VT, Promote); 92 AddPromotedToType (ISD::LOAD, VT, PromotedLdStVT); 93 94 setOperationAction(ISD::STORE, VT, Promote); 95 AddPromotedToType (ISD::STORE, VT, PromotedLdStVT); 96 } 97 98 MVT ElemTy = VT.getVectorElementType(); 99 if (ElemTy != MVT::i64 && ElemTy != MVT::f64) 100 setOperationAction(ISD::SETCC, VT, Custom); 101 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom); 102 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom); 103 if (ElemTy == MVT::i32) { 104 setOperationAction(ISD::SINT_TO_FP, VT, Custom); 105 setOperationAction(ISD::UINT_TO_FP, VT, Custom); 106 setOperationAction(ISD::FP_TO_SINT, VT, Custom); 107 setOperationAction(ISD::FP_TO_UINT, VT, Custom); 108 } else { 109 setOperationAction(ISD::SINT_TO_FP, VT, Expand); 110 setOperationAction(ISD::UINT_TO_FP, VT, Expand); 111 setOperationAction(ISD::FP_TO_SINT, VT, Expand); 112 setOperationAction(ISD::FP_TO_UINT, VT, Expand); 113 } 114 setOperationAction(ISD::BUILD_VECTOR, VT, Custom); 115 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom); 116 setOperationAction(ISD::CONCAT_VECTORS, VT, Legal); 117 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal); 118 setOperationAction(ISD::SELECT, VT, Expand); 119 setOperationAction(ISD::SELECT_CC, VT, Expand); 120 setOperationAction(ISD::VSELECT, VT, Expand); 121 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand); 122 if (VT.isInteger()) { 123 setOperationAction(ISD::SHL, VT, Custom); 124 setOperationAction(ISD::SRA, VT, Custom); 125 setOperationAction(ISD::SRL, VT, Custom); 126 } 127 128 // Promote all bit-wise operations. 129 if (VT.isInteger() && VT != PromotedBitwiseVT) { 130 setOperationAction(ISD::AND, VT, Promote); 131 AddPromotedToType (ISD::AND, VT, PromotedBitwiseVT); 132 setOperationAction(ISD::OR, VT, Promote); 133 AddPromotedToType (ISD::OR, VT, PromotedBitwiseVT); 134 setOperationAction(ISD::XOR, VT, Promote); 135 AddPromotedToType (ISD::XOR, VT, PromotedBitwiseVT); 136 } 137 138 // Neon does not support vector divide/remainder operations. 139 setOperationAction(ISD::SDIV, VT, Expand); 140 setOperationAction(ISD::UDIV, VT, Expand); 141 setOperationAction(ISD::FDIV, VT, Expand); 142 setOperationAction(ISD::SREM, VT, Expand); 143 setOperationAction(ISD::UREM, VT, Expand); 144 setOperationAction(ISD::FREM, VT, Expand); 145 146 if (VT.isInteger()) { 147 setOperationAction(ISD::SABSDIFF, VT, Legal); 148 setOperationAction(ISD::UABSDIFF, VT, Legal); 149 } 150 if (!VT.isFloatingPoint() && 151 VT != MVT::v2i64 && VT != MVT::v1i64) 152 for (unsigned Opcode : {ISD::SMIN, ISD::SMAX, ISD::UMIN, ISD::UMAX}) 153 setOperationAction(Opcode, VT, Legal); 154 155 } 156 157 void ARMTargetLowering::addDRTypeForNEON(MVT VT) { 158 addRegisterClass(VT, &ARM::DPRRegClass); 159 addTypeForNEON(VT, MVT::f64, MVT::v2i32); 160 } 161 162 void ARMTargetLowering::addQRTypeForNEON(MVT VT) { 163 addRegisterClass(VT, &ARM::DPairRegClass); 164 addTypeForNEON(VT, MVT::v2f64, MVT::v4i32); 165 } 166 167 ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM, 168 const ARMSubtarget &STI) 169 : TargetLowering(TM), Subtarget(&STI) { 170 RegInfo = Subtarget->getRegisterInfo(); 171 Itins = Subtarget->getInstrItineraryData(); 172 173 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent); 174 175 if (Subtarget->isTargetMachO()) { 176 // Uses VFP for Thumb libfuncs if available. 177 if (Subtarget->isThumb() && Subtarget->hasVFP2() && 178 Subtarget->hasARMOps() && !Subtarget->useSoftFloat()) { 179 static const struct { 180 const RTLIB::Libcall Op; 181 const char * const Name; 182 const ISD::CondCode Cond; 183 } LibraryCalls[] = { 184 // Single-precision floating-point arithmetic. 185 { RTLIB::ADD_F32, "__addsf3vfp", ISD::SETCC_INVALID }, 186 { RTLIB::SUB_F32, "__subsf3vfp", ISD::SETCC_INVALID }, 187 { RTLIB::MUL_F32, "__mulsf3vfp", ISD::SETCC_INVALID }, 188 { RTLIB::DIV_F32, "__divsf3vfp", ISD::SETCC_INVALID }, 189 190 // Double-precision floating-point arithmetic. 191 { RTLIB::ADD_F64, "__adddf3vfp", ISD::SETCC_INVALID }, 192 { RTLIB::SUB_F64, "__subdf3vfp", ISD::SETCC_INVALID }, 193 { RTLIB::MUL_F64, "__muldf3vfp", ISD::SETCC_INVALID }, 194 { RTLIB::DIV_F64, "__divdf3vfp", ISD::SETCC_INVALID }, 195 196 // Single-precision comparisons. 197 { RTLIB::OEQ_F32, "__eqsf2vfp", ISD::SETNE }, 198 { RTLIB::UNE_F32, "__nesf2vfp", ISD::SETNE }, 199 { RTLIB::OLT_F32, "__ltsf2vfp", ISD::SETNE }, 200 { RTLIB::OLE_F32, "__lesf2vfp", ISD::SETNE }, 201 { RTLIB::OGE_F32, "__gesf2vfp", ISD::SETNE }, 202 { RTLIB::OGT_F32, "__gtsf2vfp", ISD::SETNE }, 203 { RTLIB::UO_F32, "__unordsf2vfp", ISD::SETNE }, 204 { RTLIB::O_F32, "__unordsf2vfp", ISD::SETEQ }, 205 206 // Double-precision comparisons. 207 { RTLIB::OEQ_F64, "__eqdf2vfp", ISD::SETNE }, 208 { RTLIB::UNE_F64, "__nedf2vfp", ISD::SETNE }, 209 { RTLIB::OLT_F64, "__ltdf2vfp", ISD::SETNE }, 210 { RTLIB::OLE_F64, "__ledf2vfp", ISD::SETNE }, 211 { RTLIB::OGE_F64, "__gedf2vfp", ISD::SETNE }, 212 { RTLIB::OGT_F64, "__gtdf2vfp", ISD::SETNE }, 213 { RTLIB::UO_F64, "__unorddf2vfp", ISD::SETNE }, 214 { RTLIB::O_F64, "__unorddf2vfp", ISD::SETEQ }, 215 216 // Floating-point to integer conversions. 217 // i64 conversions are done via library routines even when generating VFP 218 // instructions, so use the same ones. 219 { RTLIB::FPTOSINT_F64_I32, "__fixdfsivfp", ISD::SETCC_INVALID }, 220 { RTLIB::FPTOUINT_F64_I32, "__fixunsdfsivfp", ISD::SETCC_INVALID }, 221 { RTLIB::FPTOSINT_F32_I32, "__fixsfsivfp", ISD::SETCC_INVALID }, 222 { RTLIB::FPTOUINT_F32_I32, "__fixunssfsivfp", ISD::SETCC_INVALID }, 223 224 // Conversions between floating types. 225 { RTLIB::FPROUND_F64_F32, "__truncdfsf2vfp", ISD::SETCC_INVALID }, 226 { RTLIB::FPEXT_F32_F64, "__extendsfdf2vfp", ISD::SETCC_INVALID }, 227 228 // Integer to floating-point conversions. 229 // i64 conversions are done via library routines even when generating VFP 230 // instructions, so use the same ones. 231 // FIXME: There appears to be some naming inconsistency in ARM libgcc: 232 // e.g., __floatunsidf vs. __floatunssidfvfp. 233 { RTLIB::SINTTOFP_I32_F64, "__floatsidfvfp", ISD::SETCC_INVALID }, 234 { RTLIB::UINTTOFP_I32_F64, "__floatunssidfvfp", ISD::SETCC_INVALID }, 235 { RTLIB::SINTTOFP_I32_F32, "__floatsisfvfp", ISD::SETCC_INVALID }, 236 { RTLIB::UINTTOFP_I32_F32, "__floatunssisfvfp", ISD::SETCC_INVALID }, 237 }; 238 239 for (const auto &LC : LibraryCalls) { 240 setLibcallName(LC.Op, LC.Name); 241 if (LC.Cond != ISD::SETCC_INVALID) 242 setCmpLibcallCC(LC.Op, LC.Cond); 243 } 244 } 245 246 // Set the correct calling convention for ARMv7k WatchOS. It's just 247 // AAPCS_VFP for functions as simple as libcalls. 248 if (Subtarget->isTargetWatchOS()) { 249 for (int i = 0; i < RTLIB::UNKNOWN_LIBCALL; ++i) 250 setLibcallCallingConv((RTLIB::Libcall)i, CallingConv::ARM_AAPCS_VFP); 251 } 252 } 253 254 // These libcalls are not available in 32-bit. 255 setLibcallName(RTLIB::SHL_I128, nullptr); 256 setLibcallName(RTLIB::SRL_I128, nullptr); 257 setLibcallName(RTLIB::SRA_I128, nullptr); 258 259 // RTLIB 260 if (Subtarget->isAAPCS_ABI() && 261 (Subtarget->isTargetAEABI() || Subtarget->isTargetGNUAEABI() || 262 Subtarget->isTargetAndroid())) { 263 static const struct { 264 const RTLIB::Libcall Op; 265 const char * const Name; 266 const CallingConv::ID CC; 267 const ISD::CondCode Cond; 268 } LibraryCalls[] = { 269 // Double-precision floating-point arithmetic helper functions 270 // RTABI chapter 4.1.2, Table 2 271 { RTLIB::ADD_F64, "__aeabi_dadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 272 { RTLIB::DIV_F64, "__aeabi_ddiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 273 { RTLIB::MUL_F64, "__aeabi_dmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 274 { RTLIB::SUB_F64, "__aeabi_dsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 275 276 // Double-precision floating-point comparison helper functions 277 // RTABI chapter 4.1.2, Table 3 278 { RTLIB::OEQ_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE }, 279 { RTLIB::UNE_F64, "__aeabi_dcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ }, 280 { RTLIB::OLT_F64, "__aeabi_dcmplt", CallingConv::ARM_AAPCS, ISD::SETNE }, 281 { RTLIB::OLE_F64, "__aeabi_dcmple", CallingConv::ARM_AAPCS, ISD::SETNE }, 282 { RTLIB::OGE_F64, "__aeabi_dcmpge", CallingConv::ARM_AAPCS, ISD::SETNE }, 283 { RTLIB::OGT_F64, "__aeabi_dcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE }, 284 { RTLIB::UO_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETNE }, 285 { RTLIB::O_F64, "__aeabi_dcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ }, 286 287 // Single-precision floating-point arithmetic helper functions 288 // RTABI chapter 4.1.2, Table 4 289 { RTLIB::ADD_F32, "__aeabi_fadd", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 290 { RTLIB::DIV_F32, "__aeabi_fdiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 291 { RTLIB::MUL_F32, "__aeabi_fmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 292 { RTLIB::SUB_F32, "__aeabi_fsub", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 293 294 // Single-precision floating-point comparison helper functions 295 // RTABI chapter 4.1.2, Table 5 296 { RTLIB::OEQ_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETNE }, 297 { RTLIB::UNE_F32, "__aeabi_fcmpeq", CallingConv::ARM_AAPCS, ISD::SETEQ }, 298 { RTLIB::OLT_F32, "__aeabi_fcmplt", CallingConv::ARM_AAPCS, ISD::SETNE }, 299 { RTLIB::OLE_F32, "__aeabi_fcmple", CallingConv::ARM_AAPCS, ISD::SETNE }, 300 { RTLIB::OGE_F32, "__aeabi_fcmpge", CallingConv::ARM_AAPCS, ISD::SETNE }, 301 { RTLIB::OGT_F32, "__aeabi_fcmpgt", CallingConv::ARM_AAPCS, ISD::SETNE }, 302 { RTLIB::UO_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETNE }, 303 { RTLIB::O_F32, "__aeabi_fcmpun", CallingConv::ARM_AAPCS, ISD::SETEQ }, 304 305 // Floating-point to integer conversions. 306 // RTABI chapter 4.1.2, Table 6 307 { RTLIB::FPTOSINT_F64_I32, "__aeabi_d2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 308 { RTLIB::FPTOUINT_F64_I32, "__aeabi_d2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 309 { RTLIB::FPTOSINT_F64_I64, "__aeabi_d2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 310 { RTLIB::FPTOUINT_F64_I64, "__aeabi_d2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 311 { RTLIB::FPTOSINT_F32_I32, "__aeabi_f2iz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 312 { RTLIB::FPTOUINT_F32_I32, "__aeabi_f2uiz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 313 { RTLIB::FPTOSINT_F32_I64, "__aeabi_f2lz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 314 { RTLIB::FPTOUINT_F32_I64, "__aeabi_f2ulz", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 315 316 // Conversions between floating types. 317 // RTABI chapter 4.1.2, Table 7 318 { RTLIB::FPROUND_F64_F32, "__aeabi_d2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 319 { RTLIB::FPROUND_F64_F16, "__aeabi_d2h", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 320 { RTLIB::FPEXT_F32_F64, "__aeabi_f2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 321 322 // Integer to floating-point conversions. 323 // RTABI chapter 4.1.2, Table 8 324 { RTLIB::SINTTOFP_I32_F64, "__aeabi_i2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 325 { RTLIB::UINTTOFP_I32_F64, "__aeabi_ui2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 326 { RTLIB::SINTTOFP_I64_F64, "__aeabi_l2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 327 { RTLIB::UINTTOFP_I64_F64, "__aeabi_ul2d", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 328 { RTLIB::SINTTOFP_I32_F32, "__aeabi_i2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 329 { RTLIB::UINTTOFP_I32_F32, "__aeabi_ui2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 330 { RTLIB::SINTTOFP_I64_F32, "__aeabi_l2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 331 { RTLIB::UINTTOFP_I64_F32, "__aeabi_ul2f", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 332 333 // Long long helper functions 334 // RTABI chapter 4.2, Table 9 335 { RTLIB::MUL_I64, "__aeabi_lmul", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 336 { RTLIB::SHL_I64, "__aeabi_llsl", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 337 { RTLIB::SRL_I64, "__aeabi_llsr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 338 { RTLIB::SRA_I64, "__aeabi_lasr", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 339 340 // Integer division functions 341 // RTABI chapter 4.3.1 342 { RTLIB::SDIV_I8, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 343 { RTLIB::SDIV_I16, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 344 { RTLIB::SDIV_I32, "__aeabi_idiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 345 { RTLIB::SDIV_I64, "__aeabi_ldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 346 { RTLIB::UDIV_I8, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 347 { RTLIB::UDIV_I16, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 348 { RTLIB::UDIV_I32, "__aeabi_uidiv", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 349 { RTLIB::UDIV_I64, "__aeabi_uldivmod", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 350 }; 351 352 for (const auto &LC : LibraryCalls) { 353 setLibcallName(LC.Op, LC.Name); 354 setLibcallCallingConv(LC.Op, LC.CC); 355 if (LC.Cond != ISD::SETCC_INVALID) 356 setCmpLibcallCC(LC.Op, LC.Cond); 357 } 358 359 // EABI dependent RTLIB 360 if (TM.Options.EABIVersion == EABI::EABI4 || 361 TM.Options.EABIVersion == EABI::EABI5) { 362 static const struct { 363 const RTLIB::Libcall Op; 364 const char *const Name; 365 const CallingConv::ID CC; 366 const ISD::CondCode Cond; 367 } MemOpsLibraryCalls[] = { 368 // Memory operations 369 // RTABI chapter 4.3.4 370 { RTLIB::MEMCPY, "__aeabi_memcpy", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 371 { RTLIB::MEMMOVE, "__aeabi_memmove", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 372 { RTLIB::MEMSET, "__aeabi_memset", CallingConv::ARM_AAPCS, ISD::SETCC_INVALID }, 373 }; 374 375 for (const auto &LC : MemOpsLibraryCalls) { 376 setLibcallName(LC.Op, LC.Name); 377 setLibcallCallingConv(LC.Op, LC.CC); 378 if (LC.Cond != ISD::SETCC_INVALID) 379 setCmpLibcallCC(LC.Op, LC.Cond); 380 } 381 } 382 } 383 384 if (Subtarget->isTargetWindows()) { 385 static const struct { 386 const RTLIB::Libcall Op; 387 const char * const Name; 388 const CallingConv::ID CC; 389 } LibraryCalls[] = { 390 { RTLIB::FPTOSINT_F32_I64, "__stoi64", CallingConv::ARM_AAPCS_VFP }, 391 { RTLIB::FPTOSINT_F64_I64, "__dtoi64", CallingConv::ARM_AAPCS_VFP }, 392 { RTLIB::FPTOUINT_F32_I64, "__stou64", CallingConv::ARM_AAPCS_VFP }, 393 { RTLIB::FPTOUINT_F64_I64, "__dtou64", CallingConv::ARM_AAPCS_VFP }, 394 { RTLIB::SINTTOFP_I64_F32, "__i64tos", CallingConv::ARM_AAPCS_VFP }, 395 { RTLIB::SINTTOFP_I64_F64, "__i64tod", CallingConv::ARM_AAPCS_VFP }, 396 { RTLIB::UINTTOFP_I64_F32, "__u64tos", CallingConv::ARM_AAPCS_VFP }, 397 { RTLIB::UINTTOFP_I64_F64, "__u64tod", CallingConv::ARM_AAPCS_VFP }, 398 }; 399 400 for (const auto &LC : LibraryCalls) { 401 setLibcallName(LC.Op, LC.Name); 402 setLibcallCallingConv(LC.Op, LC.CC); 403 } 404 } 405 406 // Use divmod compiler-rt calls for iOS 5.0 and later. 407 if (Subtarget->isTargetWatchOS() || 408 (Subtarget->isTargetIOS() && 409 !Subtarget->getTargetTriple().isOSVersionLT(5, 0))) { 410 setLibcallName(RTLIB::SDIVREM_I32, "__divmodsi4"); 411 setLibcallName(RTLIB::UDIVREM_I32, "__udivmodsi4"); 412 } 413 414 // The half <-> float conversion functions are always soft-float, but are 415 // needed for some targets which use a hard-float calling convention by 416 // default. 417 if (Subtarget->isAAPCS_ABI()) { 418 setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_AAPCS); 419 setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_AAPCS); 420 setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_AAPCS); 421 } else { 422 setLibcallCallingConv(RTLIB::FPROUND_F32_F16, CallingConv::ARM_APCS); 423 setLibcallCallingConv(RTLIB::FPROUND_F64_F16, CallingConv::ARM_APCS); 424 setLibcallCallingConv(RTLIB::FPEXT_F16_F32, CallingConv::ARM_APCS); 425 } 426 427 // In EABI, these functions have an __aeabi_ prefix, but in GNUEABI they have 428 // a __gnu_ prefix (which is the default). 429 if (Subtarget->isTargetAEABI()) { 430 setLibcallName(RTLIB::FPROUND_F32_F16, "__aeabi_f2h"); 431 setLibcallName(RTLIB::FPROUND_F64_F16, "__aeabi_d2h"); 432 setLibcallName(RTLIB::FPEXT_F16_F32, "__aeabi_h2f"); 433 } 434 435 if (Subtarget->isThumb1Only()) 436 addRegisterClass(MVT::i32, &ARM::tGPRRegClass); 437 else 438 addRegisterClass(MVT::i32, &ARM::GPRRegClass); 439 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() && 440 !Subtarget->isThumb1Only()) { 441 addRegisterClass(MVT::f32, &ARM::SPRRegClass); 442 addRegisterClass(MVT::f64, &ARM::DPRRegClass); 443 } 444 445 for (MVT VT : MVT::vector_valuetypes()) { 446 for (MVT InnerVT : MVT::vector_valuetypes()) { 447 setTruncStoreAction(VT, InnerVT, Expand); 448 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand); 449 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand); 450 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand); 451 } 452 453 setOperationAction(ISD::MULHS, VT, Expand); 454 setOperationAction(ISD::SMUL_LOHI, VT, Expand); 455 setOperationAction(ISD::MULHU, VT, Expand); 456 setOperationAction(ISD::UMUL_LOHI, VT, Expand); 457 458 setOperationAction(ISD::BSWAP, VT, Expand); 459 } 460 461 setOperationAction(ISD::ConstantFP, MVT::f32, Custom); 462 setOperationAction(ISD::ConstantFP, MVT::f64, Custom); 463 464 setOperationAction(ISD::READ_REGISTER, MVT::i64, Custom); 465 setOperationAction(ISD::WRITE_REGISTER, MVT::i64, Custom); 466 467 if (Subtarget->hasNEON()) { 468 addDRTypeForNEON(MVT::v2f32); 469 addDRTypeForNEON(MVT::v8i8); 470 addDRTypeForNEON(MVT::v4i16); 471 addDRTypeForNEON(MVT::v2i32); 472 addDRTypeForNEON(MVT::v1i64); 473 474 addQRTypeForNEON(MVT::v4f32); 475 addQRTypeForNEON(MVT::v2f64); 476 addQRTypeForNEON(MVT::v16i8); 477 addQRTypeForNEON(MVT::v8i16); 478 addQRTypeForNEON(MVT::v4i32); 479 addQRTypeForNEON(MVT::v2i64); 480 481 // v2f64 is legal so that QR subregs can be extracted as f64 elements, but 482 // neither Neon nor VFP support any arithmetic operations on it. 483 // The same with v4f32. But keep in mind that vadd, vsub, vmul are natively 484 // supported for v4f32. 485 setOperationAction(ISD::FADD, MVT::v2f64, Expand); 486 setOperationAction(ISD::FSUB, MVT::v2f64, Expand); 487 setOperationAction(ISD::FMUL, MVT::v2f64, Expand); 488 // FIXME: Code duplication: FDIV and FREM are expanded always, see 489 // ARMTargetLowering::addTypeForNEON method for details. 490 setOperationAction(ISD::FDIV, MVT::v2f64, Expand); 491 setOperationAction(ISD::FREM, MVT::v2f64, Expand); 492 // FIXME: Create unittest. 493 // In another words, find a way when "copysign" appears in DAG with vector 494 // operands. 495 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Expand); 496 // FIXME: Code duplication: SETCC has custom operation action, see 497 // ARMTargetLowering::addTypeForNEON method for details. 498 setOperationAction(ISD::SETCC, MVT::v2f64, Expand); 499 // FIXME: Create unittest for FNEG and for FABS. 500 setOperationAction(ISD::FNEG, MVT::v2f64, Expand); 501 setOperationAction(ISD::FABS, MVT::v2f64, Expand); 502 setOperationAction(ISD::FSQRT, MVT::v2f64, Expand); 503 setOperationAction(ISD::FSIN, MVT::v2f64, Expand); 504 setOperationAction(ISD::FCOS, MVT::v2f64, Expand); 505 setOperationAction(ISD::FPOWI, MVT::v2f64, Expand); 506 setOperationAction(ISD::FPOW, MVT::v2f64, Expand); 507 setOperationAction(ISD::FLOG, MVT::v2f64, Expand); 508 setOperationAction(ISD::FLOG2, MVT::v2f64, Expand); 509 setOperationAction(ISD::FLOG10, MVT::v2f64, Expand); 510 setOperationAction(ISD::FEXP, MVT::v2f64, Expand); 511 setOperationAction(ISD::FEXP2, MVT::v2f64, Expand); 512 // FIXME: Create unittest for FCEIL, FTRUNC, FRINT, FNEARBYINT, FFLOOR. 513 setOperationAction(ISD::FCEIL, MVT::v2f64, Expand); 514 setOperationAction(ISD::FTRUNC, MVT::v2f64, Expand); 515 setOperationAction(ISD::FRINT, MVT::v2f64, Expand); 516 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Expand); 517 setOperationAction(ISD::FFLOOR, MVT::v2f64, Expand); 518 setOperationAction(ISD::FMA, MVT::v2f64, Expand); 519 520 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand); 521 setOperationAction(ISD::FSIN, MVT::v4f32, Expand); 522 setOperationAction(ISD::FCOS, MVT::v4f32, Expand); 523 setOperationAction(ISD::FPOWI, MVT::v4f32, Expand); 524 setOperationAction(ISD::FPOW, MVT::v4f32, Expand); 525 setOperationAction(ISD::FLOG, MVT::v4f32, Expand); 526 setOperationAction(ISD::FLOG2, MVT::v4f32, Expand); 527 setOperationAction(ISD::FLOG10, MVT::v4f32, Expand); 528 setOperationAction(ISD::FEXP, MVT::v4f32, Expand); 529 setOperationAction(ISD::FEXP2, MVT::v4f32, Expand); 530 setOperationAction(ISD::FCEIL, MVT::v4f32, Expand); 531 setOperationAction(ISD::FTRUNC, MVT::v4f32, Expand); 532 setOperationAction(ISD::FRINT, MVT::v4f32, Expand); 533 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand); 534 setOperationAction(ISD::FFLOOR, MVT::v4f32, Expand); 535 536 // Mark v2f32 intrinsics. 537 setOperationAction(ISD::FSQRT, MVT::v2f32, Expand); 538 setOperationAction(ISD::FSIN, MVT::v2f32, Expand); 539 setOperationAction(ISD::FCOS, MVT::v2f32, Expand); 540 setOperationAction(ISD::FPOWI, MVT::v2f32, Expand); 541 setOperationAction(ISD::FPOW, MVT::v2f32, Expand); 542 setOperationAction(ISD::FLOG, MVT::v2f32, Expand); 543 setOperationAction(ISD::FLOG2, MVT::v2f32, Expand); 544 setOperationAction(ISD::FLOG10, MVT::v2f32, Expand); 545 setOperationAction(ISD::FEXP, MVT::v2f32, Expand); 546 setOperationAction(ISD::FEXP2, MVT::v2f32, Expand); 547 setOperationAction(ISD::FCEIL, MVT::v2f32, Expand); 548 setOperationAction(ISD::FTRUNC, MVT::v2f32, Expand); 549 setOperationAction(ISD::FRINT, MVT::v2f32, Expand); 550 setOperationAction(ISD::FNEARBYINT, MVT::v2f32, Expand); 551 setOperationAction(ISD::FFLOOR, MVT::v2f32, Expand); 552 553 // Neon does not support some operations on v1i64 and v2i64 types. 554 setOperationAction(ISD::MUL, MVT::v1i64, Expand); 555 // Custom handling for some quad-vector types to detect VMULL. 556 setOperationAction(ISD::MUL, MVT::v8i16, Custom); 557 setOperationAction(ISD::MUL, MVT::v4i32, Custom); 558 setOperationAction(ISD::MUL, MVT::v2i64, Custom); 559 // Custom handling for some vector types to avoid expensive expansions 560 setOperationAction(ISD::SDIV, MVT::v4i16, Custom); 561 setOperationAction(ISD::SDIV, MVT::v8i8, Custom); 562 setOperationAction(ISD::UDIV, MVT::v4i16, Custom); 563 setOperationAction(ISD::UDIV, MVT::v8i8, Custom); 564 setOperationAction(ISD::SETCC, MVT::v1i64, Expand); 565 setOperationAction(ISD::SETCC, MVT::v2i64, Expand); 566 // Neon does not have single instruction SINT_TO_FP and UINT_TO_FP with 567 // a destination type that is wider than the source, and nor does 568 // it have a FP_TO_[SU]INT instruction with a narrower destination than 569 // source. 570 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom); 571 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom); 572 setOperationAction(ISD::FP_TO_UINT, MVT::v4i16, Custom); 573 setOperationAction(ISD::FP_TO_SINT, MVT::v4i16, Custom); 574 575 setOperationAction(ISD::FP_ROUND, MVT::v2f32, Expand); 576 setOperationAction(ISD::FP_EXTEND, MVT::v2f64, Expand); 577 578 // NEON does not have single instruction CTPOP for vectors with element 579 // types wider than 8-bits. However, custom lowering can leverage the 580 // v8i8/v16i8 vcnt instruction. 581 setOperationAction(ISD::CTPOP, MVT::v2i32, Custom); 582 setOperationAction(ISD::CTPOP, MVT::v4i32, Custom); 583 setOperationAction(ISD::CTPOP, MVT::v4i16, Custom); 584 setOperationAction(ISD::CTPOP, MVT::v8i16, Custom); 585 586 // NEON does not have single instruction CTTZ for vectors. 587 setOperationAction(ISD::CTTZ, MVT::v8i8, Custom); 588 setOperationAction(ISD::CTTZ, MVT::v4i16, Custom); 589 setOperationAction(ISD::CTTZ, MVT::v2i32, Custom); 590 setOperationAction(ISD::CTTZ, MVT::v1i64, Custom); 591 592 setOperationAction(ISD::CTTZ, MVT::v16i8, Custom); 593 setOperationAction(ISD::CTTZ, MVT::v8i16, Custom); 594 setOperationAction(ISD::CTTZ, MVT::v4i32, Custom); 595 setOperationAction(ISD::CTTZ, MVT::v2i64, Custom); 596 597 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i8, Custom); 598 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i16, Custom); 599 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i32, Custom); 600 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v1i64, Custom); 601 602 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v16i8, Custom); 603 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v8i16, Custom); 604 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v4i32, Custom); 605 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::v2i64, Custom); 606 607 // NEON only has FMA instructions as of VFP4. 608 if (!Subtarget->hasVFP4()) { 609 setOperationAction(ISD::FMA, MVT::v2f32, Expand); 610 setOperationAction(ISD::FMA, MVT::v4f32, Expand); 611 } 612 613 setTargetDAGCombine(ISD::INTRINSIC_VOID); 614 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN); 615 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN); 616 setTargetDAGCombine(ISD::SHL); 617 setTargetDAGCombine(ISD::SRL); 618 setTargetDAGCombine(ISD::SRA); 619 setTargetDAGCombine(ISD::SIGN_EXTEND); 620 setTargetDAGCombine(ISD::ZERO_EXTEND); 621 setTargetDAGCombine(ISD::ANY_EXTEND); 622 setTargetDAGCombine(ISD::BUILD_VECTOR); 623 setTargetDAGCombine(ISD::VECTOR_SHUFFLE); 624 setTargetDAGCombine(ISD::INSERT_VECTOR_ELT); 625 setTargetDAGCombine(ISD::STORE); 626 setTargetDAGCombine(ISD::FP_TO_SINT); 627 setTargetDAGCombine(ISD::FP_TO_UINT); 628 setTargetDAGCombine(ISD::FDIV); 629 setTargetDAGCombine(ISD::LOAD); 630 631 // It is legal to extload from v4i8 to v4i16 or v4i32. 632 for (MVT Ty : {MVT::v8i8, MVT::v4i8, MVT::v2i8, MVT::v4i16, MVT::v2i16, 633 MVT::v2i32}) { 634 for (MVT VT : MVT::integer_vector_valuetypes()) { 635 setLoadExtAction(ISD::EXTLOAD, VT, Ty, Legal); 636 setLoadExtAction(ISD::ZEXTLOAD, VT, Ty, Legal); 637 setLoadExtAction(ISD::SEXTLOAD, VT, Ty, Legal); 638 } 639 } 640 } 641 642 // ARM and Thumb2 support UMLAL/SMLAL. 643 if (!Subtarget->isThumb1Only()) 644 setTargetDAGCombine(ISD::ADDC); 645 646 if (Subtarget->isFPOnlySP()) { 647 // When targeting a floating-point unit with only single-precision 648 // operations, f64 is legal for the few double-precision instructions which 649 // are present However, no double-precision operations other than moves, 650 // loads and stores are provided by the hardware. 651 setOperationAction(ISD::FADD, MVT::f64, Expand); 652 setOperationAction(ISD::FSUB, MVT::f64, Expand); 653 setOperationAction(ISD::FMUL, MVT::f64, Expand); 654 setOperationAction(ISD::FMA, MVT::f64, Expand); 655 setOperationAction(ISD::FDIV, MVT::f64, Expand); 656 setOperationAction(ISD::FREM, MVT::f64, Expand); 657 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); 658 setOperationAction(ISD::FGETSIGN, MVT::f64, Expand); 659 setOperationAction(ISD::FNEG, MVT::f64, Expand); 660 setOperationAction(ISD::FABS, MVT::f64, Expand); 661 setOperationAction(ISD::FSQRT, MVT::f64, Expand); 662 setOperationAction(ISD::FSIN, MVT::f64, Expand); 663 setOperationAction(ISD::FCOS, MVT::f64, Expand); 664 setOperationAction(ISD::FPOWI, MVT::f64, Expand); 665 setOperationAction(ISD::FPOW, MVT::f64, Expand); 666 setOperationAction(ISD::FLOG, MVT::f64, Expand); 667 setOperationAction(ISD::FLOG2, MVT::f64, Expand); 668 setOperationAction(ISD::FLOG10, MVT::f64, Expand); 669 setOperationAction(ISD::FEXP, MVT::f64, Expand); 670 setOperationAction(ISD::FEXP2, MVT::f64, Expand); 671 setOperationAction(ISD::FCEIL, MVT::f64, Expand); 672 setOperationAction(ISD::FTRUNC, MVT::f64, Expand); 673 setOperationAction(ISD::FRINT, MVT::f64, Expand); 674 setOperationAction(ISD::FNEARBYINT, MVT::f64, Expand); 675 setOperationAction(ISD::FFLOOR, MVT::f64, Expand); 676 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 677 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom); 678 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 679 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 680 setOperationAction(ISD::FP_TO_SINT, MVT::f64, Custom); 681 setOperationAction(ISD::FP_TO_UINT, MVT::f64, Custom); 682 setOperationAction(ISD::FP_ROUND, MVT::f32, Custom); 683 setOperationAction(ISD::FP_EXTEND, MVT::f64, Custom); 684 } 685 686 computeRegisterProperties(Subtarget->getRegisterInfo()); 687 688 // ARM does not have floating-point extending loads. 689 for (MVT VT : MVT::fp_valuetypes()) { 690 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f32, Expand); 691 setLoadExtAction(ISD::EXTLOAD, VT, MVT::f16, Expand); 692 } 693 694 // ... or truncating stores 695 setTruncStoreAction(MVT::f64, MVT::f32, Expand); 696 setTruncStoreAction(MVT::f32, MVT::f16, Expand); 697 setTruncStoreAction(MVT::f64, MVT::f16, Expand); 698 699 // ARM does not have i1 sign extending load. 700 for (MVT VT : MVT::integer_valuetypes()) 701 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 702 703 // ARM supports all 4 flavors of integer indexed load / store. 704 if (!Subtarget->isThumb1Only()) { 705 for (unsigned im = (unsigned)ISD::PRE_INC; 706 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) { 707 setIndexedLoadAction(im, MVT::i1, Legal); 708 setIndexedLoadAction(im, MVT::i8, Legal); 709 setIndexedLoadAction(im, MVT::i16, Legal); 710 setIndexedLoadAction(im, MVT::i32, Legal); 711 setIndexedStoreAction(im, MVT::i1, Legal); 712 setIndexedStoreAction(im, MVT::i8, Legal); 713 setIndexedStoreAction(im, MVT::i16, Legal); 714 setIndexedStoreAction(im, MVT::i32, Legal); 715 } 716 } 717 718 setOperationAction(ISD::SADDO, MVT::i32, Custom); 719 setOperationAction(ISD::UADDO, MVT::i32, Custom); 720 setOperationAction(ISD::SSUBO, MVT::i32, Custom); 721 setOperationAction(ISD::USUBO, MVT::i32, Custom); 722 723 // i64 operation support. 724 setOperationAction(ISD::MUL, MVT::i64, Expand); 725 setOperationAction(ISD::MULHU, MVT::i32, Expand); 726 if (Subtarget->isThumb1Only()) { 727 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); 728 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand); 729 } 730 if (Subtarget->isThumb1Only() || !Subtarget->hasV6Ops() 731 || (Subtarget->isThumb2() && !Subtarget->hasDSP())) 732 setOperationAction(ISD::MULHS, MVT::i32, Expand); 733 734 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom); 735 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom); 736 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom); 737 setOperationAction(ISD::SRL, MVT::i64, Custom); 738 setOperationAction(ISD::SRA, MVT::i64, Custom); 739 740 if (!Subtarget->isThumb1Only()) { 741 // FIXME: We should do this for Thumb1 as well. 742 setOperationAction(ISD::ADDC, MVT::i32, Custom); 743 setOperationAction(ISD::ADDE, MVT::i32, Custom); 744 setOperationAction(ISD::SUBC, MVT::i32, Custom); 745 setOperationAction(ISD::SUBE, MVT::i32, Custom); 746 } 747 748 // ARM does not have ROTL. 749 setOperationAction(ISD::ROTL, MVT::i32, Expand); 750 for (MVT VT : MVT::vector_valuetypes()) { 751 setOperationAction(ISD::ROTL, VT, Expand); 752 setOperationAction(ISD::ROTR, VT, Expand); 753 } 754 setOperationAction(ISD::CTTZ, MVT::i32, Custom); 755 setOperationAction(ISD::CTPOP, MVT::i32, Expand); 756 if (!Subtarget->hasV5TOps() || Subtarget->isThumb1Only()) 757 setOperationAction(ISD::CTLZ, MVT::i32, Expand); 758 759 // These just redirect to CTTZ and CTLZ on ARM. 760 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i32 , Expand); 761 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i32 , Expand); 762 763 // @llvm.readcyclecounter requires the Performance Monitors extension. 764 // Default to the 0 expansion on unsupported platforms. 765 // FIXME: Technically there are older ARM CPUs that have 766 // implementation-specific ways of obtaining this information. 767 if (Subtarget->hasPerfMon()) 768 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, Custom); 769 770 // Only ARMv6 has BSWAP. 771 if (!Subtarget->hasV6Ops()) 772 setOperationAction(ISD::BSWAP, MVT::i32, Expand); 773 774 if (!(Subtarget->hasDivide() && Subtarget->isThumb2()) && 775 !(Subtarget->hasDivideInARMMode() && !Subtarget->isThumb())) { 776 // These are expanded into libcalls if the cpu doesn't have HW divider. 777 setOperationAction(ISD::SDIV, MVT::i32, LibCall); 778 setOperationAction(ISD::UDIV, MVT::i32, LibCall); 779 } 780 781 if (Subtarget->isTargetWindows() && !Subtarget->hasDivide()) { 782 setOperationAction(ISD::SDIV, MVT::i32, Custom); 783 setOperationAction(ISD::UDIV, MVT::i32, Custom); 784 785 setOperationAction(ISD::SDIV, MVT::i64, Custom); 786 setOperationAction(ISD::UDIV, MVT::i64, Custom); 787 } 788 789 setOperationAction(ISD::SREM, MVT::i32, Expand); 790 setOperationAction(ISD::UREM, MVT::i32, Expand); 791 // Register based DivRem for AEABI (RTABI 4.2) 792 if (Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid()) { 793 setOperationAction(ISD::SREM, MVT::i64, Custom); 794 setOperationAction(ISD::UREM, MVT::i64, Custom); 795 796 setLibcallName(RTLIB::SDIVREM_I8, "__aeabi_idivmod"); 797 setLibcallName(RTLIB::SDIVREM_I16, "__aeabi_idivmod"); 798 setLibcallName(RTLIB::SDIVREM_I32, "__aeabi_idivmod"); 799 setLibcallName(RTLIB::SDIVREM_I64, "__aeabi_ldivmod"); 800 setLibcallName(RTLIB::UDIVREM_I8, "__aeabi_uidivmod"); 801 setLibcallName(RTLIB::UDIVREM_I16, "__aeabi_uidivmod"); 802 setLibcallName(RTLIB::UDIVREM_I32, "__aeabi_uidivmod"); 803 setLibcallName(RTLIB::UDIVREM_I64, "__aeabi_uldivmod"); 804 805 setLibcallCallingConv(RTLIB::SDIVREM_I8, CallingConv::ARM_AAPCS); 806 setLibcallCallingConv(RTLIB::SDIVREM_I16, CallingConv::ARM_AAPCS); 807 setLibcallCallingConv(RTLIB::SDIVREM_I32, CallingConv::ARM_AAPCS); 808 setLibcallCallingConv(RTLIB::SDIVREM_I64, CallingConv::ARM_AAPCS); 809 setLibcallCallingConv(RTLIB::UDIVREM_I8, CallingConv::ARM_AAPCS); 810 setLibcallCallingConv(RTLIB::UDIVREM_I16, CallingConv::ARM_AAPCS); 811 setLibcallCallingConv(RTLIB::UDIVREM_I32, CallingConv::ARM_AAPCS); 812 setLibcallCallingConv(RTLIB::UDIVREM_I64, CallingConv::ARM_AAPCS); 813 814 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); 815 setOperationAction(ISD::UDIVREM, MVT::i32, Custom); 816 } else { 817 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); 818 setOperationAction(ISD::UDIVREM, MVT::i32, Expand); 819 } 820 821 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); 822 setOperationAction(ISD::ConstantPool, MVT::i32, Custom); 823 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); 824 setOperationAction(ISD::BlockAddress, MVT::i32, Custom); 825 826 setOperationAction(ISD::TRAP, MVT::Other, Legal); 827 828 // Use the default implementation. 829 setOperationAction(ISD::VASTART, MVT::Other, Custom); 830 setOperationAction(ISD::VAARG, MVT::Other, Expand); 831 setOperationAction(ISD::VACOPY, MVT::Other, Expand); 832 setOperationAction(ISD::VAEND, MVT::Other, Expand); 833 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); 834 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); 835 836 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment()) 837 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom); 838 else 839 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand); 840 841 // ARMv6 Thumb1 (except for CPUs that support dmb / dsb) and earlier use 842 // the default expansion. If we are targeting a single threaded system, 843 // then set them all for expand so we can lower them later into their 844 // non-atomic form. 845 if (TM.Options.ThreadModel == ThreadModel::Single) 846 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Expand); 847 else if (Subtarget->hasAnyDataBarrier() && !Subtarget->isThumb1Only()) { 848 // ATOMIC_FENCE needs custom lowering; the others should have been expanded 849 // to ldrex/strex loops already. 850 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Custom); 851 852 // On v8, we have particularly efficient implementations of atomic fences 853 // if they can be combined with nearby atomic loads and stores. 854 if (!Subtarget->hasV8Ops()) { 855 // Automatically insert fences (dmb ish) around ATOMIC_SWAP etc. 856 setInsertFencesForAtomic(true); 857 } 858 } else { 859 // If there's anything we can use as a barrier, go through custom lowering 860 // for ATOMIC_FENCE. 861 setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, 862 Subtarget->hasAnyDataBarrier() ? Custom : Expand); 863 864 // Set them all for expansion, which will force libcalls. 865 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Expand); 866 setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Expand); 867 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i32, Expand); 868 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Expand); 869 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i32, Expand); 870 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i32, Expand); 871 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i32, Expand); 872 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i32, Expand); 873 setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i32, Expand); 874 setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i32, Expand); 875 setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i32, Expand); 876 setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i32, Expand); 877 // Mark ATOMIC_LOAD and ATOMIC_STORE custom so we can handle the 878 // Unordered/Monotonic case. 879 setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom); 880 setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom); 881 } 882 883 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); 884 885 // Requires SXTB/SXTH, available on v6 and up in both ARM and Thumb modes. 886 if (!Subtarget->hasV6Ops()) { 887 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand); 888 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand); 889 } 890 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 891 892 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() && 893 !Subtarget->isThumb1Only()) { 894 // Turn f64->i64 into VMOVRRD, i64 -> f64 to VMOVDRR 895 // iff target supports vfp2. 896 setOperationAction(ISD::BITCAST, MVT::i64, Custom); 897 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom); 898 } 899 900 // We want to custom lower some of our intrinsics. 901 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 902 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom); 903 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom); 904 setOperationAction(ISD::EH_SJLJ_SETUP_DISPATCH, MVT::Other, Custom); 905 if (Subtarget->useSjLjEH()) 906 setLibcallName(RTLIB::UNWIND_RESUME, "_Unwind_SjLj_Resume"); 907 908 setOperationAction(ISD::SETCC, MVT::i32, Expand); 909 setOperationAction(ISD::SETCC, MVT::f32, Expand); 910 setOperationAction(ISD::SETCC, MVT::f64, Expand); 911 setOperationAction(ISD::SELECT, MVT::i32, Custom); 912 setOperationAction(ISD::SELECT, MVT::f32, Custom); 913 setOperationAction(ISD::SELECT, MVT::f64, Custom); 914 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); 915 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); 916 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); 917 918 setOperationAction(ISD::BRCOND, MVT::Other, Expand); 919 setOperationAction(ISD::BR_CC, MVT::i32, Custom); 920 setOperationAction(ISD::BR_CC, MVT::f32, Custom); 921 setOperationAction(ISD::BR_CC, MVT::f64, Custom); 922 setOperationAction(ISD::BR_JT, MVT::Other, Custom); 923 924 // We don't support sin/cos/fmod/copysign/pow 925 setOperationAction(ISD::FSIN, MVT::f64, Expand); 926 setOperationAction(ISD::FSIN, MVT::f32, Expand); 927 setOperationAction(ISD::FCOS, MVT::f32, Expand); 928 setOperationAction(ISD::FCOS, MVT::f64, Expand); 929 setOperationAction(ISD::FSINCOS, MVT::f64, Expand); 930 setOperationAction(ISD::FSINCOS, MVT::f32, Expand); 931 setOperationAction(ISD::FREM, MVT::f64, Expand); 932 setOperationAction(ISD::FREM, MVT::f32, Expand); 933 if (!Subtarget->useSoftFloat() && Subtarget->hasVFP2() && 934 !Subtarget->isThumb1Only()) { 935 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom); 936 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom); 937 } 938 setOperationAction(ISD::FPOW, MVT::f64, Expand); 939 setOperationAction(ISD::FPOW, MVT::f32, Expand); 940 941 if (!Subtarget->hasVFP4()) { 942 setOperationAction(ISD::FMA, MVT::f64, Expand); 943 setOperationAction(ISD::FMA, MVT::f32, Expand); 944 } 945 946 // Various VFP goodness 947 if (!Subtarget->useSoftFloat() && !Subtarget->isThumb1Only()) { 948 // FP-ARMv8 adds f64 <-> f16 conversion. Before that it should be expanded. 949 if (!Subtarget->hasFPARMv8() || Subtarget->isFPOnlySP()) { 950 setOperationAction(ISD::FP16_TO_FP, MVT::f64, Expand); 951 setOperationAction(ISD::FP_TO_FP16, MVT::f64, Expand); 952 } 953 954 // fp16 is a special v7 extension that adds f16 <-> f32 conversions. 955 if (!Subtarget->hasFP16()) { 956 setOperationAction(ISD::FP16_TO_FP, MVT::f32, Expand); 957 setOperationAction(ISD::FP_TO_FP16, MVT::f32, Expand); 958 } 959 } 960 961 // Combine sin / cos into one node or libcall if possible. 962 if (Subtarget->hasSinCos()) { 963 setLibcallName(RTLIB::SINCOS_F32, "sincosf"); 964 setLibcallName(RTLIB::SINCOS_F64, "sincos"); 965 if (Subtarget->isTargetWatchOS()) { 966 setLibcallCallingConv(RTLIB::SINCOS_F32, CallingConv::ARM_AAPCS_VFP); 967 setLibcallCallingConv(RTLIB::SINCOS_F64, CallingConv::ARM_AAPCS_VFP); 968 } 969 if (Subtarget->isTargetIOS() || Subtarget->isTargetWatchOS()) { 970 // For iOS, we don't want to the normal expansion of a libcall to 971 // sincos. We want to issue a libcall to __sincos_stret. 972 setOperationAction(ISD::FSINCOS, MVT::f64, Custom); 973 setOperationAction(ISD::FSINCOS, MVT::f32, Custom); 974 } 975 } 976 977 // FP-ARMv8 implements a lot of rounding-like FP operations. 978 if (Subtarget->hasFPARMv8()) { 979 setOperationAction(ISD::FFLOOR, MVT::f32, Legal); 980 setOperationAction(ISD::FCEIL, MVT::f32, Legal); 981 setOperationAction(ISD::FROUND, MVT::f32, Legal); 982 setOperationAction(ISD::FTRUNC, MVT::f32, Legal); 983 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal); 984 setOperationAction(ISD::FRINT, MVT::f32, Legal); 985 setOperationAction(ISD::FMINNUM, MVT::f32, Legal); 986 setOperationAction(ISD::FMAXNUM, MVT::f32, Legal); 987 setOperationAction(ISD::FMINNUM, MVT::v2f32, Legal); 988 setOperationAction(ISD::FMAXNUM, MVT::v2f32, Legal); 989 setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal); 990 setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal); 991 992 if (!Subtarget->isFPOnlySP()) { 993 setOperationAction(ISD::FFLOOR, MVT::f64, Legal); 994 setOperationAction(ISD::FCEIL, MVT::f64, Legal); 995 setOperationAction(ISD::FROUND, MVT::f64, Legal); 996 setOperationAction(ISD::FTRUNC, MVT::f64, Legal); 997 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal); 998 setOperationAction(ISD::FRINT, MVT::f64, Legal); 999 setOperationAction(ISD::FMINNUM, MVT::f64, Legal); 1000 setOperationAction(ISD::FMAXNUM, MVT::f64, Legal); 1001 } 1002 } 1003 1004 if (Subtarget->hasNEON()) { 1005 // vmin and vmax aren't available in a scalar form, so we use 1006 // a NEON instruction with an undef lane instead. 1007 setOperationAction(ISD::FMINNAN, MVT::f32, Legal); 1008 setOperationAction(ISD::FMAXNAN, MVT::f32, Legal); 1009 setOperationAction(ISD::FMINNAN, MVT::v2f32, Legal); 1010 setOperationAction(ISD::FMAXNAN, MVT::v2f32, Legal); 1011 setOperationAction(ISD::FMINNAN, MVT::v4f32, Legal); 1012 setOperationAction(ISD::FMAXNAN, MVT::v4f32, Legal); 1013 } 1014 1015 // We have target-specific dag combine patterns for the following nodes: 1016 // ARMISD::VMOVRRD - No need to call setTargetDAGCombine 1017 setTargetDAGCombine(ISD::ADD); 1018 setTargetDAGCombine(ISD::SUB); 1019 setTargetDAGCombine(ISD::MUL); 1020 setTargetDAGCombine(ISD::AND); 1021 setTargetDAGCombine(ISD::OR); 1022 setTargetDAGCombine(ISD::XOR); 1023 1024 if (Subtarget->hasV6Ops()) 1025 setTargetDAGCombine(ISD::SRL); 1026 1027 setStackPointerRegisterToSaveRestore(ARM::SP); 1028 1029 if (Subtarget->useSoftFloat() || Subtarget->isThumb1Only() || 1030 !Subtarget->hasVFP2()) 1031 setSchedulingPreference(Sched::RegPressure); 1032 else 1033 setSchedulingPreference(Sched::Hybrid); 1034 1035 //// temporary - rewrite interface to use type 1036 MaxStoresPerMemset = 8; 1037 MaxStoresPerMemsetOptSize = 4; 1038 MaxStoresPerMemcpy = 4; // For @llvm.memcpy -> sequence of stores 1039 MaxStoresPerMemcpyOptSize = 2; 1040 MaxStoresPerMemmove = 4; // For @llvm.memmove -> sequence of stores 1041 MaxStoresPerMemmoveOptSize = 2; 1042 1043 // On ARM arguments smaller than 4 bytes are extended, so all arguments 1044 // are at least 4 bytes aligned. 1045 setMinStackArgumentAlignment(4); 1046 1047 // Prefer likely predicted branches to selects on out-of-order cores. 1048 PredictableSelectIsExpensive = Subtarget->isLikeA9(); 1049 1050 setMinFunctionAlignment(Subtarget->isThumb() ? 1 : 2); 1051 } 1052 1053 bool ARMTargetLowering::useSoftFloat() const { 1054 return Subtarget->useSoftFloat(); 1055 } 1056 1057 // FIXME: It might make sense to define the representative register class as the 1058 // nearest super-register that has a non-null superset. For example, DPR_VFP2 is 1059 // a super-register of SPR, and DPR is a superset if DPR_VFP2. Consequently, 1060 // SPR's representative would be DPR_VFP2. This should work well if register 1061 // pressure tracking were modified such that a register use would increment the 1062 // pressure of the register class's representative and all of it's super 1063 // classes' representatives transitively. We have not implemented this because 1064 // of the difficulty prior to coalescing of modeling operand register classes 1065 // due to the common occurrence of cross class copies and subregister insertions 1066 // and extractions. 1067 std::pair<const TargetRegisterClass *, uint8_t> 1068 ARMTargetLowering::findRepresentativeClass(const TargetRegisterInfo *TRI, 1069 MVT VT) const { 1070 const TargetRegisterClass *RRC = nullptr; 1071 uint8_t Cost = 1; 1072 switch (VT.SimpleTy) { 1073 default: 1074 return TargetLowering::findRepresentativeClass(TRI, VT); 1075 // Use DPR as representative register class for all floating point 1076 // and vector types. Since there are 32 SPR registers and 32 DPR registers so 1077 // the cost is 1 for both f32 and f64. 1078 case MVT::f32: case MVT::f64: case MVT::v8i8: case MVT::v4i16: 1079 case MVT::v2i32: case MVT::v1i64: case MVT::v2f32: 1080 RRC = &ARM::DPRRegClass; 1081 // When NEON is used for SP, only half of the register file is available 1082 // because operations that define both SP and DP results will be constrained 1083 // to the VFP2 class (D0-D15). We currently model this constraint prior to 1084 // coalescing by double-counting the SP regs. See the FIXME above. 1085 if (Subtarget->useNEONForSinglePrecisionFP()) 1086 Cost = 2; 1087 break; 1088 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64: 1089 case MVT::v4f32: case MVT::v2f64: 1090 RRC = &ARM::DPRRegClass; 1091 Cost = 2; 1092 break; 1093 case MVT::v4i64: 1094 RRC = &ARM::DPRRegClass; 1095 Cost = 4; 1096 break; 1097 case MVT::v8i64: 1098 RRC = &ARM::DPRRegClass; 1099 Cost = 8; 1100 break; 1101 } 1102 return std::make_pair(RRC, Cost); 1103 } 1104 1105 const char *ARMTargetLowering::getTargetNodeName(unsigned Opcode) const { 1106 switch ((ARMISD::NodeType)Opcode) { 1107 case ARMISD::FIRST_NUMBER: break; 1108 case ARMISD::Wrapper: return "ARMISD::Wrapper"; 1109 case ARMISD::WrapperPIC: return "ARMISD::WrapperPIC"; 1110 case ARMISD::WrapperJT: return "ARMISD::WrapperJT"; 1111 case ARMISD::COPY_STRUCT_BYVAL: return "ARMISD::COPY_STRUCT_BYVAL"; 1112 case ARMISD::CALL: return "ARMISD::CALL"; 1113 case ARMISD::CALL_PRED: return "ARMISD::CALL_PRED"; 1114 case ARMISD::CALL_NOLINK: return "ARMISD::CALL_NOLINK"; 1115 case ARMISD::tCALL: return "ARMISD::tCALL"; 1116 case ARMISD::BRCOND: return "ARMISD::BRCOND"; 1117 case ARMISD::BR_JT: return "ARMISD::BR_JT"; 1118 case ARMISD::BR2_JT: return "ARMISD::BR2_JT"; 1119 case ARMISD::RET_FLAG: return "ARMISD::RET_FLAG"; 1120 case ARMISD::INTRET_FLAG: return "ARMISD::INTRET_FLAG"; 1121 case ARMISD::PIC_ADD: return "ARMISD::PIC_ADD"; 1122 case ARMISD::CMP: return "ARMISD::CMP"; 1123 case ARMISD::CMN: return "ARMISD::CMN"; 1124 case ARMISD::CMPZ: return "ARMISD::CMPZ"; 1125 case ARMISD::CMPFP: return "ARMISD::CMPFP"; 1126 case ARMISD::CMPFPw0: return "ARMISD::CMPFPw0"; 1127 case ARMISD::BCC_i64: return "ARMISD::BCC_i64"; 1128 case ARMISD::FMSTAT: return "ARMISD::FMSTAT"; 1129 1130 case ARMISD::CMOV: return "ARMISD::CMOV"; 1131 1132 case ARMISD::RBIT: return "ARMISD::RBIT"; 1133 1134 case ARMISD::SRL_FLAG: return "ARMISD::SRL_FLAG"; 1135 case ARMISD::SRA_FLAG: return "ARMISD::SRA_FLAG"; 1136 case ARMISD::RRX: return "ARMISD::RRX"; 1137 1138 case ARMISD::ADDC: return "ARMISD::ADDC"; 1139 case ARMISD::ADDE: return "ARMISD::ADDE"; 1140 case ARMISD::SUBC: return "ARMISD::SUBC"; 1141 case ARMISD::SUBE: return "ARMISD::SUBE"; 1142 1143 case ARMISD::VMOVRRD: return "ARMISD::VMOVRRD"; 1144 case ARMISD::VMOVDRR: return "ARMISD::VMOVDRR"; 1145 1146 case ARMISD::EH_SJLJ_SETJMP: return "ARMISD::EH_SJLJ_SETJMP"; 1147 case ARMISD::EH_SJLJ_LONGJMP: return "ARMISD::EH_SJLJ_LONGJMP"; 1148 case ARMISD::EH_SJLJ_SETUP_DISPATCH: return "ARMISD::EH_SJLJ_SETUP_DISPATCH"; 1149 1150 case ARMISD::TC_RETURN: return "ARMISD::TC_RETURN"; 1151 1152 case ARMISD::THREAD_POINTER:return "ARMISD::THREAD_POINTER"; 1153 1154 case ARMISD::DYN_ALLOC: return "ARMISD::DYN_ALLOC"; 1155 1156 case ARMISD::MEMBARRIER_MCR: return "ARMISD::MEMBARRIER_MCR"; 1157 1158 case ARMISD::PRELOAD: return "ARMISD::PRELOAD"; 1159 1160 case ARMISD::WIN__CHKSTK: return "ARMISD:::WIN__CHKSTK"; 1161 case ARMISD::WIN__DBZCHK: return "ARMISD::WIN__DBZCHK"; 1162 1163 case ARMISD::VCEQ: return "ARMISD::VCEQ"; 1164 case ARMISD::VCEQZ: return "ARMISD::VCEQZ"; 1165 case ARMISD::VCGE: return "ARMISD::VCGE"; 1166 case ARMISD::VCGEZ: return "ARMISD::VCGEZ"; 1167 case ARMISD::VCLEZ: return "ARMISD::VCLEZ"; 1168 case ARMISD::VCGEU: return "ARMISD::VCGEU"; 1169 case ARMISD::VCGT: return "ARMISD::VCGT"; 1170 case ARMISD::VCGTZ: return "ARMISD::VCGTZ"; 1171 case ARMISD::VCLTZ: return "ARMISD::VCLTZ"; 1172 case ARMISD::VCGTU: return "ARMISD::VCGTU"; 1173 case ARMISD::VTST: return "ARMISD::VTST"; 1174 1175 case ARMISD::VSHL: return "ARMISD::VSHL"; 1176 case ARMISD::VSHRs: return "ARMISD::VSHRs"; 1177 case ARMISD::VSHRu: return "ARMISD::VSHRu"; 1178 case ARMISD::VRSHRs: return "ARMISD::VRSHRs"; 1179 case ARMISD::VRSHRu: return "ARMISD::VRSHRu"; 1180 case ARMISD::VRSHRN: return "ARMISD::VRSHRN"; 1181 case ARMISD::VQSHLs: return "ARMISD::VQSHLs"; 1182 case ARMISD::VQSHLu: return "ARMISD::VQSHLu"; 1183 case ARMISD::VQSHLsu: return "ARMISD::VQSHLsu"; 1184 case ARMISD::VQSHRNs: return "ARMISD::VQSHRNs"; 1185 case ARMISD::VQSHRNu: return "ARMISD::VQSHRNu"; 1186 case ARMISD::VQSHRNsu: return "ARMISD::VQSHRNsu"; 1187 case ARMISD::VQRSHRNs: return "ARMISD::VQRSHRNs"; 1188 case ARMISD::VQRSHRNu: return "ARMISD::VQRSHRNu"; 1189 case ARMISD::VQRSHRNsu: return "ARMISD::VQRSHRNsu"; 1190 case ARMISD::VSLI: return "ARMISD::VSLI"; 1191 case ARMISD::VSRI: return "ARMISD::VSRI"; 1192 case ARMISD::VGETLANEu: return "ARMISD::VGETLANEu"; 1193 case ARMISD::VGETLANEs: return "ARMISD::VGETLANEs"; 1194 case ARMISD::VMOVIMM: return "ARMISD::VMOVIMM"; 1195 case ARMISD::VMVNIMM: return "ARMISD::VMVNIMM"; 1196 case ARMISD::VMOVFPIMM: return "ARMISD::VMOVFPIMM"; 1197 case ARMISD::VDUP: return "ARMISD::VDUP"; 1198 case ARMISD::VDUPLANE: return "ARMISD::VDUPLANE"; 1199 case ARMISD::VEXT: return "ARMISD::VEXT"; 1200 case ARMISD::VREV64: return "ARMISD::VREV64"; 1201 case ARMISD::VREV32: return "ARMISD::VREV32"; 1202 case ARMISD::VREV16: return "ARMISD::VREV16"; 1203 case ARMISD::VZIP: return "ARMISD::VZIP"; 1204 case ARMISD::VUZP: return "ARMISD::VUZP"; 1205 case ARMISD::VTRN: return "ARMISD::VTRN"; 1206 case ARMISD::VTBL1: return "ARMISD::VTBL1"; 1207 case ARMISD::VTBL2: return "ARMISD::VTBL2"; 1208 case ARMISD::VMULLs: return "ARMISD::VMULLs"; 1209 case ARMISD::VMULLu: return "ARMISD::VMULLu"; 1210 case ARMISD::UMLAL: return "ARMISD::UMLAL"; 1211 case ARMISD::SMLAL: return "ARMISD::SMLAL"; 1212 case ARMISD::BUILD_VECTOR: return "ARMISD::BUILD_VECTOR"; 1213 case ARMISD::BFI: return "ARMISD::BFI"; 1214 case ARMISD::VORRIMM: return "ARMISD::VORRIMM"; 1215 case ARMISD::VBICIMM: return "ARMISD::VBICIMM"; 1216 case ARMISD::VBSL: return "ARMISD::VBSL"; 1217 case ARMISD::MEMCPY: return "ARMISD::MEMCPY"; 1218 case ARMISD::VLD2DUP: return "ARMISD::VLD2DUP"; 1219 case ARMISD::VLD3DUP: return "ARMISD::VLD3DUP"; 1220 case ARMISD::VLD4DUP: return "ARMISD::VLD4DUP"; 1221 case ARMISD::VLD1_UPD: return "ARMISD::VLD1_UPD"; 1222 case ARMISD::VLD2_UPD: return "ARMISD::VLD2_UPD"; 1223 case ARMISD::VLD3_UPD: return "ARMISD::VLD3_UPD"; 1224 case ARMISD::VLD4_UPD: return "ARMISD::VLD4_UPD"; 1225 case ARMISD::VLD2LN_UPD: return "ARMISD::VLD2LN_UPD"; 1226 case ARMISD::VLD3LN_UPD: return "ARMISD::VLD3LN_UPD"; 1227 case ARMISD::VLD4LN_UPD: return "ARMISD::VLD4LN_UPD"; 1228 case ARMISD::VLD2DUP_UPD: return "ARMISD::VLD2DUP_UPD"; 1229 case ARMISD::VLD3DUP_UPD: return "ARMISD::VLD3DUP_UPD"; 1230 case ARMISD::VLD4DUP_UPD: return "ARMISD::VLD4DUP_UPD"; 1231 case ARMISD::VST1_UPD: return "ARMISD::VST1_UPD"; 1232 case ARMISD::VST2_UPD: return "ARMISD::VST2_UPD"; 1233 case ARMISD::VST3_UPD: return "ARMISD::VST3_UPD"; 1234 case ARMISD::VST4_UPD: return "ARMISD::VST4_UPD"; 1235 case ARMISD::VST2LN_UPD: return "ARMISD::VST2LN_UPD"; 1236 case ARMISD::VST3LN_UPD: return "ARMISD::VST3LN_UPD"; 1237 case ARMISD::VST4LN_UPD: return "ARMISD::VST4LN_UPD"; 1238 } 1239 return nullptr; 1240 } 1241 1242 EVT ARMTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &, 1243 EVT VT) const { 1244 if (!VT.isVector()) 1245 return getPointerTy(DL); 1246 return VT.changeVectorElementTypeToInteger(); 1247 } 1248 1249 /// getRegClassFor - Return the register class that should be used for the 1250 /// specified value type. 1251 const TargetRegisterClass *ARMTargetLowering::getRegClassFor(MVT VT) const { 1252 // Map v4i64 to QQ registers but do not make the type legal. Similarly map 1253 // v8i64 to QQQQ registers. v4i64 and v8i64 are only used for REG_SEQUENCE to 1254 // load / store 4 to 8 consecutive D registers. 1255 if (Subtarget->hasNEON()) { 1256 if (VT == MVT::v4i64) 1257 return &ARM::QQPRRegClass; 1258 if (VT == MVT::v8i64) 1259 return &ARM::QQQQPRRegClass; 1260 } 1261 return TargetLowering::getRegClassFor(VT); 1262 } 1263 1264 // memcpy, and other memory intrinsics, typically tries to use LDM/STM if the 1265 // source/dest is aligned and the copy size is large enough. We therefore want 1266 // to align such objects passed to memory intrinsics. 1267 bool ARMTargetLowering::shouldAlignPointerArgs(CallInst *CI, unsigned &MinSize, 1268 unsigned &PrefAlign) const { 1269 if (!isa<MemIntrinsic>(CI)) 1270 return false; 1271 MinSize = 8; 1272 // On ARM11 onwards (excluding M class) 8-byte aligned LDM is typically 1 1273 // cycle faster than 4-byte aligned LDM. 1274 PrefAlign = (Subtarget->hasV6Ops() && !Subtarget->isMClass() ? 8 : 4); 1275 return true; 1276 } 1277 1278 // Create a fast isel object. 1279 FastISel * 1280 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, 1281 const TargetLibraryInfo *libInfo) const { 1282 return ARM::createFastISel(funcInfo, libInfo); 1283 } 1284 1285 Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const { 1286 unsigned NumVals = N->getNumValues(); 1287 if (!NumVals) 1288 return Sched::RegPressure; 1289 1290 for (unsigned i = 0; i != NumVals; ++i) { 1291 EVT VT = N->getValueType(i); 1292 if (VT == MVT::Glue || VT == MVT::Other) 1293 continue; 1294 if (VT.isFloatingPoint() || VT.isVector()) 1295 return Sched::ILP; 1296 } 1297 1298 if (!N->isMachineOpcode()) 1299 return Sched::RegPressure; 1300 1301 // Load are scheduled for latency even if there instruction itinerary 1302 // is not available. 1303 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 1304 const MCInstrDesc &MCID = TII->get(N->getMachineOpcode()); 1305 1306 if (MCID.getNumDefs() == 0) 1307 return Sched::RegPressure; 1308 if (!Itins->isEmpty() && 1309 Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2) 1310 return Sched::ILP; 1311 1312 return Sched::RegPressure; 1313 } 1314 1315 //===----------------------------------------------------------------------===// 1316 // Lowering Code 1317 //===----------------------------------------------------------------------===// 1318 1319 /// IntCCToARMCC - Convert a DAG integer condition code to an ARM CC 1320 static ARMCC::CondCodes IntCCToARMCC(ISD::CondCode CC) { 1321 switch (CC) { 1322 default: llvm_unreachable("Unknown condition code!"); 1323 case ISD::SETNE: return ARMCC::NE; 1324 case ISD::SETEQ: return ARMCC::EQ; 1325 case ISD::SETGT: return ARMCC::GT; 1326 case ISD::SETGE: return ARMCC::GE; 1327 case ISD::SETLT: return ARMCC::LT; 1328 case ISD::SETLE: return ARMCC::LE; 1329 case ISD::SETUGT: return ARMCC::HI; 1330 case ISD::SETUGE: return ARMCC::HS; 1331 case ISD::SETULT: return ARMCC::LO; 1332 case ISD::SETULE: return ARMCC::LS; 1333 } 1334 } 1335 1336 /// FPCCToARMCC - Convert a DAG fp condition code to an ARM CC. 1337 static void FPCCToARMCC(ISD::CondCode CC, ARMCC::CondCodes &CondCode, 1338 ARMCC::CondCodes &CondCode2) { 1339 CondCode2 = ARMCC::AL; 1340 switch (CC) { 1341 default: llvm_unreachable("Unknown FP condition!"); 1342 case ISD::SETEQ: 1343 case ISD::SETOEQ: CondCode = ARMCC::EQ; break; 1344 case ISD::SETGT: 1345 case ISD::SETOGT: CondCode = ARMCC::GT; break; 1346 case ISD::SETGE: 1347 case ISD::SETOGE: CondCode = ARMCC::GE; break; 1348 case ISD::SETOLT: CondCode = ARMCC::MI; break; 1349 case ISD::SETOLE: CondCode = ARMCC::LS; break; 1350 case ISD::SETONE: CondCode = ARMCC::MI; CondCode2 = ARMCC::GT; break; 1351 case ISD::SETO: CondCode = ARMCC::VC; break; 1352 case ISD::SETUO: CondCode = ARMCC::VS; break; 1353 case ISD::SETUEQ: CondCode = ARMCC::EQ; CondCode2 = ARMCC::VS; break; 1354 case ISD::SETUGT: CondCode = ARMCC::HI; break; 1355 case ISD::SETUGE: CondCode = ARMCC::PL; break; 1356 case ISD::SETLT: 1357 case ISD::SETULT: CondCode = ARMCC::LT; break; 1358 case ISD::SETLE: 1359 case ISD::SETULE: CondCode = ARMCC::LE; break; 1360 case ISD::SETNE: 1361 case ISD::SETUNE: CondCode = ARMCC::NE; break; 1362 } 1363 } 1364 1365 //===----------------------------------------------------------------------===// 1366 // Calling Convention Implementation 1367 //===----------------------------------------------------------------------===// 1368 1369 #include "ARMGenCallingConv.inc" 1370 1371 /// getEffectiveCallingConv - Get the effective calling convention, taking into 1372 /// account presence of floating point hardware and calling convention 1373 /// limitations, such as support for variadic functions. 1374 CallingConv::ID 1375 ARMTargetLowering::getEffectiveCallingConv(CallingConv::ID CC, 1376 bool isVarArg) const { 1377 switch (CC) { 1378 default: 1379 llvm_unreachable("Unsupported calling convention"); 1380 case CallingConv::ARM_AAPCS: 1381 case CallingConv::ARM_APCS: 1382 case CallingConv::GHC: 1383 return CC; 1384 case CallingConv::ARM_AAPCS_VFP: 1385 return isVarArg ? CallingConv::ARM_AAPCS : CallingConv::ARM_AAPCS_VFP; 1386 case CallingConv::C: 1387 if (!Subtarget->isAAPCS_ABI()) 1388 return CallingConv::ARM_APCS; 1389 else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && 1390 getTargetMachine().Options.FloatABIType == FloatABI::Hard && 1391 !isVarArg) 1392 return CallingConv::ARM_AAPCS_VFP; 1393 else 1394 return CallingConv::ARM_AAPCS; 1395 case CallingConv::Fast: 1396 if (!Subtarget->isAAPCS_ABI()) { 1397 if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg) 1398 return CallingConv::Fast; 1399 return CallingConv::ARM_APCS; 1400 } else if (Subtarget->hasVFP2() && !Subtarget->isThumb1Only() && !isVarArg) 1401 return CallingConv::ARM_AAPCS_VFP; 1402 else 1403 return CallingConv::ARM_AAPCS; 1404 } 1405 } 1406 1407 /// CCAssignFnForNode - Selects the correct CCAssignFn for the given 1408 /// CallingConvention. 1409 CCAssignFn *ARMTargetLowering::CCAssignFnForNode(CallingConv::ID CC, 1410 bool Return, 1411 bool isVarArg) const { 1412 switch (getEffectiveCallingConv(CC, isVarArg)) { 1413 default: 1414 llvm_unreachable("Unsupported calling convention"); 1415 case CallingConv::ARM_APCS: 1416 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS); 1417 case CallingConv::ARM_AAPCS: 1418 return (Return ? RetCC_ARM_AAPCS : CC_ARM_AAPCS); 1419 case CallingConv::ARM_AAPCS_VFP: 1420 return (Return ? RetCC_ARM_AAPCS_VFP : CC_ARM_AAPCS_VFP); 1421 case CallingConv::Fast: 1422 return (Return ? RetFastCC_ARM_APCS : FastCC_ARM_APCS); 1423 case CallingConv::GHC: 1424 return (Return ? RetCC_ARM_APCS : CC_ARM_APCS_GHC); 1425 } 1426 } 1427 1428 /// LowerCallResult - Lower the result values of a call into the 1429 /// appropriate copies out of appropriate physical registers. 1430 SDValue 1431 ARMTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, 1432 CallingConv::ID CallConv, bool isVarArg, 1433 const SmallVectorImpl<ISD::InputArg> &Ins, 1434 SDLoc dl, SelectionDAG &DAG, 1435 SmallVectorImpl<SDValue> &InVals, 1436 bool isThisReturn, SDValue ThisVal) const { 1437 1438 // Assign locations to each value returned by this call. 1439 SmallVector<CCValAssign, 16> RVLocs; 1440 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 1441 *DAG.getContext(), Call); 1442 CCInfo.AnalyzeCallResult(Ins, 1443 CCAssignFnForNode(CallConv, /* Return*/ true, 1444 isVarArg)); 1445 1446 // Copy all of the result registers out of their specified physreg. 1447 for (unsigned i = 0; i != RVLocs.size(); ++i) { 1448 CCValAssign VA = RVLocs[i]; 1449 1450 // Pass 'this' value directly from the argument to return value, to avoid 1451 // reg unit interference 1452 if (i == 0 && isThisReturn) { 1453 assert(!VA.needsCustom() && VA.getLocVT() == MVT::i32 && 1454 "unexpected return calling convention register assignment"); 1455 InVals.push_back(ThisVal); 1456 continue; 1457 } 1458 1459 SDValue Val; 1460 if (VA.needsCustom()) { 1461 // Handle f64 or half of a v2f64. 1462 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 1463 InFlag); 1464 Chain = Lo.getValue(1); 1465 InFlag = Lo.getValue(2); 1466 VA = RVLocs[++i]; // skip ahead to next loc 1467 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 1468 InFlag); 1469 Chain = Hi.getValue(1); 1470 InFlag = Hi.getValue(2); 1471 if (!Subtarget->isLittle()) 1472 std::swap (Lo, Hi); 1473 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 1474 1475 if (VA.getLocVT() == MVT::v2f64) { 1476 SDValue Vec = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64); 1477 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val, 1478 DAG.getConstant(0, dl, MVT::i32)); 1479 1480 VA = RVLocs[++i]; // skip ahead to next loc 1481 Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag); 1482 Chain = Lo.getValue(1); 1483 InFlag = Lo.getValue(2); 1484 VA = RVLocs[++i]; // skip ahead to next loc 1485 Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, InFlag); 1486 Chain = Hi.getValue(1); 1487 InFlag = Hi.getValue(2); 1488 if (!Subtarget->isLittle()) 1489 std::swap (Lo, Hi); 1490 Val = DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 1491 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Vec, Val, 1492 DAG.getConstant(1, dl, MVT::i32)); 1493 } 1494 } else { 1495 Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(), 1496 InFlag); 1497 Chain = Val.getValue(1); 1498 InFlag = Val.getValue(2); 1499 } 1500 1501 switch (VA.getLocInfo()) { 1502 default: llvm_unreachable("Unknown loc info!"); 1503 case CCValAssign::Full: break; 1504 case CCValAssign::BCvt: 1505 Val = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), Val); 1506 break; 1507 } 1508 1509 InVals.push_back(Val); 1510 } 1511 1512 return Chain; 1513 } 1514 1515 /// LowerMemOpCallTo - Store the argument to the stack. 1516 SDValue 1517 ARMTargetLowering::LowerMemOpCallTo(SDValue Chain, 1518 SDValue StackPtr, SDValue Arg, 1519 SDLoc dl, SelectionDAG &DAG, 1520 const CCValAssign &VA, 1521 ISD::ArgFlagsTy Flags) const { 1522 unsigned LocMemOffset = VA.getLocMemOffset(); 1523 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl); 1524 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()), 1525 StackPtr, PtrOff); 1526 return DAG.getStore( 1527 Chain, dl, Arg, PtrOff, 1528 MachinePointerInfo::getStack(DAG.getMachineFunction(), LocMemOffset), 1529 false, false, 0); 1530 } 1531 1532 void ARMTargetLowering::PassF64ArgInRegs(SDLoc dl, SelectionDAG &DAG, 1533 SDValue Chain, SDValue &Arg, 1534 RegsToPassVector &RegsToPass, 1535 CCValAssign &VA, CCValAssign &NextVA, 1536 SDValue &StackPtr, 1537 SmallVectorImpl<SDValue> &MemOpChains, 1538 ISD::ArgFlagsTy Flags) const { 1539 1540 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl, 1541 DAG.getVTList(MVT::i32, MVT::i32), Arg); 1542 unsigned id = Subtarget->isLittle() ? 0 : 1; 1543 RegsToPass.push_back(std::make_pair(VA.getLocReg(), fmrrd.getValue(id))); 1544 1545 if (NextVA.isRegLoc()) 1546 RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), fmrrd.getValue(1-id))); 1547 else { 1548 assert(NextVA.isMemLoc()); 1549 if (!StackPtr.getNode()) 1550 StackPtr = DAG.getCopyFromReg(Chain, dl, ARM::SP, 1551 getPointerTy(DAG.getDataLayout())); 1552 1553 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, fmrrd.getValue(1-id), 1554 dl, DAG, NextVA, 1555 Flags)); 1556 } 1557 } 1558 1559 /// LowerCall - Lowering a call into a callseq_start <- 1560 /// ARMISD:CALL <- callseq_end chain. Also add input and output parameter 1561 /// nodes. 1562 SDValue 1563 ARMTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, 1564 SmallVectorImpl<SDValue> &InVals) const { 1565 SelectionDAG &DAG = CLI.DAG; 1566 SDLoc &dl = CLI.DL; 1567 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs; 1568 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals; 1569 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins; 1570 SDValue Chain = CLI.Chain; 1571 SDValue Callee = CLI.Callee; 1572 bool &isTailCall = CLI.IsTailCall; 1573 CallingConv::ID CallConv = CLI.CallConv; 1574 bool doesNotRet = CLI.DoesNotReturn; 1575 bool isVarArg = CLI.IsVarArg; 1576 1577 MachineFunction &MF = DAG.getMachineFunction(); 1578 bool isStructRet = (Outs.empty()) ? false : Outs[0].Flags.isSRet(); 1579 bool isThisReturn = false; 1580 bool isSibCall = false; 1581 auto Attr = MF.getFunction()->getFnAttribute("disable-tail-calls"); 1582 1583 // Disable tail calls if they're not supported. 1584 if (!Subtarget->supportsTailCall() || Attr.getValueAsString() == "true") 1585 isTailCall = false; 1586 1587 if (isTailCall) { 1588 // Check if it's really possible to do a tail call. 1589 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, 1590 isVarArg, isStructRet, MF.getFunction()->hasStructRetAttr(), 1591 Outs, OutVals, Ins, DAG); 1592 if (!isTailCall && CLI.CS && CLI.CS->isMustTailCall()) 1593 report_fatal_error("failed to perform tail call elimination on a call " 1594 "site marked musttail"); 1595 // We don't support GuaranteedTailCallOpt for ARM, only automatically 1596 // detected sibcalls. 1597 if (isTailCall) { 1598 ++NumTailCalls; 1599 isSibCall = true; 1600 } 1601 } 1602 1603 // Analyze operands of the call, assigning locations to each operand. 1604 SmallVector<CCValAssign, 16> ArgLocs; 1605 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 1606 *DAG.getContext(), Call); 1607 CCInfo.AnalyzeCallOperands(Outs, 1608 CCAssignFnForNode(CallConv, /* Return*/ false, 1609 isVarArg)); 1610 1611 // Get a count of how many bytes are to be pushed on the stack. 1612 unsigned NumBytes = CCInfo.getNextStackOffset(); 1613 1614 // For tail calls, memory operands are available in our caller's stack. 1615 if (isSibCall) 1616 NumBytes = 0; 1617 1618 // Adjust the stack pointer for the new arguments... 1619 // These operations are automatically eliminated by the prolog/epilog pass 1620 if (!isSibCall) 1621 Chain = DAG.getCALLSEQ_START(Chain, 1622 DAG.getIntPtrConstant(NumBytes, dl, true), dl); 1623 1624 SDValue StackPtr = 1625 DAG.getCopyFromReg(Chain, dl, ARM::SP, getPointerTy(DAG.getDataLayout())); 1626 1627 RegsToPassVector RegsToPass; 1628 SmallVector<SDValue, 8> MemOpChains; 1629 1630 // Walk the register/memloc assignments, inserting copies/loads. In the case 1631 // of tail call optimization, arguments are handled later. 1632 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); 1633 i != e; 1634 ++i, ++realArgIdx) { 1635 CCValAssign &VA = ArgLocs[i]; 1636 SDValue Arg = OutVals[realArgIdx]; 1637 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags; 1638 bool isByVal = Flags.isByVal(); 1639 1640 // Promote the value if needed. 1641 switch (VA.getLocInfo()) { 1642 default: llvm_unreachable("Unknown loc info!"); 1643 case CCValAssign::Full: break; 1644 case CCValAssign::SExt: 1645 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); 1646 break; 1647 case CCValAssign::ZExt: 1648 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); 1649 break; 1650 case CCValAssign::AExt: 1651 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg); 1652 break; 1653 case CCValAssign::BCvt: 1654 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg); 1655 break; 1656 } 1657 1658 // f64 and v2f64 might be passed in i32 pairs and must be split into pieces 1659 if (VA.needsCustom()) { 1660 if (VA.getLocVT() == MVT::v2f64) { 1661 SDValue Op0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1662 DAG.getConstant(0, dl, MVT::i32)); 1663 SDValue Op1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 1664 DAG.getConstant(1, dl, MVT::i32)); 1665 1666 PassF64ArgInRegs(dl, DAG, Chain, Op0, RegsToPass, 1667 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags); 1668 1669 VA = ArgLocs[++i]; // skip ahead to next loc 1670 if (VA.isRegLoc()) { 1671 PassF64ArgInRegs(dl, DAG, Chain, Op1, RegsToPass, 1672 VA, ArgLocs[++i], StackPtr, MemOpChains, Flags); 1673 } else { 1674 assert(VA.isMemLoc()); 1675 1676 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Op1, 1677 dl, DAG, VA, Flags)); 1678 } 1679 } else { 1680 PassF64ArgInRegs(dl, DAG, Chain, Arg, RegsToPass, VA, ArgLocs[++i], 1681 StackPtr, MemOpChains, Flags); 1682 } 1683 } else if (VA.isRegLoc()) { 1684 if (realArgIdx == 0 && Flags.isReturned() && Outs[0].VT == MVT::i32) { 1685 assert(VA.getLocVT() == MVT::i32 && 1686 "unexpected calling convention register assignment"); 1687 assert(!Ins.empty() && Ins[0].VT == MVT::i32 && 1688 "unexpected use of 'returned'"); 1689 isThisReturn = true; 1690 } 1691 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); 1692 } else if (isByVal) { 1693 assert(VA.isMemLoc()); 1694 unsigned offset = 0; 1695 1696 // True if this byval aggregate will be split between registers 1697 // and memory. 1698 unsigned ByValArgsCount = CCInfo.getInRegsParamsCount(); 1699 unsigned CurByValIdx = CCInfo.getInRegsParamsProcessed(); 1700 1701 if (CurByValIdx < ByValArgsCount) { 1702 1703 unsigned RegBegin, RegEnd; 1704 CCInfo.getInRegsParamInfo(CurByValIdx, RegBegin, RegEnd); 1705 1706 EVT PtrVT = 1707 DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()); 1708 unsigned int i, j; 1709 for (i = 0, j = RegBegin; j < RegEnd; i++, j++) { 1710 SDValue Const = DAG.getConstant(4*i, dl, MVT::i32); 1711 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 1712 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, 1713 MachinePointerInfo(), 1714 false, false, false, 1715 DAG.InferPtrAlignment(AddArg)); 1716 MemOpChains.push_back(Load.getValue(1)); 1717 RegsToPass.push_back(std::make_pair(j, Load)); 1718 } 1719 1720 // If parameter size outsides register area, "offset" value 1721 // helps us to calculate stack slot for remained part properly. 1722 offset = RegEnd - RegBegin; 1723 1724 CCInfo.nextInRegsParam(); 1725 } 1726 1727 if (Flags.getByValSize() > 4*offset) { 1728 auto PtrVT = getPointerTy(DAG.getDataLayout()); 1729 unsigned LocMemOffset = VA.getLocMemOffset(); 1730 SDValue StkPtrOff = DAG.getIntPtrConstant(LocMemOffset, dl); 1731 SDValue Dst = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, StkPtrOff); 1732 SDValue SrcOffset = DAG.getIntPtrConstant(4*offset, dl); 1733 SDValue Src = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, SrcOffset); 1734 SDValue SizeNode = DAG.getConstant(Flags.getByValSize() - 4*offset, dl, 1735 MVT::i32); 1736 SDValue AlignNode = DAG.getConstant(Flags.getByValAlign(), dl, 1737 MVT::i32); 1738 1739 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue); 1740 SDValue Ops[] = { Chain, Dst, Src, SizeNode, AlignNode}; 1741 MemOpChains.push_back(DAG.getNode(ARMISD::COPY_STRUCT_BYVAL, dl, VTs, 1742 Ops)); 1743 } 1744 } else if (!isSibCall) { 1745 assert(VA.isMemLoc()); 1746 1747 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg, 1748 dl, DAG, VA, Flags)); 1749 } 1750 } 1751 1752 if (!MemOpChains.empty()) 1753 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 1754 1755 // Build a sequence of copy-to-reg nodes chained together with token chain 1756 // and flag operands which copy the outgoing args into the appropriate regs. 1757 SDValue InFlag; 1758 // Tail call byval lowering might overwrite argument registers so in case of 1759 // tail call optimization the copies to registers are lowered later. 1760 if (!isTailCall) 1761 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 1762 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 1763 RegsToPass[i].second, InFlag); 1764 InFlag = Chain.getValue(1); 1765 } 1766 1767 // For tail calls lower the arguments to the 'real' stack slot. 1768 if (isTailCall) { 1769 // Force all the incoming stack arguments to be loaded from the stack 1770 // before any new outgoing arguments are stored to the stack, because the 1771 // outgoing stack slots may alias the incoming argument stack slots, and 1772 // the alias isn't otherwise explicit. This is slightly more conservative 1773 // than necessary, because it means that each store effectively depends 1774 // on every argument instead of just those arguments it would clobber. 1775 1776 // Do not flag preceding copytoreg stuff together with the following stuff. 1777 InFlag = SDValue(); 1778 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 1779 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 1780 RegsToPass[i].second, InFlag); 1781 InFlag = Chain.getValue(1); 1782 } 1783 InFlag = SDValue(); 1784 } 1785 1786 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every 1787 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol 1788 // node so that legalize doesn't hack it. 1789 bool isDirect = false; 1790 bool isARMFunc = false; 1791 bool isLocalARMFunc = false; 1792 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 1793 auto PtrVt = getPointerTy(DAG.getDataLayout()); 1794 1795 if (Subtarget->genLongCalls()) { 1796 assert((Subtarget->isTargetWindows() || 1797 getTargetMachine().getRelocationModel() == Reloc::Static) && 1798 "long-calls with non-static relocation model!"); 1799 // Handle a global address or an external symbol. If it's not one of 1800 // those, the target's already in a register, so we don't need to do 1801 // anything extra. 1802 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 1803 const GlobalValue *GV = G->getGlobal(); 1804 // Create a constant pool entry for the callee address 1805 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1806 ARMConstantPoolValue *CPV = 1807 ARMConstantPoolConstant::Create(GV, ARMPCLabelIndex, ARMCP::CPValue, 0); 1808 1809 // Get the address of the callee into a register 1810 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4); 1811 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1812 Callee = DAG.getLoad( 1813 PtrVt, dl, DAG.getEntryNode(), CPAddr, 1814 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 1815 false, false, 0); 1816 } else if (ExternalSymbolSDNode *S=dyn_cast<ExternalSymbolSDNode>(Callee)) { 1817 const char *Sym = S->getSymbol(); 1818 1819 // Create a constant pool entry for the callee address 1820 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1821 ARMConstantPoolValue *CPV = 1822 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym, 1823 ARMPCLabelIndex, 0); 1824 // Get the address of the callee into a register 1825 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4); 1826 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1827 Callee = DAG.getLoad( 1828 PtrVt, dl, DAG.getEntryNode(), CPAddr, 1829 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 1830 false, false, 0); 1831 } 1832 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 1833 const GlobalValue *GV = G->getGlobal(); 1834 isDirect = true; 1835 bool isDef = GV->isStrongDefinitionForLinker(); 1836 bool isStub = (!isDef && Subtarget->isTargetMachO()) && 1837 getTargetMachine().getRelocationModel() != Reloc::Static; 1838 isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass()); 1839 // ARM call to a local ARM function is predicable. 1840 isLocalARMFunc = !Subtarget->isThumb() && (isDef || !ARMInterworking); 1841 // tBX takes a register source operand. 1842 if (isStub && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) { 1843 assert(Subtarget->isTargetMachO() && "WrapperPIC use on non-MachO?"); 1844 Callee = DAG.getNode( 1845 ARMISD::WrapperPIC, dl, PtrVt, 1846 DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, ARMII::MO_NONLAZY)); 1847 Callee = DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), Callee, 1848 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 1849 false, false, true, 0); 1850 } else if (Subtarget->isTargetCOFF()) { 1851 assert(Subtarget->isTargetWindows() && 1852 "Windows is the only supported COFF target"); 1853 unsigned TargetFlags = GV->hasDLLImportStorageClass() 1854 ? ARMII::MO_DLLIMPORT 1855 : ARMII::MO_NO_FLAG; 1856 Callee = 1857 DAG.getTargetGlobalAddress(GV, dl, PtrVt, /*Offset=*/0, TargetFlags); 1858 if (GV->hasDLLImportStorageClass()) 1859 Callee = 1860 DAG.getLoad(PtrVt, dl, DAG.getEntryNode(), 1861 DAG.getNode(ARMISD::Wrapper, dl, PtrVt, Callee), 1862 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 1863 false, false, false, 0); 1864 } else { 1865 // On ELF targets for PIC code, direct calls should go through the PLT 1866 unsigned OpFlags = 0; 1867 if (Subtarget->isTargetELF() && 1868 getTargetMachine().getRelocationModel() == Reloc::PIC_) 1869 OpFlags = ARMII::MO_PLT; 1870 Callee = DAG.getTargetGlobalAddress(GV, dl, PtrVt, 0, OpFlags); 1871 } 1872 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { 1873 isDirect = true; 1874 bool isStub = Subtarget->isTargetMachO() && 1875 getTargetMachine().getRelocationModel() != Reloc::Static; 1876 isARMFunc = !Subtarget->isThumb() || (isStub && !Subtarget->isMClass()); 1877 // tBX takes a register source operand. 1878 const char *Sym = S->getSymbol(); 1879 if (isARMFunc && Subtarget->isThumb1Only() && !Subtarget->hasV5TOps()) { 1880 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 1881 ARMConstantPoolValue *CPV = 1882 ARMConstantPoolSymbol::Create(*DAG.getContext(), Sym, 1883 ARMPCLabelIndex, 4); 1884 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVt, 4); 1885 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 1886 Callee = DAG.getLoad( 1887 PtrVt, dl, DAG.getEntryNode(), CPAddr, 1888 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 1889 false, false, 0); 1890 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32); 1891 Callee = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVt, Callee, PICLabel); 1892 } else { 1893 unsigned OpFlags = 0; 1894 // On ELF targets for PIC code, direct calls should go through the PLT 1895 if (Subtarget->isTargetELF() && 1896 getTargetMachine().getRelocationModel() == Reloc::PIC_) 1897 OpFlags = ARMII::MO_PLT; 1898 Callee = DAG.getTargetExternalSymbol(Sym, PtrVt, OpFlags); 1899 } 1900 } 1901 1902 // FIXME: handle tail calls differently. 1903 unsigned CallOpc; 1904 if (Subtarget->isThumb()) { 1905 if ((!isDirect || isARMFunc) && !Subtarget->hasV5TOps()) 1906 CallOpc = ARMISD::CALL_NOLINK; 1907 else 1908 CallOpc = isARMFunc ? ARMISD::CALL : ARMISD::tCALL; 1909 } else { 1910 if (!isDirect && !Subtarget->hasV5TOps()) 1911 CallOpc = ARMISD::CALL_NOLINK; 1912 else if (doesNotRet && isDirect && Subtarget->hasRAS() && 1913 // Emit regular call when code size is the priority 1914 !MF.getFunction()->optForMinSize()) 1915 // "mov lr, pc; b _foo" to avoid confusing the RSP 1916 CallOpc = ARMISD::CALL_NOLINK; 1917 else 1918 CallOpc = isLocalARMFunc ? ARMISD::CALL_PRED : ARMISD::CALL; 1919 } 1920 1921 std::vector<SDValue> Ops; 1922 Ops.push_back(Chain); 1923 Ops.push_back(Callee); 1924 1925 // Add argument registers to the end of the list so that they are known live 1926 // into the call. 1927 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) 1928 Ops.push_back(DAG.getRegister(RegsToPass[i].first, 1929 RegsToPass[i].second.getValueType())); 1930 1931 // Add a register mask operand representing the call-preserved registers. 1932 if (!isTailCall) { 1933 const uint32_t *Mask; 1934 const ARMBaseRegisterInfo *ARI = Subtarget->getRegisterInfo(); 1935 if (isThisReturn) { 1936 // For 'this' returns, use the R0-preserving mask if applicable 1937 Mask = ARI->getThisReturnPreservedMask(MF, CallConv); 1938 if (!Mask) { 1939 // Set isThisReturn to false if the calling convention is not one that 1940 // allows 'returned' to be modeled in this way, so LowerCallResult does 1941 // not try to pass 'this' straight through 1942 isThisReturn = false; 1943 Mask = ARI->getCallPreservedMask(MF, CallConv); 1944 } 1945 } else 1946 Mask = ARI->getCallPreservedMask(MF, CallConv); 1947 1948 assert(Mask && "Missing call preserved mask for calling convention"); 1949 Ops.push_back(DAG.getRegisterMask(Mask)); 1950 } 1951 1952 if (InFlag.getNode()) 1953 Ops.push_back(InFlag); 1954 1955 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue); 1956 if (isTailCall) { 1957 MF.getFrameInfo()->setHasTailCall(); 1958 return DAG.getNode(ARMISD::TC_RETURN, dl, NodeTys, Ops); 1959 } 1960 1961 // Returns a chain and a flag for retval copy to use. 1962 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops); 1963 InFlag = Chain.getValue(1); 1964 1965 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true), 1966 DAG.getIntPtrConstant(0, dl, true), InFlag, dl); 1967 if (!Ins.empty()) 1968 InFlag = Chain.getValue(1); 1969 1970 // Handle result values, copying them out of physregs into vregs that we 1971 // return. 1972 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, Ins, dl, DAG, 1973 InVals, isThisReturn, 1974 isThisReturn ? OutVals[0] : SDValue()); 1975 } 1976 1977 /// HandleByVal - Every parameter *after* a byval parameter is passed 1978 /// on the stack. Remember the next parameter register to allocate, 1979 /// and then confiscate the rest of the parameter registers to insure 1980 /// this. 1981 void ARMTargetLowering::HandleByVal(CCState *State, unsigned &Size, 1982 unsigned Align) const { 1983 assert((State->getCallOrPrologue() == Prologue || 1984 State->getCallOrPrologue() == Call) && 1985 "unhandled ParmContext"); 1986 1987 // Byval (as with any stack) slots are always at least 4 byte aligned. 1988 Align = std::max(Align, 4U); 1989 1990 unsigned Reg = State->AllocateReg(GPRArgRegs); 1991 if (!Reg) 1992 return; 1993 1994 unsigned AlignInRegs = Align / 4; 1995 unsigned Waste = (ARM::R4 - Reg) % AlignInRegs; 1996 for (unsigned i = 0; i < Waste; ++i) 1997 Reg = State->AllocateReg(GPRArgRegs); 1998 1999 if (!Reg) 2000 return; 2001 2002 unsigned Excess = 4 * (ARM::R4 - Reg); 2003 2004 // Special case when NSAA != SP and parameter size greater than size of 2005 // all remained GPR regs. In that case we can't split parameter, we must 2006 // send it to stack. We also must set NCRN to R4, so waste all 2007 // remained registers. 2008 const unsigned NSAAOffset = State->getNextStackOffset(); 2009 if (NSAAOffset != 0 && Size > Excess) { 2010 while (State->AllocateReg(GPRArgRegs)) 2011 ; 2012 return; 2013 } 2014 2015 // First register for byval parameter is the first register that wasn't 2016 // allocated before this method call, so it would be "reg". 2017 // If parameter is small enough to be saved in range [reg, r4), then 2018 // the end (first after last) register would be reg + param-size-in-regs, 2019 // else parameter would be splitted between registers and stack, 2020 // end register would be r4 in this case. 2021 unsigned ByValRegBegin = Reg; 2022 unsigned ByValRegEnd = std::min<unsigned>(Reg + Size / 4, ARM::R4); 2023 State->addInRegsParamInfo(ByValRegBegin, ByValRegEnd); 2024 // Note, first register is allocated in the beginning of function already, 2025 // allocate remained amount of registers we need. 2026 for (unsigned i = Reg + 1; i != ByValRegEnd; ++i) 2027 State->AllocateReg(GPRArgRegs); 2028 // A byval parameter that is split between registers and memory needs its 2029 // size truncated here. 2030 // In the case where the entire structure fits in registers, we set the 2031 // size in memory to zero. 2032 Size = std::max<int>(Size - Excess, 0); 2033 } 2034 2035 /// MatchingStackOffset - Return true if the given stack call argument is 2036 /// already available in the same position (relatively) of the caller's 2037 /// incoming argument stack. 2038 static 2039 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags, 2040 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI, 2041 const TargetInstrInfo *TII) { 2042 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8; 2043 int FI = INT_MAX; 2044 if (Arg.getOpcode() == ISD::CopyFromReg) { 2045 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); 2046 if (!TargetRegisterInfo::isVirtualRegister(VR)) 2047 return false; 2048 MachineInstr *Def = MRI->getVRegDef(VR); 2049 if (!Def) 2050 return false; 2051 if (!Flags.isByVal()) { 2052 if (!TII->isLoadFromStackSlot(Def, FI)) 2053 return false; 2054 } else { 2055 return false; 2056 } 2057 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) { 2058 if (Flags.isByVal()) 2059 // ByVal argument is passed in as a pointer but it's now being 2060 // dereferenced. e.g. 2061 // define @foo(%struct.X* %A) { 2062 // tail call @bar(%struct.X* byval %A) 2063 // } 2064 return false; 2065 SDValue Ptr = Ld->getBasePtr(); 2066 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr); 2067 if (!FINode) 2068 return false; 2069 FI = FINode->getIndex(); 2070 } else 2071 return false; 2072 2073 assert(FI != INT_MAX); 2074 if (!MFI->isFixedObjectIndex(FI)) 2075 return false; 2076 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI); 2077 } 2078 2079 /// IsEligibleForTailCallOptimization - Check whether the call is eligible 2080 /// for tail call optimization. Targets which want to do tail call 2081 /// optimization should implement this function. 2082 bool 2083 ARMTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, 2084 CallingConv::ID CalleeCC, 2085 bool isVarArg, 2086 bool isCalleeStructRet, 2087 bool isCallerStructRet, 2088 const SmallVectorImpl<ISD::OutputArg> &Outs, 2089 const SmallVectorImpl<SDValue> &OutVals, 2090 const SmallVectorImpl<ISD::InputArg> &Ins, 2091 SelectionDAG& DAG) const { 2092 const Function *CallerF = DAG.getMachineFunction().getFunction(); 2093 CallingConv::ID CallerCC = CallerF->getCallingConv(); 2094 bool CCMatch = CallerCC == CalleeCC; 2095 2096 assert(Subtarget->supportsTailCall()); 2097 2098 // Look for obvious safe cases to perform tail call optimization that do not 2099 // require ABI changes. This is what gcc calls sibcall. 2100 2101 // Do not sibcall optimize vararg calls unless the call site is not passing 2102 // any arguments. 2103 if (isVarArg && !Outs.empty()) 2104 return false; 2105 2106 // Exception-handling functions need a special set of instructions to indicate 2107 // a return to the hardware. Tail-calling another function would probably 2108 // break this. 2109 if (CallerF->hasFnAttribute("interrupt")) 2110 return false; 2111 2112 // Also avoid sibcall optimization if either caller or callee uses struct 2113 // return semantics. 2114 if (isCalleeStructRet || isCallerStructRet) 2115 return false; 2116 2117 // Externally-defined functions with weak linkage should not be 2118 // tail-called on ARM when the OS does not support dynamic 2119 // pre-emption of symbols, as the AAELF spec requires normal calls 2120 // to undefined weak functions to be replaced with a NOP or jump to the 2121 // next instruction. The behaviour of branch instructions in this 2122 // situation (as used for tail calls) is implementation-defined, so we 2123 // cannot rely on the linker replacing the tail call with a return. 2124 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 2125 const GlobalValue *GV = G->getGlobal(); 2126 const Triple &TT = getTargetMachine().getTargetTriple(); 2127 if (GV->hasExternalWeakLinkage() && 2128 (!TT.isOSWindows() || TT.isOSBinFormatELF() || TT.isOSBinFormatMachO())) 2129 return false; 2130 } 2131 2132 // If the calling conventions do not match, then we'd better make sure the 2133 // results are returned in the same way as what the caller expects. 2134 if (!CCMatch) { 2135 SmallVector<CCValAssign, 16> RVLocs1; 2136 ARMCCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(), RVLocs1, 2137 *DAG.getContext(), Call); 2138 CCInfo1.AnalyzeCallResult(Ins, CCAssignFnForNode(CalleeCC, true, isVarArg)); 2139 2140 SmallVector<CCValAssign, 16> RVLocs2; 2141 ARMCCState CCInfo2(CallerCC, false, DAG.getMachineFunction(), RVLocs2, 2142 *DAG.getContext(), Call); 2143 CCInfo2.AnalyzeCallResult(Ins, CCAssignFnForNode(CallerCC, true, isVarArg)); 2144 2145 if (RVLocs1.size() != RVLocs2.size()) 2146 return false; 2147 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) { 2148 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc()) 2149 return false; 2150 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo()) 2151 return false; 2152 if (RVLocs1[i].isRegLoc()) { 2153 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg()) 2154 return false; 2155 } else { 2156 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset()) 2157 return false; 2158 } 2159 } 2160 } 2161 2162 // If Caller's vararg or byval argument has been split between registers and 2163 // stack, do not perform tail call, since part of the argument is in caller's 2164 // local frame. 2165 const ARMFunctionInfo *AFI_Caller = DAG.getMachineFunction(). 2166 getInfo<ARMFunctionInfo>(); 2167 if (AFI_Caller->getArgRegsSaveSize()) 2168 return false; 2169 2170 // If the callee takes no arguments then go on to check the results of the 2171 // call. 2172 if (!Outs.empty()) { 2173 // Check if stack adjustment is needed. For now, do not do this if any 2174 // argument is passed on the stack. 2175 SmallVector<CCValAssign, 16> ArgLocs; 2176 ARMCCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(), ArgLocs, 2177 *DAG.getContext(), Call); 2178 CCInfo.AnalyzeCallOperands(Outs, 2179 CCAssignFnForNode(CalleeCC, false, isVarArg)); 2180 if (CCInfo.getNextStackOffset()) { 2181 MachineFunction &MF = DAG.getMachineFunction(); 2182 2183 // Check if the arguments are already laid out in the right way as 2184 // the caller's fixed stack objects. 2185 MachineFrameInfo *MFI = MF.getFrameInfo(); 2186 const MachineRegisterInfo *MRI = &MF.getRegInfo(); 2187 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 2188 for (unsigned i = 0, realArgIdx = 0, e = ArgLocs.size(); 2189 i != e; 2190 ++i, ++realArgIdx) { 2191 CCValAssign &VA = ArgLocs[i]; 2192 EVT RegVT = VA.getLocVT(); 2193 SDValue Arg = OutVals[realArgIdx]; 2194 ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags; 2195 if (VA.getLocInfo() == CCValAssign::Indirect) 2196 return false; 2197 if (VA.needsCustom()) { 2198 // f64 and vector types are split into multiple registers or 2199 // register/stack-slot combinations. The types will not match 2200 // the registers; give up on memory f64 refs until we figure 2201 // out what to do about this. 2202 if (!VA.isRegLoc()) 2203 return false; 2204 if (!ArgLocs[++i].isRegLoc()) 2205 return false; 2206 if (RegVT == MVT::v2f64) { 2207 if (!ArgLocs[++i].isRegLoc()) 2208 return false; 2209 if (!ArgLocs[++i].isRegLoc()) 2210 return false; 2211 } 2212 } else if (!VA.isRegLoc()) { 2213 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags, 2214 MFI, MRI, TII)) 2215 return false; 2216 } 2217 } 2218 } 2219 } 2220 2221 return true; 2222 } 2223 2224 bool 2225 ARMTargetLowering::CanLowerReturn(CallingConv::ID CallConv, 2226 MachineFunction &MF, bool isVarArg, 2227 const SmallVectorImpl<ISD::OutputArg> &Outs, 2228 LLVMContext &Context) const { 2229 SmallVector<CCValAssign, 16> RVLocs; 2230 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context); 2231 return CCInfo.CheckReturn(Outs, CCAssignFnForNode(CallConv, /*Return=*/true, 2232 isVarArg)); 2233 } 2234 2235 static SDValue LowerInterruptReturn(SmallVectorImpl<SDValue> &RetOps, 2236 SDLoc DL, SelectionDAG &DAG) { 2237 const MachineFunction &MF = DAG.getMachineFunction(); 2238 const Function *F = MF.getFunction(); 2239 2240 StringRef IntKind = F->getFnAttribute("interrupt").getValueAsString(); 2241 2242 // See ARM ARM v7 B1.8.3. On exception entry LR is set to a possibly offset 2243 // version of the "preferred return address". These offsets affect the return 2244 // instruction if this is a return from PL1 without hypervisor extensions. 2245 // IRQ/FIQ: +4 "subs pc, lr, #4" 2246 // SWI: 0 "subs pc, lr, #0" 2247 // ABORT: +4 "subs pc, lr, #4" 2248 // UNDEF: +4/+2 "subs pc, lr, #0" 2249 // UNDEF varies depending on where the exception came from ARM or Thumb 2250 // mode. Alongside GCC, we throw our hands up in disgust and pretend it's 0. 2251 2252 int64_t LROffset; 2253 if (IntKind == "" || IntKind == "IRQ" || IntKind == "FIQ" || 2254 IntKind == "ABORT") 2255 LROffset = 4; 2256 else if (IntKind == "SWI" || IntKind == "UNDEF") 2257 LROffset = 0; 2258 else 2259 report_fatal_error("Unsupported interrupt attribute. If present, value " 2260 "must be one of: IRQ, FIQ, SWI, ABORT or UNDEF"); 2261 2262 RetOps.insert(RetOps.begin() + 1, 2263 DAG.getConstant(LROffset, DL, MVT::i32, false)); 2264 2265 return DAG.getNode(ARMISD::INTRET_FLAG, DL, MVT::Other, RetOps); 2266 } 2267 2268 SDValue 2269 ARMTargetLowering::LowerReturn(SDValue Chain, 2270 CallingConv::ID CallConv, bool isVarArg, 2271 const SmallVectorImpl<ISD::OutputArg> &Outs, 2272 const SmallVectorImpl<SDValue> &OutVals, 2273 SDLoc dl, SelectionDAG &DAG) const { 2274 2275 // CCValAssign - represent the assignment of the return value to a location. 2276 SmallVector<CCValAssign, 16> RVLocs; 2277 2278 // CCState - Info about the registers and stack slots. 2279 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 2280 *DAG.getContext(), Call); 2281 2282 // Analyze outgoing return values. 2283 CCInfo.AnalyzeReturn(Outs, CCAssignFnForNode(CallConv, /* Return */ true, 2284 isVarArg)); 2285 2286 SDValue Flag; 2287 SmallVector<SDValue, 4> RetOps; 2288 RetOps.push_back(Chain); // Operand #0 = Chain (updated below) 2289 bool isLittleEndian = Subtarget->isLittle(); 2290 2291 MachineFunction &MF = DAG.getMachineFunction(); 2292 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2293 AFI->setReturnRegsCount(RVLocs.size()); 2294 2295 // Copy the result values into the output registers. 2296 for (unsigned i = 0, realRVLocIdx = 0; 2297 i != RVLocs.size(); 2298 ++i, ++realRVLocIdx) { 2299 CCValAssign &VA = RVLocs[i]; 2300 assert(VA.isRegLoc() && "Can only return in registers!"); 2301 2302 SDValue Arg = OutVals[realRVLocIdx]; 2303 2304 switch (VA.getLocInfo()) { 2305 default: llvm_unreachable("Unknown loc info!"); 2306 case CCValAssign::Full: break; 2307 case CCValAssign::BCvt: 2308 Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg); 2309 break; 2310 } 2311 2312 if (VA.needsCustom()) { 2313 if (VA.getLocVT() == MVT::v2f64) { 2314 // Extract the first half and return it in two registers. 2315 SDValue Half = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 2316 DAG.getConstant(0, dl, MVT::i32)); 2317 SDValue HalfGPRs = DAG.getNode(ARMISD::VMOVRRD, dl, 2318 DAG.getVTList(MVT::i32, MVT::i32), Half); 2319 2320 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), 2321 HalfGPRs.getValue(isLittleEndian ? 0 : 1), 2322 Flag); 2323 Flag = Chain.getValue(1); 2324 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 2325 VA = RVLocs[++i]; // skip ahead to next loc 2326 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), 2327 HalfGPRs.getValue(isLittleEndian ? 1 : 0), 2328 Flag); 2329 Flag = Chain.getValue(1); 2330 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 2331 VA = RVLocs[++i]; // skip ahead to next loc 2332 2333 // Extract the 2nd half and fall through to handle it as an f64 value. 2334 Arg = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Arg, 2335 DAG.getConstant(1, dl, MVT::i32)); 2336 } 2337 // Legalize ret f64 -> ret 2 x i32. We always have fmrrd if f64 is 2338 // available. 2339 SDValue fmrrd = DAG.getNode(ARMISD::VMOVRRD, dl, 2340 DAG.getVTList(MVT::i32, MVT::i32), Arg); 2341 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), 2342 fmrrd.getValue(isLittleEndian ? 0 : 1), 2343 Flag); 2344 Flag = Chain.getValue(1); 2345 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 2346 VA = RVLocs[++i]; // skip ahead to next loc 2347 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), 2348 fmrrd.getValue(isLittleEndian ? 1 : 0), 2349 Flag); 2350 } else 2351 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag); 2352 2353 // Guarantee that all emitted copies are 2354 // stuck together, avoiding something bad. 2355 Flag = Chain.getValue(1); 2356 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 2357 } 2358 2359 // Update chain and glue. 2360 RetOps[0] = Chain; 2361 if (Flag.getNode()) 2362 RetOps.push_back(Flag); 2363 2364 // CPUs which aren't M-class use a special sequence to return from 2365 // exceptions (roughly, any instruction setting pc and cpsr simultaneously, 2366 // though we use "subs pc, lr, #N"). 2367 // 2368 // M-class CPUs actually use a normal return sequence with a special 2369 // (hardware-provided) value in LR, so the normal code path works. 2370 if (DAG.getMachineFunction().getFunction()->hasFnAttribute("interrupt") && 2371 !Subtarget->isMClass()) { 2372 if (Subtarget->isThumb1Only()) 2373 report_fatal_error("interrupt attribute is not supported in Thumb1"); 2374 return LowerInterruptReturn(RetOps, dl, DAG); 2375 } 2376 2377 return DAG.getNode(ARMISD::RET_FLAG, dl, MVT::Other, RetOps); 2378 } 2379 2380 bool ARMTargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const { 2381 if (N->getNumValues() != 1) 2382 return false; 2383 if (!N->hasNUsesOfValue(1, 0)) 2384 return false; 2385 2386 SDValue TCChain = Chain; 2387 SDNode *Copy = *N->use_begin(); 2388 if (Copy->getOpcode() == ISD::CopyToReg) { 2389 // If the copy has a glue operand, we conservatively assume it isn't safe to 2390 // perform a tail call. 2391 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue) 2392 return false; 2393 TCChain = Copy->getOperand(0); 2394 } else if (Copy->getOpcode() == ARMISD::VMOVRRD) { 2395 SDNode *VMov = Copy; 2396 // f64 returned in a pair of GPRs. 2397 SmallPtrSet<SDNode*, 2> Copies; 2398 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end(); 2399 UI != UE; ++UI) { 2400 if (UI->getOpcode() != ISD::CopyToReg) 2401 return false; 2402 Copies.insert(*UI); 2403 } 2404 if (Copies.size() > 2) 2405 return false; 2406 2407 for (SDNode::use_iterator UI = VMov->use_begin(), UE = VMov->use_end(); 2408 UI != UE; ++UI) { 2409 SDValue UseChain = UI->getOperand(0); 2410 if (Copies.count(UseChain.getNode())) 2411 // Second CopyToReg 2412 Copy = *UI; 2413 else { 2414 // We are at the top of this chain. 2415 // If the copy has a glue operand, we conservatively assume it 2416 // isn't safe to perform a tail call. 2417 if (UI->getOperand(UI->getNumOperands()-1).getValueType() == MVT::Glue) 2418 return false; 2419 // First CopyToReg 2420 TCChain = UseChain; 2421 } 2422 } 2423 } else if (Copy->getOpcode() == ISD::BITCAST) { 2424 // f32 returned in a single GPR. 2425 if (!Copy->hasOneUse()) 2426 return false; 2427 Copy = *Copy->use_begin(); 2428 if (Copy->getOpcode() != ISD::CopyToReg || !Copy->hasNUsesOfValue(1, 0)) 2429 return false; 2430 // If the copy has a glue operand, we conservatively assume it isn't safe to 2431 // perform a tail call. 2432 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue) 2433 return false; 2434 TCChain = Copy->getOperand(0); 2435 } else { 2436 return false; 2437 } 2438 2439 bool HasRet = false; 2440 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end(); 2441 UI != UE; ++UI) { 2442 if (UI->getOpcode() != ARMISD::RET_FLAG && 2443 UI->getOpcode() != ARMISD::INTRET_FLAG) 2444 return false; 2445 HasRet = true; 2446 } 2447 2448 if (!HasRet) 2449 return false; 2450 2451 Chain = TCChain; 2452 return true; 2453 } 2454 2455 bool ARMTargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const { 2456 if (!Subtarget->supportsTailCall()) 2457 return false; 2458 2459 auto Attr = 2460 CI->getParent()->getParent()->getFnAttribute("disable-tail-calls"); 2461 if (!CI->isTailCall() || Attr.getValueAsString() == "true") 2462 return false; 2463 2464 return true; 2465 } 2466 2467 // Trying to write a 64 bit value so need to split into two 32 bit values first, 2468 // and pass the lower and high parts through. 2469 static SDValue LowerWRITE_REGISTER(SDValue Op, SelectionDAG &DAG) { 2470 SDLoc DL(Op); 2471 SDValue WriteValue = Op->getOperand(2); 2472 2473 // This function is only supposed to be called for i64 type argument. 2474 assert(WriteValue.getValueType() == MVT::i64 2475 && "LowerWRITE_REGISTER called for non-i64 type argument."); 2476 2477 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue, 2478 DAG.getConstant(0, DL, MVT::i32)); 2479 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, MVT::i32, WriteValue, 2480 DAG.getConstant(1, DL, MVT::i32)); 2481 SDValue Ops[] = { Op->getOperand(0), Op->getOperand(1), Lo, Hi }; 2482 return DAG.getNode(ISD::WRITE_REGISTER, DL, MVT::Other, Ops); 2483 } 2484 2485 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as 2486 // their target counterpart wrapped in the ARMISD::Wrapper node. Suppose N is 2487 // one of the above mentioned nodes. It has to be wrapped because otherwise 2488 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only 2489 // be used to form addressing mode. These wrapped nodes will be selected 2490 // into MOVi. 2491 static SDValue LowerConstantPool(SDValue Op, SelectionDAG &DAG) { 2492 EVT PtrVT = Op.getValueType(); 2493 // FIXME there is no actual debug info here 2494 SDLoc dl(Op); 2495 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); 2496 SDValue Res; 2497 if (CP->isMachineConstantPoolEntry()) 2498 Res = DAG.getTargetConstantPool(CP->getMachineCPVal(), PtrVT, 2499 CP->getAlignment()); 2500 else 2501 Res = DAG.getTargetConstantPool(CP->getConstVal(), PtrVT, 2502 CP->getAlignment()); 2503 return DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Res); 2504 } 2505 2506 unsigned ARMTargetLowering::getJumpTableEncoding() const { 2507 return MachineJumpTableInfo::EK_Inline; 2508 } 2509 2510 SDValue ARMTargetLowering::LowerBlockAddress(SDValue Op, 2511 SelectionDAG &DAG) const { 2512 MachineFunction &MF = DAG.getMachineFunction(); 2513 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2514 unsigned ARMPCLabelIndex = 0; 2515 SDLoc DL(Op); 2516 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2517 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); 2518 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2519 SDValue CPAddr; 2520 if (RelocM == Reloc::Static) { 2521 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4); 2522 } else { 2523 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8; 2524 ARMPCLabelIndex = AFI->createPICLabelUId(); 2525 ARMConstantPoolValue *CPV = 2526 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex, 2527 ARMCP::CPBlockAddress, PCAdj); 2528 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2529 } 2530 CPAddr = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, CPAddr); 2531 SDValue Result = 2532 DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), CPAddr, 2533 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), 2534 false, false, false, 0); 2535 if (RelocM == Reloc::Static) 2536 return Result; 2537 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, DL, MVT::i32); 2538 return DAG.getNode(ARMISD::PIC_ADD, DL, PtrVT, Result, PICLabel); 2539 } 2540 2541 // Lower ISD::GlobalTLSAddress using the "general dynamic" model 2542 SDValue 2543 ARMTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, 2544 SelectionDAG &DAG) const { 2545 SDLoc dl(GA); 2546 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2547 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8; 2548 MachineFunction &MF = DAG.getMachineFunction(); 2549 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2550 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2551 ARMConstantPoolValue *CPV = 2552 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex, 2553 ARMCP::CPValue, PCAdj, ARMCP::TLSGD, true); 2554 SDValue Argument = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2555 Argument = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Argument); 2556 Argument = 2557 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Argument, 2558 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), 2559 false, false, false, 0); 2560 SDValue Chain = Argument.getValue(1); 2561 2562 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32); 2563 Argument = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Argument, PICLabel); 2564 2565 // call __tls_get_addr. 2566 ArgListTy Args; 2567 ArgListEntry Entry; 2568 Entry.Node = Argument; 2569 Entry.Ty = (Type *) Type::getInt32Ty(*DAG.getContext()); 2570 Args.push_back(Entry); 2571 2572 // FIXME: is there useful debug info available here? 2573 TargetLowering::CallLoweringInfo CLI(DAG); 2574 CLI.setDebugLoc(dl).setChain(Chain) 2575 .setCallee(CallingConv::C, Type::getInt32Ty(*DAG.getContext()), 2576 DAG.getExternalSymbol("__tls_get_addr", PtrVT), std::move(Args), 2577 0); 2578 2579 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 2580 return CallResult.first; 2581 } 2582 2583 // Lower ISD::GlobalTLSAddress using the "initial exec" or 2584 // "local exec" model. 2585 SDValue 2586 ARMTargetLowering::LowerToTLSExecModels(GlobalAddressSDNode *GA, 2587 SelectionDAG &DAG, 2588 TLSModel::Model model) const { 2589 const GlobalValue *GV = GA->getGlobal(); 2590 SDLoc dl(GA); 2591 SDValue Offset; 2592 SDValue Chain = DAG.getEntryNode(); 2593 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2594 // Get the Thread Pointer 2595 SDValue ThreadPointer = DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT); 2596 2597 if (model == TLSModel::InitialExec) { 2598 MachineFunction &MF = DAG.getMachineFunction(); 2599 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2600 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2601 // Initial exec model. 2602 unsigned char PCAdj = Subtarget->isThumb() ? 4 : 8; 2603 ARMConstantPoolValue *CPV = 2604 ARMConstantPoolConstant::Create(GA->getGlobal(), ARMPCLabelIndex, 2605 ARMCP::CPValue, PCAdj, ARMCP::GOTTPOFF, 2606 true); 2607 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2608 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset); 2609 Offset = DAG.getLoad( 2610 PtrVT, dl, Chain, Offset, 2611 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2612 false, false, 0); 2613 Chain = Offset.getValue(1); 2614 2615 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32); 2616 Offset = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Offset, PICLabel); 2617 2618 Offset = DAG.getLoad( 2619 PtrVT, dl, Chain, Offset, 2620 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2621 false, false, 0); 2622 } else { 2623 // local exec model 2624 assert(model == TLSModel::LocalExec); 2625 ARMConstantPoolValue *CPV = 2626 ARMConstantPoolConstant::Create(GV, ARMCP::TPOFF); 2627 Offset = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2628 Offset = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, Offset); 2629 Offset = DAG.getLoad( 2630 PtrVT, dl, Chain, Offset, 2631 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2632 false, false, 0); 2633 } 2634 2635 // The address of the thread local variable is the add of the thread 2636 // pointer with the offset of the variable. 2637 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset); 2638 } 2639 2640 SDValue 2641 ARMTargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const { 2642 // TODO: implement the "local dynamic" model 2643 assert(Subtarget->isTargetELF() && 2644 "TLS not implemented for non-ELF targets"); 2645 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); 2646 if (DAG.getTarget().Options.EmulatedTLS) 2647 return LowerToTLSEmulatedModel(GA, DAG); 2648 2649 TLSModel::Model model = getTargetMachine().getTLSModel(GA->getGlobal()); 2650 2651 switch (model) { 2652 case TLSModel::GeneralDynamic: 2653 case TLSModel::LocalDynamic: 2654 return LowerToTLSGeneralDynamicModel(GA, DAG); 2655 case TLSModel::InitialExec: 2656 case TLSModel::LocalExec: 2657 return LowerToTLSExecModels(GA, DAG, model); 2658 } 2659 llvm_unreachable("bogus TLS model"); 2660 } 2661 2662 SDValue ARMTargetLowering::LowerGlobalAddressELF(SDValue Op, 2663 SelectionDAG &DAG) const { 2664 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2665 SDLoc dl(Op); 2666 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); 2667 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) { 2668 bool UseGOT_PREL = 2669 !(GV->hasHiddenVisibility() || GV->hasLocalLinkage()); 2670 2671 MachineFunction &MF = DAG.getMachineFunction(); 2672 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2673 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2674 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2675 SDLoc dl(Op); 2676 unsigned PCAdj = Subtarget->isThumb() ? 4 : 8; 2677 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( 2678 GV, ARMPCLabelIndex, ARMCP::CPValue, PCAdj, 2679 UseGOT_PREL ? ARMCP::GOT_PREL : ARMCP::no_modifier, 2680 /*AddCurrentAddress=*/UseGOT_PREL); 2681 SDValue CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2682 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2683 SDValue Result = DAG.getLoad( 2684 PtrVT, dl, DAG.getEntryNode(), CPAddr, 2685 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2686 false, false, 0); 2687 SDValue Chain = Result.getValue(1); 2688 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32); 2689 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel); 2690 if (UseGOT_PREL) 2691 Result = DAG.getLoad(PtrVT, dl, Chain, Result, 2692 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 2693 false, false, false, 0); 2694 return Result; 2695 } 2696 2697 // If we have T2 ops, we can materialize the address directly via movt/movw 2698 // pair. This is always cheaper. 2699 if (Subtarget->useMovt(DAG.getMachineFunction())) { 2700 ++NumMovwMovt; 2701 // FIXME: Once remat is capable of dealing with instructions with register 2702 // operands, expand this into two nodes. 2703 return DAG.getNode(ARMISD::Wrapper, dl, PtrVT, 2704 DAG.getTargetGlobalAddress(GV, dl, PtrVT)); 2705 } else { 2706 SDValue CPAddr = DAG.getTargetConstantPool(GV, PtrVT, 4); 2707 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2708 return DAG.getLoad( 2709 PtrVT, dl, DAG.getEntryNode(), CPAddr, 2710 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2711 false, false, 0); 2712 } 2713 } 2714 2715 SDValue ARMTargetLowering::LowerGlobalAddressDarwin(SDValue Op, 2716 SelectionDAG &DAG) const { 2717 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2718 SDLoc dl(Op); 2719 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); 2720 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2721 2722 if (Subtarget->useMovt(DAG.getMachineFunction())) 2723 ++NumMovwMovt; 2724 2725 // FIXME: Once remat is capable of dealing with instructions with register 2726 // operands, expand this into multiple nodes 2727 unsigned Wrapper = 2728 RelocM == Reloc::PIC_ ? ARMISD::WrapperPIC : ARMISD::Wrapper; 2729 2730 SDValue G = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, ARMII::MO_NONLAZY); 2731 SDValue Result = DAG.getNode(Wrapper, dl, PtrVT, G); 2732 2733 if (Subtarget->GVIsIndirectSymbol(GV, RelocM)) 2734 Result = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Result, 2735 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 2736 false, false, false, 0); 2737 return Result; 2738 } 2739 2740 SDValue ARMTargetLowering::LowerGlobalAddressWindows(SDValue Op, 2741 SelectionDAG &DAG) const { 2742 assert(Subtarget->isTargetWindows() && "non-Windows COFF is not supported"); 2743 assert(Subtarget->useMovt(DAG.getMachineFunction()) && 2744 "Windows on ARM expects to use movw/movt"); 2745 2746 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); 2747 const ARMII::TOF TargetFlags = 2748 (GV->hasDLLImportStorageClass() ? ARMII::MO_DLLIMPORT : ARMII::MO_NO_FLAG); 2749 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2750 SDValue Result; 2751 SDLoc DL(Op); 2752 2753 ++NumMovwMovt; 2754 2755 // FIXME: Once remat is capable of dealing with instructions with register 2756 // operands, expand this into two nodes. 2757 Result = DAG.getNode(ARMISD::Wrapper, DL, PtrVT, 2758 DAG.getTargetGlobalAddress(GV, DL, PtrVT, /*Offset=*/0, 2759 TargetFlags)); 2760 if (GV->hasDLLImportStorageClass()) 2761 Result = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Result, 2762 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 2763 false, false, false, 0); 2764 return Result; 2765 } 2766 2767 SDValue 2768 ARMTargetLowering::LowerEH_SJLJ_SETJMP(SDValue Op, SelectionDAG &DAG) const { 2769 SDLoc dl(Op); 2770 SDValue Val = DAG.getConstant(0, dl, MVT::i32); 2771 return DAG.getNode(ARMISD::EH_SJLJ_SETJMP, dl, 2772 DAG.getVTList(MVT::i32, MVT::Other), Op.getOperand(0), 2773 Op.getOperand(1), Val); 2774 } 2775 2776 SDValue 2777 ARMTargetLowering::LowerEH_SJLJ_LONGJMP(SDValue Op, SelectionDAG &DAG) const { 2778 SDLoc dl(Op); 2779 return DAG.getNode(ARMISD::EH_SJLJ_LONGJMP, dl, MVT::Other, Op.getOperand(0), 2780 Op.getOperand(1), DAG.getConstant(0, dl, MVT::i32)); 2781 } 2782 2783 SDValue ARMTargetLowering::LowerEH_SJLJ_SETUP_DISPATCH(SDValue Op, 2784 SelectionDAG &DAG) const { 2785 SDLoc dl(Op); 2786 return DAG.getNode(ARMISD::EH_SJLJ_SETUP_DISPATCH, dl, MVT::Other, 2787 Op.getOperand(0)); 2788 } 2789 2790 SDValue 2791 ARMTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG, 2792 const ARMSubtarget *Subtarget) const { 2793 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 2794 SDLoc dl(Op); 2795 switch (IntNo) { 2796 default: return SDValue(); // Don't custom lower most intrinsics. 2797 case Intrinsic::arm_rbit: { 2798 assert(Op.getOperand(1).getValueType() == MVT::i32 && 2799 "RBIT intrinsic must have i32 type!"); 2800 return DAG.getNode(ARMISD::RBIT, dl, MVT::i32, Op.getOperand(1)); 2801 } 2802 case Intrinsic::arm_thread_pointer: { 2803 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2804 return DAG.getNode(ARMISD::THREAD_POINTER, dl, PtrVT); 2805 } 2806 case Intrinsic::eh_sjlj_lsda: { 2807 MachineFunction &MF = DAG.getMachineFunction(); 2808 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2809 unsigned ARMPCLabelIndex = AFI->createPICLabelUId(); 2810 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2811 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 2812 SDValue CPAddr; 2813 unsigned PCAdj = (RelocM != Reloc::PIC_) 2814 ? 0 : (Subtarget->isThumb() ? 4 : 8); 2815 ARMConstantPoolValue *CPV = 2816 ARMConstantPoolConstant::Create(MF.getFunction(), ARMPCLabelIndex, 2817 ARMCP::CPLSDA, PCAdj); 2818 CPAddr = DAG.getTargetConstantPool(CPV, PtrVT, 4); 2819 CPAddr = DAG.getNode(ARMISD::Wrapper, dl, MVT::i32, CPAddr); 2820 SDValue Result = DAG.getLoad( 2821 PtrVT, dl, DAG.getEntryNode(), CPAddr, 2822 MachinePointerInfo::getConstantPool(DAG.getMachineFunction()), false, 2823 false, false, 0); 2824 2825 if (RelocM == Reloc::PIC_) { 2826 SDValue PICLabel = DAG.getConstant(ARMPCLabelIndex, dl, MVT::i32); 2827 Result = DAG.getNode(ARMISD::PIC_ADD, dl, PtrVT, Result, PICLabel); 2828 } 2829 return Result; 2830 } 2831 case Intrinsic::arm_neon_vmulls: 2832 case Intrinsic::arm_neon_vmullu: { 2833 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmulls) 2834 ? ARMISD::VMULLs : ARMISD::VMULLu; 2835 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(), 2836 Op.getOperand(1), Op.getOperand(2)); 2837 } 2838 case Intrinsic::arm_neon_vminnm: 2839 case Intrinsic::arm_neon_vmaxnm: { 2840 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vminnm) 2841 ? ISD::FMINNUM : ISD::FMAXNUM; 2842 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(), 2843 Op.getOperand(1), Op.getOperand(2)); 2844 } 2845 case Intrinsic::arm_neon_vminu: 2846 case Intrinsic::arm_neon_vmaxu: { 2847 if (Op.getValueType().isFloatingPoint()) 2848 return SDValue(); 2849 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vminu) 2850 ? ISD::UMIN : ISD::UMAX; 2851 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(), 2852 Op.getOperand(1), Op.getOperand(2)); 2853 } 2854 case Intrinsic::arm_neon_vmins: 2855 case Intrinsic::arm_neon_vmaxs: { 2856 // v{min,max}s is overloaded between signed integers and floats. 2857 if (!Op.getValueType().isFloatingPoint()) { 2858 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmins) 2859 ? ISD::SMIN : ISD::SMAX; 2860 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(), 2861 Op.getOperand(1), Op.getOperand(2)); 2862 } 2863 unsigned NewOpc = (IntNo == Intrinsic::arm_neon_vmins) 2864 ? ISD::FMINNAN : ISD::FMAXNAN; 2865 return DAG.getNode(NewOpc, SDLoc(Op), Op.getValueType(), 2866 Op.getOperand(1), Op.getOperand(2)); 2867 } 2868 } 2869 } 2870 2871 static SDValue LowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG, 2872 const ARMSubtarget *Subtarget) { 2873 // FIXME: handle "fence singlethread" more efficiently. 2874 SDLoc dl(Op); 2875 if (!Subtarget->hasDataBarrier()) { 2876 // Some ARMv6 cpus can support data barriers with an mcr instruction. 2877 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get 2878 // here. 2879 assert(Subtarget->hasV6Ops() && !Subtarget->isThumb() && 2880 "Unexpected ISD::ATOMIC_FENCE encountered. Should be libcall!"); 2881 return DAG.getNode(ARMISD::MEMBARRIER_MCR, dl, MVT::Other, Op.getOperand(0), 2882 DAG.getConstant(0, dl, MVT::i32)); 2883 } 2884 2885 ConstantSDNode *OrdN = cast<ConstantSDNode>(Op.getOperand(1)); 2886 AtomicOrdering Ord = static_cast<AtomicOrdering>(OrdN->getZExtValue()); 2887 ARM_MB::MemBOpt Domain = ARM_MB::ISH; 2888 if (Subtarget->isMClass()) { 2889 // Only a full system barrier exists in the M-class architectures. 2890 Domain = ARM_MB::SY; 2891 } else if (Subtarget->isSwift() && Ord == Release) { 2892 // Swift happens to implement ISHST barriers in a way that's compatible with 2893 // Release semantics but weaker than ISH so we'd be fools not to use 2894 // it. Beware: other processors probably don't! 2895 Domain = ARM_MB::ISHST; 2896 } 2897 2898 return DAG.getNode(ISD::INTRINSIC_VOID, dl, MVT::Other, Op.getOperand(0), 2899 DAG.getConstant(Intrinsic::arm_dmb, dl, MVT::i32), 2900 DAG.getConstant(Domain, dl, MVT::i32)); 2901 } 2902 2903 static SDValue LowerPREFETCH(SDValue Op, SelectionDAG &DAG, 2904 const ARMSubtarget *Subtarget) { 2905 // ARM pre v5TE and Thumb1 does not have preload instructions. 2906 if (!(Subtarget->isThumb2() || 2907 (!Subtarget->isThumb1Only() && Subtarget->hasV5TEOps()))) 2908 // Just preserve the chain. 2909 return Op.getOperand(0); 2910 2911 SDLoc dl(Op); 2912 unsigned isRead = ~cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() & 1; 2913 if (!isRead && 2914 (!Subtarget->hasV7Ops() || !Subtarget->hasMPExtension())) 2915 // ARMv7 with MP extension has PLDW. 2916 return Op.getOperand(0); 2917 2918 unsigned isData = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue(); 2919 if (Subtarget->isThumb()) { 2920 // Invert the bits. 2921 isRead = ~isRead & 1; 2922 isData = ~isData & 1; 2923 } 2924 2925 return DAG.getNode(ARMISD::PRELOAD, dl, MVT::Other, Op.getOperand(0), 2926 Op.getOperand(1), DAG.getConstant(isRead, dl, MVT::i32), 2927 DAG.getConstant(isData, dl, MVT::i32)); 2928 } 2929 2930 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG) { 2931 MachineFunction &MF = DAG.getMachineFunction(); 2932 ARMFunctionInfo *FuncInfo = MF.getInfo<ARMFunctionInfo>(); 2933 2934 // vastart just stores the address of the VarArgsFrameIndex slot into the 2935 // memory location argument. 2936 SDLoc dl(Op); 2937 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()); 2938 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 2939 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 2940 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), 2941 MachinePointerInfo(SV), false, false, 0); 2942 } 2943 2944 SDValue 2945 ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA, 2946 SDValue &Root, SelectionDAG &DAG, 2947 SDLoc dl) const { 2948 MachineFunction &MF = DAG.getMachineFunction(); 2949 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 2950 2951 const TargetRegisterClass *RC; 2952 if (AFI->isThumb1OnlyFunction()) 2953 RC = &ARM::tGPRRegClass; 2954 else 2955 RC = &ARM::GPRRegClass; 2956 2957 // Transform the arguments stored in physical registers into virtual ones. 2958 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 2959 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32); 2960 2961 SDValue ArgValue2; 2962 if (NextVA.isMemLoc()) { 2963 MachineFrameInfo *MFI = MF.getFrameInfo(); 2964 int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true); 2965 2966 // Create load node to retrieve arguments from the stack. 2967 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy(DAG.getDataLayout())); 2968 ArgValue2 = DAG.getLoad( 2969 MVT::i32, dl, Root, FIN, 2970 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), false, 2971 false, false, 0); 2972 } else { 2973 Reg = MF.addLiveIn(NextVA.getLocReg(), RC); 2974 ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg, MVT::i32); 2975 } 2976 if (!Subtarget->isLittle()) 2977 std::swap (ArgValue, ArgValue2); 2978 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, ArgValue, ArgValue2); 2979 } 2980 2981 // The remaining GPRs hold either the beginning of variable-argument 2982 // data, or the beginning of an aggregate passed by value (usually 2983 // byval). Either way, we allocate stack slots adjacent to the data 2984 // provided by our caller, and store the unallocated registers there. 2985 // If this is a variadic function, the va_list pointer will begin with 2986 // these values; otherwise, this reassembles a (byval) structure that 2987 // was split between registers and memory. 2988 // Return: The frame index registers were stored into. 2989 int 2990 ARMTargetLowering::StoreByValRegs(CCState &CCInfo, SelectionDAG &DAG, 2991 SDLoc dl, SDValue &Chain, 2992 const Value *OrigArg, 2993 unsigned InRegsParamRecordIdx, 2994 int ArgOffset, 2995 unsigned ArgSize) const { 2996 // Currently, two use-cases possible: 2997 // Case #1. Non-var-args function, and we meet first byval parameter. 2998 // Setup first unallocated register as first byval register; 2999 // eat all remained registers 3000 // (these two actions are performed by HandleByVal method). 3001 // Then, here, we initialize stack frame with 3002 // "store-reg" instructions. 3003 // Case #2. Var-args function, that doesn't contain byval parameters. 3004 // The same: eat all remained unallocated registers, 3005 // initialize stack frame. 3006 3007 MachineFunction &MF = DAG.getMachineFunction(); 3008 MachineFrameInfo *MFI = MF.getFrameInfo(); 3009 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 3010 unsigned RBegin, REnd; 3011 if (InRegsParamRecordIdx < CCInfo.getInRegsParamsCount()) { 3012 CCInfo.getInRegsParamInfo(InRegsParamRecordIdx, RBegin, REnd); 3013 } else { 3014 unsigned RBeginIdx = CCInfo.getFirstUnallocated(GPRArgRegs); 3015 RBegin = RBeginIdx == 4 ? (unsigned)ARM::R4 : GPRArgRegs[RBeginIdx]; 3016 REnd = ARM::R4; 3017 } 3018 3019 if (REnd != RBegin) 3020 ArgOffset = -4 * (ARM::R4 - RBegin); 3021 3022 auto PtrVT = getPointerTy(DAG.getDataLayout()); 3023 int FrameIndex = MFI->CreateFixedObject(ArgSize, ArgOffset, false); 3024 SDValue FIN = DAG.getFrameIndex(FrameIndex, PtrVT); 3025 3026 SmallVector<SDValue, 4> MemOps; 3027 const TargetRegisterClass *RC = 3028 AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass : &ARM::GPRRegClass; 3029 3030 for (unsigned Reg = RBegin, i = 0; Reg < REnd; ++Reg, ++i) { 3031 unsigned VReg = MF.addLiveIn(Reg, RC); 3032 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32); 3033 SDValue Store = 3034 DAG.getStore(Val.getValue(1), dl, Val, FIN, 3035 MachinePointerInfo(OrigArg, 4 * i), false, false, 0); 3036 MemOps.push_back(Store); 3037 FIN = DAG.getNode(ISD::ADD, dl, PtrVT, FIN, DAG.getConstant(4, dl, PtrVT)); 3038 } 3039 3040 if (!MemOps.empty()) 3041 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 3042 return FrameIndex; 3043 } 3044 3045 // Setup stack frame, the va_list pointer will start from. 3046 void 3047 ARMTargetLowering::VarArgStyleRegisters(CCState &CCInfo, SelectionDAG &DAG, 3048 SDLoc dl, SDValue &Chain, 3049 unsigned ArgOffset, 3050 unsigned TotalArgRegsSaveSize, 3051 bool ForceMutable) const { 3052 MachineFunction &MF = DAG.getMachineFunction(); 3053 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 3054 3055 // Try to store any remaining integer argument regs 3056 // to their spots on the stack so that they may be loaded by deferencing 3057 // the result of va_next. 3058 // If there is no regs to be stored, just point address after last 3059 // argument passed via stack. 3060 int FrameIndex = StoreByValRegs(CCInfo, DAG, dl, Chain, nullptr, 3061 CCInfo.getInRegsParamsCount(), 3062 CCInfo.getNextStackOffset(), 4); 3063 AFI->setVarArgsFrameIndex(FrameIndex); 3064 } 3065 3066 SDValue 3067 ARMTargetLowering::LowerFormalArguments(SDValue Chain, 3068 CallingConv::ID CallConv, bool isVarArg, 3069 const SmallVectorImpl<ISD::InputArg> 3070 &Ins, 3071 SDLoc dl, SelectionDAG &DAG, 3072 SmallVectorImpl<SDValue> &InVals) 3073 const { 3074 MachineFunction &MF = DAG.getMachineFunction(); 3075 MachineFrameInfo *MFI = MF.getFrameInfo(); 3076 3077 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 3078 3079 // Assign locations to all of the incoming arguments. 3080 SmallVector<CCValAssign, 16> ArgLocs; 3081 ARMCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 3082 *DAG.getContext(), Prologue); 3083 CCInfo.AnalyzeFormalArguments(Ins, 3084 CCAssignFnForNode(CallConv, /* Return*/ false, 3085 isVarArg)); 3086 3087 SmallVector<SDValue, 16> ArgValues; 3088 SDValue ArgValue; 3089 Function::const_arg_iterator CurOrigArg = MF.getFunction()->arg_begin(); 3090 unsigned CurArgIdx = 0; 3091 3092 // Initially ArgRegsSaveSize is zero. 3093 // Then we increase this value each time we meet byval parameter. 3094 // We also increase this value in case of varargs function. 3095 AFI->setArgRegsSaveSize(0); 3096 3097 // Calculate the amount of stack space that we need to allocate to store 3098 // byval and variadic arguments that are passed in registers. 3099 // We need to know this before we allocate the first byval or variadic 3100 // argument, as they will be allocated a stack slot below the CFA (Canonical 3101 // Frame Address, the stack pointer at entry to the function). 3102 unsigned ArgRegBegin = ARM::R4; 3103 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 3104 if (CCInfo.getInRegsParamsProcessed() >= CCInfo.getInRegsParamsCount()) 3105 break; 3106 3107 CCValAssign &VA = ArgLocs[i]; 3108 unsigned Index = VA.getValNo(); 3109 ISD::ArgFlagsTy Flags = Ins[Index].Flags; 3110 if (!Flags.isByVal()) 3111 continue; 3112 3113 assert(VA.isMemLoc() && "unexpected byval pointer in reg"); 3114 unsigned RBegin, REnd; 3115 CCInfo.getInRegsParamInfo(CCInfo.getInRegsParamsProcessed(), RBegin, REnd); 3116 ArgRegBegin = std::min(ArgRegBegin, RBegin); 3117 3118 CCInfo.nextInRegsParam(); 3119 } 3120 CCInfo.rewindByValRegsInfo(); 3121 3122 int lastInsIndex = -1; 3123 if (isVarArg && MFI->hasVAStart()) { 3124 unsigned RegIdx = CCInfo.getFirstUnallocated(GPRArgRegs); 3125 if (RegIdx != array_lengthof(GPRArgRegs)) 3126 ArgRegBegin = std::min(ArgRegBegin, (unsigned)GPRArgRegs[RegIdx]); 3127 } 3128 3129 unsigned TotalArgRegsSaveSize = 4 * (ARM::R4 - ArgRegBegin); 3130 AFI->setArgRegsSaveSize(TotalArgRegsSaveSize); 3131 auto PtrVT = getPointerTy(DAG.getDataLayout()); 3132 3133 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 3134 CCValAssign &VA = ArgLocs[i]; 3135 if (Ins[VA.getValNo()].isOrigArg()) { 3136 std::advance(CurOrigArg, 3137 Ins[VA.getValNo()].getOrigArgIndex() - CurArgIdx); 3138 CurArgIdx = Ins[VA.getValNo()].getOrigArgIndex(); 3139 } 3140 // Arguments stored in registers. 3141 if (VA.isRegLoc()) { 3142 EVT RegVT = VA.getLocVT(); 3143 3144 if (VA.needsCustom()) { 3145 // f64 and vector types are split up into multiple registers or 3146 // combinations of registers and stack slots. 3147 if (VA.getLocVT() == MVT::v2f64) { 3148 SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i], 3149 Chain, DAG, dl); 3150 VA = ArgLocs[++i]; // skip ahead to next loc 3151 SDValue ArgValue2; 3152 if (VA.isMemLoc()) { 3153 int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(), true); 3154 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3155 ArgValue2 = DAG.getLoad( 3156 MVT::f64, dl, Chain, FIN, 3157 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), 3158 false, false, false, 0); 3159 } else { 3160 ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i], 3161 Chain, DAG, dl); 3162 } 3163 ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64); 3164 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, 3165 ArgValue, ArgValue1, 3166 DAG.getIntPtrConstant(0, dl)); 3167 ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, 3168 ArgValue, ArgValue2, 3169 DAG.getIntPtrConstant(1, dl)); 3170 } else 3171 ArgValue = GetF64FormalArgument(VA, ArgLocs[++i], Chain, DAG, dl); 3172 3173 } else { 3174 const TargetRegisterClass *RC; 3175 3176 if (RegVT == MVT::f32) 3177 RC = &ARM::SPRRegClass; 3178 else if (RegVT == MVT::f64) 3179 RC = &ARM::DPRRegClass; 3180 else if (RegVT == MVT::v2f64) 3181 RC = &ARM::QPRRegClass; 3182 else if (RegVT == MVT::i32) 3183 RC = AFI->isThumb1OnlyFunction() ? &ARM::tGPRRegClass 3184 : &ARM::GPRRegClass; 3185 else 3186 llvm_unreachable("RegVT not supported by FORMAL_ARGUMENTS Lowering"); 3187 3188 // Transform the arguments in physical registers into virtual ones. 3189 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 3190 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT); 3191 } 3192 3193 // If this is an 8 or 16-bit value, it is really passed promoted 3194 // to 32 bits. Insert an assert[sz]ext to capture this, then 3195 // truncate to the right size. 3196 switch (VA.getLocInfo()) { 3197 default: llvm_unreachable("Unknown loc info!"); 3198 case CCValAssign::Full: break; 3199 case CCValAssign::BCvt: 3200 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue); 3201 break; 3202 case CCValAssign::SExt: 3203 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue, 3204 DAG.getValueType(VA.getValVT())); 3205 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); 3206 break; 3207 case CCValAssign::ZExt: 3208 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue, 3209 DAG.getValueType(VA.getValVT())); 3210 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); 3211 break; 3212 } 3213 3214 InVals.push_back(ArgValue); 3215 3216 } else { // VA.isRegLoc() 3217 3218 // sanity check 3219 assert(VA.isMemLoc()); 3220 assert(VA.getValVT() != MVT::i64 && "i64 should already be lowered"); 3221 3222 int index = VA.getValNo(); 3223 3224 // Some Ins[] entries become multiple ArgLoc[] entries. 3225 // Process them only once. 3226 if (index != lastInsIndex) 3227 { 3228 ISD::ArgFlagsTy Flags = Ins[index].Flags; 3229 // FIXME: For now, all byval parameter objects are marked mutable. 3230 // This can be changed with more analysis. 3231 // In case of tail call optimization mark all arguments mutable. 3232 // Since they could be overwritten by lowering of arguments in case of 3233 // a tail call. 3234 if (Flags.isByVal()) { 3235 assert(Ins[index].isOrigArg() && 3236 "Byval arguments cannot be implicit"); 3237 unsigned CurByValIndex = CCInfo.getInRegsParamsProcessed(); 3238 3239 int FrameIndex = StoreByValRegs( 3240 CCInfo, DAG, dl, Chain, &*CurOrigArg, CurByValIndex, 3241 VA.getLocMemOffset(), Flags.getByValSize()); 3242 InVals.push_back(DAG.getFrameIndex(FrameIndex, PtrVT)); 3243 CCInfo.nextInRegsParam(); 3244 } else { 3245 unsigned FIOffset = VA.getLocMemOffset(); 3246 int FI = MFI->CreateFixedObject(VA.getLocVT().getSizeInBits()/8, 3247 FIOffset, true); 3248 3249 // Create load nodes to retrieve arguments from the stack. 3250 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3251 InVals.push_back(DAG.getLoad( 3252 VA.getValVT(), dl, Chain, FIN, 3253 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), 3254 false, false, false, 0)); 3255 } 3256 lastInsIndex = index; 3257 } 3258 } 3259 } 3260 3261 // varargs 3262 if (isVarArg && MFI->hasVAStart()) 3263 VarArgStyleRegisters(CCInfo, DAG, dl, Chain, 3264 CCInfo.getNextStackOffset(), 3265 TotalArgRegsSaveSize); 3266 3267 AFI->setArgumentStackSize(CCInfo.getNextStackOffset()); 3268 3269 return Chain; 3270 } 3271 3272 /// isFloatingPointZero - Return true if this is +0.0. 3273 static bool isFloatingPointZero(SDValue Op) { 3274 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) 3275 return CFP->getValueAPF().isPosZero(); 3276 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) { 3277 // Maybe this has already been legalized into the constant pool? 3278 if (Op.getOperand(1).getOpcode() == ARMISD::Wrapper) { 3279 SDValue WrapperOp = Op.getOperand(1).getOperand(0); 3280 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(WrapperOp)) 3281 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal())) 3282 return CFP->getValueAPF().isPosZero(); 3283 } 3284 } else if (Op->getOpcode() == ISD::BITCAST && 3285 Op->getValueType(0) == MVT::f64) { 3286 // Handle (ISD::BITCAST (ARMISD::VMOVIMM (ISD::TargetConstant 0)) MVT::f64) 3287 // created by LowerConstantFP(). 3288 SDValue BitcastOp = Op->getOperand(0); 3289 if (BitcastOp->getOpcode() == ARMISD::VMOVIMM) { 3290 SDValue MoveOp = BitcastOp->getOperand(0); 3291 if (MoveOp->getOpcode() == ISD::TargetConstant && 3292 cast<ConstantSDNode>(MoveOp)->getZExtValue() == 0) { 3293 return true; 3294 } 3295 } 3296 } 3297 return false; 3298 } 3299 3300 /// Returns appropriate ARM CMP (cmp) and corresponding condition code for 3301 /// the given operands. 3302 SDValue 3303 ARMTargetLowering::getARMCmp(SDValue LHS, SDValue RHS, ISD::CondCode CC, 3304 SDValue &ARMcc, SelectionDAG &DAG, 3305 SDLoc dl) const { 3306 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) { 3307 unsigned C = RHSC->getZExtValue(); 3308 if (!isLegalICmpImmediate(C)) { 3309 // Constant does not fit, try adjusting it by one? 3310 switch (CC) { 3311 default: break; 3312 case ISD::SETLT: 3313 case ISD::SETGE: 3314 if (C != 0x80000000 && isLegalICmpImmediate(C-1)) { 3315 CC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGT; 3316 RHS = DAG.getConstant(C - 1, dl, MVT::i32); 3317 } 3318 break; 3319 case ISD::SETULT: 3320 case ISD::SETUGE: 3321 if (C != 0 && isLegalICmpImmediate(C-1)) { 3322 CC = (CC == ISD::SETULT) ? ISD::SETULE : ISD::SETUGT; 3323 RHS = DAG.getConstant(C - 1, dl, MVT::i32); 3324 } 3325 break; 3326 case ISD::SETLE: 3327 case ISD::SETGT: 3328 if (C != 0x7fffffff && isLegalICmpImmediate(C+1)) { 3329 CC = (CC == ISD::SETLE) ? ISD::SETLT : ISD::SETGE; 3330 RHS = DAG.getConstant(C + 1, dl, MVT::i32); 3331 } 3332 break; 3333 case ISD::SETULE: 3334 case ISD::SETUGT: 3335 if (C != 0xffffffff && isLegalICmpImmediate(C+1)) { 3336 CC = (CC == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE; 3337 RHS = DAG.getConstant(C + 1, dl, MVT::i32); 3338 } 3339 break; 3340 } 3341 } 3342 } 3343 3344 ARMCC::CondCodes CondCode = IntCCToARMCC(CC); 3345 ARMISD::NodeType CompareType; 3346 switch (CondCode) { 3347 default: 3348 CompareType = ARMISD::CMP; 3349 break; 3350 case ARMCC::EQ: 3351 case ARMCC::NE: 3352 // Uses only Z Flag 3353 CompareType = ARMISD::CMPZ; 3354 break; 3355 } 3356 ARMcc = DAG.getConstant(CondCode, dl, MVT::i32); 3357 return DAG.getNode(CompareType, dl, MVT::Glue, LHS, RHS); 3358 } 3359 3360 /// Returns a appropriate VFP CMP (fcmp{s|d}+fmstat) for the given operands. 3361 SDValue 3362 ARMTargetLowering::getVFPCmp(SDValue LHS, SDValue RHS, SelectionDAG &DAG, 3363 SDLoc dl) const { 3364 assert(!Subtarget->isFPOnlySP() || RHS.getValueType() != MVT::f64); 3365 SDValue Cmp; 3366 if (!isFloatingPointZero(RHS)) 3367 Cmp = DAG.getNode(ARMISD::CMPFP, dl, MVT::Glue, LHS, RHS); 3368 else 3369 Cmp = DAG.getNode(ARMISD::CMPFPw0, dl, MVT::Glue, LHS); 3370 return DAG.getNode(ARMISD::FMSTAT, dl, MVT::Glue, Cmp); 3371 } 3372 3373 /// duplicateCmp - Glue values can have only one use, so this function 3374 /// duplicates a comparison node. 3375 SDValue 3376 ARMTargetLowering::duplicateCmp(SDValue Cmp, SelectionDAG &DAG) const { 3377 unsigned Opc = Cmp.getOpcode(); 3378 SDLoc DL(Cmp); 3379 if (Opc == ARMISD::CMP || Opc == ARMISD::CMPZ) 3380 return DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1)); 3381 3382 assert(Opc == ARMISD::FMSTAT && "unexpected comparison operation"); 3383 Cmp = Cmp.getOperand(0); 3384 Opc = Cmp.getOpcode(); 3385 if (Opc == ARMISD::CMPFP) 3386 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0),Cmp.getOperand(1)); 3387 else { 3388 assert(Opc == ARMISD::CMPFPw0 && "unexpected operand of FMSTAT"); 3389 Cmp = DAG.getNode(Opc, DL, MVT::Glue, Cmp.getOperand(0)); 3390 } 3391 return DAG.getNode(ARMISD::FMSTAT, DL, MVT::Glue, Cmp); 3392 } 3393 3394 std::pair<SDValue, SDValue> 3395 ARMTargetLowering::getARMXALUOOp(SDValue Op, SelectionDAG &DAG, 3396 SDValue &ARMcc) const { 3397 assert(Op.getValueType() == MVT::i32 && "Unsupported value type"); 3398 3399 SDValue Value, OverflowCmp; 3400 SDValue LHS = Op.getOperand(0); 3401 SDValue RHS = Op.getOperand(1); 3402 SDLoc dl(Op); 3403 3404 // FIXME: We are currently always generating CMPs because we don't support 3405 // generating CMN through the backend. This is not as good as the natural 3406 // CMP case because it causes a register dependency and cannot be folded 3407 // later. 3408 3409 switch (Op.getOpcode()) { 3410 default: 3411 llvm_unreachable("Unknown overflow instruction!"); 3412 case ISD::SADDO: 3413 ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32); 3414 Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS); 3415 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS); 3416 break; 3417 case ISD::UADDO: 3418 ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32); 3419 Value = DAG.getNode(ISD::ADD, dl, Op.getValueType(), LHS, RHS); 3420 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, Value, LHS); 3421 break; 3422 case ISD::SSUBO: 3423 ARMcc = DAG.getConstant(ARMCC::VC, dl, MVT::i32); 3424 Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS); 3425 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS); 3426 break; 3427 case ISD::USUBO: 3428 ARMcc = DAG.getConstant(ARMCC::HS, dl, MVT::i32); 3429 Value = DAG.getNode(ISD::SUB, dl, Op.getValueType(), LHS, RHS); 3430 OverflowCmp = DAG.getNode(ARMISD::CMP, dl, MVT::Glue, LHS, RHS); 3431 break; 3432 } // switch (...) 3433 3434 return std::make_pair(Value, OverflowCmp); 3435 } 3436 3437 3438 SDValue 3439 ARMTargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const { 3440 // Let legalize expand this if it isn't a legal type yet. 3441 if (!DAG.getTargetLoweringInfo().isTypeLegal(Op.getValueType())) 3442 return SDValue(); 3443 3444 SDValue Value, OverflowCmp; 3445 SDValue ARMcc; 3446 std::tie(Value, OverflowCmp) = getARMXALUOOp(Op, DAG, ARMcc); 3447 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3448 SDLoc dl(Op); 3449 // We use 0 and 1 as false and true values. 3450 SDValue TVal = DAG.getConstant(1, dl, MVT::i32); 3451 SDValue FVal = DAG.getConstant(0, dl, MVT::i32); 3452 EVT VT = Op.getValueType(); 3453 3454 SDValue Overflow = DAG.getNode(ARMISD::CMOV, dl, VT, TVal, FVal, 3455 ARMcc, CCR, OverflowCmp); 3456 3457 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32); 3458 return DAG.getNode(ISD::MERGE_VALUES, dl, VTs, Value, Overflow); 3459 } 3460 3461 3462 SDValue ARMTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const { 3463 SDValue Cond = Op.getOperand(0); 3464 SDValue SelectTrue = Op.getOperand(1); 3465 SDValue SelectFalse = Op.getOperand(2); 3466 SDLoc dl(Op); 3467 unsigned Opc = Cond.getOpcode(); 3468 3469 if (Cond.getResNo() == 1 && 3470 (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO || 3471 Opc == ISD::USUBO)) { 3472 if (!DAG.getTargetLoweringInfo().isTypeLegal(Cond->getValueType(0))) 3473 return SDValue(); 3474 3475 SDValue Value, OverflowCmp; 3476 SDValue ARMcc; 3477 std::tie(Value, OverflowCmp) = getARMXALUOOp(Cond, DAG, ARMcc); 3478 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3479 EVT VT = Op.getValueType(); 3480 3481 return getCMOV(dl, VT, SelectTrue, SelectFalse, ARMcc, CCR, 3482 OverflowCmp, DAG); 3483 } 3484 3485 // Convert: 3486 // 3487 // (select (cmov 1, 0, cond), t, f) -> (cmov t, f, cond) 3488 // (select (cmov 0, 1, cond), t, f) -> (cmov f, t, cond) 3489 // 3490 if (Cond.getOpcode() == ARMISD::CMOV && Cond.hasOneUse()) { 3491 const ConstantSDNode *CMOVTrue = 3492 dyn_cast<ConstantSDNode>(Cond.getOperand(0)); 3493 const ConstantSDNode *CMOVFalse = 3494 dyn_cast<ConstantSDNode>(Cond.getOperand(1)); 3495 3496 if (CMOVTrue && CMOVFalse) { 3497 unsigned CMOVTrueVal = CMOVTrue->getZExtValue(); 3498 unsigned CMOVFalseVal = CMOVFalse->getZExtValue(); 3499 3500 SDValue True; 3501 SDValue False; 3502 if (CMOVTrueVal == 1 && CMOVFalseVal == 0) { 3503 True = SelectTrue; 3504 False = SelectFalse; 3505 } else if (CMOVTrueVal == 0 && CMOVFalseVal == 1) { 3506 True = SelectFalse; 3507 False = SelectTrue; 3508 } 3509 3510 if (True.getNode() && False.getNode()) { 3511 EVT VT = Op.getValueType(); 3512 SDValue ARMcc = Cond.getOperand(2); 3513 SDValue CCR = Cond.getOperand(3); 3514 SDValue Cmp = duplicateCmp(Cond.getOperand(4), DAG); 3515 assert(True.getValueType() == VT); 3516 return getCMOV(dl, VT, True, False, ARMcc, CCR, Cmp, DAG); 3517 } 3518 } 3519 } 3520 3521 // ARM's BooleanContents value is UndefinedBooleanContent. Mask out the 3522 // undefined bits before doing a full-word comparison with zero. 3523 Cond = DAG.getNode(ISD::AND, dl, Cond.getValueType(), Cond, 3524 DAG.getConstant(1, dl, Cond.getValueType())); 3525 3526 return DAG.getSelectCC(dl, Cond, 3527 DAG.getConstant(0, dl, Cond.getValueType()), 3528 SelectTrue, SelectFalse, ISD::SETNE); 3529 } 3530 3531 static void checkVSELConstraints(ISD::CondCode CC, ARMCC::CondCodes &CondCode, 3532 bool &swpCmpOps, bool &swpVselOps) { 3533 // Start by selecting the GE condition code for opcodes that return true for 3534 // 'equality' 3535 if (CC == ISD::SETUGE || CC == ISD::SETOGE || CC == ISD::SETOLE || 3536 CC == ISD::SETULE) 3537 CondCode = ARMCC::GE; 3538 3539 // and GT for opcodes that return false for 'equality'. 3540 else if (CC == ISD::SETUGT || CC == ISD::SETOGT || CC == ISD::SETOLT || 3541 CC == ISD::SETULT) 3542 CondCode = ARMCC::GT; 3543 3544 // Since we are constrained to GE/GT, if the opcode contains 'less', we need 3545 // to swap the compare operands. 3546 if (CC == ISD::SETOLE || CC == ISD::SETULE || CC == ISD::SETOLT || 3547 CC == ISD::SETULT) 3548 swpCmpOps = true; 3549 3550 // Both GT and GE are ordered comparisons, and return false for 'unordered'. 3551 // If we have an unordered opcode, we need to swap the operands to the VSEL 3552 // instruction (effectively negating the condition). 3553 // 3554 // This also has the effect of swapping which one of 'less' or 'greater' 3555 // returns true, so we also swap the compare operands. It also switches 3556 // whether we return true for 'equality', so we compensate by picking the 3557 // opposite condition code to our original choice. 3558 if (CC == ISD::SETULE || CC == ISD::SETULT || CC == ISD::SETUGE || 3559 CC == ISD::SETUGT) { 3560 swpCmpOps = !swpCmpOps; 3561 swpVselOps = !swpVselOps; 3562 CondCode = CondCode == ARMCC::GT ? ARMCC::GE : ARMCC::GT; 3563 } 3564 3565 // 'ordered' is 'anything but unordered', so use the VS condition code and 3566 // swap the VSEL operands. 3567 if (CC == ISD::SETO) { 3568 CondCode = ARMCC::VS; 3569 swpVselOps = true; 3570 } 3571 3572 // 'unordered or not equal' is 'anything but equal', so use the EQ condition 3573 // code and swap the VSEL operands. 3574 if (CC == ISD::SETUNE) { 3575 CondCode = ARMCC::EQ; 3576 swpVselOps = true; 3577 } 3578 } 3579 3580 SDValue ARMTargetLowering::getCMOV(SDLoc dl, EVT VT, SDValue FalseVal, 3581 SDValue TrueVal, SDValue ARMcc, SDValue CCR, 3582 SDValue Cmp, SelectionDAG &DAG) const { 3583 if (Subtarget->isFPOnlySP() && VT == MVT::f64) { 3584 FalseVal = DAG.getNode(ARMISD::VMOVRRD, dl, 3585 DAG.getVTList(MVT::i32, MVT::i32), FalseVal); 3586 TrueVal = DAG.getNode(ARMISD::VMOVRRD, dl, 3587 DAG.getVTList(MVT::i32, MVT::i32), TrueVal); 3588 3589 SDValue TrueLow = TrueVal.getValue(0); 3590 SDValue TrueHigh = TrueVal.getValue(1); 3591 SDValue FalseLow = FalseVal.getValue(0); 3592 SDValue FalseHigh = FalseVal.getValue(1); 3593 3594 SDValue Low = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseLow, TrueLow, 3595 ARMcc, CCR, Cmp); 3596 SDValue High = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseHigh, TrueHigh, 3597 ARMcc, CCR, duplicateCmp(Cmp, DAG)); 3598 3599 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Low, High); 3600 } else { 3601 return DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, CCR, 3602 Cmp); 3603 } 3604 } 3605 3606 SDValue ARMTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { 3607 EVT VT = Op.getValueType(); 3608 SDValue LHS = Op.getOperand(0); 3609 SDValue RHS = Op.getOperand(1); 3610 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); 3611 SDValue TrueVal = Op.getOperand(2); 3612 SDValue FalseVal = Op.getOperand(3); 3613 SDLoc dl(Op); 3614 3615 if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) { 3616 DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC, 3617 dl); 3618 3619 // If softenSetCCOperands only returned one value, we should compare it to 3620 // zero. 3621 if (!RHS.getNode()) { 3622 RHS = DAG.getConstant(0, dl, LHS.getValueType()); 3623 CC = ISD::SETNE; 3624 } 3625 } 3626 3627 if (LHS.getValueType() == MVT::i32) { 3628 // Try to generate VSEL on ARMv8. 3629 // The VSEL instruction can't use all the usual ARM condition 3630 // codes: it only has two bits to select the condition code, so it's 3631 // constrained to use only GE, GT, VS and EQ. 3632 // 3633 // To implement all the various ISD::SETXXX opcodes, we sometimes need to 3634 // swap the operands of the previous compare instruction (effectively 3635 // inverting the compare condition, swapping 'less' and 'greater') and 3636 // sometimes need to swap the operands to the VSEL (which inverts the 3637 // condition in the sense of firing whenever the previous condition didn't) 3638 if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 || 3639 TrueVal.getValueType() == MVT::f64)) { 3640 ARMCC::CondCodes CondCode = IntCCToARMCC(CC); 3641 if (CondCode == ARMCC::LT || CondCode == ARMCC::LE || 3642 CondCode == ARMCC::VC || CondCode == ARMCC::NE) { 3643 CC = ISD::getSetCCInverse(CC, true); 3644 std::swap(TrueVal, FalseVal); 3645 } 3646 } 3647 3648 SDValue ARMcc; 3649 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3650 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 3651 return getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG); 3652 } 3653 3654 ARMCC::CondCodes CondCode, CondCode2; 3655 FPCCToARMCC(CC, CondCode, CondCode2); 3656 3657 // Try to generate VMAXNM/VMINNM on ARMv8. 3658 if (Subtarget->hasFPARMv8() && (TrueVal.getValueType() == MVT::f32 || 3659 TrueVal.getValueType() == MVT::f64)) { 3660 bool swpCmpOps = false; 3661 bool swpVselOps = false; 3662 checkVSELConstraints(CC, CondCode, swpCmpOps, swpVselOps); 3663 3664 if (CondCode == ARMCC::GT || CondCode == ARMCC::GE || 3665 CondCode == ARMCC::VS || CondCode == ARMCC::EQ) { 3666 if (swpCmpOps) 3667 std::swap(LHS, RHS); 3668 if (swpVselOps) 3669 std::swap(TrueVal, FalseVal); 3670 } 3671 } 3672 3673 SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32); 3674 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl); 3675 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3676 SDValue Result = getCMOV(dl, VT, FalseVal, TrueVal, ARMcc, CCR, Cmp, DAG); 3677 if (CondCode2 != ARMCC::AL) { 3678 SDValue ARMcc2 = DAG.getConstant(CondCode2, dl, MVT::i32); 3679 // FIXME: Needs another CMP because flag can have but one use. 3680 SDValue Cmp2 = getVFPCmp(LHS, RHS, DAG, dl); 3681 Result = getCMOV(dl, VT, Result, TrueVal, ARMcc2, CCR, Cmp2, DAG); 3682 } 3683 return Result; 3684 } 3685 3686 /// canChangeToInt - Given the fp compare operand, return true if it is suitable 3687 /// to morph to an integer compare sequence. 3688 static bool canChangeToInt(SDValue Op, bool &SeenZero, 3689 const ARMSubtarget *Subtarget) { 3690 SDNode *N = Op.getNode(); 3691 if (!N->hasOneUse()) 3692 // Otherwise it requires moving the value from fp to integer registers. 3693 return false; 3694 if (!N->getNumValues()) 3695 return false; 3696 EVT VT = Op.getValueType(); 3697 if (VT != MVT::f32 && !Subtarget->isFPBrccSlow()) 3698 // f32 case is generally profitable. f64 case only makes sense when vcmpe + 3699 // vmrs are very slow, e.g. cortex-a8. 3700 return false; 3701 3702 if (isFloatingPointZero(Op)) { 3703 SeenZero = true; 3704 return true; 3705 } 3706 return ISD::isNormalLoad(N); 3707 } 3708 3709 static SDValue bitcastf32Toi32(SDValue Op, SelectionDAG &DAG) { 3710 if (isFloatingPointZero(Op)) 3711 return DAG.getConstant(0, SDLoc(Op), MVT::i32); 3712 3713 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) 3714 return DAG.getLoad(MVT::i32, SDLoc(Op), 3715 Ld->getChain(), Ld->getBasePtr(), Ld->getPointerInfo(), 3716 Ld->isVolatile(), Ld->isNonTemporal(), 3717 Ld->isInvariant(), Ld->getAlignment()); 3718 3719 llvm_unreachable("Unknown VFP cmp argument!"); 3720 } 3721 3722 static void expandf64Toi32(SDValue Op, SelectionDAG &DAG, 3723 SDValue &RetVal1, SDValue &RetVal2) { 3724 SDLoc dl(Op); 3725 3726 if (isFloatingPointZero(Op)) { 3727 RetVal1 = DAG.getConstant(0, dl, MVT::i32); 3728 RetVal2 = DAG.getConstant(0, dl, MVT::i32); 3729 return; 3730 } 3731 3732 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Op)) { 3733 SDValue Ptr = Ld->getBasePtr(); 3734 RetVal1 = DAG.getLoad(MVT::i32, dl, 3735 Ld->getChain(), Ptr, 3736 Ld->getPointerInfo(), 3737 Ld->isVolatile(), Ld->isNonTemporal(), 3738 Ld->isInvariant(), Ld->getAlignment()); 3739 3740 EVT PtrType = Ptr.getValueType(); 3741 unsigned NewAlign = MinAlign(Ld->getAlignment(), 4); 3742 SDValue NewPtr = DAG.getNode(ISD::ADD, dl, 3743 PtrType, Ptr, DAG.getConstant(4, dl, PtrType)); 3744 RetVal2 = DAG.getLoad(MVT::i32, dl, 3745 Ld->getChain(), NewPtr, 3746 Ld->getPointerInfo().getWithOffset(4), 3747 Ld->isVolatile(), Ld->isNonTemporal(), 3748 Ld->isInvariant(), NewAlign); 3749 return; 3750 } 3751 3752 llvm_unreachable("Unknown VFP cmp argument!"); 3753 } 3754 3755 /// OptimizeVFPBrcond - With -enable-unsafe-fp-math, it's legal to optimize some 3756 /// f32 and even f64 comparisons to integer ones. 3757 SDValue 3758 ARMTargetLowering::OptimizeVFPBrcond(SDValue Op, SelectionDAG &DAG) const { 3759 SDValue Chain = Op.getOperand(0); 3760 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); 3761 SDValue LHS = Op.getOperand(2); 3762 SDValue RHS = Op.getOperand(3); 3763 SDValue Dest = Op.getOperand(4); 3764 SDLoc dl(Op); 3765 3766 bool LHSSeenZero = false; 3767 bool LHSOk = canChangeToInt(LHS, LHSSeenZero, Subtarget); 3768 bool RHSSeenZero = false; 3769 bool RHSOk = canChangeToInt(RHS, RHSSeenZero, Subtarget); 3770 if (LHSOk && RHSOk && (LHSSeenZero || RHSSeenZero)) { 3771 // If unsafe fp math optimization is enabled and there are no other uses of 3772 // the CMP operands, and the condition code is EQ or NE, we can optimize it 3773 // to an integer comparison. 3774 if (CC == ISD::SETOEQ) 3775 CC = ISD::SETEQ; 3776 else if (CC == ISD::SETUNE) 3777 CC = ISD::SETNE; 3778 3779 SDValue Mask = DAG.getConstant(0x7fffffff, dl, MVT::i32); 3780 SDValue ARMcc; 3781 if (LHS.getValueType() == MVT::f32) { 3782 LHS = DAG.getNode(ISD::AND, dl, MVT::i32, 3783 bitcastf32Toi32(LHS, DAG), Mask); 3784 RHS = DAG.getNode(ISD::AND, dl, MVT::i32, 3785 bitcastf32Toi32(RHS, DAG), Mask); 3786 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 3787 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3788 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other, 3789 Chain, Dest, ARMcc, CCR, Cmp); 3790 } 3791 3792 SDValue LHS1, LHS2; 3793 SDValue RHS1, RHS2; 3794 expandf64Toi32(LHS, DAG, LHS1, LHS2); 3795 expandf64Toi32(RHS, DAG, RHS1, RHS2); 3796 LHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, LHS2, Mask); 3797 RHS2 = DAG.getNode(ISD::AND, dl, MVT::i32, RHS2, Mask); 3798 ARMCC::CondCodes CondCode = IntCCToARMCC(CC); 3799 ARMcc = DAG.getConstant(CondCode, dl, MVT::i32); 3800 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue); 3801 SDValue Ops[] = { Chain, ARMcc, LHS1, LHS2, RHS1, RHS2, Dest }; 3802 return DAG.getNode(ARMISD::BCC_i64, dl, VTList, Ops); 3803 } 3804 3805 return SDValue(); 3806 } 3807 3808 SDValue ARMTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) const { 3809 SDValue Chain = Op.getOperand(0); 3810 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); 3811 SDValue LHS = Op.getOperand(2); 3812 SDValue RHS = Op.getOperand(3); 3813 SDValue Dest = Op.getOperand(4); 3814 SDLoc dl(Op); 3815 3816 if (Subtarget->isFPOnlySP() && LHS.getValueType() == MVT::f64) { 3817 DAG.getTargetLoweringInfo().softenSetCCOperands(DAG, MVT::f64, LHS, RHS, CC, 3818 dl); 3819 3820 // If softenSetCCOperands only returned one value, we should compare it to 3821 // zero. 3822 if (!RHS.getNode()) { 3823 RHS = DAG.getConstant(0, dl, LHS.getValueType()); 3824 CC = ISD::SETNE; 3825 } 3826 } 3827 3828 if (LHS.getValueType() == MVT::i32) { 3829 SDValue ARMcc; 3830 SDValue Cmp = getARMCmp(LHS, RHS, CC, ARMcc, DAG, dl); 3831 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3832 return DAG.getNode(ARMISD::BRCOND, dl, MVT::Other, 3833 Chain, Dest, ARMcc, CCR, Cmp); 3834 } 3835 3836 assert(LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64); 3837 3838 if (getTargetMachine().Options.UnsafeFPMath && 3839 (CC == ISD::SETEQ || CC == ISD::SETOEQ || 3840 CC == ISD::SETNE || CC == ISD::SETUNE)) { 3841 SDValue Result = OptimizeVFPBrcond(Op, DAG); 3842 if (Result.getNode()) 3843 return Result; 3844 } 3845 3846 ARMCC::CondCodes CondCode, CondCode2; 3847 FPCCToARMCC(CC, CondCode, CondCode2); 3848 3849 SDValue ARMcc = DAG.getConstant(CondCode, dl, MVT::i32); 3850 SDValue Cmp = getVFPCmp(LHS, RHS, DAG, dl); 3851 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 3852 SDVTList VTList = DAG.getVTList(MVT::Other, MVT::Glue); 3853 SDValue Ops[] = { Chain, Dest, ARMcc, CCR, Cmp }; 3854 SDValue Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops); 3855 if (CondCode2 != ARMCC::AL) { 3856 ARMcc = DAG.getConstant(CondCode2, dl, MVT::i32); 3857 SDValue Ops[] = { Res, Dest, ARMcc, CCR, Res.getValue(1) }; 3858 Res = DAG.getNode(ARMISD::BRCOND, dl, VTList, Ops); 3859 } 3860 return Res; 3861 } 3862 3863 SDValue ARMTargetLowering::LowerBR_JT(SDValue Op, SelectionDAG &DAG) const { 3864 SDValue Chain = Op.getOperand(0); 3865 SDValue Table = Op.getOperand(1); 3866 SDValue Index = Op.getOperand(2); 3867 SDLoc dl(Op); 3868 3869 EVT PTy = getPointerTy(DAG.getDataLayout()); 3870 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table); 3871 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PTy); 3872 Table = DAG.getNode(ARMISD::WrapperJT, dl, MVT::i32, JTI); 3873 Index = DAG.getNode(ISD::MUL, dl, PTy, Index, DAG.getConstant(4, dl, PTy)); 3874 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table); 3875 if (Subtarget->isThumb2()) { 3876 // Thumb2 uses a two-level jump. That is, it jumps into the jump table 3877 // which does another jump to the destination. This also makes it easier 3878 // to translate it to TBB / TBH later. 3879 // FIXME: This might not work if the function is extremely large. 3880 return DAG.getNode(ARMISD::BR2_JT, dl, MVT::Other, Chain, 3881 Addr, Op.getOperand(2), JTI); 3882 } 3883 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) { 3884 Addr = 3885 DAG.getLoad((EVT)MVT::i32, dl, Chain, Addr, 3886 MachinePointerInfo::getJumpTable(DAG.getMachineFunction()), 3887 false, false, false, 0); 3888 Chain = Addr.getValue(1); 3889 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, Table); 3890 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI); 3891 } else { 3892 Addr = 3893 DAG.getLoad(PTy, dl, Chain, Addr, 3894 MachinePointerInfo::getJumpTable(DAG.getMachineFunction()), 3895 false, false, false, 0); 3896 Chain = Addr.getValue(1); 3897 return DAG.getNode(ARMISD::BR_JT, dl, MVT::Other, Chain, Addr, JTI); 3898 } 3899 } 3900 3901 static SDValue LowerVectorFP_TO_INT(SDValue Op, SelectionDAG &DAG) { 3902 EVT VT = Op.getValueType(); 3903 SDLoc dl(Op); 3904 3905 if (Op.getValueType().getVectorElementType() == MVT::i32) { 3906 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::f32) 3907 return Op; 3908 return DAG.UnrollVectorOp(Op.getNode()); 3909 } 3910 3911 assert(Op.getOperand(0).getValueType() == MVT::v4f32 && 3912 "Invalid type for custom lowering!"); 3913 if (VT != MVT::v4i16) 3914 return DAG.UnrollVectorOp(Op.getNode()); 3915 3916 Op = DAG.getNode(Op.getOpcode(), dl, MVT::v4i32, Op.getOperand(0)); 3917 return DAG.getNode(ISD::TRUNCATE, dl, VT, Op); 3918 } 3919 3920 SDValue ARMTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const { 3921 EVT VT = Op.getValueType(); 3922 if (VT.isVector()) 3923 return LowerVectorFP_TO_INT(Op, DAG); 3924 if (Subtarget->isFPOnlySP() && Op.getOperand(0).getValueType() == MVT::f64) { 3925 RTLIB::Libcall LC; 3926 if (Op.getOpcode() == ISD::FP_TO_SINT) 3927 LC = RTLIB::getFPTOSINT(Op.getOperand(0).getValueType(), 3928 Op.getValueType()); 3929 else 3930 LC = RTLIB::getFPTOUINT(Op.getOperand(0).getValueType(), 3931 Op.getValueType()); 3932 return makeLibCall(DAG, LC, Op.getValueType(), Op.getOperand(0), 3933 /*isSigned*/ false, SDLoc(Op)).first; 3934 } 3935 3936 return Op; 3937 } 3938 3939 static SDValue LowerVectorINT_TO_FP(SDValue Op, SelectionDAG &DAG) { 3940 EVT VT = Op.getValueType(); 3941 SDLoc dl(Op); 3942 3943 if (Op.getOperand(0).getValueType().getVectorElementType() == MVT::i32) { 3944 if (VT.getVectorElementType() == MVT::f32) 3945 return Op; 3946 return DAG.UnrollVectorOp(Op.getNode()); 3947 } 3948 3949 assert(Op.getOperand(0).getValueType() == MVT::v4i16 && 3950 "Invalid type for custom lowering!"); 3951 if (VT != MVT::v4f32) 3952 return DAG.UnrollVectorOp(Op.getNode()); 3953 3954 unsigned CastOpc; 3955 unsigned Opc; 3956 switch (Op.getOpcode()) { 3957 default: llvm_unreachable("Invalid opcode!"); 3958 case ISD::SINT_TO_FP: 3959 CastOpc = ISD::SIGN_EXTEND; 3960 Opc = ISD::SINT_TO_FP; 3961 break; 3962 case ISD::UINT_TO_FP: 3963 CastOpc = ISD::ZERO_EXTEND; 3964 Opc = ISD::UINT_TO_FP; 3965 break; 3966 } 3967 3968 Op = DAG.getNode(CastOpc, dl, MVT::v4i32, Op.getOperand(0)); 3969 return DAG.getNode(Opc, dl, VT, Op); 3970 } 3971 3972 SDValue ARMTargetLowering::LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG) const { 3973 EVT VT = Op.getValueType(); 3974 if (VT.isVector()) 3975 return LowerVectorINT_TO_FP(Op, DAG); 3976 if (Subtarget->isFPOnlySP() && Op.getValueType() == MVT::f64) { 3977 RTLIB::Libcall LC; 3978 if (Op.getOpcode() == ISD::SINT_TO_FP) 3979 LC = RTLIB::getSINTTOFP(Op.getOperand(0).getValueType(), 3980 Op.getValueType()); 3981 else 3982 LC = RTLIB::getUINTTOFP(Op.getOperand(0).getValueType(), 3983 Op.getValueType()); 3984 return makeLibCall(DAG, LC, Op.getValueType(), Op.getOperand(0), 3985 /*isSigned*/ false, SDLoc(Op)).first; 3986 } 3987 3988 return Op; 3989 } 3990 3991 SDValue ARMTargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const { 3992 // Implement fcopysign with a fabs and a conditional fneg. 3993 SDValue Tmp0 = Op.getOperand(0); 3994 SDValue Tmp1 = Op.getOperand(1); 3995 SDLoc dl(Op); 3996 EVT VT = Op.getValueType(); 3997 EVT SrcVT = Tmp1.getValueType(); 3998 bool InGPR = Tmp0.getOpcode() == ISD::BITCAST || 3999 Tmp0.getOpcode() == ARMISD::VMOVDRR; 4000 bool UseNEON = !InGPR && Subtarget->hasNEON(); 4001 4002 if (UseNEON) { 4003 // Use VBSL to copy the sign bit. 4004 unsigned EncodedVal = ARM_AM::createNEONModImm(0x6, 0x80); 4005 SDValue Mask = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v2i32, 4006 DAG.getTargetConstant(EncodedVal, dl, MVT::i32)); 4007 EVT OpVT = (VT == MVT::f32) ? MVT::v2i32 : MVT::v1i64; 4008 if (VT == MVT::f64) 4009 Mask = DAG.getNode(ARMISD::VSHL, dl, OpVT, 4010 DAG.getNode(ISD::BITCAST, dl, OpVT, Mask), 4011 DAG.getConstant(32, dl, MVT::i32)); 4012 else /*if (VT == MVT::f32)*/ 4013 Tmp0 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp0); 4014 if (SrcVT == MVT::f32) { 4015 Tmp1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f32, Tmp1); 4016 if (VT == MVT::f64) 4017 Tmp1 = DAG.getNode(ARMISD::VSHL, dl, OpVT, 4018 DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1), 4019 DAG.getConstant(32, dl, MVT::i32)); 4020 } else if (VT == MVT::f32) 4021 Tmp1 = DAG.getNode(ARMISD::VSHRu, dl, MVT::v1i64, 4022 DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, Tmp1), 4023 DAG.getConstant(32, dl, MVT::i32)); 4024 Tmp0 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp0); 4025 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OpVT, Tmp1); 4026 4027 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff), 4028 dl, MVT::i32); 4029 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); 4030 SDValue MaskNot = DAG.getNode(ISD::XOR, dl, OpVT, Mask, 4031 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); 4032 4033 SDValue Res = DAG.getNode(ISD::OR, dl, OpVT, 4034 DAG.getNode(ISD::AND, dl, OpVT, Tmp1, Mask), 4035 DAG.getNode(ISD::AND, dl, OpVT, Tmp0, MaskNot)); 4036 if (VT == MVT::f32) { 4037 Res = DAG.getNode(ISD::BITCAST, dl, MVT::v2f32, Res); 4038 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, Res, 4039 DAG.getConstant(0, dl, MVT::i32)); 4040 } else { 4041 Res = DAG.getNode(ISD::BITCAST, dl, MVT::f64, Res); 4042 } 4043 4044 return Res; 4045 } 4046 4047 // Bitcast operand 1 to i32. 4048 if (SrcVT == MVT::f64) 4049 Tmp1 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32), 4050 Tmp1).getValue(1); 4051 Tmp1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp1); 4052 4053 // Or in the signbit with integer operations. 4054 SDValue Mask1 = DAG.getConstant(0x80000000, dl, MVT::i32); 4055 SDValue Mask2 = DAG.getConstant(0x7fffffff, dl, MVT::i32); 4056 Tmp1 = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp1, Mask1); 4057 if (VT == MVT::f32) { 4058 Tmp0 = DAG.getNode(ISD::AND, dl, MVT::i32, 4059 DAG.getNode(ISD::BITCAST, dl, MVT::i32, Tmp0), Mask2); 4060 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, 4061 DAG.getNode(ISD::OR, dl, MVT::i32, Tmp0, Tmp1)); 4062 } 4063 4064 // f64: Or the high part with signbit and then combine two parts. 4065 Tmp0 = DAG.getNode(ARMISD::VMOVRRD, dl, DAG.getVTList(MVT::i32, MVT::i32), 4066 Tmp0); 4067 SDValue Lo = Tmp0.getValue(0); 4068 SDValue Hi = DAG.getNode(ISD::AND, dl, MVT::i32, Tmp0.getValue(1), Mask2); 4069 Hi = DAG.getNode(ISD::OR, dl, MVT::i32, Hi, Tmp1); 4070 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi); 4071 } 4072 4073 SDValue ARMTargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) const{ 4074 MachineFunction &MF = DAG.getMachineFunction(); 4075 MachineFrameInfo *MFI = MF.getFrameInfo(); 4076 MFI->setReturnAddressIsTaken(true); 4077 4078 if (verifyReturnAddressArgumentIsConstant(Op, DAG)) 4079 return SDValue(); 4080 4081 EVT VT = Op.getValueType(); 4082 SDLoc dl(Op); 4083 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 4084 if (Depth) { 4085 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); 4086 SDValue Offset = DAG.getConstant(4, dl, MVT::i32); 4087 return DAG.getLoad(VT, dl, DAG.getEntryNode(), 4088 DAG.getNode(ISD::ADD, dl, VT, FrameAddr, Offset), 4089 MachinePointerInfo(), false, false, false, 0); 4090 } 4091 4092 // Return LR, which contains the return address. Mark it an implicit live-in. 4093 unsigned Reg = MF.addLiveIn(ARM::LR, getRegClassFor(MVT::i32)); 4094 return DAG.getCopyFromReg(DAG.getEntryNode(), dl, Reg, VT); 4095 } 4096 4097 SDValue ARMTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const { 4098 const ARMBaseRegisterInfo &ARI = 4099 *static_cast<const ARMBaseRegisterInfo*>(RegInfo); 4100 MachineFunction &MF = DAG.getMachineFunction(); 4101 MachineFrameInfo *MFI = MF.getFrameInfo(); 4102 MFI->setFrameAddressIsTaken(true); 4103 4104 EVT VT = Op.getValueType(); 4105 SDLoc dl(Op); // FIXME probably not meaningful 4106 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 4107 unsigned FrameReg = ARI.getFrameRegister(MF); 4108 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT); 4109 while (Depth--) 4110 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, 4111 MachinePointerInfo(), 4112 false, false, false, 0); 4113 return FrameAddr; 4114 } 4115 4116 // FIXME? Maybe this could be a TableGen attribute on some registers and 4117 // this table could be generated automatically from RegInfo. 4118 unsigned ARMTargetLowering::getRegisterByName(const char* RegName, EVT VT, 4119 SelectionDAG &DAG) const { 4120 unsigned Reg = StringSwitch<unsigned>(RegName) 4121 .Case("sp", ARM::SP) 4122 .Default(0); 4123 if (Reg) 4124 return Reg; 4125 report_fatal_error(Twine("Invalid register name \"" 4126 + StringRef(RegName) + "\".")); 4127 } 4128 4129 // Result is 64 bit value so split into two 32 bit values and return as a 4130 // pair of values. 4131 static void ExpandREAD_REGISTER(SDNode *N, SmallVectorImpl<SDValue> &Results, 4132 SelectionDAG &DAG) { 4133 SDLoc DL(N); 4134 4135 // This function is only supposed to be called for i64 type destination. 4136 assert(N->getValueType(0) == MVT::i64 4137 && "ExpandREAD_REGISTER called for non-i64 type result."); 4138 4139 SDValue Read = DAG.getNode(ISD::READ_REGISTER, DL, 4140 DAG.getVTList(MVT::i32, MVT::i32, MVT::Other), 4141 N->getOperand(0), 4142 N->getOperand(1)); 4143 4144 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Read.getValue(0), 4145 Read.getValue(1))); 4146 Results.push_back(Read.getOperand(0)); 4147 } 4148 4149 /// ExpandBITCAST - If the target supports VFP, this function is called to 4150 /// expand a bit convert where either the source or destination type is i64 to 4151 /// use a VMOVDRR or VMOVRRD node. This should not be done when the non-i64 4152 /// operand type is illegal (e.g., v2f32 for a target that doesn't support 4153 /// vectors), since the legalizer won't know what to do with that. 4154 static SDValue ExpandBITCAST(SDNode *N, SelectionDAG &DAG) { 4155 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 4156 SDLoc dl(N); 4157 SDValue Op = N->getOperand(0); 4158 4159 // This function is only supposed to be called for i64 types, either as the 4160 // source or destination of the bit convert. 4161 EVT SrcVT = Op.getValueType(); 4162 EVT DstVT = N->getValueType(0); 4163 assert((SrcVT == MVT::i64 || DstVT == MVT::i64) && 4164 "ExpandBITCAST called for non-i64 type"); 4165 4166 // Turn i64->f64 into VMOVDRR. 4167 if (SrcVT == MVT::i64 && TLI.isTypeLegal(DstVT)) { 4168 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op, 4169 DAG.getConstant(0, dl, MVT::i32)); 4170 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op, 4171 DAG.getConstant(1, dl, MVT::i32)); 4172 return DAG.getNode(ISD::BITCAST, dl, DstVT, 4173 DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Lo, Hi)); 4174 } 4175 4176 // Turn f64->i64 into VMOVRRD. 4177 if (DstVT == MVT::i64 && TLI.isTypeLegal(SrcVT)) { 4178 SDValue Cvt; 4179 if (DAG.getDataLayout().isBigEndian() && SrcVT.isVector() && 4180 SrcVT.getVectorNumElements() > 1) 4181 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl, 4182 DAG.getVTList(MVT::i32, MVT::i32), 4183 DAG.getNode(ARMISD::VREV64, dl, SrcVT, Op)); 4184 else 4185 Cvt = DAG.getNode(ARMISD::VMOVRRD, dl, 4186 DAG.getVTList(MVT::i32, MVT::i32), Op); 4187 // Merge the pieces into a single i64 value. 4188 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Cvt, Cvt.getValue(1)); 4189 } 4190 4191 return SDValue(); 4192 } 4193 4194 /// getZeroVector - Returns a vector of specified type with all zero elements. 4195 /// Zero vectors are used to represent vector negation and in those cases 4196 /// will be implemented with the NEON VNEG instruction. However, VNEG does 4197 /// not support i64 elements, so sometimes the zero vectors will need to be 4198 /// explicitly constructed. Regardless, use a canonical VMOV to create the 4199 /// zero vector. 4200 static SDValue getZeroVector(EVT VT, SelectionDAG &DAG, SDLoc dl) { 4201 assert(VT.isVector() && "Expected a vector type"); 4202 // The canonical modified immediate encoding of a zero vector is....0! 4203 SDValue EncodedVal = DAG.getTargetConstant(0, dl, MVT::i32); 4204 EVT VmovVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32; 4205 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, EncodedVal); 4206 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 4207 } 4208 4209 /// LowerShiftRightParts - Lower SRA_PARTS, which returns two 4210 /// i32 values and take a 2 x i32 value to shift plus a shift amount. 4211 SDValue ARMTargetLowering::LowerShiftRightParts(SDValue Op, 4212 SelectionDAG &DAG) const { 4213 assert(Op.getNumOperands() == 3 && "Not a double-shift!"); 4214 EVT VT = Op.getValueType(); 4215 unsigned VTBits = VT.getSizeInBits(); 4216 SDLoc dl(Op); 4217 SDValue ShOpLo = Op.getOperand(0); 4218 SDValue ShOpHi = Op.getOperand(1); 4219 SDValue ShAmt = Op.getOperand(2); 4220 SDValue ARMcc; 4221 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL; 4222 4223 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS); 4224 4225 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, 4226 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt); 4227 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt); 4228 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt, 4229 DAG.getConstant(VTBits, dl, MVT::i32)); 4230 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt); 4231 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); 4232 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt); 4233 4234 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 4235 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32), 4236 ISD::SETGE, ARMcc, DAG, dl); 4237 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt); 4238 SDValue Lo = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, TrueVal, ARMcc, 4239 CCR, Cmp); 4240 4241 SDValue Ops[2] = { Lo, Hi }; 4242 return DAG.getMergeValues(Ops, dl); 4243 } 4244 4245 /// LowerShiftLeftParts - Lower SHL_PARTS, which returns two 4246 /// i32 values and take a 2 x i32 value to shift plus a shift amount. 4247 SDValue ARMTargetLowering::LowerShiftLeftParts(SDValue Op, 4248 SelectionDAG &DAG) const { 4249 assert(Op.getNumOperands() == 3 && "Not a double-shift!"); 4250 EVT VT = Op.getValueType(); 4251 unsigned VTBits = VT.getSizeInBits(); 4252 SDLoc dl(Op); 4253 SDValue ShOpLo = Op.getOperand(0); 4254 SDValue ShOpHi = Op.getOperand(1); 4255 SDValue ShAmt = Op.getOperand(2); 4256 SDValue ARMcc; 4257 4258 assert(Op.getOpcode() == ISD::SHL_PARTS); 4259 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, 4260 DAG.getConstant(VTBits, dl, MVT::i32), ShAmt); 4261 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt); 4262 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt, 4263 DAG.getConstant(VTBits, dl, MVT::i32)); 4264 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt); 4265 SDValue Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt); 4266 4267 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); 4268 SDValue CCR = DAG.getRegister(ARM::CPSR, MVT::i32); 4269 SDValue Cmp = getARMCmp(ExtraShAmt, DAG.getConstant(0, dl, MVT::i32), 4270 ISD::SETGE, ARMcc, DAG, dl); 4271 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt); 4272 SDValue Hi = DAG.getNode(ARMISD::CMOV, dl, VT, FalseVal, Tmp3, ARMcc, 4273 CCR, Cmp); 4274 4275 SDValue Ops[2] = { Lo, Hi }; 4276 return DAG.getMergeValues(Ops, dl); 4277 } 4278 4279 SDValue ARMTargetLowering::LowerFLT_ROUNDS_(SDValue Op, 4280 SelectionDAG &DAG) const { 4281 // The rounding mode is in bits 23:22 of the FPSCR. 4282 // The ARM rounding mode value to FLT_ROUNDS mapping is 0->1, 1->2, 2->3, 3->0 4283 // The formula we use to implement this is (((FPSCR + 1 << 22) >> 22) & 3) 4284 // so that the shift + and get folded into a bitfield extract. 4285 SDLoc dl(Op); 4286 SDValue FPSCR = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::i32, 4287 DAG.getConstant(Intrinsic::arm_get_fpscr, dl, 4288 MVT::i32)); 4289 SDValue FltRounds = DAG.getNode(ISD::ADD, dl, MVT::i32, FPSCR, 4290 DAG.getConstant(1U << 22, dl, MVT::i32)); 4291 SDValue RMODE = DAG.getNode(ISD::SRL, dl, MVT::i32, FltRounds, 4292 DAG.getConstant(22, dl, MVT::i32)); 4293 return DAG.getNode(ISD::AND, dl, MVT::i32, RMODE, 4294 DAG.getConstant(3, dl, MVT::i32)); 4295 } 4296 4297 static SDValue LowerCTTZ(SDNode *N, SelectionDAG &DAG, 4298 const ARMSubtarget *ST) { 4299 SDLoc dl(N); 4300 EVT VT = N->getValueType(0); 4301 if (VT.isVector()) { 4302 assert(ST->hasNEON()); 4303 4304 // Compute the least significant set bit: LSB = X & -X 4305 SDValue X = N->getOperand(0); 4306 SDValue NX = DAG.getNode(ISD::SUB, dl, VT, getZeroVector(VT, DAG, dl), X); 4307 SDValue LSB = DAG.getNode(ISD::AND, dl, VT, X, NX); 4308 4309 EVT ElemTy = VT.getVectorElementType(); 4310 4311 if (ElemTy == MVT::i8) { 4312 // Compute with: cttz(x) = ctpop(lsb - 1) 4313 SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT, 4314 DAG.getTargetConstant(1, dl, ElemTy)); 4315 SDValue Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One); 4316 return DAG.getNode(ISD::CTPOP, dl, VT, Bits); 4317 } 4318 4319 if ((ElemTy == MVT::i16 || ElemTy == MVT::i32) && 4320 (N->getOpcode() == ISD::CTTZ_ZERO_UNDEF)) { 4321 // Compute with: cttz(x) = (width - 1) - ctlz(lsb), if x != 0 4322 unsigned NumBits = ElemTy.getSizeInBits(); 4323 SDValue WidthMinus1 = 4324 DAG.getNode(ARMISD::VMOVIMM, dl, VT, 4325 DAG.getTargetConstant(NumBits - 1, dl, ElemTy)); 4326 SDValue CTLZ = DAG.getNode(ISD::CTLZ, dl, VT, LSB); 4327 return DAG.getNode(ISD::SUB, dl, VT, WidthMinus1, CTLZ); 4328 } 4329 4330 // Compute with: cttz(x) = ctpop(lsb - 1) 4331 4332 // Since we can only compute the number of bits in a byte with vcnt.8, we 4333 // have to gather the result with pairwise addition (vpaddl) for i16, i32, 4334 // and i64. 4335 4336 // Compute LSB - 1. 4337 SDValue Bits; 4338 if (ElemTy == MVT::i64) { 4339 // Load constant 0xffff'ffff'ffff'ffff to register. 4340 SDValue FF = DAG.getNode(ARMISD::VMOVIMM, dl, VT, 4341 DAG.getTargetConstant(0x1eff, dl, MVT::i32)); 4342 Bits = DAG.getNode(ISD::ADD, dl, VT, LSB, FF); 4343 } else { 4344 SDValue One = DAG.getNode(ARMISD::VMOVIMM, dl, VT, 4345 DAG.getTargetConstant(1, dl, ElemTy)); 4346 Bits = DAG.getNode(ISD::SUB, dl, VT, LSB, One); 4347 } 4348 4349 // Count #bits with vcnt.8. 4350 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8; 4351 SDValue BitsVT8 = DAG.getNode(ISD::BITCAST, dl, VT8Bit, Bits); 4352 SDValue Cnt8 = DAG.getNode(ISD::CTPOP, dl, VT8Bit, BitsVT8); 4353 4354 // Gather the #bits with vpaddl (pairwise add.) 4355 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16; 4356 SDValue Cnt16 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT16Bit, 4357 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32), 4358 Cnt8); 4359 if (ElemTy == MVT::i16) 4360 return Cnt16; 4361 4362 EVT VT32Bit = VT.is64BitVector() ? MVT::v2i32 : MVT::v4i32; 4363 SDValue Cnt32 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT32Bit, 4364 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32), 4365 Cnt16); 4366 if (ElemTy == MVT::i32) 4367 return Cnt32; 4368 4369 assert(ElemTy == MVT::i64); 4370 SDValue Cnt64 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, 4371 DAG.getTargetConstant(Intrinsic::arm_neon_vpaddlu, dl, MVT::i32), 4372 Cnt32); 4373 return Cnt64; 4374 } 4375 4376 if (!ST->hasV6T2Ops()) 4377 return SDValue(); 4378 4379 SDValue rbit = DAG.getNode(ARMISD::RBIT, dl, VT, N->getOperand(0)); 4380 return DAG.getNode(ISD::CTLZ, dl, VT, rbit); 4381 } 4382 4383 /// getCTPOP16BitCounts - Returns a v8i8/v16i8 vector containing the bit-count 4384 /// for each 16-bit element from operand, repeated. The basic idea is to 4385 /// leverage vcnt to get the 8-bit counts, gather and add the results. 4386 /// 4387 /// Trace for v4i16: 4388 /// input = [v0 v1 v2 v3 ] (vi 16-bit element) 4389 /// cast: N0 = [w0 w1 w2 w3 w4 w5 w6 w7] (v0 = [w0 w1], wi 8-bit element) 4390 /// vcnt: N1 = [b0 b1 b2 b3 b4 b5 b6 b7] (bi = bit-count of 8-bit element wi) 4391 /// vrev: N2 = [b1 b0 b3 b2 b5 b4 b7 b6] 4392 /// [b0 b1 b2 b3 b4 b5 b6 b7] 4393 /// +[b1 b0 b3 b2 b5 b4 b7 b6] 4394 /// N3=N1+N2 = [k0 k0 k1 k1 k2 k2 k3 k3] (k0 = b0+b1 = bit-count of 16-bit v0, 4395 /// vuzp: = [k0 k1 k2 k3 k0 k1 k2 k3] each ki is 8-bits) 4396 static SDValue getCTPOP16BitCounts(SDNode *N, SelectionDAG &DAG) { 4397 EVT VT = N->getValueType(0); 4398 SDLoc DL(N); 4399 4400 EVT VT8Bit = VT.is64BitVector() ? MVT::v8i8 : MVT::v16i8; 4401 SDValue N0 = DAG.getNode(ISD::BITCAST, DL, VT8Bit, N->getOperand(0)); 4402 SDValue N1 = DAG.getNode(ISD::CTPOP, DL, VT8Bit, N0); 4403 SDValue N2 = DAG.getNode(ARMISD::VREV16, DL, VT8Bit, N1); 4404 SDValue N3 = DAG.getNode(ISD::ADD, DL, VT8Bit, N1, N2); 4405 return DAG.getNode(ARMISD::VUZP, DL, VT8Bit, N3, N3); 4406 } 4407 4408 /// lowerCTPOP16BitElements - Returns a v4i16/v8i16 vector containing the 4409 /// bit-count for each 16-bit element from the operand. We need slightly 4410 /// different sequencing for v4i16 and v8i16 to stay within NEON's available 4411 /// 64/128-bit registers. 4412 /// 4413 /// Trace for v4i16: 4414 /// input = [v0 v1 v2 v3 ] (vi 16-bit element) 4415 /// v8i8: BitCounts = [k0 k1 k2 k3 k0 k1 k2 k3 ] (ki is the bit-count of vi) 4416 /// v8i16:Extended = [k0 k1 k2 k3 k0 k1 k2 k3 ] 4417 /// v4i16:Extracted = [k0 k1 k2 k3 ] 4418 static SDValue lowerCTPOP16BitElements(SDNode *N, SelectionDAG &DAG) { 4419 EVT VT = N->getValueType(0); 4420 SDLoc DL(N); 4421 4422 SDValue BitCounts = getCTPOP16BitCounts(N, DAG); 4423 if (VT.is64BitVector()) { 4424 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, BitCounts); 4425 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, Extended, 4426 DAG.getIntPtrConstant(0, DL)); 4427 } else { 4428 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v8i8, 4429 BitCounts, DAG.getIntPtrConstant(0, DL)); 4430 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v8i16, Extracted); 4431 } 4432 } 4433 4434 /// lowerCTPOP32BitElements - Returns a v2i32/v4i32 vector containing the 4435 /// bit-count for each 32-bit element from the operand. The idea here is 4436 /// to split the vector into 16-bit elements, leverage the 16-bit count 4437 /// routine, and then combine the results. 4438 /// 4439 /// Trace for v2i32 (v4i32 similar with Extracted/Extended exchanged): 4440 /// input = [v0 v1 ] (vi: 32-bit elements) 4441 /// Bitcast = [w0 w1 w2 w3 ] (wi: 16-bit elements, v0 = [w0 w1]) 4442 /// Counts16 = [k0 k1 k2 k3 ] (ki: 16-bit elements, bit-count of wi) 4443 /// vrev: N0 = [k1 k0 k3 k2 ] 4444 /// [k0 k1 k2 k3 ] 4445 /// N1 =+[k1 k0 k3 k2 ] 4446 /// [k0 k2 k1 k3 ] 4447 /// N2 =+[k1 k3 k0 k2 ] 4448 /// [k0 k2 k1 k3 ] 4449 /// Extended =+[k1 k3 k0 k2 ] 4450 /// [k0 k2 ] 4451 /// Extracted=+[k1 k3 ] 4452 /// 4453 static SDValue lowerCTPOP32BitElements(SDNode *N, SelectionDAG &DAG) { 4454 EVT VT = N->getValueType(0); 4455 SDLoc DL(N); 4456 4457 EVT VT16Bit = VT.is64BitVector() ? MVT::v4i16 : MVT::v8i16; 4458 4459 SDValue Bitcast = DAG.getNode(ISD::BITCAST, DL, VT16Bit, N->getOperand(0)); 4460 SDValue Counts16 = lowerCTPOP16BitElements(Bitcast.getNode(), DAG); 4461 SDValue N0 = DAG.getNode(ARMISD::VREV32, DL, VT16Bit, Counts16); 4462 SDValue N1 = DAG.getNode(ISD::ADD, DL, VT16Bit, Counts16, N0); 4463 SDValue N2 = DAG.getNode(ARMISD::VUZP, DL, VT16Bit, N1, N1); 4464 4465 if (VT.is64BitVector()) { 4466 SDValue Extended = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, N2); 4467 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i32, Extended, 4468 DAG.getIntPtrConstant(0, DL)); 4469 } else { 4470 SDValue Extracted = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i16, N2, 4471 DAG.getIntPtrConstant(0, DL)); 4472 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::v4i32, Extracted); 4473 } 4474 } 4475 4476 static SDValue LowerCTPOP(SDNode *N, SelectionDAG &DAG, 4477 const ARMSubtarget *ST) { 4478 EVT VT = N->getValueType(0); 4479 4480 assert(ST->hasNEON() && "Custom ctpop lowering requires NEON."); 4481 assert((VT == MVT::v2i32 || VT == MVT::v4i32 || 4482 VT == MVT::v4i16 || VT == MVT::v8i16) && 4483 "Unexpected type for custom ctpop lowering"); 4484 4485 if (VT.getVectorElementType() == MVT::i32) 4486 return lowerCTPOP32BitElements(N, DAG); 4487 else 4488 return lowerCTPOP16BitElements(N, DAG); 4489 } 4490 4491 static SDValue LowerShift(SDNode *N, SelectionDAG &DAG, 4492 const ARMSubtarget *ST) { 4493 EVT VT = N->getValueType(0); 4494 SDLoc dl(N); 4495 4496 if (!VT.isVector()) 4497 return SDValue(); 4498 4499 // Lower vector shifts on NEON to use VSHL. 4500 assert(ST->hasNEON() && "unexpected vector shift"); 4501 4502 // Left shifts translate directly to the vshiftu intrinsic. 4503 if (N->getOpcode() == ISD::SHL) 4504 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, 4505 DAG.getConstant(Intrinsic::arm_neon_vshiftu, dl, 4506 MVT::i32), 4507 N->getOperand(0), N->getOperand(1)); 4508 4509 assert((N->getOpcode() == ISD::SRA || 4510 N->getOpcode() == ISD::SRL) && "unexpected vector shift opcode"); 4511 4512 // NEON uses the same intrinsics for both left and right shifts. For 4513 // right shifts, the shift amounts are negative, so negate the vector of 4514 // shift amounts. 4515 EVT ShiftVT = N->getOperand(1).getValueType(); 4516 SDValue NegatedCount = DAG.getNode(ISD::SUB, dl, ShiftVT, 4517 getZeroVector(ShiftVT, DAG, dl), 4518 N->getOperand(1)); 4519 Intrinsic::ID vshiftInt = (N->getOpcode() == ISD::SRA ? 4520 Intrinsic::arm_neon_vshifts : 4521 Intrinsic::arm_neon_vshiftu); 4522 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT, 4523 DAG.getConstant(vshiftInt, dl, MVT::i32), 4524 N->getOperand(0), NegatedCount); 4525 } 4526 4527 static SDValue Expand64BitShift(SDNode *N, SelectionDAG &DAG, 4528 const ARMSubtarget *ST) { 4529 EVT VT = N->getValueType(0); 4530 SDLoc dl(N); 4531 4532 // We can get here for a node like i32 = ISD::SHL i32, i64 4533 if (VT != MVT::i64) 4534 return SDValue(); 4535 4536 assert((N->getOpcode() == ISD::SRL || N->getOpcode() == ISD::SRA) && 4537 "Unknown shift to lower!"); 4538 4539 // We only lower SRA, SRL of 1 here, all others use generic lowering. 4540 if (!isa<ConstantSDNode>(N->getOperand(1)) || 4541 cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 1) 4542 return SDValue(); 4543 4544 // If we are in thumb mode, we don't have RRX. 4545 if (ST->isThumb1Only()) return SDValue(); 4546 4547 // Okay, we have a 64-bit SRA or SRL of 1. Lower this to an RRX expr. 4548 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0), 4549 DAG.getConstant(0, dl, MVT::i32)); 4550 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(0), 4551 DAG.getConstant(1, dl, MVT::i32)); 4552 4553 // First, build a SRA_FLAG/SRL_FLAG op, which shifts the top part by one and 4554 // captures the result into a carry flag. 4555 unsigned Opc = N->getOpcode() == ISD::SRL ? ARMISD::SRL_FLAG:ARMISD::SRA_FLAG; 4556 Hi = DAG.getNode(Opc, dl, DAG.getVTList(MVT::i32, MVT::Glue), Hi); 4557 4558 // The low part is an ARMISD::RRX operand, which shifts the carry in. 4559 Lo = DAG.getNode(ARMISD::RRX, dl, MVT::i32, Lo, Hi.getValue(1)); 4560 4561 // Merge the pieces into a single i64 value. 4562 return DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi); 4563 } 4564 4565 static SDValue LowerVSETCC(SDValue Op, SelectionDAG &DAG) { 4566 SDValue TmpOp0, TmpOp1; 4567 bool Invert = false; 4568 bool Swap = false; 4569 unsigned Opc = 0; 4570 4571 SDValue Op0 = Op.getOperand(0); 4572 SDValue Op1 = Op.getOperand(1); 4573 SDValue CC = Op.getOperand(2); 4574 EVT CmpVT = Op0.getValueType().changeVectorElementTypeToInteger(); 4575 EVT VT = Op.getValueType(); 4576 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get(); 4577 SDLoc dl(Op); 4578 4579 if (CmpVT.getVectorElementType() == MVT::i64) 4580 // 64-bit comparisons are not legal. We've marked SETCC as non-Custom, 4581 // but it's possible that our operands are 64-bit but our result is 32-bit. 4582 // Bail in this case. 4583 return SDValue(); 4584 4585 if (Op1.getValueType().isFloatingPoint()) { 4586 switch (SetCCOpcode) { 4587 default: llvm_unreachable("Illegal FP comparison"); 4588 case ISD::SETUNE: 4589 case ISD::SETNE: Invert = true; // Fallthrough 4590 case ISD::SETOEQ: 4591 case ISD::SETEQ: Opc = ARMISD::VCEQ; break; 4592 case ISD::SETOLT: 4593 case ISD::SETLT: Swap = true; // Fallthrough 4594 case ISD::SETOGT: 4595 case ISD::SETGT: Opc = ARMISD::VCGT; break; 4596 case ISD::SETOLE: 4597 case ISD::SETLE: Swap = true; // Fallthrough 4598 case ISD::SETOGE: 4599 case ISD::SETGE: Opc = ARMISD::VCGE; break; 4600 case ISD::SETUGE: Swap = true; // Fallthrough 4601 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break; 4602 case ISD::SETUGT: Swap = true; // Fallthrough 4603 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break; 4604 case ISD::SETUEQ: Invert = true; // Fallthrough 4605 case ISD::SETONE: 4606 // Expand this to (OLT | OGT). 4607 TmpOp0 = Op0; 4608 TmpOp1 = Op1; 4609 Opc = ISD::OR; 4610 Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0); 4611 Op1 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp0, TmpOp1); 4612 break; 4613 case ISD::SETUO: Invert = true; // Fallthrough 4614 case ISD::SETO: 4615 // Expand this to (OLT | OGE). 4616 TmpOp0 = Op0; 4617 TmpOp1 = Op1; 4618 Opc = ISD::OR; 4619 Op0 = DAG.getNode(ARMISD::VCGT, dl, CmpVT, TmpOp1, TmpOp0); 4620 Op1 = DAG.getNode(ARMISD::VCGE, dl, CmpVT, TmpOp0, TmpOp1); 4621 break; 4622 } 4623 } else { 4624 // Integer comparisons. 4625 switch (SetCCOpcode) { 4626 default: llvm_unreachable("Illegal integer comparison"); 4627 case ISD::SETNE: Invert = true; 4628 case ISD::SETEQ: Opc = ARMISD::VCEQ; break; 4629 case ISD::SETLT: Swap = true; 4630 case ISD::SETGT: Opc = ARMISD::VCGT; break; 4631 case ISD::SETLE: Swap = true; 4632 case ISD::SETGE: Opc = ARMISD::VCGE; break; 4633 case ISD::SETULT: Swap = true; 4634 case ISD::SETUGT: Opc = ARMISD::VCGTU; break; 4635 case ISD::SETULE: Swap = true; 4636 case ISD::SETUGE: Opc = ARMISD::VCGEU; break; 4637 } 4638 4639 // Detect VTST (Vector Test Bits) = icmp ne (and (op0, op1), zero). 4640 if (Opc == ARMISD::VCEQ) { 4641 4642 SDValue AndOp; 4643 if (ISD::isBuildVectorAllZeros(Op1.getNode())) 4644 AndOp = Op0; 4645 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) 4646 AndOp = Op1; 4647 4648 // Ignore bitconvert. 4649 if (AndOp.getNode() && AndOp.getOpcode() == ISD::BITCAST) 4650 AndOp = AndOp.getOperand(0); 4651 4652 if (AndOp.getNode() && AndOp.getOpcode() == ISD::AND) { 4653 Opc = ARMISD::VTST; 4654 Op0 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(0)); 4655 Op1 = DAG.getNode(ISD::BITCAST, dl, CmpVT, AndOp.getOperand(1)); 4656 Invert = !Invert; 4657 } 4658 } 4659 } 4660 4661 if (Swap) 4662 std::swap(Op0, Op1); 4663 4664 // If one of the operands is a constant vector zero, attempt to fold the 4665 // comparison to a specialized compare-against-zero form. 4666 SDValue SingleOp; 4667 if (ISD::isBuildVectorAllZeros(Op1.getNode())) 4668 SingleOp = Op0; 4669 else if (ISD::isBuildVectorAllZeros(Op0.getNode())) { 4670 if (Opc == ARMISD::VCGE) 4671 Opc = ARMISD::VCLEZ; 4672 else if (Opc == ARMISD::VCGT) 4673 Opc = ARMISD::VCLTZ; 4674 SingleOp = Op1; 4675 } 4676 4677 SDValue Result; 4678 if (SingleOp.getNode()) { 4679 switch (Opc) { 4680 case ARMISD::VCEQ: 4681 Result = DAG.getNode(ARMISD::VCEQZ, dl, CmpVT, SingleOp); break; 4682 case ARMISD::VCGE: 4683 Result = DAG.getNode(ARMISD::VCGEZ, dl, CmpVT, SingleOp); break; 4684 case ARMISD::VCLEZ: 4685 Result = DAG.getNode(ARMISD::VCLEZ, dl, CmpVT, SingleOp); break; 4686 case ARMISD::VCGT: 4687 Result = DAG.getNode(ARMISD::VCGTZ, dl, CmpVT, SingleOp); break; 4688 case ARMISD::VCLTZ: 4689 Result = DAG.getNode(ARMISD::VCLTZ, dl, CmpVT, SingleOp); break; 4690 default: 4691 Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1); 4692 } 4693 } else { 4694 Result = DAG.getNode(Opc, dl, CmpVT, Op0, Op1); 4695 } 4696 4697 Result = DAG.getSExtOrTrunc(Result, dl, VT); 4698 4699 if (Invert) 4700 Result = DAG.getNOT(dl, Result, VT); 4701 4702 return Result; 4703 } 4704 4705 /// isNEONModifiedImm - Check if the specified splat value corresponds to a 4706 /// valid vector constant for a NEON instruction with a "modified immediate" 4707 /// operand (e.g., VMOV). If so, return the encoded value. 4708 static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef, 4709 unsigned SplatBitSize, SelectionDAG &DAG, 4710 SDLoc dl, EVT &VT, bool is128Bits, 4711 NEONModImmType type) { 4712 unsigned OpCmode, Imm; 4713 4714 // SplatBitSize is set to the smallest size that splats the vector, so a 4715 // zero vector will always have SplatBitSize == 8. However, NEON modified 4716 // immediate instructions others than VMOV do not support the 8-bit encoding 4717 // of a zero vector, and the default encoding of zero is supposed to be the 4718 // 32-bit version. 4719 if (SplatBits == 0) 4720 SplatBitSize = 32; 4721 4722 switch (SplatBitSize) { 4723 case 8: 4724 if (type != VMOVModImm) 4725 return SDValue(); 4726 // Any 1-byte value is OK. Op=0, Cmode=1110. 4727 assert((SplatBits & ~0xff) == 0 && "one byte splat value is too big"); 4728 OpCmode = 0xe; 4729 Imm = SplatBits; 4730 VT = is128Bits ? MVT::v16i8 : MVT::v8i8; 4731 break; 4732 4733 case 16: 4734 // NEON's 16-bit VMOV supports splat values where only one byte is nonzero. 4735 VT = is128Bits ? MVT::v8i16 : MVT::v4i16; 4736 if ((SplatBits & ~0xff) == 0) { 4737 // Value = 0x00nn: Op=x, Cmode=100x. 4738 OpCmode = 0x8; 4739 Imm = SplatBits; 4740 break; 4741 } 4742 if ((SplatBits & ~0xff00) == 0) { 4743 // Value = 0xnn00: Op=x, Cmode=101x. 4744 OpCmode = 0xa; 4745 Imm = SplatBits >> 8; 4746 break; 4747 } 4748 return SDValue(); 4749 4750 case 32: 4751 // NEON's 32-bit VMOV supports splat values where: 4752 // * only one byte is nonzero, or 4753 // * the least significant byte is 0xff and the second byte is nonzero, or 4754 // * the least significant 2 bytes are 0xff and the third is nonzero. 4755 VT = is128Bits ? MVT::v4i32 : MVT::v2i32; 4756 if ((SplatBits & ~0xff) == 0) { 4757 // Value = 0x000000nn: Op=x, Cmode=000x. 4758 OpCmode = 0; 4759 Imm = SplatBits; 4760 break; 4761 } 4762 if ((SplatBits & ~0xff00) == 0) { 4763 // Value = 0x0000nn00: Op=x, Cmode=001x. 4764 OpCmode = 0x2; 4765 Imm = SplatBits >> 8; 4766 break; 4767 } 4768 if ((SplatBits & ~0xff0000) == 0) { 4769 // Value = 0x00nn0000: Op=x, Cmode=010x. 4770 OpCmode = 0x4; 4771 Imm = SplatBits >> 16; 4772 break; 4773 } 4774 if ((SplatBits & ~0xff000000) == 0) { 4775 // Value = 0xnn000000: Op=x, Cmode=011x. 4776 OpCmode = 0x6; 4777 Imm = SplatBits >> 24; 4778 break; 4779 } 4780 4781 // cmode == 0b1100 and cmode == 0b1101 are not supported for VORR or VBIC 4782 if (type == OtherModImm) return SDValue(); 4783 4784 if ((SplatBits & ~0xffff) == 0 && 4785 ((SplatBits | SplatUndef) & 0xff) == 0xff) { 4786 // Value = 0x0000nnff: Op=x, Cmode=1100. 4787 OpCmode = 0xc; 4788 Imm = SplatBits >> 8; 4789 break; 4790 } 4791 4792 if ((SplatBits & ~0xffffff) == 0 && 4793 ((SplatBits | SplatUndef) & 0xffff) == 0xffff) { 4794 // Value = 0x00nnffff: Op=x, Cmode=1101. 4795 OpCmode = 0xd; 4796 Imm = SplatBits >> 16; 4797 break; 4798 } 4799 4800 // Note: there are a few 32-bit splat values (specifically: 00ffff00, 4801 // ff000000, ff0000ff, and ffff00ff) that are valid for VMOV.I64 but not 4802 // VMOV.I32. A (very) minor optimization would be to replicate the value 4803 // and fall through here to test for a valid 64-bit splat. But, then the 4804 // caller would also need to check and handle the change in size. 4805 return SDValue(); 4806 4807 case 64: { 4808 if (type != VMOVModImm) 4809 return SDValue(); 4810 // NEON has a 64-bit VMOV splat where each byte is either 0 or 0xff. 4811 uint64_t BitMask = 0xff; 4812 uint64_t Val = 0; 4813 unsigned ImmMask = 1; 4814 Imm = 0; 4815 for (int ByteNum = 0; ByteNum < 8; ++ByteNum) { 4816 if (((SplatBits | SplatUndef) & BitMask) == BitMask) { 4817 Val |= BitMask; 4818 Imm |= ImmMask; 4819 } else if ((SplatBits & BitMask) != 0) { 4820 return SDValue(); 4821 } 4822 BitMask <<= 8; 4823 ImmMask <<= 1; 4824 } 4825 4826 if (DAG.getDataLayout().isBigEndian()) 4827 // swap higher and lower 32 bit word 4828 Imm = ((Imm & 0xf) << 4) | ((Imm & 0xf0) >> 4); 4829 4830 // Op=1, Cmode=1110. 4831 OpCmode = 0x1e; 4832 VT = is128Bits ? MVT::v2i64 : MVT::v1i64; 4833 break; 4834 } 4835 4836 default: 4837 llvm_unreachable("unexpected size for isNEONModifiedImm"); 4838 } 4839 4840 unsigned EncodedVal = ARM_AM::createNEONModImm(OpCmode, Imm); 4841 return DAG.getTargetConstant(EncodedVal, dl, MVT::i32); 4842 } 4843 4844 SDValue ARMTargetLowering::LowerConstantFP(SDValue Op, SelectionDAG &DAG, 4845 const ARMSubtarget *ST) const { 4846 if (!ST->hasVFP3()) 4847 return SDValue(); 4848 4849 bool IsDouble = Op.getValueType() == MVT::f64; 4850 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Op); 4851 4852 // Use the default (constant pool) lowering for double constants when we have 4853 // an SP-only FPU 4854 if (IsDouble && Subtarget->isFPOnlySP()) 4855 return SDValue(); 4856 4857 // Try splatting with a VMOV.f32... 4858 APFloat FPVal = CFP->getValueAPF(); 4859 int ImmVal = IsDouble ? ARM_AM::getFP64Imm(FPVal) : ARM_AM::getFP32Imm(FPVal); 4860 4861 if (ImmVal != -1) { 4862 if (IsDouble || !ST->useNEONForSinglePrecisionFP()) { 4863 // We have code in place to select a valid ConstantFP already, no need to 4864 // do any mangling. 4865 return Op; 4866 } 4867 4868 // It's a float and we are trying to use NEON operations where 4869 // possible. Lower it to a splat followed by an extract. 4870 SDLoc DL(Op); 4871 SDValue NewVal = DAG.getTargetConstant(ImmVal, DL, MVT::i32); 4872 SDValue VecConstant = DAG.getNode(ARMISD::VMOVFPIMM, DL, MVT::v2f32, 4873 NewVal); 4874 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecConstant, 4875 DAG.getConstant(0, DL, MVT::i32)); 4876 } 4877 4878 // The rest of our options are NEON only, make sure that's allowed before 4879 // proceeding.. 4880 if (!ST->hasNEON() || (!IsDouble && !ST->useNEONForSinglePrecisionFP())) 4881 return SDValue(); 4882 4883 EVT VMovVT; 4884 uint64_t iVal = FPVal.bitcastToAPInt().getZExtValue(); 4885 4886 // It wouldn't really be worth bothering for doubles except for one very 4887 // important value, which does happen to match: 0.0. So make sure we don't do 4888 // anything stupid. 4889 if (IsDouble && (iVal & 0xffffffff) != (iVal >> 32)) 4890 return SDValue(); 4891 4892 // Try a VMOV.i32 (FIXME: i8, i16, or i64 could work too). 4893 SDValue NewVal = isNEONModifiedImm(iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), 4894 VMovVT, false, VMOVModImm); 4895 if (NewVal != SDValue()) { 4896 SDLoc DL(Op); 4897 SDValue VecConstant = DAG.getNode(ARMISD::VMOVIMM, DL, VMovVT, 4898 NewVal); 4899 if (IsDouble) 4900 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant); 4901 4902 // It's a float: cast and extract a vector element. 4903 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32, 4904 VecConstant); 4905 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant, 4906 DAG.getConstant(0, DL, MVT::i32)); 4907 } 4908 4909 // Finally, try a VMVN.i32 4910 NewVal = isNEONModifiedImm(~iVal & 0xffffffffU, 0, 32, DAG, SDLoc(Op), VMovVT, 4911 false, VMVNModImm); 4912 if (NewVal != SDValue()) { 4913 SDLoc DL(Op); 4914 SDValue VecConstant = DAG.getNode(ARMISD::VMVNIMM, DL, VMovVT, NewVal); 4915 4916 if (IsDouble) 4917 return DAG.getNode(ISD::BITCAST, DL, MVT::f64, VecConstant); 4918 4919 // It's a float: cast and extract a vector element. 4920 SDValue VecFConstant = DAG.getNode(ISD::BITCAST, DL, MVT::v2f32, 4921 VecConstant); 4922 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, VecFConstant, 4923 DAG.getConstant(0, DL, MVT::i32)); 4924 } 4925 4926 return SDValue(); 4927 } 4928 4929 // check if an VEXT instruction can handle the shuffle mask when the 4930 // vector sources of the shuffle are the same. 4931 static bool isSingletonVEXTMask(ArrayRef<int> M, EVT VT, unsigned &Imm) { 4932 unsigned NumElts = VT.getVectorNumElements(); 4933 4934 // Assume that the first shuffle index is not UNDEF. Fail if it is. 4935 if (M[0] < 0) 4936 return false; 4937 4938 Imm = M[0]; 4939 4940 // If this is a VEXT shuffle, the immediate value is the index of the first 4941 // element. The other shuffle indices must be the successive elements after 4942 // the first one. 4943 unsigned ExpectedElt = Imm; 4944 for (unsigned i = 1; i < NumElts; ++i) { 4945 // Increment the expected index. If it wraps around, just follow it 4946 // back to index zero and keep going. 4947 ++ExpectedElt; 4948 if (ExpectedElt == NumElts) 4949 ExpectedElt = 0; 4950 4951 if (M[i] < 0) continue; // ignore UNDEF indices 4952 if (ExpectedElt != static_cast<unsigned>(M[i])) 4953 return false; 4954 } 4955 4956 return true; 4957 } 4958 4959 4960 static bool isVEXTMask(ArrayRef<int> M, EVT VT, 4961 bool &ReverseVEXT, unsigned &Imm) { 4962 unsigned NumElts = VT.getVectorNumElements(); 4963 ReverseVEXT = false; 4964 4965 // Assume that the first shuffle index is not UNDEF. Fail if it is. 4966 if (M[0] < 0) 4967 return false; 4968 4969 Imm = M[0]; 4970 4971 // If this is a VEXT shuffle, the immediate value is the index of the first 4972 // element. The other shuffle indices must be the successive elements after 4973 // the first one. 4974 unsigned ExpectedElt = Imm; 4975 for (unsigned i = 1; i < NumElts; ++i) { 4976 // Increment the expected index. If it wraps around, it may still be 4977 // a VEXT but the source vectors must be swapped. 4978 ExpectedElt += 1; 4979 if (ExpectedElt == NumElts * 2) { 4980 ExpectedElt = 0; 4981 ReverseVEXT = true; 4982 } 4983 4984 if (M[i] < 0) continue; // ignore UNDEF indices 4985 if (ExpectedElt != static_cast<unsigned>(M[i])) 4986 return false; 4987 } 4988 4989 // Adjust the index value if the source operands will be swapped. 4990 if (ReverseVEXT) 4991 Imm -= NumElts; 4992 4993 return true; 4994 } 4995 4996 /// isVREVMask - Check if a vector shuffle corresponds to a VREV 4997 /// instruction with the specified blocksize. (The order of the elements 4998 /// within each block of the vector is reversed.) 4999 static bool isVREVMask(ArrayRef<int> M, EVT VT, unsigned BlockSize) { 5000 assert((BlockSize==16 || BlockSize==32 || BlockSize==64) && 5001 "Only possible block sizes for VREV are: 16, 32, 64"); 5002 5003 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5004 if (EltSz == 64) 5005 return false; 5006 5007 unsigned NumElts = VT.getVectorNumElements(); 5008 unsigned BlockElts = M[0] + 1; 5009 // If the first shuffle index is UNDEF, be optimistic. 5010 if (M[0] < 0) 5011 BlockElts = BlockSize / EltSz; 5012 5013 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz) 5014 return false; 5015 5016 for (unsigned i = 0; i < NumElts; ++i) { 5017 if (M[i] < 0) continue; // ignore UNDEF indices 5018 if ((unsigned) M[i] != (i - i%BlockElts) + (BlockElts - 1 - i%BlockElts)) 5019 return false; 5020 } 5021 5022 return true; 5023 } 5024 5025 static bool isVTBLMask(ArrayRef<int> M, EVT VT) { 5026 // We can handle <8 x i8> vector shuffles. If the index in the mask is out of 5027 // range, then 0 is placed into the resulting vector. So pretty much any mask 5028 // of 8 elements can work here. 5029 return VT == MVT::v8i8 && M.size() == 8; 5030 } 5031 5032 // Checks whether the shuffle mask represents a vector transpose (VTRN) by 5033 // checking that pairs of elements in the shuffle mask represent the same index 5034 // in each vector, incrementing the expected index by 2 at each step. 5035 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 2, 6] 5036 // v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,c,g} 5037 // v2={e,f,g,h} 5038 // WhichResult gives the offset for each element in the mask based on which 5039 // of the two results it belongs to. 5040 // 5041 // The transpose can be represented either as: 5042 // result1 = shufflevector v1, v2, result1_shuffle_mask 5043 // result2 = shufflevector v1, v2, result2_shuffle_mask 5044 // where v1/v2 and the shuffle masks have the same number of elements 5045 // (here WhichResult (see below) indicates which result is being checked) 5046 // 5047 // or as: 5048 // results = shufflevector v1, v2, shuffle_mask 5049 // where both results are returned in one vector and the shuffle mask has twice 5050 // as many elements as v1/v2 (here WhichResult will always be 0 if true) here we 5051 // want to check the low half and high half of the shuffle mask as if it were 5052 // the other case 5053 static bool isVTRNMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) { 5054 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5055 if (EltSz == 64) 5056 return false; 5057 5058 unsigned NumElts = VT.getVectorNumElements(); 5059 if (M.size() != NumElts && M.size() != NumElts*2) 5060 return false; 5061 5062 // If the mask is twice as long as the input vector then we need to check the 5063 // upper and lower parts of the mask with a matching value for WhichResult 5064 // FIXME: A mask with only even values will be rejected in case the first 5065 // element is undefined, e.g. [-1, 4, 2, 6] will be rejected, because only 5066 // M[0] is used to determine WhichResult 5067 for (unsigned i = 0; i < M.size(); i += NumElts) { 5068 if (M.size() == NumElts * 2) 5069 WhichResult = i / NumElts; 5070 else 5071 WhichResult = M[i] == 0 ? 0 : 1; 5072 for (unsigned j = 0; j < NumElts; j += 2) { 5073 if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) || 5074 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + NumElts + WhichResult)) 5075 return false; 5076 } 5077 } 5078 5079 if (M.size() == NumElts*2) 5080 WhichResult = 0; 5081 5082 return true; 5083 } 5084 5085 /// isVTRN_v_undef_Mask - Special case of isVTRNMask for canonical form of 5086 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 5087 /// Mask is e.g., <0, 0, 2, 2> instead of <0, 4, 2, 6>. 5088 static bool isVTRN_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){ 5089 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5090 if (EltSz == 64) 5091 return false; 5092 5093 unsigned NumElts = VT.getVectorNumElements(); 5094 if (M.size() != NumElts && M.size() != NumElts*2) 5095 return false; 5096 5097 for (unsigned i = 0; i < M.size(); i += NumElts) { 5098 if (M.size() == NumElts * 2) 5099 WhichResult = i / NumElts; 5100 else 5101 WhichResult = M[i] == 0 ? 0 : 1; 5102 for (unsigned j = 0; j < NumElts; j += 2) { 5103 if ((M[i+j] >= 0 && (unsigned) M[i+j] != j + WhichResult) || 5104 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != j + WhichResult)) 5105 return false; 5106 } 5107 } 5108 5109 if (M.size() == NumElts*2) 5110 WhichResult = 0; 5111 5112 return true; 5113 } 5114 5115 // Checks whether the shuffle mask represents a vector unzip (VUZP) by checking 5116 // that the mask elements are either all even and in steps of size 2 or all odd 5117 // and in steps of size 2. 5118 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 2, 4, 6] 5119 // v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,c,e,g} 5120 // v2={e,f,g,h} 5121 // Requires similar checks to that of isVTRNMask with 5122 // respect the how results are returned. 5123 static bool isVUZPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) { 5124 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5125 if (EltSz == 64) 5126 return false; 5127 5128 unsigned NumElts = VT.getVectorNumElements(); 5129 if (M.size() != NumElts && M.size() != NumElts*2) 5130 return false; 5131 5132 for (unsigned i = 0; i < M.size(); i += NumElts) { 5133 WhichResult = M[i] == 0 ? 0 : 1; 5134 for (unsigned j = 0; j < NumElts; ++j) { 5135 if (M[i+j] >= 0 && (unsigned) M[i+j] != 2 * j + WhichResult) 5136 return false; 5137 } 5138 } 5139 5140 if (M.size() == NumElts*2) 5141 WhichResult = 0; 5142 5143 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 5144 if (VT.is64BitVector() && EltSz == 32) 5145 return false; 5146 5147 return true; 5148 } 5149 5150 /// isVUZP_v_undef_Mask - Special case of isVUZPMask for canonical form of 5151 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 5152 /// Mask is e.g., <0, 2, 0, 2> instead of <0, 2, 4, 6>, 5153 static bool isVUZP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){ 5154 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5155 if (EltSz == 64) 5156 return false; 5157 5158 unsigned NumElts = VT.getVectorNumElements(); 5159 if (M.size() != NumElts && M.size() != NumElts*2) 5160 return false; 5161 5162 unsigned Half = NumElts / 2; 5163 for (unsigned i = 0; i < M.size(); i += NumElts) { 5164 WhichResult = M[i] == 0 ? 0 : 1; 5165 for (unsigned j = 0; j < NumElts; j += Half) { 5166 unsigned Idx = WhichResult; 5167 for (unsigned k = 0; k < Half; ++k) { 5168 int MIdx = M[i + j + k]; 5169 if (MIdx >= 0 && (unsigned) MIdx != Idx) 5170 return false; 5171 Idx += 2; 5172 } 5173 } 5174 } 5175 5176 if (M.size() == NumElts*2) 5177 WhichResult = 0; 5178 5179 // VUZP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 5180 if (VT.is64BitVector() && EltSz == 32) 5181 return false; 5182 5183 return true; 5184 } 5185 5186 // Checks whether the shuffle mask represents a vector zip (VZIP) by checking 5187 // that pairs of elements of the shufflemask represent the same index in each 5188 // vector incrementing sequentially through the vectors. 5189 // e.g. For v1,v2 of type v4i32 a valid shuffle mask is: [0, 4, 1, 5] 5190 // v1={a,b,c,d} => x=shufflevector v1, v2 shufflemask => x={a,e,b,f} 5191 // v2={e,f,g,h} 5192 // Requires similar checks to that of isVTRNMask with respect the how results 5193 // are returned. 5194 static bool isVZIPMask(ArrayRef<int> M, EVT VT, unsigned &WhichResult) { 5195 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5196 if (EltSz == 64) 5197 return false; 5198 5199 unsigned NumElts = VT.getVectorNumElements(); 5200 if (M.size() != NumElts && M.size() != NumElts*2) 5201 return false; 5202 5203 for (unsigned i = 0; i < M.size(); i += NumElts) { 5204 WhichResult = M[i] == 0 ? 0 : 1; 5205 unsigned Idx = WhichResult * NumElts / 2; 5206 for (unsigned j = 0; j < NumElts; j += 2) { 5207 if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) || 5208 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx + NumElts)) 5209 return false; 5210 Idx += 1; 5211 } 5212 } 5213 5214 if (M.size() == NumElts*2) 5215 WhichResult = 0; 5216 5217 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 5218 if (VT.is64BitVector() && EltSz == 32) 5219 return false; 5220 5221 return true; 5222 } 5223 5224 /// isVZIP_v_undef_Mask - Special case of isVZIPMask for canonical form of 5225 /// "vector_shuffle v, v", i.e., "vector_shuffle v, undef". 5226 /// Mask is e.g., <0, 0, 1, 1> instead of <0, 4, 1, 5>. 5227 static bool isVZIP_v_undef_Mask(ArrayRef<int> M, EVT VT, unsigned &WhichResult){ 5228 unsigned EltSz = VT.getVectorElementType().getSizeInBits(); 5229 if (EltSz == 64) 5230 return false; 5231 5232 unsigned NumElts = VT.getVectorNumElements(); 5233 if (M.size() != NumElts && M.size() != NumElts*2) 5234 return false; 5235 5236 for (unsigned i = 0; i < M.size(); i += NumElts) { 5237 WhichResult = M[i] == 0 ? 0 : 1; 5238 unsigned Idx = WhichResult * NumElts / 2; 5239 for (unsigned j = 0; j < NumElts; j += 2) { 5240 if ((M[i+j] >= 0 && (unsigned) M[i+j] != Idx) || 5241 (M[i+j+1] >= 0 && (unsigned) M[i+j+1] != Idx)) 5242 return false; 5243 Idx += 1; 5244 } 5245 } 5246 5247 if (M.size() == NumElts*2) 5248 WhichResult = 0; 5249 5250 // VZIP.32 for 64-bit vectors is a pseudo-instruction alias for VTRN.32. 5251 if (VT.is64BitVector() && EltSz == 32) 5252 return false; 5253 5254 return true; 5255 } 5256 5257 /// Check if \p ShuffleMask is a NEON two-result shuffle (VZIP, VUZP, VTRN), 5258 /// and return the corresponding ARMISD opcode if it is, or 0 if it isn't. 5259 static unsigned isNEONTwoResultShuffleMask(ArrayRef<int> ShuffleMask, EVT VT, 5260 unsigned &WhichResult, 5261 bool &isV_UNDEF) { 5262 isV_UNDEF = false; 5263 if (isVTRNMask(ShuffleMask, VT, WhichResult)) 5264 return ARMISD::VTRN; 5265 if (isVUZPMask(ShuffleMask, VT, WhichResult)) 5266 return ARMISD::VUZP; 5267 if (isVZIPMask(ShuffleMask, VT, WhichResult)) 5268 return ARMISD::VZIP; 5269 5270 isV_UNDEF = true; 5271 if (isVTRN_v_undef_Mask(ShuffleMask, VT, WhichResult)) 5272 return ARMISD::VTRN; 5273 if (isVUZP_v_undef_Mask(ShuffleMask, VT, WhichResult)) 5274 return ARMISD::VUZP; 5275 if (isVZIP_v_undef_Mask(ShuffleMask, VT, WhichResult)) 5276 return ARMISD::VZIP; 5277 5278 return 0; 5279 } 5280 5281 /// \return true if this is a reverse operation on an vector. 5282 static bool isReverseMask(ArrayRef<int> M, EVT VT) { 5283 unsigned NumElts = VT.getVectorNumElements(); 5284 // Make sure the mask has the right size. 5285 if (NumElts != M.size()) 5286 return false; 5287 5288 // Look for <15, ..., 3, -1, 1, 0>. 5289 for (unsigned i = 0; i != NumElts; ++i) 5290 if (M[i] >= 0 && M[i] != (int) (NumElts - 1 - i)) 5291 return false; 5292 5293 return true; 5294 } 5295 5296 // If N is an integer constant that can be moved into a register in one 5297 // instruction, return an SDValue of such a constant (will become a MOV 5298 // instruction). Otherwise return null. 5299 static SDValue IsSingleInstrConstant(SDValue N, SelectionDAG &DAG, 5300 const ARMSubtarget *ST, SDLoc dl) { 5301 uint64_t Val; 5302 if (!isa<ConstantSDNode>(N)) 5303 return SDValue(); 5304 Val = cast<ConstantSDNode>(N)->getZExtValue(); 5305 5306 if (ST->isThumb1Only()) { 5307 if (Val <= 255 || ~Val <= 255) 5308 return DAG.getConstant(Val, dl, MVT::i32); 5309 } else { 5310 if (ARM_AM::getSOImmVal(Val) != -1 || ARM_AM::getSOImmVal(~Val) != -1) 5311 return DAG.getConstant(Val, dl, MVT::i32); 5312 } 5313 return SDValue(); 5314 } 5315 5316 // If this is a case we can't handle, return null and let the default 5317 // expansion code take care of it. 5318 SDValue ARMTargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG, 5319 const ARMSubtarget *ST) const { 5320 BuildVectorSDNode *BVN = cast<BuildVectorSDNode>(Op.getNode()); 5321 SDLoc dl(Op); 5322 EVT VT = Op.getValueType(); 5323 5324 APInt SplatBits, SplatUndef; 5325 unsigned SplatBitSize; 5326 bool HasAnyUndefs; 5327 if (BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 5328 if (SplatBitSize <= 64) { 5329 // Check if an immediate VMOV works. 5330 EVT VmovVT; 5331 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(), 5332 SplatUndef.getZExtValue(), SplatBitSize, 5333 DAG, dl, VmovVT, VT.is128BitVector(), 5334 VMOVModImm); 5335 if (Val.getNode()) { 5336 SDValue Vmov = DAG.getNode(ARMISD::VMOVIMM, dl, VmovVT, Val); 5337 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 5338 } 5339 5340 // Try an immediate VMVN. 5341 uint64_t NegatedImm = (~SplatBits).getZExtValue(); 5342 Val = isNEONModifiedImm(NegatedImm, 5343 SplatUndef.getZExtValue(), SplatBitSize, 5344 DAG, dl, VmovVT, VT.is128BitVector(), 5345 VMVNModImm); 5346 if (Val.getNode()) { 5347 SDValue Vmov = DAG.getNode(ARMISD::VMVNIMM, dl, VmovVT, Val); 5348 return DAG.getNode(ISD::BITCAST, dl, VT, Vmov); 5349 } 5350 5351 // Use vmov.f32 to materialize other v2f32 and v4f32 splats. 5352 if ((VT == MVT::v2f32 || VT == MVT::v4f32) && SplatBitSize == 32) { 5353 int ImmVal = ARM_AM::getFP32Imm(SplatBits); 5354 if (ImmVal != -1) { 5355 SDValue Val = DAG.getTargetConstant(ImmVal, dl, MVT::i32); 5356 return DAG.getNode(ARMISD::VMOVFPIMM, dl, VT, Val); 5357 } 5358 } 5359 } 5360 } 5361 5362 // Scan through the operands to see if only one value is used. 5363 // 5364 // As an optimisation, even if more than one value is used it may be more 5365 // profitable to splat with one value then change some lanes. 5366 // 5367 // Heuristically we decide to do this if the vector has a "dominant" value, 5368 // defined as splatted to more than half of the lanes. 5369 unsigned NumElts = VT.getVectorNumElements(); 5370 bool isOnlyLowElement = true; 5371 bool usesOnlyOneValue = true; 5372 bool hasDominantValue = false; 5373 bool isConstant = true; 5374 5375 // Map of the number of times a particular SDValue appears in the 5376 // element list. 5377 DenseMap<SDValue, unsigned> ValueCounts; 5378 SDValue Value; 5379 for (unsigned i = 0; i < NumElts; ++i) { 5380 SDValue V = Op.getOperand(i); 5381 if (V.getOpcode() == ISD::UNDEF) 5382 continue; 5383 if (i > 0) 5384 isOnlyLowElement = false; 5385 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V)) 5386 isConstant = false; 5387 5388 ValueCounts.insert(std::make_pair(V, 0)); 5389 unsigned &Count = ValueCounts[V]; 5390 5391 // Is this value dominant? (takes up more than half of the lanes) 5392 if (++Count > (NumElts / 2)) { 5393 hasDominantValue = true; 5394 Value = V; 5395 } 5396 } 5397 if (ValueCounts.size() != 1) 5398 usesOnlyOneValue = false; 5399 if (!Value.getNode() && ValueCounts.size() > 0) 5400 Value = ValueCounts.begin()->first; 5401 5402 if (ValueCounts.size() == 0) 5403 return DAG.getUNDEF(VT); 5404 5405 // Loads are better lowered with insert_vector_elt/ARMISD::BUILD_VECTOR. 5406 // Keep going if we are hitting this case. 5407 if (isOnlyLowElement && !ISD::isNormalLoad(Value.getNode())) 5408 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value); 5409 5410 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 5411 5412 // Use VDUP for non-constant splats. For f32 constant splats, reduce to 5413 // i32 and try again. 5414 if (hasDominantValue && EltSize <= 32) { 5415 if (!isConstant) { 5416 SDValue N; 5417 5418 // If we are VDUPing a value that comes directly from a vector, that will 5419 // cause an unnecessary move to and from a GPR, where instead we could 5420 // just use VDUPLANE. We can only do this if the lane being extracted 5421 // is at a constant index, as the VDUP from lane instructions only have 5422 // constant-index forms. 5423 if (Value->getOpcode() == ISD::EXTRACT_VECTOR_ELT && 5424 isa<ConstantSDNode>(Value->getOperand(1))) { 5425 // We need to create a new undef vector to use for the VDUPLANE if the 5426 // size of the vector from which we get the value is different than the 5427 // size of the vector that we need to create. We will insert the element 5428 // such that the register coalescer will remove unnecessary copies. 5429 if (VT != Value->getOperand(0).getValueType()) { 5430 ConstantSDNode *constIndex; 5431 constIndex = dyn_cast<ConstantSDNode>(Value->getOperand(1)); 5432 assert(constIndex && "The index is not a constant!"); 5433 unsigned index = constIndex->getAPIntValue().getLimitedValue() % 5434 VT.getVectorNumElements(); 5435 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT, 5436 DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT), 5437 Value, DAG.getConstant(index, dl, MVT::i32)), 5438 DAG.getConstant(index, dl, MVT::i32)); 5439 } else 5440 N = DAG.getNode(ARMISD::VDUPLANE, dl, VT, 5441 Value->getOperand(0), Value->getOperand(1)); 5442 } else 5443 N = DAG.getNode(ARMISD::VDUP, dl, VT, Value); 5444 5445 if (!usesOnlyOneValue) { 5446 // The dominant value was splatted as 'N', but we now have to insert 5447 // all differing elements. 5448 for (unsigned I = 0; I < NumElts; ++I) { 5449 if (Op.getOperand(I) == Value) 5450 continue; 5451 SmallVector<SDValue, 3> Ops; 5452 Ops.push_back(N); 5453 Ops.push_back(Op.getOperand(I)); 5454 Ops.push_back(DAG.getConstant(I, dl, MVT::i32)); 5455 N = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Ops); 5456 } 5457 } 5458 return N; 5459 } 5460 if (VT.getVectorElementType().isFloatingPoint()) { 5461 SmallVector<SDValue, 8> Ops; 5462 for (unsigned i = 0; i < NumElts; ++i) 5463 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, MVT::i32, 5464 Op.getOperand(i))); 5465 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts); 5466 SDValue Val = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, Ops); 5467 Val = LowerBUILD_VECTOR(Val, DAG, ST); 5468 if (Val.getNode()) 5469 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 5470 } 5471 if (usesOnlyOneValue) { 5472 SDValue Val = IsSingleInstrConstant(Value, DAG, ST, dl); 5473 if (isConstant && Val.getNode()) 5474 return DAG.getNode(ARMISD::VDUP, dl, VT, Val); 5475 } 5476 } 5477 5478 // If all elements are constants and the case above didn't get hit, fall back 5479 // to the default expansion, which will generate a load from the constant 5480 // pool. 5481 if (isConstant) 5482 return SDValue(); 5483 5484 // Empirical tests suggest this is rarely worth it for vectors of length <= 2. 5485 if (NumElts >= 4) { 5486 SDValue shuffle = ReconstructShuffle(Op, DAG); 5487 if (shuffle != SDValue()) 5488 return shuffle; 5489 } 5490 5491 // Vectors with 32- or 64-bit elements can be built by directly assigning 5492 // the subregisters. Lower it to an ARMISD::BUILD_VECTOR so the operands 5493 // will be legalized. 5494 if (EltSize >= 32) { 5495 // Do the expansion with floating-point types, since that is what the VFP 5496 // registers are defined to use, and since i64 is not legal. 5497 EVT EltVT = EVT::getFloatingPointVT(EltSize); 5498 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts); 5499 SmallVector<SDValue, 8> Ops; 5500 for (unsigned i = 0; i < NumElts; ++i) 5501 Ops.push_back(DAG.getNode(ISD::BITCAST, dl, EltVT, Op.getOperand(i))); 5502 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops); 5503 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 5504 } 5505 5506 // If all else fails, just use a sequence of INSERT_VECTOR_ELT when we 5507 // know the default expansion would otherwise fall back on something even 5508 // worse. For a vector with one or two non-undef values, that's 5509 // scalar_to_vector for the elements followed by a shuffle (provided the 5510 // shuffle is valid for the target) and materialization element by element 5511 // on the stack followed by a load for everything else. 5512 if (!isConstant && !usesOnlyOneValue) { 5513 SDValue Vec = DAG.getUNDEF(VT); 5514 for (unsigned i = 0 ; i < NumElts; ++i) { 5515 SDValue V = Op.getOperand(i); 5516 if (V.getOpcode() == ISD::UNDEF) 5517 continue; 5518 SDValue LaneIdx = DAG.getConstant(i, dl, MVT::i32); 5519 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Vec, V, LaneIdx); 5520 } 5521 return Vec; 5522 } 5523 5524 return SDValue(); 5525 } 5526 5527 // Gather data to see if the operation can be modelled as a 5528 // shuffle in combination with VEXTs. 5529 SDValue ARMTargetLowering::ReconstructShuffle(SDValue Op, 5530 SelectionDAG &DAG) const { 5531 assert(Op.getOpcode() == ISD::BUILD_VECTOR && "Unknown opcode!"); 5532 SDLoc dl(Op); 5533 EVT VT = Op.getValueType(); 5534 unsigned NumElts = VT.getVectorNumElements(); 5535 5536 struct ShuffleSourceInfo { 5537 SDValue Vec; 5538 unsigned MinElt; 5539 unsigned MaxElt; 5540 5541 // We may insert some combination of BITCASTs and VEXT nodes to force Vec to 5542 // be compatible with the shuffle we intend to construct. As a result 5543 // ShuffleVec will be some sliding window into the original Vec. 5544 SDValue ShuffleVec; 5545 5546 // Code should guarantee that element i in Vec starts at element "WindowBase 5547 // + i * WindowScale in ShuffleVec". 5548 int WindowBase; 5549 int WindowScale; 5550 5551 bool operator ==(SDValue OtherVec) { return Vec == OtherVec; } 5552 ShuffleSourceInfo(SDValue Vec) 5553 : Vec(Vec), MinElt(UINT_MAX), MaxElt(0), ShuffleVec(Vec), WindowBase(0), 5554 WindowScale(1) {} 5555 }; 5556 5557 // First gather all vectors used as an immediate source for this BUILD_VECTOR 5558 // node. 5559 SmallVector<ShuffleSourceInfo, 2> Sources; 5560 for (unsigned i = 0; i < NumElts; ++i) { 5561 SDValue V = Op.getOperand(i); 5562 if (V.getOpcode() == ISD::UNDEF) 5563 continue; 5564 else if (V.getOpcode() != ISD::EXTRACT_VECTOR_ELT) { 5565 // A shuffle can only come from building a vector from various 5566 // elements of other vectors. 5567 return SDValue(); 5568 } else if (!isa<ConstantSDNode>(V.getOperand(1))) { 5569 // Furthermore, shuffles require a constant mask, whereas extractelts 5570 // accept variable indices. 5571 return SDValue(); 5572 } 5573 5574 // Add this element source to the list if it's not already there. 5575 SDValue SourceVec = V.getOperand(0); 5576 auto Source = std::find(Sources.begin(), Sources.end(), SourceVec); 5577 if (Source == Sources.end()) 5578 Source = Sources.insert(Sources.end(), ShuffleSourceInfo(SourceVec)); 5579 5580 // Update the minimum and maximum lane number seen. 5581 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue(); 5582 Source->MinElt = std::min(Source->MinElt, EltNo); 5583 Source->MaxElt = std::max(Source->MaxElt, EltNo); 5584 } 5585 5586 // Currently only do something sane when at most two source vectors 5587 // are involved. 5588 if (Sources.size() > 2) 5589 return SDValue(); 5590 5591 // Find out the smallest element size among result and two sources, and use 5592 // it as element size to build the shuffle_vector. 5593 EVT SmallestEltTy = VT.getVectorElementType(); 5594 for (auto &Source : Sources) { 5595 EVT SrcEltTy = Source.Vec.getValueType().getVectorElementType(); 5596 if (SrcEltTy.bitsLT(SmallestEltTy)) 5597 SmallestEltTy = SrcEltTy; 5598 } 5599 unsigned ResMultiplier = 5600 VT.getVectorElementType().getSizeInBits() / SmallestEltTy.getSizeInBits(); 5601 NumElts = VT.getSizeInBits() / SmallestEltTy.getSizeInBits(); 5602 EVT ShuffleVT = EVT::getVectorVT(*DAG.getContext(), SmallestEltTy, NumElts); 5603 5604 // If the source vector is too wide or too narrow, we may nevertheless be able 5605 // to construct a compatible shuffle either by concatenating it with UNDEF or 5606 // extracting a suitable range of elements. 5607 for (auto &Src : Sources) { 5608 EVT SrcVT = Src.ShuffleVec.getValueType(); 5609 5610 if (SrcVT.getSizeInBits() == VT.getSizeInBits()) 5611 continue; 5612 5613 // This stage of the search produces a source with the same element type as 5614 // the original, but with a total width matching the BUILD_VECTOR output. 5615 EVT EltVT = SrcVT.getVectorElementType(); 5616 unsigned NumSrcElts = VT.getSizeInBits() / EltVT.getSizeInBits(); 5617 EVT DestVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumSrcElts); 5618 5619 if (SrcVT.getSizeInBits() < VT.getSizeInBits()) { 5620 if (2 * SrcVT.getSizeInBits() != VT.getSizeInBits()) 5621 return SDValue(); 5622 // We can pad out the smaller vector for free, so if it's part of a 5623 // shuffle... 5624 Src.ShuffleVec = 5625 DAG.getNode(ISD::CONCAT_VECTORS, dl, DestVT, Src.ShuffleVec, 5626 DAG.getUNDEF(Src.ShuffleVec.getValueType())); 5627 continue; 5628 } 5629 5630 if (SrcVT.getSizeInBits() != 2 * VT.getSizeInBits()) 5631 return SDValue(); 5632 5633 if (Src.MaxElt - Src.MinElt >= NumSrcElts) { 5634 // Span too large for a VEXT to cope 5635 return SDValue(); 5636 } 5637 5638 if (Src.MinElt >= NumSrcElts) { 5639 // The extraction can just take the second half 5640 Src.ShuffleVec = 5641 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec, 5642 DAG.getConstant(NumSrcElts, dl, MVT::i32)); 5643 Src.WindowBase = -NumSrcElts; 5644 } else if (Src.MaxElt < NumSrcElts) { 5645 // The extraction can just take the first half 5646 Src.ShuffleVec = 5647 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec, 5648 DAG.getConstant(0, dl, MVT::i32)); 5649 } else { 5650 // An actual VEXT is needed 5651 SDValue VEXTSrc1 = 5652 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec, 5653 DAG.getConstant(0, dl, MVT::i32)); 5654 SDValue VEXTSrc2 = 5655 DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, DestVT, Src.ShuffleVec, 5656 DAG.getConstant(NumSrcElts, dl, MVT::i32)); 5657 5658 Src.ShuffleVec = DAG.getNode(ARMISD::VEXT, dl, DestVT, VEXTSrc1, 5659 VEXTSrc2, 5660 DAG.getConstant(Src.MinElt, dl, MVT::i32)); 5661 Src.WindowBase = -Src.MinElt; 5662 } 5663 } 5664 5665 // Another possible incompatibility occurs from the vector element types. We 5666 // can fix this by bitcasting the source vectors to the same type we intend 5667 // for the shuffle. 5668 for (auto &Src : Sources) { 5669 EVT SrcEltTy = Src.ShuffleVec.getValueType().getVectorElementType(); 5670 if (SrcEltTy == SmallestEltTy) 5671 continue; 5672 assert(ShuffleVT.getVectorElementType() == SmallestEltTy); 5673 Src.ShuffleVec = DAG.getNode(ISD::BITCAST, dl, ShuffleVT, Src.ShuffleVec); 5674 Src.WindowScale = SrcEltTy.getSizeInBits() / SmallestEltTy.getSizeInBits(); 5675 Src.WindowBase *= Src.WindowScale; 5676 } 5677 5678 // Final sanity check before we try to actually produce a shuffle. 5679 DEBUG( 5680 for (auto Src : Sources) 5681 assert(Src.ShuffleVec.getValueType() == ShuffleVT); 5682 ); 5683 5684 // The stars all align, our next step is to produce the mask for the shuffle. 5685 SmallVector<int, 8> Mask(ShuffleVT.getVectorNumElements(), -1); 5686 int BitsPerShuffleLane = ShuffleVT.getVectorElementType().getSizeInBits(); 5687 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) { 5688 SDValue Entry = Op.getOperand(i); 5689 if (Entry.getOpcode() == ISD::UNDEF) 5690 continue; 5691 5692 auto Src = std::find(Sources.begin(), Sources.end(), Entry.getOperand(0)); 5693 int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue(); 5694 5695 // EXTRACT_VECTOR_ELT performs an implicit any_ext; BUILD_VECTOR an implicit 5696 // trunc. So only std::min(SrcBits, DestBits) actually get defined in this 5697 // segment. 5698 EVT OrigEltTy = Entry.getOperand(0).getValueType().getVectorElementType(); 5699 int BitsDefined = std::min(OrigEltTy.getSizeInBits(), 5700 VT.getVectorElementType().getSizeInBits()); 5701 int LanesDefined = BitsDefined / BitsPerShuffleLane; 5702 5703 // This source is expected to fill ResMultiplier lanes of the final shuffle, 5704 // starting at the appropriate offset. 5705 int *LaneMask = &Mask[i * ResMultiplier]; 5706 5707 int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase; 5708 ExtractBase += NumElts * (Src - Sources.begin()); 5709 for (int j = 0; j < LanesDefined; ++j) 5710 LaneMask[j] = ExtractBase + j; 5711 } 5712 5713 // Final check before we try to produce nonsense... 5714 if (!isShuffleMaskLegal(Mask, ShuffleVT)) 5715 return SDValue(); 5716 5717 // We can't handle more than two sources. This should have already 5718 // been checked before this point. 5719 assert(Sources.size() <= 2 && "Too many sources!"); 5720 5721 SDValue ShuffleOps[] = { DAG.getUNDEF(ShuffleVT), DAG.getUNDEF(ShuffleVT) }; 5722 for (unsigned i = 0; i < Sources.size(); ++i) 5723 ShuffleOps[i] = Sources[i].ShuffleVec; 5724 5725 SDValue Shuffle = DAG.getVectorShuffle(ShuffleVT, dl, ShuffleOps[0], 5726 ShuffleOps[1], &Mask[0]); 5727 return DAG.getNode(ISD::BITCAST, dl, VT, Shuffle); 5728 } 5729 5730 /// isShuffleMaskLegal - Targets can use this to indicate that they only 5731 /// support *some* VECTOR_SHUFFLE operations, those with specific masks. 5732 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values 5733 /// are assumed to be legal. 5734 bool 5735 ARMTargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M, 5736 EVT VT) const { 5737 if (VT.getVectorNumElements() == 4 && 5738 (VT.is128BitVector() || VT.is64BitVector())) { 5739 unsigned PFIndexes[4]; 5740 for (unsigned i = 0; i != 4; ++i) { 5741 if (M[i] < 0) 5742 PFIndexes[i] = 8; 5743 else 5744 PFIndexes[i] = M[i]; 5745 } 5746 5747 // Compute the index in the perfect shuffle table. 5748 unsigned PFTableIndex = 5749 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 5750 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 5751 unsigned Cost = (PFEntry >> 30); 5752 5753 if (Cost <= 4) 5754 return true; 5755 } 5756 5757 bool ReverseVEXT, isV_UNDEF; 5758 unsigned Imm, WhichResult; 5759 5760 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 5761 return (EltSize >= 32 || 5762 ShuffleVectorSDNode::isSplatMask(&M[0], VT) || 5763 isVREVMask(M, VT, 64) || 5764 isVREVMask(M, VT, 32) || 5765 isVREVMask(M, VT, 16) || 5766 isVEXTMask(M, VT, ReverseVEXT, Imm) || 5767 isVTBLMask(M, VT) || 5768 isNEONTwoResultShuffleMask(M, VT, WhichResult, isV_UNDEF) || 5769 ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(M, VT))); 5770 } 5771 5772 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit 5773 /// the specified operations to build the shuffle. 5774 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS, 5775 SDValue RHS, SelectionDAG &DAG, 5776 SDLoc dl) { 5777 unsigned OpNum = (PFEntry >> 26) & 0x0F; 5778 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1); 5779 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1); 5780 5781 enum { 5782 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3> 5783 OP_VREV, 5784 OP_VDUP0, 5785 OP_VDUP1, 5786 OP_VDUP2, 5787 OP_VDUP3, 5788 OP_VEXT1, 5789 OP_VEXT2, 5790 OP_VEXT3, 5791 OP_VUZPL, // VUZP, left result 5792 OP_VUZPR, // VUZP, right result 5793 OP_VZIPL, // VZIP, left result 5794 OP_VZIPR, // VZIP, right result 5795 OP_VTRNL, // VTRN, left result 5796 OP_VTRNR // VTRN, right result 5797 }; 5798 5799 if (OpNum == OP_COPY) { 5800 if (LHSID == (1*9+2)*9+3) return LHS; 5801 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!"); 5802 return RHS; 5803 } 5804 5805 SDValue OpLHS, OpRHS; 5806 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl); 5807 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl); 5808 EVT VT = OpLHS.getValueType(); 5809 5810 switch (OpNum) { 5811 default: llvm_unreachable("Unknown shuffle opcode!"); 5812 case OP_VREV: 5813 // VREV divides the vector in half and swaps within the half. 5814 if (VT.getVectorElementType() == MVT::i32 || 5815 VT.getVectorElementType() == MVT::f32) 5816 return DAG.getNode(ARMISD::VREV64, dl, VT, OpLHS); 5817 // vrev <4 x i16> -> VREV32 5818 if (VT.getVectorElementType() == MVT::i16) 5819 return DAG.getNode(ARMISD::VREV32, dl, VT, OpLHS); 5820 // vrev <4 x i8> -> VREV16 5821 assert(VT.getVectorElementType() == MVT::i8); 5822 return DAG.getNode(ARMISD::VREV16, dl, VT, OpLHS); 5823 case OP_VDUP0: 5824 case OP_VDUP1: 5825 case OP_VDUP2: 5826 case OP_VDUP3: 5827 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, 5828 OpLHS, DAG.getConstant(OpNum-OP_VDUP0, dl, MVT::i32)); 5829 case OP_VEXT1: 5830 case OP_VEXT2: 5831 case OP_VEXT3: 5832 return DAG.getNode(ARMISD::VEXT, dl, VT, 5833 OpLHS, OpRHS, 5834 DAG.getConstant(OpNum - OP_VEXT1 + 1, dl, MVT::i32)); 5835 case OP_VUZPL: 5836 case OP_VUZPR: 5837 return DAG.getNode(ARMISD::VUZP, dl, DAG.getVTList(VT, VT), 5838 OpLHS, OpRHS).getValue(OpNum-OP_VUZPL); 5839 case OP_VZIPL: 5840 case OP_VZIPR: 5841 return DAG.getNode(ARMISD::VZIP, dl, DAG.getVTList(VT, VT), 5842 OpLHS, OpRHS).getValue(OpNum-OP_VZIPL); 5843 case OP_VTRNL: 5844 case OP_VTRNR: 5845 return DAG.getNode(ARMISD::VTRN, dl, DAG.getVTList(VT, VT), 5846 OpLHS, OpRHS).getValue(OpNum-OP_VTRNL); 5847 } 5848 } 5849 5850 static SDValue LowerVECTOR_SHUFFLEv8i8(SDValue Op, 5851 ArrayRef<int> ShuffleMask, 5852 SelectionDAG &DAG) { 5853 // Check to see if we can use the VTBL instruction. 5854 SDValue V1 = Op.getOperand(0); 5855 SDValue V2 = Op.getOperand(1); 5856 SDLoc DL(Op); 5857 5858 SmallVector<SDValue, 8> VTBLMask; 5859 for (ArrayRef<int>::iterator 5860 I = ShuffleMask.begin(), E = ShuffleMask.end(); I != E; ++I) 5861 VTBLMask.push_back(DAG.getConstant(*I, DL, MVT::i32)); 5862 5863 if (V2.getNode()->getOpcode() == ISD::UNDEF) 5864 return DAG.getNode(ARMISD::VTBL1, DL, MVT::v8i8, V1, 5865 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask)); 5866 5867 return DAG.getNode(ARMISD::VTBL2, DL, MVT::v8i8, V1, V2, 5868 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v8i8, VTBLMask)); 5869 } 5870 5871 static SDValue LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(SDValue Op, 5872 SelectionDAG &DAG) { 5873 SDLoc DL(Op); 5874 SDValue OpLHS = Op.getOperand(0); 5875 EVT VT = OpLHS.getValueType(); 5876 5877 assert((VT == MVT::v8i16 || VT == MVT::v16i8) && 5878 "Expect an v8i16/v16i8 type"); 5879 OpLHS = DAG.getNode(ARMISD::VREV64, DL, VT, OpLHS); 5880 // For a v16i8 type: After the VREV, we have got <8, ...15, 8, ..., 0>. Now, 5881 // extract the first 8 bytes into the top double word and the last 8 bytes 5882 // into the bottom double word. The v8i16 case is similar. 5883 unsigned ExtractNum = (VT == MVT::v16i8) ? 8 : 4; 5884 return DAG.getNode(ARMISD::VEXT, DL, VT, OpLHS, OpLHS, 5885 DAG.getConstant(ExtractNum, DL, MVT::i32)); 5886 } 5887 5888 static SDValue LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) { 5889 SDValue V1 = Op.getOperand(0); 5890 SDValue V2 = Op.getOperand(1); 5891 SDLoc dl(Op); 5892 EVT VT = Op.getValueType(); 5893 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode()); 5894 5895 // Convert shuffles that are directly supported on NEON to target-specific 5896 // DAG nodes, instead of keeping them as shuffles and matching them again 5897 // during code selection. This is more efficient and avoids the possibility 5898 // of inconsistencies between legalization and selection. 5899 // FIXME: floating-point vectors should be canonicalized to integer vectors 5900 // of the same time so that they get CSEd properly. 5901 ArrayRef<int> ShuffleMask = SVN->getMask(); 5902 5903 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 5904 if (EltSize <= 32) { 5905 if (ShuffleVectorSDNode::isSplatMask(&ShuffleMask[0], VT)) { 5906 int Lane = SVN->getSplatIndex(); 5907 // If this is undef splat, generate it via "just" vdup, if possible. 5908 if (Lane == -1) Lane = 0; 5909 5910 // Test if V1 is a SCALAR_TO_VECTOR. 5911 if (Lane == 0 && V1.getOpcode() == ISD::SCALAR_TO_VECTOR) { 5912 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0)); 5913 } 5914 // Test if V1 is a BUILD_VECTOR which is equivalent to a SCALAR_TO_VECTOR 5915 // (and probably will turn into a SCALAR_TO_VECTOR once legalization 5916 // reaches it). 5917 if (Lane == 0 && V1.getOpcode() == ISD::BUILD_VECTOR && 5918 !isa<ConstantSDNode>(V1.getOperand(0))) { 5919 bool IsScalarToVector = true; 5920 for (unsigned i = 1, e = V1.getNumOperands(); i != e; ++i) 5921 if (V1.getOperand(i).getOpcode() != ISD::UNDEF) { 5922 IsScalarToVector = false; 5923 break; 5924 } 5925 if (IsScalarToVector) 5926 return DAG.getNode(ARMISD::VDUP, dl, VT, V1.getOperand(0)); 5927 } 5928 return DAG.getNode(ARMISD::VDUPLANE, dl, VT, V1, 5929 DAG.getConstant(Lane, dl, MVT::i32)); 5930 } 5931 5932 bool ReverseVEXT; 5933 unsigned Imm; 5934 if (isVEXTMask(ShuffleMask, VT, ReverseVEXT, Imm)) { 5935 if (ReverseVEXT) 5936 std::swap(V1, V2); 5937 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V2, 5938 DAG.getConstant(Imm, dl, MVT::i32)); 5939 } 5940 5941 if (isVREVMask(ShuffleMask, VT, 64)) 5942 return DAG.getNode(ARMISD::VREV64, dl, VT, V1); 5943 if (isVREVMask(ShuffleMask, VT, 32)) 5944 return DAG.getNode(ARMISD::VREV32, dl, VT, V1); 5945 if (isVREVMask(ShuffleMask, VT, 16)) 5946 return DAG.getNode(ARMISD::VREV16, dl, VT, V1); 5947 5948 if (V2->getOpcode() == ISD::UNDEF && 5949 isSingletonVEXTMask(ShuffleMask, VT, Imm)) { 5950 return DAG.getNode(ARMISD::VEXT, dl, VT, V1, V1, 5951 DAG.getConstant(Imm, dl, MVT::i32)); 5952 } 5953 5954 // Check for Neon shuffles that modify both input vectors in place. 5955 // If both results are used, i.e., if there are two shuffles with the same 5956 // source operands and with masks corresponding to both results of one of 5957 // these operations, DAG memoization will ensure that a single node is 5958 // used for both shuffles. 5959 unsigned WhichResult; 5960 bool isV_UNDEF; 5961 if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask( 5962 ShuffleMask, VT, WhichResult, isV_UNDEF)) { 5963 if (isV_UNDEF) 5964 V2 = V1; 5965 return DAG.getNode(ShuffleOpc, dl, DAG.getVTList(VT, VT), V1, V2) 5966 .getValue(WhichResult); 5967 } 5968 5969 // Also check for these shuffles through CONCAT_VECTORS: we canonicalize 5970 // shuffles that produce a result larger than their operands with: 5971 // shuffle(concat(v1, undef), concat(v2, undef)) 5972 // -> 5973 // shuffle(concat(v1, v2), undef) 5974 // because we can access quad vectors (see PerformVECTOR_SHUFFLECombine). 5975 // 5976 // This is useful in the general case, but there are special cases where 5977 // native shuffles produce larger results: the two-result ops. 5978 // 5979 // Look through the concat when lowering them: 5980 // shuffle(concat(v1, v2), undef) 5981 // -> 5982 // concat(VZIP(v1, v2):0, :1) 5983 // 5984 if (V1->getOpcode() == ISD::CONCAT_VECTORS && 5985 V2->getOpcode() == ISD::UNDEF) { 5986 SDValue SubV1 = V1->getOperand(0); 5987 SDValue SubV2 = V1->getOperand(1); 5988 EVT SubVT = SubV1.getValueType(); 5989 5990 // We expect these to have been canonicalized to -1. 5991 assert(std::all_of(ShuffleMask.begin(), ShuffleMask.end(), [&](int i) { 5992 return i < (int)VT.getVectorNumElements(); 5993 }) && "Unexpected shuffle index into UNDEF operand!"); 5994 5995 if (unsigned ShuffleOpc = isNEONTwoResultShuffleMask( 5996 ShuffleMask, SubVT, WhichResult, isV_UNDEF)) { 5997 if (isV_UNDEF) 5998 SubV2 = SubV1; 5999 assert((WhichResult == 0) && 6000 "In-place shuffle of concat can only have one result!"); 6001 SDValue Res = DAG.getNode(ShuffleOpc, dl, DAG.getVTList(SubVT, SubVT), 6002 SubV1, SubV2); 6003 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Res.getValue(0), 6004 Res.getValue(1)); 6005 } 6006 } 6007 } 6008 6009 // If the shuffle is not directly supported and it has 4 elements, use 6010 // the PerfectShuffle-generated table to synthesize it from other shuffles. 6011 unsigned NumElts = VT.getVectorNumElements(); 6012 if (NumElts == 4) { 6013 unsigned PFIndexes[4]; 6014 for (unsigned i = 0; i != 4; ++i) { 6015 if (ShuffleMask[i] < 0) 6016 PFIndexes[i] = 8; 6017 else 6018 PFIndexes[i] = ShuffleMask[i]; 6019 } 6020 6021 // Compute the index in the perfect shuffle table. 6022 unsigned PFTableIndex = 6023 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 6024 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 6025 unsigned Cost = (PFEntry >> 30); 6026 6027 if (Cost <= 4) 6028 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl); 6029 } 6030 6031 // Implement shuffles with 32- or 64-bit elements as ARMISD::BUILD_VECTORs. 6032 if (EltSize >= 32) { 6033 // Do the expansion with floating-point types, since that is what the VFP 6034 // registers are defined to use, and since i64 is not legal. 6035 EVT EltVT = EVT::getFloatingPointVT(EltSize); 6036 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), EltVT, NumElts); 6037 V1 = DAG.getNode(ISD::BITCAST, dl, VecVT, V1); 6038 V2 = DAG.getNode(ISD::BITCAST, dl, VecVT, V2); 6039 SmallVector<SDValue, 8> Ops; 6040 for (unsigned i = 0; i < NumElts; ++i) { 6041 if (ShuffleMask[i] < 0) 6042 Ops.push_back(DAG.getUNDEF(EltVT)); 6043 else 6044 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, 6045 ShuffleMask[i] < (int)NumElts ? V1 : V2, 6046 DAG.getConstant(ShuffleMask[i] & (NumElts-1), 6047 dl, MVT::i32))); 6048 } 6049 SDValue Val = DAG.getNode(ARMISD::BUILD_VECTOR, dl, VecVT, Ops); 6050 return DAG.getNode(ISD::BITCAST, dl, VT, Val); 6051 } 6052 6053 if ((VT == MVT::v8i16 || VT == MVT::v16i8) && isReverseMask(ShuffleMask, VT)) 6054 return LowerReverse_VECTOR_SHUFFLEv16i8_v8i16(Op, DAG); 6055 6056 if (VT == MVT::v8i8) { 6057 SDValue NewOp = LowerVECTOR_SHUFFLEv8i8(Op, ShuffleMask, DAG); 6058 if (NewOp.getNode()) 6059 return NewOp; 6060 } 6061 6062 return SDValue(); 6063 } 6064 6065 static SDValue LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) { 6066 // INSERT_VECTOR_ELT is legal only for immediate indexes. 6067 SDValue Lane = Op.getOperand(2); 6068 if (!isa<ConstantSDNode>(Lane)) 6069 return SDValue(); 6070 6071 return Op; 6072 } 6073 6074 static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) { 6075 // EXTRACT_VECTOR_ELT is legal only for immediate indexes. 6076 SDValue Lane = Op.getOperand(1); 6077 if (!isa<ConstantSDNode>(Lane)) 6078 return SDValue(); 6079 6080 SDValue Vec = Op.getOperand(0); 6081 if (Op.getValueType() == MVT::i32 && 6082 Vec.getValueType().getVectorElementType().getSizeInBits() < 32) { 6083 SDLoc dl(Op); 6084 return DAG.getNode(ARMISD::VGETLANEu, dl, MVT::i32, Vec, Lane); 6085 } 6086 6087 return Op; 6088 } 6089 6090 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) { 6091 // The only time a CONCAT_VECTORS operation can have legal types is when 6092 // two 64-bit vectors are concatenated to a 128-bit vector. 6093 assert(Op.getValueType().is128BitVector() && Op.getNumOperands() == 2 && 6094 "unexpected CONCAT_VECTORS"); 6095 SDLoc dl(Op); 6096 SDValue Val = DAG.getUNDEF(MVT::v2f64); 6097 SDValue Op0 = Op.getOperand(0); 6098 SDValue Op1 = Op.getOperand(1); 6099 if (Op0.getOpcode() != ISD::UNDEF) 6100 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val, 6101 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op0), 6102 DAG.getIntPtrConstant(0, dl)); 6103 if (Op1.getOpcode() != ISD::UNDEF) 6104 Val = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64, Val, 6105 DAG.getNode(ISD::BITCAST, dl, MVT::f64, Op1), 6106 DAG.getIntPtrConstant(1, dl)); 6107 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Val); 6108 } 6109 6110 /// isExtendedBUILD_VECTOR - Check if N is a constant BUILD_VECTOR where each 6111 /// element has been zero/sign-extended, depending on the isSigned parameter, 6112 /// from an integer type half its size. 6113 static bool isExtendedBUILD_VECTOR(SDNode *N, SelectionDAG &DAG, 6114 bool isSigned) { 6115 // A v2i64 BUILD_VECTOR will have been legalized to a BITCAST from v4i32. 6116 EVT VT = N->getValueType(0); 6117 if (VT == MVT::v2i64 && N->getOpcode() == ISD::BITCAST) { 6118 SDNode *BVN = N->getOperand(0).getNode(); 6119 if (BVN->getValueType(0) != MVT::v4i32 || 6120 BVN->getOpcode() != ISD::BUILD_VECTOR) 6121 return false; 6122 unsigned LoElt = DAG.getDataLayout().isBigEndian() ? 1 : 0; 6123 unsigned HiElt = 1 - LoElt; 6124 ConstantSDNode *Lo0 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt)); 6125 ConstantSDNode *Hi0 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt)); 6126 ConstantSDNode *Lo1 = dyn_cast<ConstantSDNode>(BVN->getOperand(LoElt+2)); 6127 ConstantSDNode *Hi1 = dyn_cast<ConstantSDNode>(BVN->getOperand(HiElt+2)); 6128 if (!Lo0 || !Hi0 || !Lo1 || !Hi1) 6129 return false; 6130 if (isSigned) { 6131 if (Hi0->getSExtValue() == Lo0->getSExtValue() >> 32 && 6132 Hi1->getSExtValue() == Lo1->getSExtValue() >> 32) 6133 return true; 6134 } else { 6135 if (Hi0->isNullValue() && Hi1->isNullValue()) 6136 return true; 6137 } 6138 return false; 6139 } 6140 6141 if (N->getOpcode() != ISD::BUILD_VECTOR) 6142 return false; 6143 6144 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 6145 SDNode *Elt = N->getOperand(i).getNode(); 6146 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Elt)) { 6147 unsigned EltSize = VT.getVectorElementType().getSizeInBits(); 6148 unsigned HalfSize = EltSize / 2; 6149 if (isSigned) { 6150 if (!isIntN(HalfSize, C->getSExtValue())) 6151 return false; 6152 } else { 6153 if (!isUIntN(HalfSize, C->getZExtValue())) 6154 return false; 6155 } 6156 continue; 6157 } 6158 return false; 6159 } 6160 6161 return true; 6162 } 6163 6164 /// isSignExtended - Check if a node is a vector value that is sign-extended 6165 /// or a constant BUILD_VECTOR with sign-extended elements. 6166 static bool isSignExtended(SDNode *N, SelectionDAG &DAG) { 6167 if (N->getOpcode() == ISD::SIGN_EXTEND || ISD::isSEXTLoad(N)) 6168 return true; 6169 if (isExtendedBUILD_VECTOR(N, DAG, true)) 6170 return true; 6171 return false; 6172 } 6173 6174 /// isZeroExtended - Check if a node is a vector value that is zero-extended 6175 /// or a constant BUILD_VECTOR with zero-extended elements. 6176 static bool isZeroExtended(SDNode *N, SelectionDAG &DAG) { 6177 if (N->getOpcode() == ISD::ZERO_EXTEND || ISD::isZEXTLoad(N)) 6178 return true; 6179 if (isExtendedBUILD_VECTOR(N, DAG, false)) 6180 return true; 6181 return false; 6182 } 6183 6184 static EVT getExtensionTo64Bits(const EVT &OrigVT) { 6185 if (OrigVT.getSizeInBits() >= 64) 6186 return OrigVT; 6187 6188 assert(OrigVT.isSimple() && "Expecting a simple value type"); 6189 6190 MVT::SimpleValueType OrigSimpleTy = OrigVT.getSimpleVT().SimpleTy; 6191 switch (OrigSimpleTy) { 6192 default: llvm_unreachable("Unexpected Vector Type"); 6193 case MVT::v2i8: 6194 case MVT::v2i16: 6195 return MVT::v2i32; 6196 case MVT::v4i8: 6197 return MVT::v4i16; 6198 } 6199 } 6200 6201 /// AddRequiredExtensionForVMULL - Add a sign/zero extension to extend the total 6202 /// value size to 64 bits. We need a 64-bit D register as an operand to VMULL. 6203 /// We insert the required extension here to get the vector to fill a D register. 6204 static SDValue AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG, 6205 const EVT &OrigTy, 6206 const EVT &ExtTy, 6207 unsigned ExtOpcode) { 6208 // The vector originally had a size of OrigTy. It was then extended to ExtTy. 6209 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than 6210 // 64-bits we need to insert a new extension so that it will be 64-bits. 6211 assert(ExtTy.is128BitVector() && "Unexpected extension size"); 6212 if (OrigTy.getSizeInBits() >= 64) 6213 return N; 6214 6215 // Must extend size to at least 64 bits to be used as an operand for VMULL. 6216 EVT NewVT = getExtensionTo64Bits(OrigTy); 6217 6218 return DAG.getNode(ExtOpcode, SDLoc(N), NewVT, N); 6219 } 6220 6221 /// SkipLoadExtensionForVMULL - return a load of the original vector size that 6222 /// does not do any sign/zero extension. If the original vector is less 6223 /// than 64 bits, an appropriate extension will be added after the load to 6224 /// reach a total size of 64 bits. We have to add the extension separately 6225 /// because ARM does not have a sign/zero extending load for vectors. 6226 static SDValue SkipLoadExtensionForVMULL(LoadSDNode *LD, SelectionDAG& DAG) { 6227 EVT ExtendedTy = getExtensionTo64Bits(LD->getMemoryVT()); 6228 6229 // The load already has the right type. 6230 if (ExtendedTy == LD->getMemoryVT()) 6231 return DAG.getLoad(LD->getMemoryVT(), SDLoc(LD), LD->getChain(), 6232 LD->getBasePtr(), LD->getPointerInfo(), LD->isVolatile(), 6233 LD->isNonTemporal(), LD->isInvariant(), 6234 LD->getAlignment()); 6235 6236 // We need to create a zextload/sextload. We cannot just create a load 6237 // followed by a zext/zext node because LowerMUL is also run during normal 6238 // operation legalization where we can't create illegal types. 6239 return DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD), ExtendedTy, 6240 LD->getChain(), LD->getBasePtr(), LD->getPointerInfo(), 6241 LD->getMemoryVT(), LD->isVolatile(), LD->isInvariant(), 6242 LD->isNonTemporal(), LD->getAlignment()); 6243 } 6244 6245 /// SkipExtensionForVMULL - For a node that is a SIGN_EXTEND, ZERO_EXTEND, 6246 /// extending load, or BUILD_VECTOR with extended elements, return the 6247 /// unextended value. The unextended vector should be 64 bits so that it can 6248 /// be used as an operand to a VMULL instruction. If the original vector size 6249 /// before extension is less than 64 bits we add a an extension to resize 6250 /// the vector to 64 bits. 6251 static SDValue SkipExtensionForVMULL(SDNode *N, SelectionDAG &DAG) { 6252 if (N->getOpcode() == ISD::SIGN_EXTEND || N->getOpcode() == ISD::ZERO_EXTEND) 6253 return AddRequiredExtensionForVMULL(N->getOperand(0), DAG, 6254 N->getOperand(0)->getValueType(0), 6255 N->getValueType(0), 6256 N->getOpcode()); 6257 6258 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) 6259 return SkipLoadExtensionForVMULL(LD, DAG); 6260 6261 // Otherwise, the value must be a BUILD_VECTOR. For v2i64, it will 6262 // have been legalized as a BITCAST from v4i32. 6263 if (N->getOpcode() == ISD::BITCAST) { 6264 SDNode *BVN = N->getOperand(0).getNode(); 6265 assert(BVN->getOpcode() == ISD::BUILD_VECTOR && 6266 BVN->getValueType(0) == MVT::v4i32 && "expected v4i32 BUILD_VECTOR"); 6267 unsigned LowElt = DAG.getDataLayout().isBigEndian() ? 1 : 0; 6268 return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), MVT::v2i32, 6269 BVN->getOperand(LowElt), BVN->getOperand(LowElt+2)); 6270 } 6271 // Construct a new BUILD_VECTOR with elements truncated to half the size. 6272 assert(N->getOpcode() == ISD::BUILD_VECTOR && "expected BUILD_VECTOR"); 6273 EVT VT = N->getValueType(0); 6274 unsigned EltSize = VT.getVectorElementType().getSizeInBits() / 2; 6275 unsigned NumElts = VT.getVectorNumElements(); 6276 MVT TruncVT = MVT::getIntegerVT(EltSize); 6277 SmallVector<SDValue, 8> Ops; 6278 SDLoc dl(N); 6279 for (unsigned i = 0; i != NumElts; ++i) { 6280 ConstantSDNode *C = cast<ConstantSDNode>(N->getOperand(i)); 6281 const APInt &CInt = C->getAPIntValue(); 6282 // Element types smaller than 32 bits are not legal, so use i32 elements. 6283 // The values are implicitly truncated so sext vs. zext doesn't matter. 6284 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32)); 6285 } 6286 return DAG.getNode(ISD::BUILD_VECTOR, dl, 6287 MVT::getVectorVT(TruncVT, NumElts), Ops); 6288 } 6289 6290 static bool isAddSubSExt(SDNode *N, SelectionDAG &DAG) { 6291 unsigned Opcode = N->getOpcode(); 6292 if (Opcode == ISD::ADD || Opcode == ISD::SUB) { 6293 SDNode *N0 = N->getOperand(0).getNode(); 6294 SDNode *N1 = N->getOperand(1).getNode(); 6295 return N0->hasOneUse() && N1->hasOneUse() && 6296 isSignExtended(N0, DAG) && isSignExtended(N1, DAG); 6297 } 6298 return false; 6299 } 6300 6301 static bool isAddSubZExt(SDNode *N, SelectionDAG &DAG) { 6302 unsigned Opcode = N->getOpcode(); 6303 if (Opcode == ISD::ADD || Opcode == ISD::SUB) { 6304 SDNode *N0 = N->getOperand(0).getNode(); 6305 SDNode *N1 = N->getOperand(1).getNode(); 6306 return N0->hasOneUse() && N1->hasOneUse() && 6307 isZeroExtended(N0, DAG) && isZeroExtended(N1, DAG); 6308 } 6309 return false; 6310 } 6311 6312 static SDValue LowerMUL(SDValue Op, SelectionDAG &DAG) { 6313 // Multiplications are only custom-lowered for 128-bit vectors so that 6314 // VMULL can be detected. Otherwise v2i64 multiplications are not legal. 6315 EVT VT = Op.getValueType(); 6316 assert(VT.is128BitVector() && VT.isInteger() && 6317 "unexpected type for custom-lowering ISD::MUL"); 6318 SDNode *N0 = Op.getOperand(0).getNode(); 6319 SDNode *N1 = Op.getOperand(1).getNode(); 6320 unsigned NewOpc = 0; 6321 bool isMLA = false; 6322 bool isN0SExt = isSignExtended(N0, DAG); 6323 bool isN1SExt = isSignExtended(N1, DAG); 6324 if (isN0SExt && isN1SExt) 6325 NewOpc = ARMISD::VMULLs; 6326 else { 6327 bool isN0ZExt = isZeroExtended(N0, DAG); 6328 bool isN1ZExt = isZeroExtended(N1, DAG); 6329 if (isN0ZExt && isN1ZExt) 6330 NewOpc = ARMISD::VMULLu; 6331 else if (isN1SExt || isN1ZExt) { 6332 // Look for (s/zext A + s/zext B) * (s/zext C). We want to turn these 6333 // into (s/zext A * s/zext C) + (s/zext B * s/zext C) 6334 if (isN1SExt && isAddSubSExt(N0, DAG)) { 6335 NewOpc = ARMISD::VMULLs; 6336 isMLA = true; 6337 } else if (isN1ZExt && isAddSubZExt(N0, DAG)) { 6338 NewOpc = ARMISD::VMULLu; 6339 isMLA = true; 6340 } else if (isN0ZExt && isAddSubZExt(N1, DAG)) { 6341 std::swap(N0, N1); 6342 NewOpc = ARMISD::VMULLu; 6343 isMLA = true; 6344 } 6345 } 6346 6347 if (!NewOpc) { 6348 if (VT == MVT::v2i64) 6349 // Fall through to expand this. It is not legal. 6350 return SDValue(); 6351 else 6352 // Other vector multiplications are legal. 6353 return Op; 6354 } 6355 } 6356 6357 // Legalize to a VMULL instruction. 6358 SDLoc DL(Op); 6359 SDValue Op0; 6360 SDValue Op1 = SkipExtensionForVMULL(N1, DAG); 6361 if (!isMLA) { 6362 Op0 = SkipExtensionForVMULL(N0, DAG); 6363 assert(Op0.getValueType().is64BitVector() && 6364 Op1.getValueType().is64BitVector() && 6365 "unexpected types for extended operands to VMULL"); 6366 return DAG.getNode(NewOpc, DL, VT, Op0, Op1); 6367 } 6368 6369 // Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during 6370 // isel lowering to take advantage of no-stall back to back vmul + vmla. 6371 // vmull q0, d4, d6 6372 // vmlal q0, d5, d6 6373 // is faster than 6374 // vaddl q0, d4, d5 6375 // vmovl q1, d6 6376 // vmul q0, q0, q1 6377 SDValue N00 = SkipExtensionForVMULL(N0->getOperand(0).getNode(), DAG); 6378 SDValue N01 = SkipExtensionForVMULL(N0->getOperand(1).getNode(), DAG); 6379 EVT Op1VT = Op1.getValueType(); 6380 return DAG.getNode(N0->getOpcode(), DL, VT, 6381 DAG.getNode(NewOpc, DL, VT, 6382 DAG.getNode(ISD::BITCAST, DL, Op1VT, N00), Op1), 6383 DAG.getNode(NewOpc, DL, VT, 6384 DAG.getNode(ISD::BITCAST, DL, Op1VT, N01), Op1)); 6385 } 6386 6387 static SDValue 6388 LowerSDIV_v4i8(SDValue X, SDValue Y, SDLoc dl, SelectionDAG &DAG) { 6389 // TODO: Should this propagate fast-math-flags? 6390 6391 // Convert to float 6392 // float4 xf = vcvt_f32_s32(vmovl_s16(a.lo)); 6393 // float4 yf = vcvt_f32_s32(vmovl_s16(b.lo)); 6394 X = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, X); 6395 Y = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, Y); 6396 X = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, X); 6397 Y = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Y); 6398 // Get reciprocal estimate. 6399 // float4 recip = vrecpeq_f32(yf); 6400 Y = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6401 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32), 6402 Y); 6403 // Because char has a smaller range than uchar, we can actually get away 6404 // without any newton steps. This requires that we use a weird bias 6405 // of 0xb000, however (again, this has been exhaustively tested). 6406 // float4 result = as_float4(as_int4(xf*recip) + 0xb000); 6407 X = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, X, Y); 6408 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, X); 6409 Y = DAG.getConstant(0xb000, dl, MVT::i32); 6410 Y = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Y, Y, Y, Y); 6411 X = DAG.getNode(ISD::ADD, dl, MVT::v4i32, X, Y); 6412 X = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, X); 6413 // Convert back to short. 6414 X = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, X); 6415 X = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, X); 6416 return X; 6417 } 6418 6419 static SDValue 6420 LowerSDIV_v4i16(SDValue N0, SDValue N1, SDLoc dl, SelectionDAG &DAG) { 6421 // TODO: Should this propagate fast-math-flags? 6422 6423 SDValue N2; 6424 // Convert to float. 6425 // float4 yf = vcvt_f32_s32(vmovl_s16(y)); 6426 // float4 xf = vcvt_f32_s32(vmovl_s16(x)); 6427 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N0); 6428 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i32, N1); 6429 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0); 6430 N1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1); 6431 6432 // Use reciprocal estimate and one refinement step. 6433 // float4 recip = vrecpeq_f32(yf); 6434 // recip *= vrecpsq_f32(yf, recip); 6435 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6436 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32), 6437 N1); 6438 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6439 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32), 6440 N1, N2); 6441 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 6442 // Because short has a smaller range than ushort, we can actually get away 6443 // with only a single newton step. This requires that we use a weird bias 6444 // of 89, however (again, this has been exhaustively tested). 6445 // float4 result = as_float4(as_int4(xf*recip) + 0x89); 6446 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2); 6447 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0); 6448 N1 = DAG.getConstant(0x89, dl, MVT::i32); 6449 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1); 6450 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1); 6451 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0); 6452 // Convert back to integer and return. 6453 // return vmovn_s32(vcvt_s32_f32(result)); 6454 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0); 6455 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0); 6456 return N0; 6457 } 6458 6459 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) { 6460 EVT VT = Op.getValueType(); 6461 assert((VT == MVT::v4i16 || VT == MVT::v8i8) && 6462 "unexpected type for custom-lowering ISD::SDIV"); 6463 6464 SDLoc dl(Op); 6465 SDValue N0 = Op.getOperand(0); 6466 SDValue N1 = Op.getOperand(1); 6467 SDValue N2, N3; 6468 6469 if (VT == MVT::v8i8) { 6470 N0 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N0); 6471 N1 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v8i16, N1); 6472 6473 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 6474 DAG.getIntPtrConstant(4, dl)); 6475 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 6476 DAG.getIntPtrConstant(4, dl)); 6477 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 6478 DAG.getIntPtrConstant(0, dl)); 6479 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 6480 DAG.getIntPtrConstant(0, dl)); 6481 6482 N0 = LowerSDIV_v4i8(N0, N1, dl, DAG); // v4i16 6483 N2 = LowerSDIV_v4i8(N2, N3, dl, DAG); // v4i16 6484 6485 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2); 6486 N0 = LowerCONCAT_VECTORS(N0, DAG); 6487 6488 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v8i8, N0); 6489 return N0; 6490 } 6491 return LowerSDIV_v4i16(N0, N1, dl, DAG); 6492 } 6493 6494 static SDValue LowerUDIV(SDValue Op, SelectionDAG &DAG) { 6495 // TODO: Should this propagate fast-math-flags? 6496 EVT VT = Op.getValueType(); 6497 assert((VT == MVT::v4i16 || VT == MVT::v8i8) && 6498 "unexpected type for custom-lowering ISD::UDIV"); 6499 6500 SDLoc dl(Op); 6501 SDValue N0 = Op.getOperand(0); 6502 SDValue N1 = Op.getOperand(1); 6503 SDValue N2, N3; 6504 6505 if (VT == MVT::v8i8) { 6506 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N0); 6507 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v8i16, N1); 6508 6509 N2 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 6510 DAG.getIntPtrConstant(4, dl)); 6511 N3 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 6512 DAG.getIntPtrConstant(4, dl)); 6513 N0 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N0, 6514 DAG.getIntPtrConstant(0, dl)); 6515 N1 = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i16, N1, 6516 DAG.getIntPtrConstant(0, dl)); 6517 6518 N0 = LowerSDIV_v4i16(N0, N1, dl, DAG); // v4i16 6519 N2 = LowerSDIV_v4i16(N2, N3, dl, DAG); // v4i16 6520 6521 N0 = DAG.getNode(ISD::CONCAT_VECTORS, dl, MVT::v8i16, N0, N2); 6522 N0 = LowerCONCAT_VECTORS(N0, DAG); 6523 6524 N0 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v8i8, 6525 DAG.getConstant(Intrinsic::arm_neon_vqmovnsu, dl, 6526 MVT::i32), 6527 N0); 6528 return N0; 6529 } 6530 6531 // v4i16 sdiv ... Convert to float. 6532 // float4 yf = vcvt_f32_s32(vmovl_u16(y)); 6533 // float4 xf = vcvt_f32_s32(vmovl_u16(x)); 6534 N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N0); 6535 N1 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v4i32, N1); 6536 N0 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N0); 6537 SDValue BN1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, N1); 6538 6539 // Use reciprocal estimate and two refinement steps. 6540 // float4 recip = vrecpeq_f32(yf); 6541 // recip *= vrecpsq_f32(yf, recip); 6542 // recip *= vrecpsq_f32(yf, recip); 6543 N2 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6544 DAG.getConstant(Intrinsic::arm_neon_vrecpe, dl, MVT::i32), 6545 BN1); 6546 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6547 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32), 6548 BN1, N2); 6549 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 6550 N1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f32, 6551 DAG.getConstant(Intrinsic::arm_neon_vrecps, dl, MVT::i32), 6552 BN1, N2); 6553 N2 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N1, N2); 6554 // Simply multiplying by the reciprocal estimate can leave us a few ulps 6555 // too low, so we add 2 ulps (exhaustive testing shows that this is enough, 6556 // and that it will never cause us to return an answer too large). 6557 // float4 result = as_float4(as_int4(xf*recip) + 2); 6558 N0 = DAG.getNode(ISD::FMUL, dl, MVT::v4f32, N0, N2); 6559 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, N0); 6560 N1 = DAG.getConstant(2, dl, MVT::i32); 6561 N1 = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, N1, N1, N1, N1); 6562 N0 = DAG.getNode(ISD::ADD, dl, MVT::v4i32, N0, N1); 6563 N0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, N0); 6564 // Convert back to integer and return. 6565 // return vmovn_u32(vcvt_s32_f32(result)); 6566 N0 = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::v4i32, N0); 6567 N0 = DAG.getNode(ISD::TRUNCATE, dl, MVT::v4i16, N0); 6568 return N0; 6569 } 6570 6571 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) { 6572 EVT VT = Op.getNode()->getValueType(0); 6573 SDVTList VTs = DAG.getVTList(VT, MVT::i32); 6574 6575 unsigned Opc; 6576 bool ExtraOp = false; 6577 switch (Op.getOpcode()) { 6578 default: llvm_unreachable("Invalid code"); 6579 case ISD::ADDC: Opc = ARMISD::ADDC; break; 6580 case ISD::ADDE: Opc = ARMISD::ADDE; ExtraOp = true; break; 6581 case ISD::SUBC: Opc = ARMISD::SUBC; break; 6582 case ISD::SUBE: Opc = ARMISD::SUBE; ExtraOp = true; break; 6583 } 6584 6585 if (!ExtraOp) 6586 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), 6587 Op.getOperand(1)); 6588 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0), 6589 Op.getOperand(1), Op.getOperand(2)); 6590 } 6591 6592 SDValue ARMTargetLowering::LowerFSINCOS(SDValue Op, SelectionDAG &DAG) const { 6593 assert(Subtarget->isTargetDarwin()); 6594 6595 // For iOS, we want to call an alternative entry point: __sincos_stret, 6596 // return values are passed via sret. 6597 SDLoc dl(Op); 6598 SDValue Arg = Op.getOperand(0); 6599 EVT ArgVT = Arg.getValueType(); 6600 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); 6601 auto PtrVT = getPointerTy(DAG.getDataLayout()); 6602 6603 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo(); 6604 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6605 6606 // Pair of floats / doubles used to pass the result. 6607 Type *RetTy = StructType::get(ArgTy, ArgTy, nullptr); 6608 auto &DL = DAG.getDataLayout(); 6609 6610 ArgListTy Args; 6611 bool ShouldUseSRet = Subtarget->isAPCS_ABI(); 6612 SDValue SRet; 6613 if (ShouldUseSRet) { 6614 // Create stack object for sret. 6615 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); 6616 const unsigned StackAlign = DL.getPrefTypeAlignment(RetTy); 6617 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); 6618 SRet = DAG.getFrameIndex(FrameIdx, TLI.getPointerTy(DL)); 6619 6620 ArgListEntry Entry; 6621 Entry.Node = SRet; 6622 Entry.Ty = RetTy->getPointerTo(); 6623 Entry.isSExt = false; 6624 Entry.isZExt = false; 6625 Entry.isSRet = true; 6626 Args.push_back(Entry); 6627 RetTy = Type::getVoidTy(*DAG.getContext()); 6628 } 6629 6630 ArgListEntry Entry; 6631 Entry.Node = Arg; 6632 Entry.Ty = ArgTy; 6633 Entry.isSExt = false; 6634 Entry.isZExt = false; 6635 Args.push_back(Entry); 6636 6637 const char *LibcallName = 6638 (ArgVT == MVT::f64) ? "__sincos_stret" : "__sincosf_stret"; 6639 RTLIB::Libcall LC = 6640 (ArgVT == MVT::f64) ? RTLIB::SINCOS_F64 : RTLIB::SINCOS_F32; 6641 CallingConv::ID CC = getLibcallCallingConv(LC); 6642 SDValue Callee = DAG.getExternalSymbol(LibcallName, getPointerTy(DL)); 6643 6644 TargetLowering::CallLoweringInfo CLI(DAG); 6645 CLI.setDebugLoc(dl) 6646 .setChain(DAG.getEntryNode()) 6647 .setCallee(CC, RetTy, Callee, std::move(Args), 0) 6648 .setDiscardResult(ShouldUseSRet); 6649 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 6650 6651 if (!ShouldUseSRet) 6652 return CallResult.first; 6653 6654 SDValue LoadSin = DAG.getLoad(ArgVT, dl, CallResult.second, SRet, 6655 MachinePointerInfo(), false, false, false, 0); 6656 6657 // Address of cos field. 6658 SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, SRet, 6659 DAG.getIntPtrConstant(ArgVT.getStoreSize(), dl)); 6660 SDValue LoadCos = DAG.getLoad(ArgVT, dl, LoadSin.getValue(1), Add, 6661 MachinePointerInfo(), false, false, false, 0); 6662 6663 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT); 6664 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, 6665 LoadSin.getValue(0), LoadCos.getValue(0)); 6666 } 6667 6668 SDValue ARMTargetLowering::LowerWindowsDIVLibCall(SDValue Op, SelectionDAG &DAG, 6669 bool Signed, 6670 SDValue &Chain) const { 6671 EVT VT = Op.getValueType(); 6672 assert((VT == MVT::i32 || VT == MVT::i64) && 6673 "unexpected type for custom lowering DIV"); 6674 SDLoc dl(Op); 6675 6676 const auto &DL = DAG.getDataLayout(); 6677 const auto &TLI = DAG.getTargetLoweringInfo(); 6678 6679 const char *Name = nullptr; 6680 if (Signed) 6681 Name = (VT == MVT::i32) ? "__rt_sdiv" : "__rt_sdiv64"; 6682 else 6683 Name = (VT == MVT::i32) ? "__rt_udiv" : "__rt_udiv64"; 6684 6685 SDValue ES = DAG.getExternalSymbol(Name, TLI.getPointerTy(DL)); 6686 6687 ARMTargetLowering::ArgListTy Args; 6688 6689 for (auto AI : {1, 0}) { 6690 ArgListEntry Arg; 6691 Arg.Node = Op.getOperand(AI); 6692 Arg.Ty = Arg.Node.getValueType().getTypeForEVT(*DAG.getContext()); 6693 Args.push_back(Arg); 6694 } 6695 6696 CallLoweringInfo CLI(DAG); 6697 CLI.setDebugLoc(dl) 6698 .setChain(Chain) 6699 .setCallee(CallingConv::ARM_AAPCS_VFP, VT.getTypeForEVT(*DAG.getContext()), 6700 ES, std::move(Args), 0); 6701 6702 return LowerCallTo(CLI).first; 6703 } 6704 6705 SDValue ARMTargetLowering::LowerDIV_Windows(SDValue Op, SelectionDAG &DAG, 6706 bool Signed) const { 6707 assert(Op.getValueType() == MVT::i32 && 6708 "unexpected type for custom lowering DIV"); 6709 SDLoc dl(Op); 6710 6711 SDValue DBZCHK = DAG.getNode(ARMISD::WIN__DBZCHK, dl, MVT::Other, 6712 DAG.getEntryNode(), Op.getOperand(1)); 6713 6714 return LowerWindowsDIVLibCall(Op, DAG, Signed, DBZCHK); 6715 } 6716 6717 void ARMTargetLowering::ExpandDIV_Windows( 6718 SDValue Op, SelectionDAG &DAG, bool Signed, 6719 SmallVectorImpl<SDValue> &Results) const { 6720 const auto &DL = DAG.getDataLayout(); 6721 const auto &TLI = DAG.getTargetLoweringInfo(); 6722 6723 assert(Op.getValueType() == MVT::i64 && 6724 "unexpected type for custom lowering DIV"); 6725 SDLoc dl(Op); 6726 6727 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op.getOperand(1), 6728 DAG.getConstant(0, dl, MVT::i32)); 6729 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Op.getOperand(1), 6730 DAG.getConstant(1, dl, MVT::i32)); 6731 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, Lo, Hi); 6732 6733 SDValue DBZCHK = 6734 DAG.getNode(ARMISD::WIN__DBZCHK, dl, MVT::Other, DAG.getEntryNode(), Or); 6735 6736 SDValue Result = LowerWindowsDIVLibCall(Op, DAG, Signed, DBZCHK); 6737 6738 SDValue Lower = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Result); 6739 SDValue Upper = DAG.getNode(ISD::SRL, dl, MVT::i64, Result, 6740 DAG.getConstant(32, dl, TLI.getPointerTy(DL))); 6741 Upper = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Upper); 6742 6743 Results.push_back(Lower); 6744 Results.push_back(Upper); 6745 } 6746 6747 static SDValue LowerAtomicLoadStore(SDValue Op, SelectionDAG &DAG) { 6748 // Monotonic load/store is legal for all targets 6749 if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic) 6750 return Op; 6751 6752 // Acquire/Release load/store is not legal for targets without a 6753 // dmb or equivalent available. 6754 return SDValue(); 6755 } 6756 6757 static void ReplaceREADCYCLECOUNTER(SDNode *N, 6758 SmallVectorImpl<SDValue> &Results, 6759 SelectionDAG &DAG, 6760 const ARMSubtarget *Subtarget) { 6761 SDLoc DL(N); 6762 // Under Power Management extensions, the cycle-count is: 6763 // mrc p15, #0, <Rt>, c9, c13, #0 6764 SDValue Ops[] = { N->getOperand(0), // Chain 6765 DAG.getConstant(Intrinsic::arm_mrc, DL, MVT::i32), 6766 DAG.getConstant(15, DL, MVT::i32), 6767 DAG.getConstant(0, DL, MVT::i32), 6768 DAG.getConstant(9, DL, MVT::i32), 6769 DAG.getConstant(13, DL, MVT::i32), 6770 DAG.getConstant(0, DL, MVT::i32) 6771 }; 6772 6773 SDValue Cycles32 = DAG.getNode(ISD::INTRINSIC_W_CHAIN, DL, 6774 DAG.getVTList(MVT::i32, MVT::Other), Ops); 6775 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Cycles32, 6776 DAG.getConstant(0, DL, MVT::i32))); 6777 Results.push_back(Cycles32.getValue(1)); 6778 } 6779 6780 SDValue ARMTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 6781 switch (Op.getOpcode()) { 6782 default: llvm_unreachable("Don't know how to custom lower this!"); 6783 case ISD::WRITE_REGISTER: return LowerWRITE_REGISTER(Op, DAG); 6784 case ISD::ConstantPool: return LowerConstantPool(Op, DAG); 6785 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); 6786 case ISD::GlobalAddress: 6787 switch (Subtarget->getTargetTriple().getObjectFormat()) { 6788 default: llvm_unreachable("unknown object format"); 6789 case Triple::COFF: 6790 return LowerGlobalAddressWindows(Op, DAG); 6791 case Triple::ELF: 6792 return LowerGlobalAddressELF(Op, DAG); 6793 case Triple::MachO: 6794 return LowerGlobalAddressDarwin(Op, DAG); 6795 } 6796 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); 6797 case ISD::SELECT: return LowerSELECT(Op, DAG); 6798 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); 6799 case ISD::BR_CC: return LowerBR_CC(Op, DAG); 6800 case ISD::BR_JT: return LowerBR_JT(Op, DAG); 6801 case ISD::VASTART: return LowerVASTART(Op, DAG); 6802 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, DAG, Subtarget); 6803 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget); 6804 case ISD::SINT_TO_FP: 6805 case ISD::UINT_TO_FP: return LowerINT_TO_FP(Op, DAG); 6806 case ISD::FP_TO_SINT: 6807 case ISD::FP_TO_UINT: return LowerFP_TO_INT(Op, DAG); 6808 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG); 6809 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); 6810 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); 6811 case ISD::EH_SJLJ_SETJMP: return LowerEH_SJLJ_SETJMP(Op, DAG); 6812 case ISD::EH_SJLJ_LONGJMP: return LowerEH_SJLJ_LONGJMP(Op, DAG); 6813 case ISD::EH_SJLJ_SETUP_DISPATCH: return LowerEH_SJLJ_SETUP_DISPATCH(Op, DAG); 6814 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG, 6815 Subtarget); 6816 case ISD::BITCAST: return ExpandBITCAST(Op.getNode(), DAG); 6817 case ISD::SHL: 6818 case ISD::SRL: 6819 case ISD::SRA: return LowerShift(Op.getNode(), DAG, Subtarget); 6820 case ISD::SREM: return LowerREM(Op.getNode(), DAG); 6821 case ISD::UREM: return LowerREM(Op.getNode(), DAG); 6822 case ISD::SHL_PARTS: return LowerShiftLeftParts(Op, DAG); 6823 case ISD::SRL_PARTS: 6824 case ISD::SRA_PARTS: return LowerShiftRightParts(Op, DAG); 6825 case ISD::CTTZ: 6826 case ISD::CTTZ_ZERO_UNDEF: return LowerCTTZ(Op.getNode(), DAG, Subtarget); 6827 case ISD::CTPOP: return LowerCTPOP(Op.getNode(), DAG, Subtarget); 6828 case ISD::SETCC: return LowerVSETCC(Op, DAG); 6829 case ISD::ConstantFP: return LowerConstantFP(Op, DAG, Subtarget); 6830 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG, Subtarget); 6831 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); 6832 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG); 6833 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); 6834 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG); 6835 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); 6836 case ISD::MUL: return LowerMUL(Op, DAG); 6837 case ISD::SDIV: 6838 if (Subtarget->isTargetWindows()) 6839 return LowerDIV_Windows(Op, DAG, /* Signed */ true); 6840 return LowerSDIV(Op, DAG); 6841 case ISD::UDIV: 6842 if (Subtarget->isTargetWindows()) 6843 return LowerDIV_Windows(Op, DAG, /* Signed */ false); 6844 return LowerUDIV(Op, DAG); 6845 case ISD::ADDC: 6846 case ISD::ADDE: 6847 case ISD::SUBC: 6848 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG); 6849 case ISD::SADDO: 6850 case ISD::UADDO: 6851 case ISD::SSUBO: 6852 case ISD::USUBO: 6853 return LowerXALUO(Op, DAG); 6854 case ISD::ATOMIC_LOAD: 6855 case ISD::ATOMIC_STORE: return LowerAtomicLoadStore(Op, DAG); 6856 case ISD::FSINCOS: return LowerFSINCOS(Op, DAG); 6857 case ISD::SDIVREM: 6858 case ISD::UDIVREM: return LowerDivRem(Op, DAG); 6859 case ISD::DYNAMIC_STACKALLOC: 6860 if (Subtarget->getTargetTriple().isWindowsItaniumEnvironment()) 6861 return LowerDYNAMIC_STACKALLOC(Op, DAG); 6862 llvm_unreachable("Don't know how to custom lower this!"); 6863 case ISD::FP_ROUND: return LowerFP_ROUND(Op, DAG); 6864 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG); 6865 case ARMISD::WIN__DBZCHK: return SDValue(); 6866 } 6867 } 6868 6869 /// ReplaceNodeResults - Replace the results of node with an illegal result 6870 /// type with new values built out of custom code. 6871 void ARMTargetLowering::ReplaceNodeResults(SDNode *N, 6872 SmallVectorImpl<SDValue> &Results, 6873 SelectionDAG &DAG) const { 6874 SDValue Res; 6875 switch (N->getOpcode()) { 6876 default: 6877 llvm_unreachable("Don't know how to custom expand this!"); 6878 case ISD::READ_REGISTER: 6879 ExpandREAD_REGISTER(N, Results, DAG); 6880 break; 6881 case ISD::BITCAST: 6882 Res = ExpandBITCAST(N, DAG); 6883 break; 6884 case ISD::SRL: 6885 case ISD::SRA: 6886 Res = Expand64BitShift(N, DAG, Subtarget); 6887 break; 6888 case ISD::SREM: 6889 case ISD::UREM: 6890 Res = LowerREM(N, DAG); 6891 break; 6892 case ISD::READCYCLECOUNTER: 6893 ReplaceREADCYCLECOUNTER(N, Results, DAG, Subtarget); 6894 return; 6895 case ISD::UDIV: 6896 case ISD::SDIV: 6897 assert(Subtarget->isTargetWindows() && "can only expand DIV on Windows"); 6898 return ExpandDIV_Windows(SDValue(N, 0), DAG, N->getOpcode() == ISD::SDIV, 6899 Results); 6900 } 6901 if (Res.getNode()) 6902 Results.push_back(Res); 6903 } 6904 6905 //===----------------------------------------------------------------------===// 6906 // ARM Scheduler Hooks 6907 //===----------------------------------------------------------------------===// 6908 6909 /// SetupEntryBlockForSjLj - Insert code into the entry block that creates and 6910 /// registers the function context. 6911 void ARMTargetLowering:: 6912 SetupEntryBlockForSjLj(MachineInstr *MI, MachineBasicBlock *MBB, 6913 MachineBasicBlock *DispatchBB, int FI) const { 6914 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 6915 DebugLoc dl = MI->getDebugLoc(); 6916 MachineFunction *MF = MBB->getParent(); 6917 MachineRegisterInfo *MRI = &MF->getRegInfo(); 6918 MachineConstantPool *MCP = MF->getConstantPool(); 6919 ARMFunctionInfo *AFI = MF->getInfo<ARMFunctionInfo>(); 6920 const Function *F = MF->getFunction(); 6921 6922 bool isThumb = Subtarget->isThumb(); 6923 bool isThumb2 = Subtarget->isThumb2(); 6924 6925 unsigned PCLabelId = AFI->createPICLabelUId(); 6926 unsigned PCAdj = (isThumb || isThumb2) ? 4 : 8; 6927 ARMConstantPoolValue *CPV = 6928 ARMConstantPoolMBB::Create(F->getContext(), DispatchBB, PCLabelId, PCAdj); 6929 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4); 6930 6931 const TargetRegisterClass *TRC = isThumb ? &ARM::tGPRRegClass 6932 : &ARM::GPRRegClass; 6933 6934 // Grab constant pool and fixed stack memory operands. 6935 MachineMemOperand *CPMMO = 6936 MF->getMachineMemOperand(MachinePointerInfo::getConstantPool(*MF), 6937 MachineMemOperand::MOLoad, 4, 4); 6938 6939 MachineMemOperand *FIMMOSt = 6940 MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(*MF, FI), 6941 MachineMemOperand::MOStore, 4, 4); 6942 6943 // Load the address of the dispatch MBB into the jump buffer. 6944 if (isThumb2) { 6945 // Incoming value: jbuf 6946 // ldr.n r5, LCPI1_1 6947 // orr r5, r5, #1 6948 // add r5, pc 6949 // str r5, [$jbuf, #+4] ; &jbuf[1] 6950 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 6951 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2LDRpci), NewVReg1) 6952 .addConstantPoolIndex(CPI) 6953 .addMemOperand(CPMMO)); 6954 // Set the low bit because of thumb mode. 6955 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 6956 AddDefaultCC( 6957 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2ORRri), NewVReg2) 6958 .addReg(NewVReg1, RegState::Kill) 6959 .addImm(0x01))); 6960 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 6961 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg3) 6962 .addReg(NewVReg2, RegState::Kill) 6963 .addImm(PCLabelId); 6964 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::t2STRi12)) 6965 .addReg(NewVReg3, RegState::Kill) 6966 .addFrameIndex(FI) 6967 .addImm(36) // &jbuf[1] :: pc 6968 .addMemOperand(FIMMOSt)); 6969 } else if (isThumb) { 6970 // Incoming value: jbuf 6971 // ldr.n r1, LCPI1_4 6972 // add r1, pc 6973 // mov r2, #1 6974 // orrs r1, r2 6975 // add r2, $jbuf, #+4 ; &jbuf[1] 6976 // str r1, [r2] 6977 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 6978 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tLDRpci), NewVReg1) 6979 .addConstantPoolIndex(CPI) 6980 .addMemOperand(CPMMO)); 6981 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 6982 BuildMI(*MBB, MI, dl, TII->get(ARM::tPICADD), NewVReg2) 6983 .addReg(NewVReg1, RegState::Kill) 6984 .addImm(PCLabelId); 6985 // Set the low bit because of thumb mode. 6986 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 6987 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tMOVi8), NewVReg3) 6988 .addReg(ARM::CPSR, RegState::Define) 6989 .addImm(1)); 6990 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 6991 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tORR), NewVReg4) 6992 .addReg(ARM::CPSR, RegState::Define) 6993 .addReg(NewVReg2, RegState::Kill) 6994 .addReg(NewVReg3, RegState::Kill)); 6995 unsigned NewVReg5 = MRI->createVirtualRegister(TRC); 6996 BuildMI(*MBB, MI, dl, TII->get(ARM::tADDframe), NewVReg5) 6997 .addFrameIndex(FI) 6998 .addImm(36); // &jbuf[1] :: pc 6999 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::tSTRi)) 7000 .addReg(NewVReg4, RegState::Kill) 7001 .addReg(NewVReg5, RegState::Kill) 7002 .addImm(0) 7003 .addMemOperand(FIMMOSt)); 7004 } else { 7005 // Incoming value: jbuf 7006 // ldr r1, LCPI1_1 7007 // add r1, pc, r1 7008 // str r1, [$jbuf, #+4] ; &jbuf[1] 7009 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 7010 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::LDRi12), NewVReg1) 7011 .addConstantPoolIndex(CPI) 7012 .addImm(0) 7013 .addMemOperand(CPMMO)); 7014 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 7015 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::PICADD), NewVReg2) 7016 .addReg(NewVReg1, RegState::Kill) 7017 .addImm(PCLabelId)); 7018 AddDefaultPred(BuildMI(*MBB, MI, dl, TII->get(ARM::STRi12)) 7019 .addReg(NewVReg2, RegState::Kill) 7020 .addFrameIndex(FI) 7021 .addImm(36) // &jbuf[1] :: pc 7022 .addMemOperand(FIMMOSt)); 7023 } 7024 } 7025 7026 void ARMTargetLowering::EmitSjLjDispatchBlock(MachineInstr *MI, 7027 MachineBasicBlock *MBB) const { 7028 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 7029 DebugLoc dl = MI->getDebugLoc(); 7030 MachineFunction *MF = MBB->getParent(); 7031 MachineRegisterInfo *MRI = &MF->getRegInfo(); 7032 MachineFrameInfo *MFI = MF->getFrameInfo(); 7033 int FI = MFI->getFunctionContextIndex(); 7034 7035 const TargetRegisterClass *TRC = Subtarget->isThumb() ? &ARM::tGPRRegClass 7036 : &ARM::GPRnopcRegClass; 7037 7038 // Get a mapping of the call site numbers to all of the landing pads they're 7039 // associated with. 7040 DenseMap<unsigned, SmallVector<MachineBasicBlock*, 2> > CallSiteNumToLPad; 7041 unsigned MaxCSNum = 0; 7042 MachineModuleInfo &MMI = MF->getMMI(); 7043 for (MachineFunction::iterator BB = MF->begin(), E = MF->end(); BB != E; 7044 ++BB) { 7045 if (!BB->isEHPad()) continue; 7046 7047 // FIXME: We should assert that the EH_LABEL is the first MI in the landing 7048 // pad. 7049 for (MachineBasicBlock::iterator 7050 II = BB->begin(), IE = BB->end(); II != IE; ++II) { 7051 if (!II->isEHLabel()) continue; 7052 7053 MCSymbol *Sym = II->getOperand(0).getMCSymbol(); 7054 if (!MMI.hasCallSiteLandingPad(Sym)) continue; 7055 7056 SmallVectorImpl<unsigned> &CallSiteIdxs = MMI.getCallSiteLandingPad(Sym); 7057 for (SmallVectorImpl<unsigned>::iterator 7058 CSI = CallSiteIdxs.begin(), CSE = CallSiteIdxs.end(); 7059 CSI != CSE; ++CSI) { 7060 CallSiteNumToLPad[*CSI].push_back(&*BB); 7061 MaxCSNum = std::max(MaxCSNum, *CSI); 7062 } 7063 break; 7064 } 7065 } 7066 7067 // Get an ordered list of the machine basic blocks for the jump table. 7068 std::vector<MachineBasicBlock*> LPadList; 7069 SmallPtrSet<MachineBasicBlock*, 64> InvokeBBs; 7070 LPadList.reserve(CallSiteNumToLPad.size()); 7071 for (unsigned I = 1; I <= MaxCSNum; ++I) { 7072 SmallVectorImpl<MachineBasicBlock*> &MBBList = CallSiteNumToLPad[I]; 7073 for (SmallVectorImpl<MachineBasicBlock*>::iterator 7074 II = MBBList.begin(), IE = MBBList.end(); II != IE; ++II) { 7075 LPadList.push_back(*II); 7076 InvokeBBs.insert((*II)->pred_begin(), (*II)->pred_end()); 7077 } 7078 } 7079 7080 assert(!LPadList.empty() && 7081 "No landing pad destinations for the dispatch jump table!"); 7082 7083 // Create the jump table and associated information. 7084 MachineJumpTableInfo *JTI = 7085 MF->getOrCreateJumpTableInfo(MachineJumpTableInfo::EK_Inline); 7086 unsigned MJTI = JTI->createJumpTableIndex(LPadList); 7087 Reloc::Model RelocM = getTargetMachine().getRelocationModel(); 7088 7089 // Create the MBBs for the dispatch code. 7090 7091 // Shove the dispatch's address into the return slot in the function context. 7092 MachineBasicBlock *DispatchBB = MF->CreateMachineBasicBlock(); 7093 DispatchBB->setIsEHPad(); 7094 7095 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock(); 7096 unsigned trap_opcode; 7097 if (Subtarget->isThumb()) 7098 trap_opcode = ARM::tTRAP; 7099 else 7100 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP; 7101 7102 BuildMI(TrapBB, dl, TII->get(trap_opcode)); 7103 DispatchBB->addSuccessor(TrapBB); 7104 7105 MachineBasicBlock *DispContBB = MF->CreateMachineBasicBlock(); 7106 DispatchBB->addSuccessor(DispContBB); 7107 7108 // Insert and MBBs. 7109 MF->insert(MF->end(), DispatchBB); 7110 MF->insert(MF->end(), DispContBB); 7111 MF->insert(MF->end(), TrapBB); 7112 7113 // Insert code into the entry block that creates and registers the function 7114 // context. 7115 SetupEntryBlockForSjLj(MI, MBB, DispatchBB, FI); 7116 7117 MachineMemOperand *FIMMOLd = MF->getMachineMemOperand( 7118 MachinePointerInfo::getFixedStack(*MF, FI), 7119 MachineMemOperand::MOLoad | MachineMemOperand::MOVolatile, 4, 4); 7120 7121 MachineInstrBuilder MIB; 7122 MIB = BuildMI(DispatchBB, dl, TII->get(ARM::Int_eh_sjlj_dispatchsetup)); 7123 7124 const ARMBaseInstrInfo *AII = static_cast<const ARMBaseInstrInfo*>(TII); 7125 const ARMBaseRegisterInfo &RI = AII->getRegisterInfo(); 7126 7127 // Add a register mask with no preserved registers. This results in all 7128 // registers being marked as clobbered. 7129 MIB.addRegMask(RI.getNoPreservedMask()); 7130 7131 unsigned NumLPads = LPadList.size(); 7132 if (Subtarget->isThumb2()) { 7133 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 7134 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2LDRi12), NewVReg1) 7135 .addFrameIndex(FI) 7136 .addImm(4) 7137 .addMemOperand(FIMMOLd)); 7138 7139 if (NumLPads < 256) { 7140 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPri)) 7141 .addReg(NewVReg1) 7142 .addImm(LPadList.size())); 7143 } else { 7144 unsigned VReg1 = MRI->createVirtualRegister(TRC); 7145 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVi16), VReg1) 7146 .addImm(NumLPads & 0xFFFF)); 7147 7148 unsigned VReg2 = VReg1; 7149 if ((NumLPads & 0xFFFF0000) != 0) { 7150 VReg2 = MRI->createVirtualRegister(TRC); 7151 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2MOVTi16), VReg2) 7152 .addReg(VReg1) 7153 .addImm(NumLPads >> 16)); 7154 } 7155 7156 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::t2CMPrr)) 7157 .addReg(NewVReg1) 7158 .addReg(VReg2)); 7159 } 7160 7161 BuildMI(DispatchBB, dl, TII->get(ARM::t2Bcc)) 7162 .addMBB(TrapBB) 7163 .addImm(ARMCC::HI) 7164 .addReg(ARM::CPSR); 7165 7166 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 7167 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::t2LEApcrelJT),NewVReg3) 7168 .addJumpTableIndex(MJTI)); 7169 7170 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 7171 AddDefaultCC( 7172 AddDefaultPred( 7173 BuildMI(DispContBB, dl, TII->get(ARM::t2ADDrs), NewVReg4) 7174 .addReg(NewVReg3, RegState::Kill) 7175 .addReg(NewVReg1) 7176 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2)))); 7177 7178 BuildMI(DispContBB, dl, TII->get(ARM::t2BR_JT)) 7179 .addReg(NewVReg4, RegState::Kill) 7180 .addReg(NewVReg1) 7181 .addJumpTableIndex(MJTI); 7182 } else if (Subtarget->isThumb()) { 7183 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 7184 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRspi), NewVReg1) 7185 .addFrameIndex(FI) 7186 .addImm(1) 7187 .addMemOperand(FIMMOLd)); 7188 7189 if (NumLPads < 256) { 7190 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPi8)) 7191 .addReg(NewVReg1) 7192 .addImm(NumLPads)); 7193 } else { 7194 MachineConstantPool *ConstantPool = MF->getConstantPool(); 7195 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext()); 7196 const Constant *C = ConstantInt::get(Int32Ty, NumLPads); 7197 7198 // MachineConstantPool wants an explicit alignment. 7199 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty); 7200 if (Align == 0) 7201 Align = MF->getDataLayout().getTypeAllocSize(C->getType()); 7202 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align); 7203 7204 unsigned VReg1 = MRI->createVirtualRegister(TRC); 7205 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tLDRpci)) 7206 .addReg(VReg1, RegState::Define) 7207 .addConstantPoolIndex(Idx)); 7208 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::tCMPr)) 7209 .addReg(NewVReg1) 7210 .addReg(VReg1)); 7211 } 7212 7213 BuildMI(DispatchBB, dl, TII->get(ARM::tBcc)) 7214 .addMBB(TrapBB) 7215 .addImm(ARMCC::HI) 7216 .addReg(ARM::CPSR); 7217 7218 unsigned NewVReg2 = MRI->createVirtualRegister(TRC); 7219 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLSLri), NewVReg2) 7220 .addReg(ARM::CPSR, RegState::Define) 7221 .addReg(NewVReg1) 7222 .addImm(2)); 7223 7224 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 7225 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLEApcrelJT), NewVReg3) 7226 .addJumpTableIndex(MJTI)); 7227 7228 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 7229 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg4) 7230 .addReg(ARM::CPSR, RegState::Define) 7231 .addReg(NewVReg2, RegState::Kill) 7232 .addReg(NewVReg3)); 7233 7234 MachineMemOperand *JTMMOLd = MF->getMachineMemOperand( 7235 MachinePointerInfo::getJumpTable(*MF), MachineMemOperand::MOLoad, 4, 4); 7236 7237 unsigned NewVReg5 = MRI->createVirtualRegister(TRC); 7238 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tLDRi), NewVReg5) 7239 .addReg(NewVReg4, RegState::Kill) 7240 .addImm(0) 7241 .addMemOperand(JTMMOLd)); 7242 7243 unsigned NewVReg6 = NewVReg5; 7244 if (RelocM == Reloc::PIC_) { 7245 NewVReg6 = MRI->createVirtualRegister(TRC); 7246 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::tADDrr), NewVReg6) 7247 .addReg(ARM::CPSR, RegState::Define) 7248 .addReg(NewVReg5, RegState::Kill) 7249 .addReg(NewVReg3)); 7250 } 7251 7252 BuildMI(DispContBB, dl, TII->get(ARM::tBR_JTr)) 7253 .addReg(NewVReg6, RegState::Kill) 7254 .addJumpTableIndex(MJTI); 7255 } else { 7256 unsigned NewVReg1 = MRI->createVirtualRegister(TRC); 7257 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRi12), NewVReg1) 7258 .addFrameIndex(FI) 7259 .addImm(4) 7260 .addMemOperand(FIMMOLd)); 7261 7262 if (NumLPads < 256) { 7263 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPri)) 7264 .addReg(NewVReg1) 7265 .addImm(NumLPads)); 7266 } else if (Subtarget->hasV6T2Ops() && isUInt<16>(NumLPads)) { 7267 unsigned VReg1 = MRI->createVirtualRegister(TRC); 7268 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVi16), VReg1) 7269 .addImm(NumLPads & 0xFFFF)); 7270 7271 unsigned VReg2 = VReg1; 7272 if ((NumLPads & 0xFFFF0000) != 0) { 7273 VReg2 = MRI->createVirtualRegister(TRC); 7274 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::MOVTi16), VReg2) 7275 .addReg(VReg1) 7276 .addImm(NumLPads >> 16)); 7277 } 7278 7279 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr)) 7280 .addReg(NewVReg1) 7281 .addReg(VReg2)); 7282 } else { 7283 MachineConstantPool *ConstantPool = MF->getConstantPool(); 7284 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext()); 7285 const Constant *C = ConstantInt::get(Int32Ty, NumLPads); 7286 7287 // MachineConstantPool wants an explicit alignment. 7288 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty); 7289 if (Align == 0) 7290 Align = MF->getDataLayout().getTypeAllocSize(C->getType()); 7291 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align); 7292 7293 unsigned VReg1 = MRI->createVirtualRegister(TRC); 7294 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::LDRcp)) 7295 .addReg(VReg1, RegState::Define) 7296 .addConstantPoolIndex(Idx) 7297 .addImm(0)); 7298 AddDefaultPred(BuildMI(DispatchBB, dl, TII->get(ARM::CMPrr)) 7299 .addReg(NewVReg1) 7300 .addReg(VReg1, RegState::Kill)); 7301 } 7302 7303 BuildMI(DispatchBB, dl, TII->get(ARM::Bcc)) 7304 .addMBB(TrapBB) 7305 .addImm(ARMCC::HI) 7306 .addReg(ARM::CPSR); 7307 7308 unsigned NewVReg3 = MRI->createVirtualRegister(TRC); 7309 AddDefaultCC( 7310 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::MOVsi), NewVReg3) 7311 .addReg(NewVReg1) 7312 .addImm(ARM_AM::getSORegOpc(ARM_AM::lsl, 2)))); 7313 unsigned NewVReg4 = MRI->createVirtualRegister(TRC); 7314 AddDefaultPred(BuildMI(DispContBB, dl, TII->get(ARM::LEApcrelJT), NewVReg4) 7315 .addJumpTableIndex(MJTI)); 7316 7317 MachineMemOperand *JTMMOLd = MF->getMachineMemOperand( 7318 MachinePointerInfo::getJumpTable(*MF), MachineMemOperand::MOLoad, 4, 4); 7319 unsigned NewVReg5 = MRI->createVirtualRegister(TRC); 7320 AddDefaultPred( 7321 BuildMI(DispContBB, dl, TII->get(ARM::LDRrs), NewVReg5) 7322 .addReg(NewVReg3, RegState::Kill) 7323 .addReg(NewVReg4) 7324 .addImm(0) 7325 .addMemOperand(JTMMOLd)); 7326 7327 if (RelocM == Reloc::PIC_) { 7328 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTadd)) 7329 .addReg(NewVReg5, RegState::Kill) 7330 .addReg(NewVReg4) 7331 .addJumpTableIndex(MJTI); 7332 } else { 7333 BuildMI(DispContBB, dl, TII->get(ARM::BR_JTr)) 7334 .addReg(NewVReg5, RegState::Kill) 7335 .addJumpTableIndex(MJTI); 7336 } 7337 } 7338 7339 // Add the jump table entries as successors to the MBB. 7340 SmallPtrSet<MachineBasicBlock*, 8> SeenMBBs; 7341 for (std::vector<MachineBasicBlock*>::iterator 7342 I = LPadList.begin(), E = LPadList.end(); I != E; ++I) { 7343 MachineBasicBlock *CurMBB = *I; 7344 if (SeenMBBs.insert(CurMBB).second) 7345 DispContBB->addSuccessor(CurMBB); 7346 } 7347 7348 // N.B. the order the invoke BBs are processed in doesn't matter here. 7349 const MCPhysReg *SavedRegs = RI.getCalleeSavedRegs(MF); 7350 SmallVector<MachineBasicBlock*, 64> MBBLPads; 7351 for (MachineBasicBlock *BB : InvokeBBs) { 7352 7353 // Remove the landing pad successor from the invoke block and replace it 7354 // with the new dispatch block. 7355 SmallVector<MachineBasicBlock*, 4> Successors(BB->succ_begin(), 7356 BB->succ_end()); 7357 while (!Successors.empty()) { 7358 MachineBasicBlock *SMBB = Successors.pop_back_val(); 7359 if (SMBB->isEHPad()) { 7360 BB->removeSuccessor(SMBB); 7361 MBBLPads.push_back(SMBB); 7362 } 7363 } 7364 7365 BB->addSuccessor(DispatchBB); 7366 7367 // Find the invoke call and mark all of the callee-saved registers as 7368 // 'implicit defined' so that they're spilled. This prevents code from 7369 // moving instructions to before the EH block, where they will never be 7370 // executed. 7371 for (MachineBasicBlock::reverse_iterator 7372 II = BB->rbegin(), IE = BB->rend(); II != IE; ++II) { 7373 if (!II->isCall()) continue; 7374 7375 DenseMap<unsigned, bool> DefRegs; 7376 for (MachineInstr::mop_iterator 7377 OI = II->operands_begin(), OE = II->operands_end(); 7378 OI != OE; ++OI) { 7379 if (!OI->isReg()) continue; 7380 DefRegs[OI->getReg()] = true; 7381 } 7382 7383 MachineInstrBuilder MIB(*MF, &*II); 7384 7385 for (unsigned i = 0; SavedRegs[i] != 0; ++i) { 7386 unsigned Reg = SavedRegs[i]; 7387 if (Subtarget->isThumb2() && 7388 !ARM::tGPRRegClass.contains(Reg) && 7389 !ARM::hGPRRegClass.contains(Reg)) 7390 continue; 7391 if (Subtarget->isThumb1Only() && !ARM::tGPRRegClass.contains(Reg)) 7392 continue; 7393 if (!Subtarget->isThumb() && !ARM::GPRRegClass.contains(Reg)) 7394 continue; 7395 if (!DefRegs[Reg]) 7396 MIB.addReg(Reg, RegState::ImplicitDefine | RegState::Dead); 7397 } 7398 7399 break; 7400 } 7401 } 7402 7403 // Mark all former landing pads as non-landing pads. The dispatch is the only 7404 // landing pad now. 7405 for (SmallVectorImpl<MachineBasicBlock*>::iterator 7406 I = MBBLPads.begin(), E = MBBLPads.end(); I != E; ++I) 7407 (*I)->setIsEHPad(false); 7408 7409 // The instruction is gone now. 7410 MI->eraseFromParent(); 7411 } 7412 7413 static 7414 MachineBasicBlock *OtherSucc(MachineBasicBlock *MBB, MachineBasicBlock *Succ) { 7415 for (MachineBasicBlock::succ_iterator I = MBB->succ_begin(), 7416 E = MBB->succ_end(); I != E; ++I) 7417 if (*I != Succ) 7418 return *I; 7419 llvm_unreachable("Expecting a BB with two successors!"); 7420 } 7421 7422 /// Return the load opcode for a given load size. If load size >= 8, 7423 /// neon opcode will be returned. 7424 static unsigned getLdOpcode(unsigned LdSize, bool IsThumb1, bool IsThumb2) { 7425 if (LdSize >= 8) 7426 return LdSize == 16 ? ARM::VLD1q32wb_fixed 7427 : LdSize == 8 ? ARM::VLD1d32wb_fixed : 0; 7428 if (IsThumb1) 7429 return LdSize == 4 ? ARM::tLDRi 7430 : LdSize == 2 ? ARM::tLDRHi 7431 : LdSize == 1 ? ARM::tLDRBi : 0; 7432 if (IsThumb2) 7433 return LdSize == 4 ? ARM::t2LDR_POST 7434 : LdSize == 2 ? ARM::t2LDRH_POST 7435 : LdSize == 1 ? ARM::t2LDRB_POST : 0; 7436 return LdSize == 4 ? ARM::LDR_POST_IMM 7437 : LdSize == 2 ? ARM::LDRH_POST 7438 : LdSize == 1 ? ARM::LDRB_POST_IMM : 0; 7439 } 7440 7441 /// Return the store opcode for a given store size. If store size >= 8, 7442 /// neon opcode will be returned. 7443 static unsigned getStOpcode(unsigned StSize, bool IsThumb1, bool IsThumb2) { 7444 if (StSize >= 8) 7445 return StSize == 16 ? ARM::VST1q32wb_fixed 7446 : StSize == 8 ? ARM::VST1d32wb_fixed : 0; 7447 if (IsThumb1) 7448 return StSize == 4 ? ARM::tSTRi 7449 : StSize == 2 ? ARM::tSTRHi 7450 : StSize == 1 ? ARM::tSTRBi : 0; 7451 if (IsThumb2) 7452 return StSize == 4 ? ARM::t2STR_POST 7453 : StSize == 2 ? ARM::t2STRH_POST 7454 : StSize == 1 ? ARM::t2STRB_POST : 0; 7455 return StSize == 4 ? ARM::STR_POST_IMM 7456 : StSize == 2 ? ARM::STRH_POST 7457 : StSize == 1 ? ARM::STRB_POST_IMM : 0; 7458 } 7459 7460 /// Emit a post-increment load operation with given size. The instructions 7461 /// will be added to BB at Pos. 7462 static void emitPostLd(MachineBasicBlock *BB, MachineInstr *Pos, 7463 const TargetInstrInfo *TII, DebugLoc dl, 7464 unsigned LdSize, unsigned Data, unsigned AddrIn, 7465 unsigned AddrOut, bool IsThumb1, bool IsThumb2) { 7466 unsigned LdOpc = getLdOpcode(LdSize, IsThumb1, IsThumb2); 7467 assert(LdOpc != 0 && "Should have a load opcode"); 7468 if (LdSize >= 8) { 7469 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data) 7470 .addReg(AddrOut, RegState::Define).addReg(AddrIn) 7471 .addImm(0)); 7472 } else if (IsThumb1) { 7473 // load + update AddrIn 7474 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data) 7475 .addReg(AddrIn).addImm(0)); 7476 MachineInstrBuilder MIB = 7477 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut); 7478 MIB = AddDefaultT1CC(MIB); 7479 MIB.addReg(AddrIn).addImm(LdSize); 7480 AddDefaultPred(MIB); 7481 } else if (IsThumb2) { 7482 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data) 7483 .addReg(AddrOut, RegState::Define).addReg(AddrIn) 7484 .addImm(LdSize)); 7485 } else { // arm 7486 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(LdOpc), Data) 7487 .addReg(AddrOut, RegState::Define).addReg(AddrIn) 7488 .addReg(0).addImm(LdSize)); 7489 } 7490 } 7491 7492 /// Emit a post-increment store operation with given size. The instructions 7493 /// will be added to BB at Pos. 7494 static void emitPostSt(MachineBasicBlock *BB, MachineInstr *Pos, 7495 const TargetInstrInfo *TII, DebugLoc dl, 7496 unsigned StSize, unsigned Data, unsigned AddrIn, 7497 unsigned AddrOut, bool IsThumb1, bool IsThumb2) { 7498 unsigned StOpc = getStOpcode(StSize, IsThumb1, IsThumb2); 7499 assert(StOpc != 0 && "Should have a store opcode"); 7500 if (StSize >= 8) { 7501 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut) 7502 .addReg(AddrIn).addImm(0).addReg(Data)); 7503 } else if (IsThumb1) { 7504 // store + update AddrIn 7505 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc)).addReg(Data) 7506 .addReg(AddrIn).addImm(0)); 7507 MachineInstrBuilder MIB = 7508 BuildMI(*BB, Pos, dl, TII->get(ARM::tADDi8), AddrOut); 7509 MIB = AddDefaultT1CC(MIB); 7510 MIB.addReg(AddrIn).addImm(StSize); 7511 AddDefaultPred(MIB); 7512 } else if (IsThumb2) { 7513 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut) 7514 .addReg(Data).addReg(AddrIn).addImm(StSize)); 7515 } else { // arm 7516 AddDefaultPred(BuildMI(*BB, Pos, dl, TII->get(StOpc), AddrOut) 7517 .addReg(Data).addReg(AddrIn).addReg(0) 7518 .addImm(StSize)); 7519 } 7520 } 7521 7522 MachineBasicBlock * 7523 ARMTargetLowering::EmitStructByval(MachineInstr *MI, 7524 MachineBasicBlock *BB) const { 7525 // This pseudo instruction has 3 operands: dst, src, size 7526 // We expand it to a loop if size > Subtarget->getMaxInlineSizeThreshold(). 7527 // Otherwise, we will generate unrolled scalar copies. 7528 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 7529 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 7530 MachineFunction::iterator It = ++BB->getIterator(); 7531 7532 unsigned dest = MI->getOperand(0).getReg(); 7533 unsigned src = MI->getOperand(1).getReg(); 7534 unsigned SizeVal = MI->getOperand(2).getImm(); 7535 unsigned Align = MI->getOperand(3).getImm(); 7536 DebugLoc dl = MI->getDebugLoc(); 7537 7538 MachineFunction *MF = BB->getParent(); 7539 MachineRegisterInfo &MRI = MF->getRegInfo(); 7540 unsigned UnitSize = 0; 7541 const TargetRegisterClass *TRC = nullptr; 7542 const TargetRegisterClass *VecTRC = nullptr; 7543 7544 bool IsThumb1 = Subtarget->isThumb1Only(); 7545 bool IsThumb2 = Subtarget->isThumb2(); 7546 7547 if (Align & 1) { 7548 UnitSize = 1; 7549 } else if (Align & 2) { 7550 UnitSize = 2; 7551 } else { 7552 // Check whether we can use NEON instructions. 7553 if (!MF->getFunction()->hasFnAttribute(Attribute::NoImplicitFloat) && 7554 Subtarget->hasNEON()) { 7555 if ((Align % 16 == 0) && SizeVal >= 16) 7556 UnitSize = 16; 7557 else if ((Align % 8 == 0) && SizeVal >= 8) 7558 UnitSize = 8; 7559 } 7560 // Can't use NEON instructions. 7561 if (UnitSize == 0) 7562 UnitSize = 4; 7563 } 7564 7565 // Select the correct opcode and register class for unit size load/store 7566 bool IsNeon = UnitSize >= 8; 7567 TRC = (IsThumb1 || IsThumb2) ? &ARM::tGPRRegClass : &ARM::GPRRegClass; 7568 if (IsNeon) 7569 VecTRC = UnitSize == 16 ? &ARM::DPairRegClass 7570 : UnitSize == 8 ? &ARM::DPRRegClass 7571 : nullptr; 7572 7573 unsigned BytesLeft = SizeVal % UnitSize; 7574 unsigned LoopSize = SizeVal - BytesLeft; 7575 7576 if (SizeVal <= Subtarget->getMaxInlineSizeThreshold()) { 7577 // Use LDR and STR to copy. 7578 // [scratch, srcOut] = LDR_POST(srcIn, UnitSize) 7579 // [destOut] = STR_POST(scratch, destIn, UnitSize) 7580 unsigned srcIn = src; 7581 unsigned destIn = dest; 7582 for (unsigned i = 0; i < LoopSize; i+=UnitSize) { 7583 unsigned srcOut = MRI.createVirtualRegister(TRC); 7584 unsigned destOut = MRI.createVirtualRegister(TRC); 7585 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC); 7586 emitPostLd(BB, MI, TII, dl, UnitSize, scratch, srcIn, srcOut, 7587 IsThumb1, IsThumb2); 7588 emitPostSt(BB, MI, TII, dl, UnitSize, scratch, destIn, destOut, 7589 IsThumb1, IsThumb2); 7590 srcIn = srcOut; 7591 destIn = destOut; 7592 } 7593 7594 // Handle the leftover bytes with LDRB and STRB. 7595 // [scratch, srcOut] = LDRB_POST(srcIn, 1) 7596 // [destOut] = STRB_POST(scratch, destIn, 1) 7597 for (unsigned i = 0; i < BytesLeft; i++) { 7598 unsigned srcOut = MRI.createVirtualRegister(TRC); 7599 unsigned destOut = MRI.createVirtualRegister(TRC); 7600 unsigned scratch = MRI.createVirtualRegister(TRC); 7601 emitPostLd(BB, MI, TII, dl, 1, scratch, srcIn, srcOut, 7602 IsThumb1, IsThumb2); 7603 emitPostSt(BB, MI, TII, dl, 1, scratch, destIn, destOut, 7604 IsThumb1, IsThumb2); 7605 srcIn = srcOut; 7606 destIn = destOut; 7607 } 7608 MI->eraseFromParent(); // The instruction is gone now. 7609 return BB; 7610 } 7611 7612 // Expand the pseudo op to a loop. 7613 // thisMBB: 7614 // ... 7615 // movw varEnd, # --> with thumb2 7616 // movt varEnd, # 7617 // ldrcp varEnd, idx --> without thumb2 7618 // fallthrough --> loopMBB 7619 // loopMBB: 7620 // PHI varPhi, varEnd, varLoop 7621 // PHI srcPhi, src, srcLoop 7622 // PHI destPhi, dst, destLoop 7623 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize) 7624 // [destLoop] = STR_POST(scratch, destPhi, UnitSize) 7625 // subs varLoop, varPhi, #UnitSize 7626 // bne loopMBB 7627 // fallthrough --> exitMBB 7628 // exitMBB: 7629 // epilogue to handle left-over bytes 7630 // [scratch, srcOut] = LDRB_POST(srcLoop, 1) 7631 // [destOut] = STRB_POST(scratch, destLoop, 1) 7632 MachineBasicBlock *loopMBB = MF->CreateMachineBasicBlock(LLVM_BB); 7633 MachineBasicBlock *exitMBB = MF->CreateMachineBasicBlock(LLVM_BB); 7634 MF->insert(It, loopMBB); 7635 MF->insert(It, exitMBB); 7636 7637 // Transfer the remainder of BB and its successor edges to exitMBB. 7638 exitMBB->splice(exitMBB->begin(), BB, 7639 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7640 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 7641 7642 // Load an immediate to varEnd. 7643 unsigned varEnd = MRI.createVirtualRegister(TRC); 7644 if (Subtarget->useMovt(*MF)) { 7645 unsigned Vtmp = varEnd; 7646 if ((LoopSize & 0xFFFF0000) != 0) 7647 Vtmp = MRI.createVirtualRegister(TRC); 7648 AddDefaultPred(BuildMI(BB, dl, 7649 TII->get(IsThumb2 ? ARM::t2MOVi16 : ARM::MOVi16), 7650 Vtmp).addImm(LoopSize & 0xFFFF)); 7651 7652 if ((LoopSize & 0xFFFF0000) != 0) 7653 AddDefaultPred(BuildMI(BB, dl, 7654 TII->get(IsThumb2 ? ARM::t2MOVTi16 : ARM::MOVTi16), 7655 varEnd) 7656 .addReg(Vtmp) 7657 .addImm(LoopSize >> 16)); 7658 } else { 7659 MachineConstantPool *ConstantPool = MF->getConstantPool(); 7660 Type *Int32Ty = Type::getInt32Ty(MF->getFunction()->getContext()); 7661 const Constant *C = ConstantInt::get(Int32Ty, LoopSize); 7662 7663 // MachineConstantPool wants an explicit alignment. 7664 unsigned Align = MF->getDataLayout().getPrefTypeAlignment(Int32Ty); 7665 if (Align == 0) 7666 Align = MF->getDataLayout().getTypeAllocSize(C->getType()); 7667 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align); 7668 7669 if (IsThumb1) 7670 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::tLDRpci)).addReg( 7671 varEnd, RegState::Define).addConstantPoolIndex(Idx)); 7672 else 7673 AddDefaultPred(BuildMI(*BB, MI, dl, TII->get(ARM::LDRcp)).addReg( 7674 varEnd, RegState::Define).addConstantPoolIndex(Idx).addImm(0)); 7675 } 7676 BB->addSuccessor(loopMBB); 7677 7678 // Generate the loop body: 7679 // varPhi = PHI(varLoop, varEnd) 7680 // srcPhi = PHI(srcLoop, src) 7681 // destPhi = PHI(destLoop, dst) 7682 MachineBasicBlock *entryBB = BB; 7683 BB = loopMBB; 7684 unsigned varLoop = MRI.createVirtualRegister(TRC); 7685 unsigned varPhi = MRI.createVirtualRegister(TRC); 7686 unsigned srcLoop = MRI.createVirtualRegister(TRC); 7687 unsigned srcPhi = MRI.createVirtualRegister(TRC); 7688 unsigned destLoop = MRI.createVirtualRegister(TRC); 7689 unsigned destPhi = MRI.createVirtualRegister(TRC); 7690 7691 BuildMI(*BB, BB->begin(), dl, TII->get(ARM::PHI), varPhi) 7692 .addReg(varLoop).addMBB(loopMBB) 7693 .addReg(varEnd).addMBB(entryBB); 7694 BuildMI(BB, dl, TII->get(ARM::PHI), srcPhi) 7695 .addReg(srcLoop).addMBB(loopMBB) 7696 .addReg(src).addMBB(entryBB); 7697 BuildMI(BB, dl, TII->get(ARM::PHI), destPhi) 7698 .addReg(destLoop).addMBB(loopMBB) 7699 .addReg(dest).addMBB(entryBB); 7700 7701 // [scratch, srcLoop] = LDR_POST(srcPhi, UnitSize) 7702 // [destLoop] = STR_POST(scratch, destPhi, UnitSiz) 7703 unsigned scratch = MRI.createVirtualRegister(IsNeon ? VecTRC : TRC); 7704 emitPostLd(BB, BB->end(), TII, dl, UnitSize, scratch, srcPhi, srcLoop, 7705 IsThumb1, IsThumb2); 7706 emitPostSt(BB, BB->end(), TII, dl, UnitSize, scratch, destPhi, destLoop, 7707 IsThumb1, IsThumb2); 7708 7709 // Decrement loop variable by UnitSize. 7710 if (IsThumb1) { 7711 MachineInstrBuilder MIB = 7712 BuildMI(*BB, BB->end(), dl, TII->get(ARM::tSUBi8), varLoop); 7713 MIB = AddDefaultT1CC(MIB); 7714 MIB.addReg(varPhi).addImm(UnitSize); 7715 AddDefaultPred(MIB); 7716 } else { 7717 MachineInstrBuilder MIB = 7718 BuildMI(*BB, BB->end(), dl, 7719 TII->get(IsThumb2 ? ARM::t2SUBri : ARM::SUBri), varLoop); 7720 AddDefaultCC(AddDefaultPred(MIB.addReg(varPhi).addImm(UnitSize))); 7721 MIB->getOperand(5).setReg(ARM::CPSR); 7722 MIB->getOperand(5).setIsDef(true); 7723 } 7724 BuildMI(*BB, BB->end(), dl, 7725 TII->get(IsThumb1 ? ARM::tBcc : IsThumb2 ? ARM::t2Bcc : ARM::Bcc)) 7726 .addMBB(loopMBB).addImm(ARMCC::NE).addReg(ARM::CPSR); 7727 7728 // loopMBB can loop back to loopMBB or fall through to exitMBB. 7729 BB->addSuccessor(loopMBB); 7730 BB->addSuccessor(exitMBB); 7731 7732 // Add epilogue to handle BytesLeft. 7733 BB = exitMBB; 7734 MachineInstr *StartOfExit = exitMBB->begin(); 7735 7736 // [scratch, srcOut] = LDRB_POST(srcLoop, 1) 7737 // [destOut] = STRB_POST(scratch, destLoop, 1) 7738 unsigned srcIn = srcLoop; 7739 unsigned destIn = destLoop; 7740 for (unsigned i = 0; i < BytesLeft; i++) { 7741 unsigned srcOut = MRI.createVirtualRegister(TRC); 7742 unsigned destOut = MRI.createVirtualRegister(TRC); 7743 unsigned scratch = MRI.createVirtualRegister(TRC); 7744 emitPostLd(BB, StartOfExit, TII, dl, 1, scratch, srcIn, srcOut, 7745 IsThumb1, IsThumb2); 7746 emitPostSt(BB, StartOfExit, TII, dl, 1, scratch, destIn, destOut, 7747 IsThumb1, IsThumb2); 7748 srcIn = srcOut; 7749 destIn = destOut; 7750 } 7751 7752 MI->eraseFromParent(); // The instruction is gone now. 7753 return BB; 7754 } 7755 7756 MachineBasicBlock * 7757 ARMTargetLowering::EmitLowered__chkstk(MachineInstr *MI, 7758 MachineBasicBlock *MBB) const { 7759 const TargetMachine &TM = getTargetMachine(); 7760 const TargetInstrInfo &TII = *Subtarget->getInstrInfo(); 7761 DebugLoc DL = MI->getDebugLoc(); 7762 7763 assert(Subtarget->isTargetWindows() && 7764 "__chkstk is only supported on Windows"); 7765 assert(Subtarget->isThumb2() && "Windows on ARM requires Thumb-2 mode"); 7766 7767 // __chkstk takes the number of words to allocate on the stack in R4, and 7768 // returns the stack adjustment in number of bytes in R4. This will not 7769 // clober any other registers (other than the obvious lr). 7770 // 7771 // Although, technically, IP should be considered a register which may be 7772 // clobbered, the call itself will not touch it. Windows on ARM is a pure 7773 // thumb-2 environment, so there is no interworking required. As a result, we 7774 // do not expect a veneer to be emitted by the linker, clobbering IP. 7775 // 7776 // Each module receives its own copy of __chkstk, so no import thunk is 7777 // required, again, ensuring that IP is not clobbered. 7778 // 7779 // Finally, although some linkers may theoretically provide a trampoline for 7780 // out of range calls (which is quite common due to a 32M range limitation of 7781 // branches for Thumb), we can generate the long-call version via 7782 // -mcmodel=large, alleviating the need for the trampoline which may clobber 7783 // IP. 7784 7785 switch (TM.getCodeModel()) { 7786 case CodeModel::Small: 7787 case CodeModel::Medium: 7788 case CodeModel::Default: 7789 case CodeModel::Kernel: 7790 BuildMI(*MBB, MI, DL, TII.get(ARM::tBL)) 7791 .addImm((unsigned)ARMCC::AL).addReg(0) 7792 .addExternalSymbol("__chkstk") 7793 .addReg(ARM::R4, RegState::Implicit | RegState::Kill) 7794 .addReg(ARM::R4, RegState::Implicit | RegState::Define) 7795 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead); 7796 break; 7797 case CodeModel::Large: 7798 case CodeModel::JITDefault: { 7799 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo(); 7800 unsigned Reg = MRI.createVirtualRegister(&ARM::rGPRRegClass); 7801 7802 BuildMI(*MBB, MI, DL, TII.get(ARM::t2MOVi32imm), Reg) 7803 .addExternalSymbol("__chkstk"); 7804 BuildMI(*MBB, MI, DL, TII.get(ARM::tBLXr)) 7805 .addImm((unsigned)ARMCC::AL).addReg(0) 7806 .addReg(Reg, RegState::Kill) 7807 .addReg(ARM::R4, RegState::Implicit | RegState::Kill) 7808 .addReg(ARM::R4, RegState::Implicit | RegState::Define) 7809 .addReg(ARM::R12, RegState::Implicit | RegState::Define | RegState::Dead); 7810 break; 7811 } 7812 } 7813 7814 AddDefaultCC(AddDefaultPred(BuildMI(*MBB, MI, DL, TII.get(ARM::t2SUBrr), 7815 ARM::SP) 7816 .addReg(ARM::SP).addReg(ARM::R4))); 7817 7818 MI->eraseFromParent(); 7819 return MBB; 7820 } 7821 7822 MachineBasicBlock * 7823 ARMTargetLowering::EmitLowered__dbzchk(MachineInstr *MI, 7824 MachineBasicBlock *MBB) const { 7825 DebugLoc DL = MI->getDebugLoc(); 7826 MachineFunction *MF = MBB->getParent(); 7827 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 7828 7829 MachineBasicBlock *ContBB = MF->CreateMachineBasicBlock(); 7830 MF->push_back(ContBB); 7831 ContBB->splice(ContBB->begin(), MBB, 7832 std::next(MachineBasicBlock::iterator(MI)), MBB->end()); 7833 MBB->addSuccessor(ContBB); 7834 7835 MachineBasicBlock *TrapBB = MF->CreateMachineBasicBlock(); 7836 MF->push_back(TrapBB); 7837 BuildMI(TrapBB, DL, TII->get(ARM::t2UDF)).addImm(249); 7838 MBB->addSuccessor(TrapBB); 7839 7840 BuildMI(*MBB, MI, DL, TII->get(ARM::tCBZ)) 7841 .addReg(MI->getOperand(0).getReg()) 7842 .addMBB(TrapBB); 7843 7844 MI->eraseFromParent(); 7845 return ContBB; 7846 } 7847 7848 MachineBasicBlock * 7849 ARMTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, 7850 MachineBasicBlock *BB) const { 7851 const TargetInstrInfo *TII = Subtarget->getInstrInfo(); 7852 DebugLoc dl = MI->getDebugLoc(); 7853 bool isThumb2 = Subtarget->isThumb2(); 7854 switch (MI->getOpcode()) { 7855 default: { 7856 MI->dump(); 7857 llvm_unreachable("Unexpected instr type to insert"); 7858 } 7859 // The Thumb2 pre-indexed stores have the same MI operands, they just 7860 // define them differently in the .td files from the isel patterns, so 7861 // they need pseudos. 7862 case ARM::t2STR_preidx: 7863 MI->setDesc(TII->get(ARM::t2STR_PRE)); 7864 return BB; 7865 case ARM::t2STRB_preidx: 7866 MI->setDesc(TII->get(ARM::t2STRB_PRE)); 7867 return BB; 7868 case ARM::t2STRH_preidx: 7869 MI->setDesc(TII->get(ARM::t2STRH_PRE)); 7870 return BB; 7871 7872 case ARM::STRi_preidx: 7873 case ARM::STRBi_preidx: { 7874 unsigned NewOpc = MI->getOpcode() == ARM::STRi_preidx ? 7875 ARM::STR_PRE_IMM : ARM::STRB_PRE_IMM; 7876 // Decode the offset. 7877 unsigned Offset = MI->getOperand(4).getImm(); 7878 bool isSub = ARM_AM::getAM2Op(Offset) == ARM_AM::sub; 7879 Offset = ARM_AM::getAM2Offset(Offset); 7880 if (isSub) 7881 Offset = -Offset; 7882 7883 MachineMemOperand *MMO = *MI->memoperands_begin(); 7884 BuildMI(*BB, MI, dl, TII->get(NewOpc)) 7885 .addOperand(MI->getOperand(0)) // Rn_wb 7886 .addOperand(MI->getOperand(1)) // Rt 7887 .addOperand(MI->getOperand(2)) // Rn 7888 .addImm(Offset) // offset (skip GPR==zero_reg) 7889 .addOperand(MI->getOperand(5)) // pred 7890 .addOperand(MI->getOperand(6)) 7891 .addMemOperand(MMO); 7892 MI->eraseFromParent(); 7893 return BB; 7894 } 7895 case ARM::STRr_preidx: 7896 case ARM::STRBr_preidx: 7897 case ARM::STRH_preidx: { 7898 unsigned NewOpc; 7899 switch (MI->getOpcode()) { 7900 default: llvm_unreachable("unexpected opcode!"); 7901 case ARM::STRr_preidx: NewOpc = ARM::STR_PRE_REG; break; 7902 case ARM::STRBr_preidx: NewOpc = ARM::STRB_PRE_REG; break; 7903 case ARM::STRH_preidx: NewOpc = ARM::STRH_PRE; break; 7904 } 7905 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(NewOpc)); 7906 for (unsigned i = 0; i < MI->getNumOperands(); ++i) 7907 MIB.addOperand(MI->getOperand(i)); 7908 MI->eraseFromParent(); 7909 return BB; 7910 } 7911 7912 case ARM::tMOVCCr_pseudo: { 7913 // To "insert" a SELECT_CC instruction, we actually have to insert the 7914 // diamond control-flow pattern. The incoming instruction knows the 7915 // destination vreg to set, the condition code register to branch on, the 7916 // true/false values to select between, and a branch opcode to use. 7917 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 7918 MachineFunction::iterator It = ++BB->getIterator(); 7919 7920 // thisMBB: 7921 // ... 7922 // TrueVal = ... 7923 // cmpTY ccX, r1, r2 7924 // bCC copy1MBB 7925 // fallthrough --> copy0MBB 7926 MachineBasicBlock *thisMBB = BB; 7927 MachineFunction *F = BB->getParent(); 7928 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); 7929 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 7930 F->insert(It, copy0MBB); 7931 F->insert(It, sinkMBB); 7932 7933 // Transfer the remainder of BB and its successor edges to sinkMBB. 7934 sinkMBB->splice(sinkMBB->begin(), BB, 7935 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7936 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 7937 7938 BB->addSuccessor(copy0MBB); 7939 BB->addSuccessor(sinkMBB); 7940 7941 BuildMI(BB, dl, TII->get(ARM::tBcc)).addMBB(sinkMBB) 7942 .addImm(MI->getOperand(3).getImm()).addReg(MI->getOperand(4).getReg()); 7943 7944 // copy0MBB: 7945 // %FalseValue = ... 7946 // # fallthrough to sinkMBB 7947 BB = copy0MBB; 7948 7949 // Update machine-CFG edges 7950 BB->addSuccessor(sinkMBB); 7951 7952 // sinkMBB: 7953 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] 7954 // ... 7955 BB = sinkMBB; 7956 BuildMI(*BB, BB->begin(), dl, 7957 TII->get(ARM::PHI), MI->getOperand(0).getReg()) 7958 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB) 7959 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB); 7960 7961 MI->eraseFromParent(); // The pseudo instruction is gone now. 7962 return BB; 7963 } 7964 7965 case ARM::BCCi64: 7966 case ARM::BCCZi64: { 7967 // If there is an unconditional branch to the other successor, remove it. 7968 BB->erase(std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7969 7970 // Compare both parts that make up the double comparison separately for 7971 // equality. 7972 bool RHSisZero = MI->getOpcode() == ARM::BCCZi64; 7973 7974 unsigned LHS1 = MI->getOperand(1).getReg(); 7975 unsigned LHS2 = MI->getOperand(2).getReg(); 7976 if (RHSisZero) { 7977 AddDefaultPred(BuildMI(BB, dl, 7978 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 7979 .addReg(LHS1).addImm(0)); 7980 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 7981 .addReg(LHS2).addImm(0) 7982 .addImm(ARMCC::EQ).addReg(ARM::CPSR); 7983 } else { 7984 unsigned RHS1 = MI->getOperand(3).getReg(); 7985 unsigned RHS2 = MI->getOperand(4).getReg(); 7986 AddDefaultPred(BuildMI(BB, dl, 7987 TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 7988 .addReg(LHS1).addReg(RHS1)); 7989 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2CMPrr : ARM::CMPrr)) 7990 .addReg(LHS2).addReg(RHS2) 7991 .addImm(ARMCC::EQ).addReg(ARM::CPSR); 7992 } 7993 7994 MachineBasicBlock *destMBB = MI->getOperand(RHSisZero ? 3 : 5).getMBB(); 7995 MachineBasicBlock *exitMBB = OtherSucc(BB, destMBB); 7996 if (MI->getOperand(0).getImm() == ARMCC::NE) 7997 std::swap(destMBB, exitMBB); 7998 7999 BuildMI(BB, dl, TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)) 8000 .addMBB(destMBB).addImm(ARMCC::EQ).addReg(ARM::CPSR); 8001 if (isThumb2) 8002 AddDefaultPred(BuildMI(BB, dl, TII->get(ARM::t2B)).addMBB(exitMBB)); 8003 else 8004 BuildMI(BB, dl, TII->get(ARM::B)) .addMBB(exitMBB); 8005 8006 MI->eraseFromParent(); // The pseudo instruction is gone now. 8007 return BB; 8008 } 8009 8010 case ARM::Int_eh_sjlj_setjmp: 8011 case ARM::Int_eh_sjlj_setjmp_nofp: 8012 case ARM::tInt_eh_sjlj_setjmp: 8013 case ARM::t2Int_eh_sjlj_setjmp: 8014 case ARM::t2Int_eh_sjlj_setjmp_nofp: 8015 return BB; 8016 8017 case ARM::Int_eh_sjlj_setup_dispatch: 8018 EmitSjLjDispatchBlock(MI, BB); 8019 return BB; 8020 8021 case ARM::ABS: 8022 case ARM::t2ABS: { 8023 // To insert an ABS instruction, we have to insert the 8024 // diamond control-flow pattern. The incoming instruction knows the 8025 // source vreg to test against 0, the destination vreg to set, 8026 // the condition code register to branch on, the 8027 // true/false values to select between, and a branch opcode to use. 8028 // It transforms 8029 // V1 = ABS V0 8030 // into 8031 // V2 = MOVS V0 8032 // BCC (branch to SinkBB if V0 >= 0) 8033 // RSBBB: V3 = RSBri V2, 0 (compute ABS if V2 < 0) 8034 // SinkBB: V1 = PHI(V2, V3) 8035 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 8036 MachineFunction::iterator BBI = ++BB->getIterator(); 8037 MachineFunction *Fn = BB->getParent(); 8038 MachineBasicBlock *RSBBB = Fn->CreateMachineBasicBlock(LLVM_BB); 8039 MachineBasicBlock *SinkBB = Fn->CreateMachineBasicBlock(LLVM_BB); 8040 Fn->insert(BBI, RSBBB); 8041 Fn->insert(BBI, SinkBB); 8042 8043 unsigned int ABSSrcReg = MI->getOperand(1).getReg(); 8044 unsigned int ABSDstReg = MI->getOperand(0).getReg(); 8045 bool ABSSrcKIll = MI->getOperand(1).isKill(); 8046 bool isThumb2 = Subtarget->isThumb2(); 8047 MachineRegisterInfo &MRI = Fn->getRegInfo(); 8048 // In Thumb mode S must not be specified if source register is the SP or 8049 // PC and if destination register is the SP, so restrict register class 8050 unsigned NewRsbDstReg = 8051 MRI.createVirtualRegister(isThumb2 ? &ARM::rGPRRegClass : &ARM::GPRRegClass); 8052 8053 // Transfer the remainder of BB and its successor edges to sinkMBB. 8054 SinkBB->splice(SinkBB->begin(), BB, 8055 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 8056 SinkBB->transferSuccessorsAndUpdatePHIs(BB); 8057 8058 BB->addSuccessor(RSBBB); 8059 BB->addSuccessor(SinkBB); 8060 8061 // fall through to SinkMBB 8062 RSBBB->addSuccessor(SinkBB); 8063 8064 // insert a cmp at the end of BB 8065 AddDefaultPred(BuildMI(BB, dl, 8066 TII->get(isThumb2 ? ARM::t2CMPri : ARM::CMPri)) 8067 .addReg(ABSSrcReg).addImm(0)); 8068 8069 // insert a bcc with opposite CC to ARMCC::MI at the end of BB 8070 BuildMI(BB, dl, 8071 TII->get(isThumb2 ? ARM::t2Bcc : ARM::Bcc)).addMBB(SinkBB) 8072 .addImm(ARMCC::getOppositeCondition(ARMCC::MI)).addReg(ARM::CPSR); 8073 8074 // insert rsbri in RSBBB 8075 // Note: BCC and rsbri will be converted into predicated rsbmi 8076 // by if-conversion pass 8077 BuildMI(*RSBBB, RSBBB->begin(), dl, 8078 TII->get(isThumb2 ? ARM::t2RSBri : ARM::RSBri), NewRsbDstReg) 8079 .addReg(ABSSrcReg, ABSSrcKIll ? RegState::Kill : 0) 8080 .addImm(0).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0); 8081 8082 // insert PHI in SinkBB, 8083 // reuse ABSDstReg to not change uses of ABS instruction 8084 BuildMI(*SinkBB, SinkBB->begin(), dl, 8085 TII->get(ARM::PHI), ABSDstReg) 8086 .addReg(NewRsbDstReg).addMBB(RSBBB) 8087 .addReg(ABSSrcReg).addMBB(BB); 8088 8089 // remove ABS instruction 8090 MI->eraseFromParent(); 8091 8092 // return last added BB 8093 return SinkBB; 8094 } 8095 case ARM::COPY_STRUCT_BYVAL_I32: 8096 ++NumLoopByVals; 8097 return EmitStructByval(MI, BB); 8098 case ARM::WIN__CHKSTK: 8099 return EmitLowered__chkstk(MI, BB); 8100 case ARM::WIN__DBZCHK: 8101 return EmitLowered__dbzchk(MI, BB); 8102 } 8103 } 8104 8105 /// \brief Attaches vregs to MEMCPY that it will use as scratch registers 8106 /// when it is expanded into LDM/STM. This is done as a post-isel lowering 8107 /// instead of as a custom inserter because we need the use list from the SDNode. 8108 static void attachMEMCPYScratchRegs(const ARMSubtarget *Subtarget, 8109 MachineInstr *MI, const SDNode *Node) { 8110 bool isThumb1 = Subtarget->isThumb1Only(); 8111 8112 DebugLoc DL = MI->getDebugLoc(); 8113 MachineFunction *MF = MI->getParent()->getParent(); 8114 MachineRegisterInfo &MRI = MF->getRegInfo(); 8115 MachineInstrBuilder MIB(*MF, MI); 8116 8117 // If the new dst/src is unused mark it as dead. 8118 if (!Node->hasAnyUseOfValue(0)) { 8119 MI->getOperand(0).setIsDead(true); 8120 } 8121 if (!Node->hasAnyUseOfValue(1)) { 8122 MI->getOperand(1).setIsDead(true); 8123 } 8124 8125 // The MEMCPY both defines and kills the scratch registers. 8126 for (unsigned I = 0; I != MI->getOperand(4).getImm(); ++I) { 8127 unsigned TmpReg = MRI.createVirtualRegister(isThumb1 ? &ARM::tGPRRegClass 8128 : &ARM::GPRRegClass); 8129 MIB.addReg(TmpReg, RegState::Define|RegState::Dead); 8130 } 8131 } 8132 8133 void ARMTargetLowering::AdjustInstrPostInstrSelection(MachineInstr *MI, 8134 SDNode *Node) const { 8135 if (MI->getOpcode() == ARM::MEMCPY) { 8136 attachMEMCPYScratchRegs(Subtarget, MI, Node); 8137 return; 8138 } 8139 8140 const MCInstrDesc *MCID = &MI->getDesc(); 8141 // Adjust potentially 's' setting instructions after isel, i.e. ADC, SBC, RSB, 8142 // RSC. Coming out of isel, they have an implicit CPSR def, but the optional 8143 // operand is still set to noreg. If needed, set the optional operand's 8144 // register to CPSR, and remove the redundant implicit def. 8145 // 8146 // e.g. ADCS (..., CPSR<imp-def>) -> ADC (... opt:CPSR<def>). 8147 8148 // Rename pseudo opcodes. 8149 unsigned NewOpc = convertAddSubFlagsOpcode(MI->getOpcode()); 8150 if (NewOpc) { 8151 const ARMBaseInstrInfo *TII = Subtarget->getInstrInfo(); 8152 MCID = &TII->get(NewOpc); 8153 8154 assert(MCID->getNumOperands() == MI->getDesc().getNumOperands() + 1 && 8155 "converted opcode should be the same except for cc_out"); 8156 8157 MI->setDesc(*MCID); 8158 8159 // Add the optional cc_out operand 8160 MI->addOperand(MachineOperand::CreateReg(0, /*isDef=*/true)); 8161 } 8162 unsigned ccOutIdx = MCID->getNumOperands() - 1; 8163 8164 // Any ARM instruction that sets the 's' bit should specify an optional 8165 // "cc_out" operand in the last operand position. 8166 if (!MI->hasOptionalDef() || !MCID->OpInfo[ccOutIdx].isOptionalDef()) { 8167 assert(!NewOpc && "Optional cc_out operand required"); 8168 return; 8169 } 8170 // Look for an implicit def of CPSR added by MachineInstr ctor. Remove it 8171 // since we already have an optional CPSR def. 8172 bool definesCPSR = false; 8173 bool deadCPSR = false; 8174 for (unsigned i = MCID->getNumOperands(), e = MI->getNumOperands(); 8175 i != e; ++i) { 8176 const MachineOperand &MO = MI->getOperand(i); 8177 if (MO.isReg() && MO.isDef() && MO.getReg() == ARM::CPSR) { 8178 definesCPSR = true; 8179 if (MO.isDead()) 8180 deadCPSR = true; 8181 MI->RemoveOperand(i); 8182 break; 8183 } 8184 } 8185 if (!definesCPSR) { 8186 assert(!NewOpc && "Optional cc_out operand required"); 8187 return; 8188 } 8189 assert(deadCPSR == !Node->hasAnyUseOfValue(1) && "inconsistent dead flag"); 8190 if (deadCPSR) { 8191 assert(!MI->getOperand(ccOutIdx).getReg() && 8192 "expect uninitialized optional cc_out operand"); 8193 return; 8194 } 8195 8196 // If this instruction was defined with an optional CPSR def and its dag node 8197 // had a live implicit CPSR def, then activate the optional CPSR def. 8198 MachineOperand &MO = MI->getOperand(ccOutIdx); 8199 MO.setReg(ARM::CPSR); 8200 MO.setIsDef(true); 8201 } 8202 8203 //===----------------------------------------------------------------------===// 8204 // ARM Optimization Hooks 8205 //===----------------------------------------------------------------------===// 8206 8207 // Helper function that checks if N is a null or all ones constant. 8208 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) { 8209 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N); 8210 if (!C) 8211 return false; 8212 return AllOnes ? C->isAllOnesValue() : C->isNullValue(); 8213 } 8214 8215 // Return true if N is conditionally 0 or all ones. 8216 // Detects these expressions where cc is an i1 value: 8217 // 8218 // (select cc 0, y) [AllOnes=0] 8219 // (select cc y, 0) [AllOnes=0] 8220 // (zext cc) [AllOnes=0] 8221 // (sext cc) [AllOnes=0/1] 8222 // (select cc -1, y) [AllOnes=1] 8223 // (select cc y, -1) [AllOnes=1] 8224 // 8225 // Invert is set when N is the null/all ones constant when CC is false. 8226 // OtherOp is set to the alternative value of N. 8227 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, 8228 SDValue &CC, bool &Invert, 8229 SDValue &OtherOp, 8230 SelectionDAG &DAG) { 8231 switch (N->getOpcode()) { 8232 default: return false; 8233 case ISD::SELECT: { 8234 CC = N->getOperand(0); 8235 SDValue N1 = N->getOperand(1); 8236 SDValue N2 = N->getOperand(2); 8237 if (isZeroOrAllOnes(N1, AllOnes)) { 8238 Invert = false; 8239 OtherOp = N2; 8240 return true; 8241 } 8242 if (isZeroOrAllOnes(N2, AllOnes)) { 8243 Invert = true; 8244 OtherOp = N1; 8245 return true; 8246 } 8247 return false; 8248 } 8249 case ISD::ZERO_EXTEND: 8250 // (zext cc) can never be the all ones value. 8251 if (AllOnes) 8252 return false; 8253 // Fall through. 8254 case ISD::SIGN_EXTEND: { 8255 SDLoc dl(N); 8256 EVT VT = N->getValueType(0); 8257 CC = N->getOperand(0); 8258 if (CC.getValueType() != MVT::i1) 8259 return false; 8260 Invert = !AllOnes; 8261 if (AllOnes) 8262 // When looking for an AllOnes constant, N is an sext, and the 'other' 8263 // value is 0. 8264 OtherOp = DAG.getConstant(0, dl, VT); 8265 else if (N->getOpcode() == ISD::ZERO_EXTEND) 8266 // When looking for a 0 constant, N can be zext or sext. 8267 OtherOp = DAG.getConstant(1, dl, VT); 8268 else 8269 OtherOp = DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl, 8270 VT); 8271 return true; 8272 } 8273 } 8274 } 8275 8276 // Combine a constant select operand into its use: 8277 // 8278 // (add (select cc, 0, c), x) -> (select cc, x, (add, x, c)) 8279 // (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c)) 8280 // (and (select cc, -1, c), x) -> (select cc, x, (and, x, c)) [AllOnes=1] 8281 // (or (select cc, 0, c), x) -> (select cc, x, (or, x, c)) 8282 // (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c)) 8283 // 8284 // The transform is rejected if the select doesn't have a constant operand that 8285 // is null, or all ones when AllOnes is set. 8286 // 8287 // Also recognize sext/zext from i1: 8288 // 8289 // (add (zext cc), x) -> (select cc (add x, 1), x) 8290 // (add (sext cc), x) -> (select cc (add x, -1), x) 8291 // 8292 // These transformations eventually create predicated instructions. 8293 // 8294 // @param N The node to transform. 8295 // @param Slct The N operand that is a select. 8296 // @param OtherOp The other N operand (x above). 8297 // @param DCI Context. 8298 // @param AllOnes Require the select constant to be all ones instead of null. 8299 // @returns The new node, or SDValue() on failure. 8300 static 8301 SDValue combineSelectAndUse(SDNode *N, SDValue Slct, SDValue OtherOp, 8302 TargetLowering::DAGCombinerInfo &DCI, 8303 bool AllOnes = false) { 8304 SelectionDAG &DAG = DCI.DAG; 8305 EVT VT = N->getValueType(0); 8306 SDValue NonConstantVal; 8307 SDValue CCOp; 8308 bool SwapSelectOps; 8309 if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps, 8310 NonConstantVal, DAG)) 8311 return SDValue(); 8312 8313 // Slct is now know to be the desired identity constant when CC is true. 8314 SDValue TrueVal = OtherOp; 8315 SDValue FalseVal = DAG.getNode(N->getOpcode(), SDLoc(N), VT, 8316 OtherOp, NonConstantVal); 8317 // Unless SwapSelectOps says CC should be false. 8318 if (SwapSelectOps) 8319 std::swap(TrueVal, FalseVal); 8320 8321 return DAG.getNode(ISD::SELECT, SDLoc(N), VT, 8322 CCOp, TrueVal, FalseVal); 8323 } 8324 8325 // Attempt combineSelectAndUse on each operand of a commutative operator N. 8326 static 8327 SDValue combineSelectAndUseCommutative(SDNode *N, bool AllOnes, 8328 TargetLowering::DAGCombinerInfo &DCI) { 8329 SDValue N0 = N->getOperand(0); 8330 SDValue N1 = N->getOperand(1); 8331 if (N0.getNode()->hasOneUse()) { 8332 SDValue Result = combineSelectAndUse(N, N0, N1, DCI, AllOnes); 8333 if (Result.getNode()) 8334 return Result; 8335 } 8336 if (N1.getNode()->hasOneUse()) { 8337 SDValue Result = combineSelectAndUse(N, N1, N0, DCI, AllOnes); 8338 if (Result.getNode()) 8339 return Result; 8340 } 8341 return SDValue(); 8342 } 8343 8344 // AddCombineToVPADDL- For pair-wise add on neon, use the vpaddl instruction 8345 // (only after legalization). 8346 static SDValue AddCombineToVPADDL(SDNode *N, SDValue N0, SDValue N1, 8347 TargetLowering::DAGCombinerInfo &DCI, 8348 const ARMSubtarget *Subtarget) { 8349 8350 // Only perform optimization if after legalize, and if NEON is available. We 8351 // also expected both operands to be BUILD_VECTORs. 8352 if (DCI.isBeforeLegalize() || !Subtarget->hasNEON() 8353 || N0.getOpcode() != ISD::BUILD_VECTOR 8354 || N1.getOpcode() != ISD::BUILD_VECTOR) 8355 return SDValue(); 8356 8357 // Check output type since VPADDL operand elements can only be 8, 16, or 32. 8358 EVT VT = N->getValueType(0); 8359 if (!VT.isInteger() || VT.getVectorElementType() == MVT::i64) 8360 return SDValue(); 8361 8362 // Check that the vector operands are of the right form. 8363 // N0 and N1 are BUILD_VECTOR nodes with N number of EXTRACT_VECTOR 8364 // operands, where N is the size of the formed vector. 8365 // Each EXTRACT_VECTOR should have the same input vector and odd or even 8366 // index such that we have a pair wise add pattern. 8367 8368 // Grab the vector that all EXTRACT_VECTOR nodes should be referencing. 8369 if (N0->getOperand(0)->getOpcode() != ISD::EXTRACT_VECTOR_ELT) 8370 return SDValue(); 8371 SDValue Vec = N0->getOperand(0)->getOperand(0); 8372 SDNode *V = Vec.getNode(); 8373 unsigned nextIndex = 0; 8374 8375 // For each operands to the ADD which are BUILD_VECTORs, 8376 // check to see if each of their operands are an EXTRACT_VECTOR with 8377 // the same vector and appropriate index. 8378 for (unsigned i = 0, e = N0->getNumOperands(); i != e; ++i) { 8379 if (N0->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT 8380 && N1->getOperand(i)->getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 8381 8382 SDValue ExtVec0 = N0->getOperand(i); 8383 SDValue ExtVec1 = N1->getOperand(i); 8384 8385 // First operand is the vector, verify its the same. 8386 if (V != ExtVec0->getOperand(0).getNode() || 8387 V != ExtVec1->getOperand(0).getNode()) 8388 return SDValue(); 8389 8390 // Second is the constant, verify its correct. 8391 ConstantSDNode *C0 = dyn_cast<ConstantSDNode>(ExtVec0->getOperand(1)); 8392 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(ExtVec1->getOperand(1)); 8393 8394 // For the constant, we want to see all the even or all the odd. 8395 if (!C0 || !C1 || C0->getZExtValue() != nextIndex 8396 || C1->getZExtValue() != nextIndex+1) 8397 return SDValue(); 8398 8399 // Increment index. 8400 nextIndex+=2; 8401 } else 8402 return SDValue(); 8403 } 8404 8405 // Create VPADDL node. 8406 SelectionDAG &DAG = DCI.DAG; 8407 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 8408 8409 SDLoc dl(N); 8410 8411 // Build operand list. 8412 SmallVector<SDValue, 8> Ops; 8413 Ops.push_back(DAG.getConstant(Intrinsic::arm_neon_vpaddls, dl, 8414 TLI.getPointerTy(DAG.getDataLayout()))); 8415 8416 // Input is the vector. 8417 Ops.push_back(Vec); 8418 8419 // Get widened type and narrowed type. 8420 MVT widenType; 8421 unsigned numElem = VT.getVectorNumElements(); 8422 8423 EVT inputLaneType = Vec.getValueType().getVectorElementType(); 8424 switch (inputLaneType.getSimpleVT().SimpleTy) { 8425 case MVT::i8: widenType = MVT::getVectorVT(MVT::i16, numElem); break; 8426 case MVT::i16: widenType = MVT::getVectorVT(MVT::i32, numElem); break; 8427 case MVT::i32: widenType = MVT::getVectorVT(MVT::i64, numElem); break; 8428 default: 8429 llvm_unreachable("Invalid vector element type for padd optimization."); 8430 } 8431 8432 SDValue tmp = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, widenType, Ops); 8433 unsigned ExtOp = VT.bitsGT(tmp.getValueType()) ? ISD::ANY_EXTEND : ISD::TRUNCATE; 8434 return DAG.getNode(ExtOp, dl, VT, tmp); 8435 } 8436 8437 static SDValue findMUL_LOHI(SDValue V) { 8438 if (V->getOpcode() == ISD::UMUL_LOHI || 8439 V->getOpcode() == ISD::SMUL_LOHI) 8440 return V; 8441 return SDValue(); 8442 } 8443 8444 static SDValue AddCombineTo64bitMLAL(SDNode *AddcNode, 8445 TargetLowering::DAGCombinerInfo &DCI, 8446 const ARMSubtarget *Subtarget) { 8447 8448 if (Subtarget->isThumb1Only()) return SDValue(); 8449 8450 // Only perform the checks after legalize when the pattern is available. 8451 if (DCI.isBeforeLegalize()) return SDValue(); 8452 8453 // Look for multiply add opportunities. 8454 // The pattern is a ISD::UMUL_LOHI followed by two add nodes, where 8455 // each add nodes consumes a value from ISD::UMUL_LOHI and there is 8456 // a glue link from the first add to the second add. 8457 // If we find this pattern, we can replace the U/SMUL_LOHI, ADDC, and ADDE by 8458 // a S/UMLAL instruction. 8459 // UMUL_LOHI 8460 // / :lo \ :hi 8461 // / \ [no multiline comment] 8462 // loAdd -> ADDE | 8463 // \ :glue / 8464 // \ / 8465 // ADDC <- hiAdd 8466 // 8467 assert(AddcNode->getOpcode() == ISD::ADDC && "Expect an ADDC"); 8468 SDValue AddcOp0 = AddcNode->getOperand(0); 8469 SDValue AddcOp1 = AddcNode->getOperand(1); 8470 8471 // Check if the two operands are from the same mul_lohi node. 8472 if (AddcOp0.getNode() == AddcOp1.getNode()) 8473 return SDValue(); 8474 8475 assert(AddcNode->getNumValues() == 2 && 8476 AddcNode->getValueType(0) == MVT::i32 && 8477 "Expect ADDC with two result values. First: i32"); 8478 8479 // Check that we have a glued ADDC node. 8480 if (AddcNode->getValueType(1) != MVT::Glue) 8481 return SDValue(); 8482 8483 // Check that the ADDC adds the low result of the S/UMUL_LOHI. 8484 if (AddcOp0->getOpcode() != ISD::UMUL_LOHI && 8485 AddcOp0->getOpcode() != ISD::SMUL_LOHI && 8486 AddcOp1->getOpcode() != ISD::UMUL_LOHI && 8487 AddcOp1->getOpcode() != ISD::SMUL_LOHI) 8488 return SDValue(); 8489 8490 // Look for the glued ADDE. 8491 SDNode* AddeNode = AddcNode->getGluedUser(); 8492 if (!AddeNode) 8493 return SDValue(); 8494 8495 // Make sure it is really an ADDE. 8496 if (AddeNode->getOpcode() != ISD::ADDE) 8497 return SDValue(); 8498 8499 assert(AddeNode->getNumOperands() == 3 && 8500 AddeNode->getOperand(2).getValueType() == MVT::Glue && 8501 "ADDE node has the wrong inputs"); 8502 8503 // Check for the triangle shape. 8504 SDValue AddeOp0 = AddeNode->getOperand(0); 8505 SDValue AddeOp1 = AddeNode->getOperand(1); 8506 8507 // Make sure that the ADDE operands are not coming from the same node. 8508 if (AddeOp0.getNode() == AddeOp1.getNode()) 8509 return SDValue(); 8510 8511 // Find the MUL_LOHI node walking up ADDE's operands. 8512 bool IsLeftOperandMUL = false; 8513 SDValue MULOp = findMUL_LOHI(AddeOp0); 8514 if (MULOp == SDValue()) 8515 MULOp = findMUL_LOHI(AddeOp1); 8516 else 8517 IsLeftOperandMUL = true; 8518 if (MULOp == SDValue()) 8519 return SDValue(); 8520 8521 // Figure out the right opcode. 8522 unsigned Opc = MULOp->getOpcode(); 8523 unsigned FinalOpc = (Opc == ISD::SMUL_LOHI) ? ARMISD::SMLAL : ARMISD::UMLAL; 8524 8525 // Figure out the high and low input values to the MLAL node. 8526 SDValue* HiAdd = nullptr; 8527 SDValue* LoMul = nullptr; 8528 SDValue* LowAdd = nullptr; 8529 8530 // Ensure that ADDE is from high result of ISD::SMUL_LOHI. 8531 if ((AddeOp0 != MULOp.getValue(1)) && (AddeOp1 != MULOp.getValue(1))) 8532 return SDValue(); 8533 8534 if (IsLeftOperandMUL) 8535 HiAdd = &AddeOp1; 8536 else 8537 HiAdd = &AddeOp0; 8538 8539 8540 // Ensure that LoMul and LowAdd are taken from correct ISD::SMUL_LOHI node 8541 // whose low result is fed to the ADDC we are checking. 8542 8543 if (AddcOp0 == MULOp.getValue(0)) { 8544 LoMul = &AddcOp0; 8545 LowAdd = &AddcOp1; 8546 } 8547 if (AddcOp1 == MULOp.getValue(0)) { 8548 LoMul = &AddcOp1; 8549 LowAdd = &AddcOp0; 8550 } 8551 8552 if (!LoMul) 8553 return SDValue(); 8554 8555 // Create the merged node. 8556 SelectionDAG &DAG = DCI.DAG; 8557 8558 // Build operand list. 8559 SmallVector<SDValue, 8> Ops; 8560 Ops.push_back(LoMul->getOperand(0)); 8561 Ops.push_back(LoMul->getOperand(1)); 8562 Ops.push_back(*LowAdd); 8563 Ops.push_back(*HiAdd); 8564 8565 SDValue MLALNode = DAG.getNode(FinalOpc, SDLoc(AddcNode), 8566 DAG.getVTList(MVT::i32, MVT::i32), Ops); 8567 8568 // Replace the ADDs' nodes uses by the MLA node's values. 8569 SDValue HiMLALResult(MLALNode.getNode(), 1); 8570 DAG.ReplaceAllUsesOfValueWith(SDValue(AddeNode, 0), HiMLALResult); 8571 8572 SDValue LoMLALResult(MLALNode.getNode(), 0); 8573 DAG.ReplaceAllUsesOfValueWith(SDValue(AddcNode, 0), LoMLALResult); 8574 8575 // Return original node to notify the driver to stop replacing. 8576 SDValue resNode(AddcNode, 0); 8577 return resNode; 8578 } 8579 8580 /// PerformADDCCombine - Target-specific dag combine transform from 8581 /// ISD::ADDC, ISD::ADDE, and ISD::MUL_LOHI to MLAL. 8582 static SDValue PerformADDCCombine(SDNode *N, 8583 TargetLowering::DAGCombinerInfo &DCI, 8584 const ARMSubtarget *Subtarget) { 8585 8586 return AddCombineTo64bitMLAL(N, DCI, Subtarget); 8587 8588 } 8589 8590 /// PerformADDCombineWithOperands - Try DAG combinations for an ADD with 8591 /// operands N0 and N1. This is a helper for PerformADDCombine that is 8592 /// called with the default operands, and if that fails, with commuted 8593 /// operands. 8594 static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1, 8595 TargetLowering::DAGCombinerInfo &DCI, 8596 const ARMSubtarget *Subtarget){ 8597 8598 // Attempt to create vpaddl for this add. 8599 SDValue Result = AddCombineToVPADDL(N, N0, N1, DCI, Subtarget); 8600 if (Result.getNode()) 8601 return Result; 8602 8603 // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c)) 8604 if (N0.getNode()->hasOneUse()) { 8605 SDValue Result = combineSelectAndUse(N, N0, N1, DCI); 8606 if (Result.getNode()) return Result; 8607 } 8608 return SDValue(); 8609 } 8610 8611 /// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD. 8612 /// 8613 static SDValue PerformADDCombine(SDNode *N, 8614 TargetLowering::DAGCombinerInfo &DCI, 8615 const ARMSubtarget *Subtarget) { 8616 SDValue N0 = N->getOperand(0); 8617 SDValue N1 = N->getOperand(1); 8618 8619 // First try with the default operand order. 8620 SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI, Subtarget); 8621 if (Result.getNode()) 8622 return Result; 8623 8624 // If that didn't work, try again with the operands commuted. 8625 return PerformADDCombineWithOperands(N, N1, N0, DCI, Subtarget); 8626 } 8627 8628 /// PerformSUBCombine - Target-specific dag combine xforms for ISD::SUB. 8629 /// 8630 static SDValue PerformSUBCombine(SDNode *N, 8631 TargetLowering::DAGCombinerInfo &DCI) { 8632 SDValue N0 = N->getOperand(0); 8633 SDValue N1 = N->getOperand(1); 8634 8635 // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c)) 8636 if (N1.getNode()->hasOneUse()) { 8637 SDValue Result = combineSelectAndUse(N, N1, N0, DCI); 8638 if (Result.getNode()) return Result; 8639 } 8640 8641 return SDValue(); 8642 } 8643 8644 /// PerformVMULCombine 8645 /// Distribute (A + B) * C to (A * C) + (B * C) to take advantage of the 8646 /// special multiplier accumulator forwarding. 8647 /// vmul d3, d0, d2 8648 /// vmla d3, d1, d2 8649 /// is faster than 8650 /// vadd d3, d0, d1 8651 /// vmul d3, d3, d2 8652 // However, for (A + B) * (A + B), 8653 // vadd d2, d0, d1 8654 // vmul d3, d0, d2 8655 // vmla d3, d1, d2 8656 // is slower than 8657 // vadd d2, d0, d1 8658 // vmul d3, d2, d2 8659 static SDValue PerformVMULCombine(SDNode *N, 8660 TargetLowering::DAGCombinerInfo &DCI, 8661 const ARMSubtarget *Subtarget) { 8662 if (!Subtarget->hasVMLxForwarding()) 8663 return SDValue(); 8664 8665 SelectionDAG &DAG = DCI.DAG; 8666 SDValue N0 = N->getOperand(0); 8667 SDValue N1 = N->getOperand(1); 8668 unsigned Opcode = N0.getOpcode(); 8669 if (Opcode != ISD::ADD && Opcode != ISD::SUB && 8670 Opcode != ISD::FADD && Opcode != ISD::FSUB) { 8671 Opcode = N1.getOpcode(); 8672 if (Opcode != ISD::ADD && Opcode != ISD::SUB && 8673 Opcode != ISD::FADD && Opcode != ISD::FSUB) 8674 return SDValue(); 8675 std::swap(N0, N1); 8676 } 8677 8678 if (N0 == N1) 8679 return SDValue(); 8680 8681 EVT VT = N->getValueType(0); 8682 SDLoc DL(N); 8683 SDValue N00 = N0->getOperand(0); 8684 SDValue N01 = N0->getOperand(1); 8685 return DAG.getNode(Opcode, DL, VT, 8686 DAG.getNode(ISD::MUL, DL, VT, N00, N1), 8687 DAG.getNode(ISD::MUL, DL, VT, N01, N1)); 8688 } 8689 8690 static SDValue PerformMULCombine(SDNode *N, 8691 TargetLowering::DAGCombinerInfo &DCI, 8692 const ARMSubtarget *Subtarget) { 8693 SelectionDAG &DAG = DCI.DAG; 8694 8695 if (Subtarget->isThumb1Only()) 8696 return SDValue(); 8697 8698 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) 8699 return SDValue(); 8700 8701 EVT VT = N->getValueType(0); 8702 if (VT.is64BitVector() || VT.is128BitVector()) 8703 return PerformVMULCombine(N, DCI, Subtarget); 8704 if (VT != MVT::i32) 8705 return SDValue(); 8706 8707 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1)); 8708 if (!C) 8709 return SDValue(); 8710 8711 int64_t MulAmt = C->getSExtValue(); 8712 unsigned ShiftAmt = countTrailingZeros<uint64_t>(MulAmt); 8713 8714 ShiftAmt = ShiftAmt & (32 - 1); 8715 SDValue V = N->getOperand(0); 8716 SDLoc DL(N); 8717 8718 SDValue Res; 8719 MulAmt >>= ShiftAmt; 8720 8721 if (MulAmt >= 0) { 8722 if (isPowerOf2_32(MulAmt - 1)) { 8723 // (mul x, 2^N + 1) => (add (shl x, N), x) 8724 Res = DAG.getNode(ISD::ADD, DL, VT, 8725 V, 8726 DAG.getNode(ISD::SHL, DL, VT, 8727 V, 8728 DAG.getConstant(Log2_32(MulAmt - 1), DL, 8729 MVT::i32))); 8730 } else if (isPowerOf2_32(MulAmt + 1)) { 8731 // (mul x, 2^N - 1) => (sub (shl x, N), x) 8732 Res = DAG.getNode(ISD::SUB, DL, VT, 8733 DAG.getNode(ISD::SHL, DL, VT, 8734 V, 8735 DAG.getConstant(Log2_32(MulAmt + 1), DL, 8736 MVT::i32)), 8737 V); 8738 } else 8739 return SDValue(); 8740 } else { 8741 uint64_t MulAmtAbs = -MulAmt; 8742 if (isPowerOf2_32(MulAmtAbs + 1)) { 8743 // (mul x, -(2^N - 1)) => (sub x, (shl x, N)) 8744 Res = DAG.getNode(ISD::SUB, DL, VT, 8745 V, 8746 DAG.getNode(ISD::SHL, DL, VT, 8747 V, 8748 DAG.getConstant(Log2_32(MulAmtAbs + 1), DL, 8749 MVT::i32))); 8750 } else if (isPowerOf2_32(MulAmtAbs - 1)) { 8751 // (mul x, -(2^N + 1)) => - (add (shl x, N), x) 8752 Res = DAG.getNode(ISD::ADD, DL, VT, 8753 V, 8754 DAG.getNode(ISD::SHL, DL, VT, 8755 V, 8756 DAG.getConstant(Log2_32(MulAmtAbs - 1), DL, 8757 MVT::i32))); 8758 Res = DAG.getNode(ISD::SUB, DL, VT, 8759 DAG.getConstant(0, DL, MVT::i32), Res); 8760 8761 } else 8762 return SDValue(); 8763 } 8764 8765 if (ShiftAmt != 0) 8766 Res = DAG.getNode(ISD::SHL, DL, VT, 8767 Res, DAG.getConstant(ShiftAmt, DL, MVT::i32)); 8768 8769 // Do not add new nodes to DAG combiner worklist. 8770 DCI.CombineTo(N, Res, false); 8771 return SDValue(); 8772 } 8773 8774 static SDValue PerformANDCombine(SDNode *N, 8775 TargetLowering::DAGCombinerInfo &DCI, 8776 const ARMSubtarget *Subtarget) { 8777 8778 // Attempt to use immediate-form VBIC 8779 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1)); 8780 SDLoc dl(N); 8781 EVT VT = N->getValueType(0); 8782 SelectionDAG &DAG = DCI.DAG; 8783 8784 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT)) 8785 return SDValue(); 8786 8787 APInt SplatBits, SplatUndef; 8788 unsigned SplatBitSize; 8789 bool HasAnyUndefs; 8790 if (BVN && 8791 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 8792 if (SplatBitSize <= 64) { 8793 EVT VbicVT; 8794 SDValue Val = isNEONModifiedImm((~SplatBits).getZExtValue(), 8795 SplatUndef.getZExtValue(), SplatBitSize, 8796 DAG, dl, VbicVT, VT.is128BitVector(), 8797 OtherModImm); 8798 if (Val.getNode()) { 8799 SDValue Input = 8800 DAG.getNode(ISD::BITCAST, dl, VbicVT, N->getOperand(0)); 8801 SDValue Vbic = DAG.getNode(ARMISD::VBICIMM, dl, VbicVT, Input, Val); 8802 return DAG.getNode(ISD::BITCAST, dl, VT, Vbic); 8803 } 8804 } 8805 } 8806 8807 if (!Subtarget->isThumb1Only()) { 8808 // fold (and (select cc, -1, c), x) -> (select cc, x, (and, x, c)) 8809 SDValue Result = combineSelectAndUseCommutative(N, true, DCI); 8810 if (Result.getNode()) 8811 return Result; 8812 } 8813 8814 return SDValue(); 8815 } 8816 8817 /// PerformORCombine - Target-specific dag combine xforms for ISD::OR 8818 static SDValue PerformORCombine(SDNode *N, 8819 TargetLowering::DAGCombinerInfo &DCI, 8820 const ARMSubtarget *Subtarget) { 8821 // Attempt to use immediate-form VORR 8822 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(N->getOperand(1)); 8823 SDLoc dl(N); 8824 EVT VT = N->getValueType(0); 8825 SelectionDAG &DAG = DCI.DAG; 8826 8827 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT)) 8828 return SDValue(); 8829 8830 APInt SplatBits, SplatUndef; 8831 unsigned SplatBitSize; 8832 bool HasAnyUndefs; 8833 if (BVN && Subtarget->hasNEON() && 8834 BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, HasAnyUndefs)) { 8835 if (SplatBitSize <= 64) { 8836 EVT VorrVT; 8837 SDValue Val = isNEONModifiedImm(SplatBits.getZExtValue(), 8838 SplatUndef.getZExtValue(), SplatBitSize, 8839 DAG, dl, VorrVT, VT.is128BitVector(), 8840 OtherModImm); 8841 if (Val.getNode()) { 8842 SDValue Input = 8843 DAG.getNode(ISD::BITCAST, dl, VorrVT, N->getOperand(0)); 8844 SDValue Vorr = DAG.getNode(ARMISD::VORRIMM, dl, VorrVT, Input, Val); 8845 return DAG.getNode(ISD::BITCAST, dl, VT, Vorr); 8846 } 8847 } 8848 } 8849 8850 if (!Subtarget->isThumb1Only()) { 8851 // fold (or (select cc, 0, c), x) -> (select cc, x, (or, x, c)) 8852 SDValue Result = combineSelectAndUseCommutative(N, false, DCI); 8853 if (Result.getNode()) 8854 return Result; 8855 } 8856 8857 // The code below optimizes (or (and X, Y), Z). 8858 // The AND operand needs to have a single user to make these optimizations 8859 // profitable. 8860 SDValue N0 = N->getOperand(0); 8861 if (N0.getOpcode() != ISD::AND || !N0.hasOneUse()) 8862 return SDValue(); 8863 SDValue N1 = N->getOperand(1); 8864 8865 // (or (and B, A), (and C, ~A)) => (VBSL A, B, C) when A is a constant. 8866 if (Subtarget->hasNEON() && N1.getOpcode() == ISD::AND && VT.isVector() && 8867 DAG.getTargetLoweringInfo().isTypeLegal(VT)) { 8868 APInt SplatUndef; 8869 unsigned SplatBitSize; 8870 bool HasAnyUndefs; 8871 8872 APInt SplatBits0, SplatBits1; 8873 BuildVectorSDNode *BVN0 = dyn_cast<BuildVectorSDNode>(N0->getOperand(1)); 8874 BuildVectorSDNode *BVN1 = dyn_cast<BuildVectorSDNode>(N1->getOperand(1)); 8875 // Ensure that the second operand of both ands are constants 8876 if (BVN0 && BVN0->isConstantSplat(SplatBits0, SplatUndef, SplatBitSize, 8877 HasAnyUndefs) && !HasAnyUndefs) { 8878 if (BVN1 && BVN1->isConstantSplat(SplatBits1, SplatUndef, SplatBitSize, 8879 HasAnyUndefs) && !HasAnyUndefs) { 8880 // Ensure that the bit width of the constants are the same and that 8881 // the splat arguments are logical inverses as per the pattern we 8882 // are trying to simplify. 8883 if (SplatBits0.getBitWidth() == SplatBits1.getBitWidth() && 8884 SplatBits0 == ~SplatBits1) { 8885 // Canonicalize the vector type to make instruction selection 8886 // simpler. 8887 EVT CanonicalVT = VT.is128BitVector() ? MVT::v4i32 : MVT::v2i32; 8888 SDValue Result = DAG.getNode(ARMISD::VBSL, dl, CanonicalVT, 8889 N0->getOperand(1), 8890 N0->getOperand(0), 8891 N1->getOperand(0)); 8892 return DAG.getNode(ISD::BITCAST, dl, VT, Result); 8893 } 8894 } 8895 } 8896 } 8897 8898 // Try to use the ARM/Thumb2 BFI (bitfield insert) instruction when 8899 // reasonable. 8900 8901 // BFI is only available on V6T2+ 8902 if (Subtarget->isThumb1Only() || !Subtarget->hasV6T2Ops()) 8903 return SDValue(); 8904 8905 SDLoc DL(N); 8906 // 1) or (and A, mask), val => ARMbfi A, val, mask 8907 // iff (val & mask) == val 8908 // 8909 // 2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask 8910 // 2a) iff isBitFieldInvertedMask(mask) && isBitFieldInvertedMask(~mask2) 8911 // && mask == ~mask2 8912 // 2b) iff isBitFieldInvertedMask(~mask) && isBitFieldInvertedMask(mask2) 8913 // && ~mask == mask2 8914 // (i.e., copy a bitfield value into another bitfield of the same width) 8915 8916 if (VT != MVT::i32) 8917 return SDValue(); 8918 8919 SDValue N00 = N0.getOperand(0); 8920 8921 // The value and the mask need to be constants so we can verify this is 8922 // actually a bitfield set. If the mask is 0xffff, we can do better 8923 // via a movt instruction, so don't use BFI in that case. 8924 SDValue MaskOp = N0.getOperand(1); 8925 ConstantSDNode *MaskC = dyn_cast<ConstantSDNode>(MaskOp); 8926 if (!MaskC) 8927 return SDValue(); 8928 unsigned Mask = MaskC->getZExtValue(); 8929 if (Mask == 0xffff) 8930 return SDValue(); 8931 SDValue Res; 8932 // Case (1): or (and A, mask), val => ARMbfi A, val, mask 8933 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); 8934 if (N1C) { 8935 unsigned Val = N1C->getZExtValue(); 8936 if ((Val & ~Mask) != Val) 8937 return SDValue(); 8938 8939 if (ARM::isBitFieldInvertedMask(Mask)) { 8940 Val >>= countTrailingZeros(~Mask); 8941 8942 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, 8943 DAG.getConstant(Val, DL, MVT::i32), 8944 DAG.getConstant(Mask, DL, MVT::i32)); 8945 8946 // Do not add new nodes to DAG combiner worklist. 8947 DCI.CombineTo(N, Res, false); 8948 return SDValue(); 8949 } 8950 } else if (N1.getOpcode() == ISD::AND) { 8951 // case (2) or (and A, mask), (and B, mask2) => ARMbfi A, (lsr B, amt), mask 8952 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 8953 if (!N11C) 8954 return SDValue(); 8955 unsigned Mask2 = N11C->getZExtValue(); 8956 8957 // Mask and ~Mask2 (or reverse) must be equivalent for the BFI pattern 8958 // as is to match. 8959 if (ARM::isBitFieldInvertedMask(Mask) && 8960 (Mask == ~Mask2)) { 8961 // The pack halfword instruction works better for masks that fit it, 8962 // so use that when it's available. 8963 if (Subtarget->hasT2ExtractPack() && 8964 (Mask == 0xffff || Mask == 0xffff0000)) 8965 return SDValue(); 8966 // 2a 8967 unsigned amt = countTrailingZeros(Mask2); 8968 Res = DAG.getNode(ISD::SRL, DL, VT, N1.getOperand(0), 8969 DAG.getConstant(amt, DL, MVT::i32)); 8970 Res = DAG.getNode(ARMISD::BFI, DL, VT, N00, Res, 8971 DAG.getConstant(Mask, DL, MVT::i32)); 8972 // Do not add new nodes to DAG combiner worklist. 8973 DCI.CombineTo(N, Res, false); 8974 return SDValue(); 8975 } else if (ARM::isBitFieldInvertedMask(~Mask) && 8976 (~Mask == Mask2)) { 8977 // The pack halfword instruction works better for masks that fit it, 8978 // so use that when it's available. 8979 if (Subtarget->hasT2ExtractPack() && 8980 (Mask2 == 0xffff || Mask2 == 0xffff0000)) 8981 return SDValue(); 8982 // 2b 8983 unsigned lsb = countTrailingZeros(Mask); 8984 Res = DAG.getNode(ISD::SRL, DL, VT, N00, 8985 DAG.getConstant(lsb, DL, MVT::i32)); 8986 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1.getOperand(0), Res, 8987 DAG.getConstant(Mask2, DL, MVT::i32)); 8988 // Do not add new nodes to DAG combiner worklist. 8989 DCI.CombineTo(N, Res, false); 8990 return SDValue(); 8991 } 8992 } 8993 8994 if (DAG.MaskedValueIsZero(N1, MaskC->getAPIntValue()) && 8995 N00.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N00.getOperand(1)) && 8996 ARM::isBitFieldInvertedMask(~Mask)) { 8997 // Case (3): or (and (shl A, #shamt), mask), B => ARMbfi B, A, ~mask 8998 // where lsb(mask) == #shamt and masked bits of B are known zero. 8999 SDValue ShAmt = N00.getOperand(1); 9000 unsigned ShAmtC = cast<ConstantSDNode>(ShAmt)->getZExtValue(); 9001 unsigned LSB = countTrailingZeros(Mask); 9002 if (ShAmtC != LSB) 9003 return SDValue(); 9004 9005 Res = DAG.getNode(ARMISD::BFI, DL, VT, N1, N00.getOperand(0), 9006 DAG.getConstant(~Mask, DL, MVT::i32)); 9007 9008 // Do not add new nodes to DAG combiner worklist. 9009 DCI.CombineTo(N, Res, false); 9010 } 9011 9012 return SDValue(); 9013 } 9014 9015 static SDValue PerformXORCombine(SDNode *N, 9016 TargetLowering::DAGCombinerInfo &DCI, 9017 const ARMSubtarget *Subtarget) { 9018 EVT VT = N->getValueType(0); 9019 SelectionDAG &DAG = DCI.DAG; 9020 9021 if(!DAG.getTargetLoweringInfo().isTypeLegal(VT)) 9022 return SDValue(); 9023 9024 if (!Subtarget->isThumb1Only()) { 9025 // fold (xor (select cc, 0, c), x) -> (select cc, x, (xor, x, c)) 9026 SDValue Result = combineSelectAndUseCommutative(N, false, DCI); 9027 if (Result.getNode()) 9028 return Result; 9029 } 9030 9031 return SDValue(); 9032 } 9033 9034 // ParseBFI - given a BFI instruction in N, extract the "from" value (Rn) and return it, 9035 // and fill in FromMask and ToMask with (consecutive) bits in "from" to be extracted and 9036 // their position in "to" (Rd). 9037 static SDValue ParseBFI(SDNode *N, APInt &ToMask, APInt &FromMask) { 9038 assert(N->getOpcode() == ARMISD::BFI); 9039 9040 SDValue From = N->getOperand(1); 9041 ToMask = ~cast<ConstantSDNode>(N->getOperand(2))->getAPIntValue(); 9042 FromMask = APInt::getLowBitsSet(ToMask.getBitWidth(), ToMask.countPopulation()); 9043 9044 // If the Base came from a SHR #C, we can deduce that it is really testing bit 9045 // #C in the base of the SHR. 9046 if (From->getOpcode() == ISD::SRL && 9047 isa<ConstantSDNode>(From->getOperand(1))) { 9048 APInt Shift = cast<ConstantSDNode>(From->getOperand(1))->getAPIntValue(); 9049 assert(Shift.getLimitedValue() < 32 && "Shift too large!"); 9050 FromMask <<= Shift.getLimitedValue(31); 9051 From = From->getOperand(0); 9052 } 9053 9054 return From; 9055 } 9056 9057 // If A and B contain one contiguous set of bits, does A | B == A . B? 9058 // 9059 // Neither A nor B must be zero. 9060 static bool BitsProperlyConcatenate(const APInt &A, const APInt &B) { 9061 unsigned LastActiveBitInA = A.countTrailingZeros(); 9062 unsigned FirstActiveBitInB = B.getBitWidth() - B.countLeadingZeros() - 1; 9063 return LastActiveBitInA - 1 == FirstActiveBitInB; 9064 } 9065 9066 static SDValue FindBFIToCombineWith(SDNode *N) { 9067 // We have a BFI in N. Follow a possible chain of BFIs and find a BFI it can combine with, 9068 // if one exists. 9069 APInt ToMask, FromMask; 9070 SDValue From = ParseBFI(N, ToMask, FromMask); 9071 SDValue To = N->getOperand(0); 9072 9073 // Now check for a compatible BFI to merge with. We can pass through BFIs that 9074 // aren't compatible, but not if they set the same bit in their destination as 9075 // we do (or that of any BFI we're going to combine with). 9076 SDValue V = To; 9077 APInt CombinedToMask = ToMask; 9078 while (V.getOpcode() == ARMISD::BFI) { 9079 APInt NewToMask, NewFromMask; 9080 SDValue NewFrom = ParseBFI(V.getNode(), NewToMask, NewFromMask); 9081 if (NewFrom != From) { 9082 // This BFI has a different base. Keep going. 9083 CombinedToMask |= NewToMask; 9084 V = V.getOperand(0); 9085 continue; 9086 } 9087 9088 // Do the written bits conflict with any we've seen so far? 9089 if ((NewToMask & CombinedToMask).getBoolValue()) 9090 // Conflicting bits - bail out because going further is unsafe. 9091 return SDValue(); 9092 9093 // Are the new bits contiguous when combined with the old bits? 9094 if (BitsProperlyConcatenate(ToMask, NewToMask) && 9095 BitsProperlyConcatenate(FromMask, NewFromMask)) 9096 return V; 9097 if (BitsProperlyConcatenate(NewToMask, ToMask) && 9098 BitsProperlyConcatenate(NewFromMask, FromMask)) 9099 return V; 9100 9101 // We've seen a write to some bits, so track it. 9102 CombinedToMask |= NewToMask; 9103 // Keep going... 9104 V = V.getOperand(0); 9105 } 9106 9107 return SDValue(); 9108 } 9109 9110 static SDValue PerformBFICombine(SDNode *N, 9111 TargetLowering::DAGCombinerInfo &DCI) { 9112 SDValue N1 = N->getOperand(1); 9113 if (N1.getOpcode() == ISD::AND) { 9114 // (bfi A, (and B, Mask1), Mask2) -> (bfi A, B, Mask2) iff 9115 // the bits being cleared by the AND are not demanded by the BFI. 9116 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1)); 9117 if (!N11C) 9118 return SDValue(); 9119 unsigned InvMask = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); 9120 unsigned LSB = countTrailingZeros(~InvMask); 9121 unsigned Width = (32 - countLeadingZeros(~InvMask)) - LSB; 9122 assert(Width < 9123 static_cast<unsigned>(std::numeric_limits<unsigned>::digits) && 9124 "undefined behavior"); 9125 unsigned Mask = (1u << Width) - 1; 9126 unsigned Mask2 = N11C->getZExtValue(); 9127 if ((Mask & (~Mask2)) == 0) 9128 return DCI.DAG.getNode(ARMISD::BFI, SDLoc(N), N->getValueType(0), 9129 N->getOperand(0), N1.getOperand(0), 9130 N->getOperand(2)); 9131 } else if (N->getOperand(0).getOpcode() == ARMISD::BFI) { 9132 // We have a BFI of a BFI. Walk up the BFI chain to see how long it goes. 9133 // Keep track of any consecutive bits set that all come from the same base 9134 // value. We can combine these together into a single BFI. 9135 SDValue CombineBFI = FindBFIToCombineWith(N); 9136 if (CombineBFI == SDValue()) 9137 return SDValue(); 9138 9139 // We've found a BFI. 9140 APInt ToMask1, FromMask1; 9141 SDValue From1 = ParseBFI(N, ToMask1, FromMask1); 9142 9143 APInt ToMask2, FromMask2; 9144 SDValue From2 = ParseBFI(CombineBFI.getNode(), ToMask2, FromMask2); 9145 assert(From1 == From2); 9146 (void)From2; 9147 9148 // First, unlink CombineBFI. 9149 DCI.DAG.ReplaceAllUsesWith(CombineBFI, CombineBFI.getOperand(0)); 9150 // Then create a new BFI, combining the two together. 9151 APInt NewFromMask = FromMask1 | FromMask2; 9152 APInt NewToMask = ToMask1 | ToMask2; 9153 9154 EVT VT = N->getValueType(0); 9155 SDLoc dl(N); 9156 9157 if (NewFromMask[0] == 0) 9158 From1 = DCI.DAG.getNode( 9159 ISD::SRL, dl, VT, From1, 9160 DCI.DAG.getConstant(NewFromMask.countTrailingZeros(), dl, VT)); 9161 return DCI.DAG.getNode(ARMISD::BFI, dl, VT, N->getOperand(0), From1, 9162 DCI.DAG.getConstant(~NewToMask, dl, VT)); 9163 } 9164 return SDValue(); 9165 } 9166 9167 /// PerformVMOVRRDCombine - Target-specific dag combine xforms for 9168 /// ARMISD::VMOVRRD. 9169 static SDValue PerformVMOVRRDCombine(SDNode *N, 9170 TargetLowering::DAGCombinerInfo &DCI, 9171 const ARMSubtarget *Subtarget) { 9172 // vmovrrd(vmovdrr x, y) -> x,y 9173 SDValue InDouble = N->getOperand(0); 9174 if (InDouble.getOpcode() == ARMISD::VMOVDRR && !Subtarget->isFPOnlySP()) 9175 return DCI.CombineTo(N, InDouble.getOperand(0), InDouble.getOperand(1)); 9176 9177 // vmovrrd(load f64) -> (load i32), (load i32) 9178 SDNode *InNode = InDouble.getNode(); 9179 if (ISD::isNormalLoad(InNode) && InNode->hasOneUse() && 9180 InNode->getValueType(0) == MVT::f64 && 9181 InNode->getOperand(1).getOpcode() == ISD::FrameIndex && 9182 !cast<LoadSDNode>(InNode)->isVolatile()) { 9183 // TODO: Should this be done for non-FrameIndex operands? 9184 LoadSDNode *LD = cast<LoadSDNode>(InNode); 9185 9186 SelectionDAG &DAG = DCI.DAG; 9187 SDLoc DL(LD); 9188 SDValue BasePtr = LD->getBasePtr(); 9189 SDValue NewLD1 = DAG.getLoad(MVT::i32, DL, LD->getChain(), BasePtr, 9190 LD->getPointerInfo(), LD->isVolatile(), 9191 LD->isNonTemporal(), LD->isInvariant(), 9192 LD->getAlignment()); 9193 9194 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, 9195 DAG.getConstant(4, DL, MVT::i32)); 9196 SDValue NewLD2 = DAG.getLoad(MVT::i32, DL, NewLD1.getValue(1), OffsetPtr, 9197 LD->getPointerInfo(), LD->isVolatile(), 9198 LD->isNonTemporal(), LD->isInvariant(), 9199 std::min(4U, LD->getAlignment() / 2)); 9200 9201 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), NewLD2.getValue(1)); 9202 if (DCI.DAG.getDataLayout().isBigEndian()) 9203 std::swap (NewLD1, NewLD2); 9204 SDValue Result = DCI.CombineTo(N, NewLD1, NewLD2); 9205 return Result; 9206 } 9207 9208 return SDValue(); 9209 } 9210 9211 /// PerformVMOVDRRCombine - Target-specific dag combine xforms for 9212 /// ARMISD::VMOVDRR. This is also used for BUILD_VECTORs with 2 operands. 9213 static SDValue PerformVMOVDRRCombine(SDNode *N, SelectionDAG &DAG) { 9214 // N=vmovrrd(X); vmovdrr(N:0, N:1) -> bit_convert(X) 9215 SDValue Op0 = N->getOperand(0); 9216 SDValue Op1 = N->getOperand(1); 9217 if (Op0.getOpcode() == ISD::BITCAST) 9218 Op0 = Op0.getOperand(0); 9219 if (Op1.getOpcode() == ISD::BITCAST) 9220 Op1 = Op1.getOperand(0); 9221 if (Op0.getOpcode() == ARMISD::VMOVRRD && 9222 Op0.getNode() == Op1.getNode() && 9223 Op0.getResNo() == 0 && Op1.getResNo() == 1) 9224 return DAG.getNode(ISD::BITCAST, SDLoc(N), 9225 N->getValueType(0), Op0.getOperand(0)); 9226 return SDValue(); 9227 } 9228 9229 /// hasNormalLoadOperand - Check if any of the operands of a BUILD_VECTOR node 9230 /// are normal, non-volatile loads. If so, it is profitable to bitcast an 9231 /// i64 vector to have f64 elements, since the value can then be loaded 9232 /// directly into a VFP register. 9233 static bool hasNormalLoadOperand(SDNode *N) { 9234 unsigned NumElts = N->getValueType(0).getVectorNumElements(); 9235 for (unsigned i = 0; i < NumElts; ++i) { 9236 SDNode *Elt = N->getOperand(i).getNode(); 9237 if (ISD::isNormalLoad(Elt) && !cast<LoadSDNode>(Elt)->isVolatile()) 9238 return true; 9239 } 9240 return false; 9241 } 9242 9243 /// PerformBUILD_VECTORCombine - Target-specific dag combine xforms for 9244 /// ISD::BUILD_VECTOR. 9245 static SDValue PerformBUILD_VECTORCombine(SDNode *N, 9246 TargetLowering::DAGCombinerInfo &DCI, 9247 const ARMSubtarget *Subtarget) { 9248 // build_vector(N=ARMISD::VMOVRRD(X), N:1) -> bit_convert(X): 9249 // VMOVRRD is introduced when legalizing i64 types. It forces the i64 value 9250 // into a pair of GPRs, which is fine when the value is used as a scalar, 9251 // but if the i64 value is converted to a vector, we need to undo the VMOVRRD. 9252 SelectionDAG &DAG = DCI.DAG; 9253 if (N->getNumOperands() == 2) { 9254 SDValue RV = PerformVMOVDRRCombine(N, DAG); 9255 if (RV.getNode()) 9256 return RV; 9257 } 9258 9259 // Load i64 elements as f64 values so that type legalization does not split 9260 // them up into i32 values. 9261 EVT VT = N->getValueType(0); 9262 if (VT.getVectorElementType() != MVT::i64 || !hasNormalLoadOperand(N)) 9263 return SDValue(); 9264 SDLoc dl(N); 9265 SmallVector<SDValue, 8> Ops; 9266 unsigned NumElts = VT.getVectorNumElements(); 9267 for (unsigned i = 0; i < NumElts; ++i) { 9268 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(i)); 9269 Ops.push_back(V); 9270 // Make the DAGCombiner fold the bitcast. 9271 DCI.AddToWorklist(V.getNode()); 9272 } 9273 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, NumElts); 9274 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, FloatVT, Ops); 9275 return DAG.getNode(ISD::BITCAST, dl, VT, BV); 9276 } 9277 9278 /// \brief Target-specific dag combine xforms for ARMISD::BUILD_VECTOR. 9279 static SDValue 9280 PerformARMBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) { 9281 // ARMISD::BUILD_VECTOR is introduced when legalizing ISD::BUILD_VECTOR. 9282 // At that time, we may have inserted bitcasts from integer to float. 9283 // If these bitcasts have survived DAGCombine, change the lowering of this 9284 // BUILD_VECTOR in something more vector friendly, i.e., that does not 9285 // force to use floating point types. 9286 9287 // Make sure we can change the type of the vector. 9288 // This is possible iff: 9289 // 1. The vector is only used in a bitcast to a integer type. I.e., 9290 // 1.1. Vector is used only once. 9291 // 1.2. Use is a bit convert to an integer type. 9292 // 2. The size of its operands are 32-bits (64-bits are not legal). 9293 EVT VT = N->getValueType(0); 9294 EVT EltVT = VT.getVectorElementType(); 9295 9296 // Check 1.1. and 2. 9297 if (EltVT.getSizeInBits() != 32 || !N->hasOneUse()) 9298 return SDValue(); 9299 9300 // By construction, the input type must be float. 9301 assert(EltVT == MVT::f32 && "Unexpected type!"); 9302 9303 // Check 1.2. 9304 SDNode *Use = *N->use_begin(); 9305 if (Use->getOpcode() != ISD::BITCAST || 9306 Use->getValueType(0).isFloatingPoint()) 9307 return SDValue(); 9308 9309 // Check profitability. 9310 // Model is, if more than half of the relevant operands are bitcast from 9311 // i32, turn the build_vector into a sequence of insert_vector_elt. 9312 // Relevant operands are everything that is not statically 9313 // (i.e., at compile time) bitcasted. 9314 unsigned NumOfBitCastedElts = 0; 9315 unsigned NumElts = VT.getVectorNumElements(); 9316 unsigned NumOfRelevantElts = NumElts; 9317 for (unsigned Idx = 0; Idx < NumElts; ++Idx) { 9318 SDValue Elt = N->getOperand(Idx); 9319 if (Elt->getOpcode() == ISD::BITCAST) { 9320 // Assume only bit cast to i32 will go away. 9321 if (Elt->getOperand(0).getValueType() == MVT::i32) 9322 ++NumOfBitCastedElts; 9323 } else if (Elt.getOpcode() == ISD::UNDEF || isa<ConstantSDNode>(Elt)) 9324 // Constants are statically casted, thus do not count them as 9325 // relevant operands. 9326 --NumOfRelevantElts; 9327 } 9328 9329 // Check if more than half of the elements require a non-free bitcast. 9330 if (NumOfBitCastedElts <= NumOfRelevantElts / 2) 9331 return SDValue(); 9332 9333 SelectionDAG &DAG = DCI.DAG; 9334 // Create the new vector type. 9335 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, NumElts); 9336 // Check if the type is legal. 9337 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 9338 if (!TLI.isTypeLegal(VecVT)) 9339 return SDValue(); 9340 9341 // Combine: 9342 // ARMISD::BUILD_VECTOR E1, E2, ..., EN. 9343 // => BITCAST INSERT_VECTOR_ELT 9344 // (INSERT_VECTOR_ELT (...), (BITCAST EN-1), N-1), 9345 // (BITCAST EN), N. 9346 SDValue Vec = DAG.getUNDEF(VecVT); 9347 SDLoc dl(N); 9348 for (unsigned Idx = 0 ; Idx < NumElts; ++Idx) { 9349 SDValue V = N->getOperand(Idx); 9350 if (V.getOpcode() == ISD::UNDEF) 9351 continue; 9352 if (V.getOpcode() == ISD::BITCAST && 9353 V->getOperand(0).getValueType() == MVT::i32) 9354 // Fold obvious case. 9355 V = V.getOperand(0); 9356 else { 9357 V = DAG.getNode(ISD::BITCAST, SDLoc(V), MVT::i32, V); 9358 // Make the DAGCombiner fold the bitcasts. 9359 DCI.AddToWorklist(V.getNode()); 9360 } 9361 SDValue LaneIdx = DAG.getConstant(Idx, dl, MVT::i32); 9362 Vec = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecVT, Vec, V, LaneIdx); 9363 } 9364 Vec = DAG.getNode(ISD::BITCAST, dl, VT, Vec); 9365 // Make the DAGCombiner fold the bitcasts. 9366 DCI.AddToWorklist(Vec.getNode()); 9367 return Vec; 9368 } 9369 9370 /// PerformInsertEltCombine - Target-specific dag combine xforms for 9371 /// ISD::INSERT_VECTOR_ELT. 9372 static SDValue PerformInsertEltCombine(SDNode *N, 9373 TargetLowering::DAGCombinerInfo &DCI) { 9374 // Bitcast an i64 load inserted into a vector to f64. 9375 // Otherwise, the i64 value will be legalized to a pair of i32 values. 9376 EVT VT = N->getValueType(0); 9377 SDNode *Elt = N->getOperand(1).getNode(); 9378 if (VT.getVectorElementType() != MVT::i64 || 9379 !ISD::isNormalLoad(Elt) || cast<LoadSDNode>(Elt)->isVolatile()) 9380 return SDValue(); 9381 9382 SelectionDAG &DAG = DCI.DAG; 9383 SDLoc dl(N); 9384 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, 9385 VT.getVectorNumElements()); 9386 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, N->getOperand(0)); 9387 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::f64, N->getOperand(1)); 9388 // Make the DAGCombiner fold the bitcasts. 9389 DCI.AddToWorklist(Vec.getNode()); 9390 DCI.AddToWorklist(V.getNode()); 9391 SDValue InsElt = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, FloatVT, 9392 Vec, V, N->getOperand(2)); 9393 return DAG.getNode(ISD::BITCAST, dl, VT, InsElt); 9394 } 9395 9396 /// PerformVECTOR_SHUFFLECombine - Target-specific dag combine xforms for 9397 /// ISD::VECTOR_SHUFFLE. 9398 static SDValue PerformVECTOR_SHUFFLECombine(SDNode *N, SelectionDAG &DAG) { 9399 // The LLVM shufflevector instruction does not require the shuffle mask 9400 // length to match the operand vector length, but ISD::VECTOR_SHUFFLE does 9401 // have that requirement. When translating to ISD::VECTOR_SHUFFLE, if the 9402 // operands do not match the mask length, they are extended by concatenating 9403 // them with undef vectors. That is probably the right thing for other 9404 // targets, but for NEON it is better to concatenate two double-register 9405 // size vector operands into a single quad-register size vector. Do that 9406 // transformation here: 9407 // shuffle(concat(v1, undef), concat(v2, undef)) -> 9408 // shuffle(concat(v1, v2), undef) 9409 SDValue Op0 = N->getOperand(0); 9410 SDValue Op1 = N->getOperand(1); 9411 if (Op0.getOpcode() != ISD::CONCAT_VECTORS || 9412 Op1.getOpcode() != ISD::CONCAT_VECTORS || 9413 Op0.getNumOperands() != 2 || 9414 Op1.getNumOperands() != 2) 9415 return SDValue(); 9416 SDValue Concat0Op1 = Op0.getOperand(1); 9417 SDValue Concat1Op1 = Op1.getOperand(1); 9418 if (Concat0Op1.getOpcode() != ISD::UNDEF || 9419 Concat1Op1.getOpcode() != ISD::UNDEF) 9420 return SDValue(); 9421 // Skip the transformation if any of the types are illegal. 9422 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 9423 EVT VT = N->getValueType(0); 9424 if (!TLI.isTypeLegal(VT) || 9425 !TLI.isTypeLegal(Concat0Op1.getValueType()) || 9426 !TLI.isTypeLegal(Concat1Op1.getValueType())) 9427 return SDValue(); 9428 9429 SDValue NewConcat = DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, 9430 Op0.getOperand(0), Op1.getOperand(0)); 9431 // Translate the shuffle mask. 9432 SmallVector<int, 16> NewMask; 9433 unsigned NumElts = VT.getVectorNumElements(); 9434 unsigned HalfElts = NumElts/2; 9435 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); 9436 for (unsigned n = 0; n < NumElts; ++n) { 9437 int MaskElt = SVN->getMaskElt(n); 9438 int NewElt = -1; 9439 if (MaskElt < (int)HalfElts) 9440 NewElt = MaskElt; 9441 else if (MaskElt >= (int)NumElts && MaskElt < (int)(NumElts + HalfElts)) 9442 NewElt = HalfElts + MaskElt - NumElts; 9443 NewMask.push_back(NewElt); 9444 } 9445 return DAG.getVectorShuffle(VT, SDLoc(N), NewConcat, 9446 DAG.getUNDEF(VT), NewMask.data()); 9447 } 9448 9449 /// CombineBaseUpdate - Target-specific DAG combine function for VLDDUP, 9450 /// NEON load/store intrinsics, and generic vector load/stores, to merge 9451 /// base address updates. 9452 /// For generic load/stores, the memory type is assumed to be a vector. 9453 /// The caller is assumed to have checked legality. 9454 static SDValue CombineBaseUpdate(SDNode *N, 9455 TargetLowering::DAGCombinerInfo &DCI) { 9456 SelectionDAG &DAG = DCI.DAG; 9457 const bool isIntrinsic = (N->getOpcode() == ISD::INTRINSIC_VOID || 9458 N->getOpcode() == ISD::INTRINSIC_W_CHAIN); 9459 const bool isStore = N->getOpcode() == ISD::STORE; 9460 const unsigned AddrOpIdx = ((isIntrinsic || isStore) ? 2 : 1); 9461 SDValue Addr = N->getOperand(AddrOpIdx); 9462 MemSDNode *MemN = cast<MemSDNode>(N); 9463 SDLoc dl(N); 9464 9465 // Search for a use of the address operand that is an increment. 9466 for (SDNode::use_iterator UI = Addr.getNode()->use_begin(), 9467 UE = Addr.getNode()->use_end(); UI != UE; ++UI) { 9468 SDNode *User = *UI; 9469 if (User->getOpcode() != ISD::ADD || 9470 UI.getUse().getResNo() != Addr.getResNo()) 9471 continue; 9472 9473 // Check that the add is independent of the load/store. Otherwise, folding 9474 // it would create a cycle. 9475 if (User->isPredecessorOf(N) || N->isPredecessorOf(User)) 9476 continue; 9477 9478 // Find the new opcode for the updating load/store. 9479 bool isLoadOp = true; 9480 bool isLaneOp = false; 9481 unsigned NewOpc = 0; 9482 unsigned NumVecs = 0; 9483 if (isIntrinsic) { 9484 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue(); 9485 switch (IntNo) { 9486 default: llvm_unreachable("unexpected intrinsic for Neon base update"); 9487 case Intrinsic::arm_neon_vld1: NewOpc = ARMISD::VLD1_UPD; 9488 NumVecs = 1; break; 9489 case Intrinsic::arm_neon_vld2: NewOpc = ARMISD::VLD2_UPD; 9490 NumVecs = 2; break; 9491 case Intrinsic::arm_neon_vld3: NewOpc = ARMISD::VLD3_UPD; 9492 NumVecs = 3; break; 9493 case Intrinsic::arm_neon_vld4: NewOpc = ARMISD::VLD4_UPD; 9494 NumVecs = 4; break; 9495 case Intrinsic::arm_neon_vld2lane: NewOpc = ARMISD::VLD2LN_UPD; 9496 NumVecs = 2; isLaneOp = true; break; 9497 case Intrinsic::arm_neon_vld3lane: NewOpc = ARMISD::VLD3LN_UPD; 9498 NumVecs = 3; isLaneOp = true; break; 9499 case Intrinsic::arm_neon_vld4lane: NewOpc = ARMISD::VLD4LN_UPD; 9500 NumVecs = 4; isLaneOp = true; break; 9501 case Intrinsic::arm_neon_vst1: NewOpc = ARMISD::VST1_UPD; 9502 NumVecs = 1; isLoadOp = false; break; 9503 case Intrinsic::arm_neon_vst2: NewOpc = ARMISD::VST2_UPD; 9504 NumVecs = 2; isLoadOp = false; break; 9505 case Intrinsic::arm_neon_vst3: NewOpc = ARMISD::VST3_UPD; 9506 NumVecs = 3; isLoadOp = false; break; 9507 case Intrinsic::arm_neon_vst4: NewOpc = ARMISD::VST4_UPD; 9508 NumVecs = 4; isLoadOp = false; break; 9509 case Intrinsic::arm_neon_vst2lane: NewOpc = ARMISD::VST2LN_UPD; 9510 NumVecs = 2; isLoadOp = false; isLaneOp = true; break; 9511 case Intrinsic::arm_neon_vst3lane: NewOpc = ARMISD::VST3LN_UPD; 9512 NumVecs = 3; isLoadOp = false; isLaneOp = true; break; 9513 case Intrinsic::arm_neon_vst4lane: NewOpc = ARMISD::VST4LN_UPD; 9514 NumVecs = 4; isLoadOp = false; isLaneOp = true; break; 9515 } 9516 } else { 9517 isLaneOp = true; 9518 switch (N->getOpcode()) { 9519 default: llvm_unreachable("unexpected opcode for Neon base update"); 9520 case ARMISD::VLD2DUP: NewOpc = ARMISD::VLD2DUP_UPD; NumVecs = 2; break; 9521 case ARMISD::VLD3DUP: NewOpc = ARMISD::VLD3DUP_UPD; NumVecs = 3; break; 9522 case ARMISD::VLD4DUP: NewOpc = ARMISD::VLD4DUP_UPD; NumVecs = 4; break; 9523 case ISD::LOAD: NewOpc = ARMISD::VLD1_UPD; 9524 NumVecs = 1; isLaneOp = false; break; 9525 case ISD::STORE: NewOpc = ARMISD::VST1_UPD; 9526 NumVecs = 1; isLaneOp = false; isLoadOp = false; break; 9527 } 9528 } 9529 9530 // Find the size of memory referenced by the load/store. 9531 EVT VecTy; 9532 if (isLoadOp) { 9533 VecTy = N->getValueType(0); 9534 } else if (isIntrinsic) { 9535 VecTy = N->getOperand(AddrOpIdx+1).getValueType(); 9536 } else { 9537 assert(isStore && "Node has to be a load, a store, or an intrinsic!"); 9538 VecTy = N->getOperand(1).getValueType(); 9539 } 9540 9541 unsigned NumBytes = NumVecs * VecTy.getSizeInBits() / 8; 9542 if (isLaneOp) 9543 NumBytes /= VecTy.getVectorNumElements(); 9544 9545 // If the increment is a constant, it must match the memory ref size. 9546 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0); 9547 if (ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode())) { 9548 uint64_t IncVal = CInc->getZExtValue(); 9549 if (IncVal != NumBytes) 9550 continue; 9551 } else if (NumBytes >= 3 * 16) { 9552 // VLD3/4 and VST3/4 for 128-bit vectors are implemented with two 9553 // separate instructions that make it harder to use a non-constant update. 9554 continue; 9555 } 9556 9557 // OK, we found an ADD we can fold into the base update. 9558 // Now, create a _UPD node, taking care of not breaking alignment. 9559 9560 EVT AlignedVecTy = VecTy; 9561 unsigned Alignment = MemN->getAlignment(); 9562 9563 // If this is a less-than-standard-aligned load/store, change the type to 9564 // match the standard alignment. 9565 // The alignment is overlooked when selecting _UPD variants; and it's 9566 // easier to introduce bitcasts here than fix that. 9567 // There are 3 ways to get to this base-update combine: 9568 // - intrinsics: they are assumed to be properly aligned (to the standard 9569 // alignment of the memory type), so we don't need to do anything. 9570 // - ARMISD::VLDx nodes: they are only generated from the aforementioned 9571 // intrinsics, so, likewise, there's nothing to do. 9572 // - generic load/store instructions: the alignment is specified as an 9573 // explicit operand, rather than implicitly as the standard alignment 9574 // of the memory type (like the intrisics). We need to change the 9575 // memory type to match the explicit alignment. That way, we don't 9576 // generate non-standard-aligned ARMISD::VLDx nodes. 9577 if (isa<LSBaseSDNode>(N)) { 9578 if (Alignment == 0) 9579 Alignment = 1; 9580 if (Alignment < VecTy.getScalarSizeInBits() / 8) { 9581 MVT EltTy = MVT::getIntegerVT(Alignment * 8); 9582 assert(NumVecs == 1 && "Unexpected multi-element generic load/store."); 9583 assert(!isLaneOp && "Unexpected generic load/store lane."); 9584 unsigned NumElts = NumBytes / (EltTy.getSizeInBits() / 8); 9585 AlignedVecTy = MVT::getVectorVT(EltTy, NumElts); 9586 } 9587 // Don't set an explicit alignment on regular load/stores that we want 9588 // to transform to VLD/VST 1_UPD nodes. 9589 // This matches the behavior of regular load/stores, which only get an 9590 // explicit alignment if the MMO alignment is larger than the standard 9591 // alignment of the memory type. 9592 // Intrinsics, however, always get an explicit alignment, set to the 9593 // alignment of the MMO. 9594 Alignment = 1; 9595 } 9596 9597 // Create the new updating load/store node. 9598 // First, create an SDVTList for the new updating node's results. 9599 EVT Tys[6]; 9600 unsigned NumResultVecs = (isLoadOp ? NumVecs : 0); 9601 unsigned n; 9602 for (n = 0; n < NumResultVecs; ++n) 9603 Tys[n] = AlignedVecTy; 9604 Tys[n++] = MVT::i32; 9605 Tys[n] = MVT::Other; 9606 SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumResultVecs+2)); 9607 9608 // Then, gather the new node's operands. 9609 SmallVector<SDValue, 8> Ops; 9610 Ops.push_back(N->getOperand(0)); // incoming chain 9611 Ops.push_back(N->getOperand(AddrOpIdx)); 9612 Ops.push_back(Inc); 9613 9614 if (StoreSDNode *StN = dyn_cast<StoreSDNode>(N)) { 9615 // Try to match the intrinsic's signature 9616 Ops.push_back(StN->getValue()); 9617 } else { 9618 // Loads (and of course intrinsics) match the intrinsics' signature, 9619 // so just add all but the alignment operand. 9620 for (unsigned i = AddrOpIdx + 1; i < N->getNumOperands() - 1; ++i) 9621 Ops.push_back(N->getOperand(i)); 9622 } 9623 9624 // For all node types, the alignment operand is always the last one. 9625 Ops.push_back(DAG.getConstant(Alignment, dl, MVT::i32)); 9626 9627 // If this is a non-standard-aligned STORE, the penultimate operand is the 9628 // stored value. Bitcast it to the aligned type. 9629 if (AlignedVecTy != VecTy && N->getOpcode() == ISD::STORE) { 9630 SDValue &StVal = Ops[Ops.size()-2]; 9631 StVal = DAG.getNode(ISD::BITCAST, dl, AlignedVecTy, StVal); 9632 } 9633 9634 SDValue UpdN = DAG.getMemIntrinsicNode(NewOpc, dl, SDTys, 9635 Ops, AlignedVecTy, 9636 MemN->getMemOperand()); 9637 9638 // Update the uses. 9639 SmallVector<SDValue, 5> NewResults; 9640 for (unsigned i = 0; i < NumResultVecs; ++i) 9641 NewResults.push_back(SDValue(UpdN.getNode(), i)); 9642 9643 // If this is an non-standard-aligned LOAD, the first result is the loaded 9644 // value. Bitcast it to the expected result type. 9645 if (AlignedVecTy != VecTy && N->getOpcode() == ISD::LOAD) { 9646 SDValue &LdVal = NewResults[0]; 9647 LdVal = DAG.getNode(ISD::BITCAST, dl, VecTy, LdVal); 9648 } 9649 9650 NewResults.push_back(SDValue(UpdN.getNode(), NumResultVecs+1)); // chain 9651 DCI.CombineTo(N, NewResults); 9652 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs)); 9653 9654 break; 9655 } 9656 return SDValue(); 9657 } 9658 9659 static SDValue PerformVLDCombine(SDNode *N, 9660 TargetLowering::DAGCombinerInfo &DCI) { 9661 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer()) 9662 return SDValue(); 9663 9664 return CombineBaseUpdate(N, DCI); 9665 } 9666 9667 /// CombineVLDDUP - For a VDUPLANE node N, check if its source operand is a 9668 /// vldN-lane (N > 1) intrinsic, and if all the other uses of that intrinsic 9669 /// are also VDUPLANEs. If so, combine them to a vldN-dup operation and 9670 /// return true. 9671 static bool CombineVLDDUP(SDNode *N, TargetLowering::DAGCombinerInfo &DCI) { 9672 SelectionDAG &DAG = DCI.DAG; 9673 EVT VT = N->getValueType(0); 9674 // vldN-dup instructions only support 64-bit vectors for N > 1. 9675 if (!VT.is64BitVector()) 9676 return false; 9677 9678 // Check if the VDUPLANE operand is a vldN-dup intrinsic. 9679 SDNode *VLD = N->getOperand(0).getNode(); 9680 if (VLD->getOpcode() != ISD::INTRINSIC_W_CHAIN) 9681 return false; 9682 unsigned NumVecs = 0; 9683 unsigned NewOpc = 0; 9684 unsigned IntNo = cast<ConstantSDNode>(VLD->getOperand(1))->getZExtValue(); 9685 if (IntNo == Intrinsic::arm_neon_vld2lane) { 9686 NumVecs = 2; 9687 NewOpc = ARMISD::VLD2DUP; 9688 } else if (IntNo == Intrinsic::arm_neon_vld3lane) { 9689 NumVecs = 3; 9690 NewOpc = ARMISD::VLD3DUP; 9691 } else if (IntNo == Intrinsic::arm_neon_vld4lane) { 9692 NumVecs = 4; 9693 NewOpc = ARMISD::VLD4DUP; 9694 } else { 9695 return false; 9696 } 9697 9698 // First check that all the vldN-lane uses are VDUPLANEs and that the lane 9699 // numbers match the load. 9700 unsigned VLDLaneNo = 9701 cast<ConstantSDNode>(VLD->getOperand(NumVecs+3))->getZExtValue(); 9702 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end(); 9703 UI != UE; ++UI) { 9704 // Ignore uses of the chain result. 9705 if (UI.getUse().getResNo() == NumVecs) 9706 continue; 9707 SDNode *User = *UI; 9708 if (User->getOpcode() != ARMISD::VDUPLANE || 9709 VLDLaneNo != cast<ConstantSDNode>(User->getOperand(1))->getZExtValue()) 9710 return false; 9711 } 9712 9713 // Create the vldN-dup node. 9714 EVT Tys[5]; 9715 unsigned n; 9716 for (n = 0; n < NumVecs; ++n) 9717 Tys[n] = VT; 9718 Tys[n] = MVT::Other; 9719 SDVTList SDTys = DAG.getVTList(makeArrayRef(Tys, NumVecs+1)); 9720 SDValue Ops[] = { VLD->getOperand(0), VLD->getOperand(2) }; 9721 MemIntrinsicSDNode *VLDMemInt = cast<MemIntrinsicSDNode>(VLD); 9722 SDValue VLDDup = DAG.getMemIntrinsicNode(NewOpc, SDLoc(VLD), SDTys, 9723 Ops, VLDMemInt->getMemoryVT(), 9724 VLDMemInt->getMemOperand()); 9725 9726 // Update the uses. 9727 for (SDNode::use_iterator UI = VLD->use_begin(), UE = VLD->use_end(); 9728 UI != UE; ++UI) { 9729 unsigned ResNo = UI.getUse().getResNo(); 9730 // Ignore uses of the chain result. 9731 if (ResNo == NumVecs) 9732 continue; 9733 SDNode *User = *UI; 9734 DCI.CombineTo(User, SDValue(VLDDup.getNode(), ResNo)); 9735 } 9736 9737 // Now the vldN-lane intrinsic is dead except for its chain result. 9738 // Update uses of the chain. 9739 std::vector<SDValue> VLDDupResults; 9740 for (unsigned n = 0; n < NumVecs; ++n) 9741 VLDDupResults.push_back(SDValue(VLDDup.getNode(), n)); 9742 VLDDupResults.push_back(SDValue(VLDDup.getNode(), NumVecs)); 9743 DCI.CombineTo(VLD, VLDDupResults); 9744 9745 return true; 9746 } 9747 9748 /// PerformVDUPLANECombine - Target-specific dag combine xforms for 9749 /// ARMISD::VDUPLANE. 9750 static SDValue PerformVDUPLANECombine(SDNode *N, 9751 TargetLowering::DAGCombinerInfo &DCI) { 9752 SDValue Op = N->getOperand(0); 9753 9754 // If the source is a vldN-lane (N > 1) intrinsic, and all the other uses 9755 // of that intrinsic are also VDUPLANEs, combine them to a vldN-dup operation. 9756 if (CombineVLDDUP(N, DCI)) 9757 return SDValue(N, 0); 9758 9759 // If the source is already a VMOVIMM or VMVNIMM splat, the VDUPLANE is 9760 // redundant. Ignore bit_converts for now; element sizes are checked below. 9761 while (Op.getOpcode() == ISD::BITCAST) 9762 Op = Op.getOperand(0); 9763 if (Op.getOpcode() != ARMISD::VMOVIMM && Op.getOpcode() != ARMISD::VMVNIMM) 9764 return SDValue(); 9765 9766 // Make sure the VMOV element size is not bigger than the VDUPLANE elements. 9767 unsigned EltSize = Op.getValueType().getVectorElementType().getSizeInBits(); 9768 // The canonical VMOV for a zero vector uses a 32-bit element size. 9769 unsigned Imm = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 9770 unsigned EltBits; 9771 if (ARM_AM::decodeNEONModImm(Imm, EltBits) == 0) 9772 EltSize = 8; 9773 EVT VT = N->getValueType(0); 9774 if (EltSize > VT.getVectorElementType().getSizeInBits()) 9775 return SDValue(); 9776 9777 return DCI.DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op); 9778 } 9779 9780 static SDValue PerformLOADCombine(SDNode *N, 9781 TargetLowering::DAGCombinerInfo &DCI) { 9782 EVT VT = N->getValueType(0); 9783 9784 // If this is a legal vector load, try to combine it into a VLD1_UPD. 9785 if (ISD::isNormalLoad(N) && VT.isVector() && 9786 DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT)) 9787 return CombineBaseUpdate(N, DCI); 9788 9789 return SDValue(); 9790 } 9791 9792 /// PerformSTORECombine - Target-specific dag combine xforms for 9793 /// ISD::STORE. 9794 static SDValue PerformSTORECombine(SDNode *N, 9795 TargetLowering::DAGCombinerInfo &DCI) { 9796 StoreSDNode *St = cast<StoreSDNode>(N); 9797 if (St->isVolatile()) 9798 return SDValue(); 9799 9800 // Optimize trunc store (of multiple scalars) to shuffle and store. First, 9801 // pack all of the elements in one place. Next, store to memory in fewer 9802 // chunks. 9803 SDValue StVal = St->getValue(); 9804 EVT VT = StVal.getValueType(); 9805 if (St->isTruncatingStore() && VT.isVector()) { 9806 SelectionDAG &DAG = DCI.DAG; 9807 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 9808 EVT StVT = St->getMemoryVT(); 9809 unsigned NumElems = VT.getVectorNumElements(); 9810 assert(StVT != VT && "Cannot truncate to the same type"); 9811 unsigned FromEltSz = VT.getVectorElementType().getSizeInBits(); 9812 unsigned ToEltSz = StVT.getVectorElementType().getSizeInBits(); 9813 9814 // From, To sizes and ElemCount must be pow of two 9815 if (!isPowerOf2_32(NumElems * FromEltSz * ToEltSz)) return SDValue(); 9816 9817 // We are going to use the original vector elt for storing. 9818 // Accumulated smaller vector elements must be a multiple of the store size. 9819 if (0 != (NumElems * FromEltSz) % ToEltSz) return SDValue(); 9820 9821 unsigned SizeRatio = FromEltSz / ToEltSz; 9822 assert(SizeRatio * NumElems * ToEltSz == VT.getSizeInBits()); 9823 9824 // Create a type on which we perform the shuffle. 9825 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), 9826 NumElems*SizeRatio); 9827 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits()); 9828 9829 SDLoc DL(St); 9830 SDValue WideVec = DAG.getNode(ISD::BITCAST, DL, WideVecVT, StVal); 9831 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1); 9832 for (unsigned i = 0; i < NumElems; ++i) 9833 ShuffleVec[i] = DAG.getDataLayout().isBigEndian() 9834 ? (i + 1) * SizeRatio - 1 9835 : i * SizeRatio; 9836 9837 // Can't shuffle using an illegal type. 9838 if (!TLI.isTypeLegal(WideVecVT)) return SDValue(); 9839 9840 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, DL, WideVec, 9841 DAG.getUNDEF(WideVec.getValueType()), 9842 ShuffleVec.data()); 9843 // At this point all of the data is stored at the bottom of the 9844 // register. We now need to save it to mem. 9845 9846 // Find the largest store unit 9847 MVT StoreType = MVT::i8; 9848 for (MVT Tp : MVT::integer_valuetypes()) { 9849 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToEltSz) 9850 StoreType = Tp; 9851 } 9852 // Didn't find a legal store type. 9853 if (!TLI.isTypeLegal(StoreType)) 9854 return SDValue(); 9855 9856 // Bitcast the original vector into a vector of store-size units 9857 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(), 9858 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits()); 9859 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits()); 9860 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, DL, StoreVecVT, Shuff); 9861 SmallVector<SDValue, 8> Chains; 9862 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits() / 8, DL, 9863 TLI.getPointerTy(DAG.getDataLayout())); 9864 SDValue BasePtr = St->getBasePtr(); 9865 9866 // Perform one or more big stores into memory. 9867 unsigned E = (ToEltSz*NumElems)/StoreType.getSizeInBits(); 9868 for (unsigned I = 0; I < E; I++) { 9869 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, 9870 StoreType, ShuffWide, 9871 DAG.getIntPtrConstant(I, DL)); 9872 SDValue Ch = DAG.getStore(St->getChain(), DL, SubVec, BasePtr, 9873 St->getPointerInfo(), St->isVolatile(), 9874 St->isNonTemporal(), St->getAlignment()); 9875 BasePtr = DAG.getNode(ISD::ADD, DL, BasePtr.getValueType(), BasePtr, 9876 Increment); 9877 Chains.push_back(Ch); 9878 } 9879 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chains); 9880 } 9881 9882 if (!ISD::isNormalStore(St)) 9883 return SDValue(); 9884 9885 // Split a store of a VMOVDRR into two integer stores to avoid mixing NEON and 9886 // ARM stores of arguments in the same cache line. 9887 if (StVal.getNode()->getOpcode() == ARMISD::VMOVDRR && 9888 StVal.getNode()->hasOneUse()) { 9889 SelectionDAG &DAG = DCI.DAG; 9890 bool isBigEndian = DAG.getDataLayout().isBigEndian(); 9891 SDLoc DL(St); 9892 SDValue BasePtr = St->getBasePtr(); 9893 SDValue NewST1 = DAG.getStore(St->getChain(), DL, 9894 StVal.getNode()->getOperand(isBigEndian ? 1 : 0 ), 9895 BasePtr, St->getPointerInfo(), St->isVolatile(), 9896 St->isNonTemporal(), St->getAlignment()); 9897 9898 SDValue OffsetPtr = DAG.getNode(ISD::ADD, DL, MVT::i32, BasePtr, 9899 DAG.getConstant(4, DL, MVT::i32)); 9900 return DAG.getStore(NewST1.getValue(0), DL, 9901 StVal.getNode()->getOperand(isBigEndian ? 0 : 1), 9902 OffsetPtr, St->getPointerInfo(), St->isVolatile(), 9903 St->isNonTemporal(), 9904 std::min(4U, St->getAlignment() / 2)); 9905 } 9906 9907 if (StVal.getValueType() == MVT::i64 && 9908 StVal.getNode()->getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 9909 9910 // Bitcast an i64 store extracted from a vector to f64. 9911 // Otherwise, the i64 value will be legalized to a pair of i32 values. 9912 SelectionDAG &DAG = DCI.DAG; 9913 SDLoc dl(StVal); 9914 SDValue IntVec = StVal.getOperand(0); 9915 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f64, 9916 IntVec.getValueType().getVectorNumElements()); 9917 SDValue Vec = DAG.getNode(ISD::BITCAST, dl, FloatVT, IntVec); 9918 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, 9919 Vec, StVal.getOperand(1)); 9920 dl = SDLoc(N); 9921 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt); 9922 // Make the DAGCombiner fold the bitcasts. 9923 DCI.AddToWorklist(Vec.getNode()); 9924 DCI.AddToWorklist(ExtElt.getNode()); 9925 DCI.AddToWorklist(V.getNode()); 9926 return DAG.getStore(St->getChain(), dl, V, St->getBasePtr(), 9927 St->getPointerInfo(), St->isVolatile(), 9928 St->isNonTemporal(), St->getAlignment(), 9929 St->getAAInfo()); 9930 } 9931 9932 // If this is a legal vector store, try to combine it into a VST1_UPD. 9933 if (ISD::isNormalStore(N) && VT.isVector() && 9934 DCI.DAG.getTargetLoweringInfo().isTypeLegal(VT)) 9935 return CombineBaseUpdate(N, DCI); 9936 9937 return SDValue(); 9938 } 9939 9940 /// PerformVCVTCombine - VCVT (floating-point to fixed-point, Advanced SIMD) 9941 /// can replace combinations of VMUL and VCVT (floating-point to integer) 9942 /// when the VMUL has a constant operand that is a power of 2. 9943 /// 9944 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>): 9945 /// vmul.f32 d16, d17, d16 9946 /// vcvt.s32.f32 d16, d16 9947 /// becomes: 9948 /// vcvt.s32.f32 d16, d16, #3 9949 static SDValue PerformVCVTCombine(SDNode *N, SelectionDAG &DAG, 9950 const ARMSubtarget *Subtarget) { 9951 if (!Subtarget->hasNEON()) 9952 return SDValue(); 9953 9954 SDValue Op = N->getOperand(0); 9955 if (!Op.getValueType().isVector() || Op.getOpcode() != ISD::FMUL) 9956 return SDValue(); 9957 9958 SDValue ConstVec = Op->getOperand(1); 9959 if (!isa<BuildVectorSDNode>(ConstVec)) 9960 return SDValue(); 9961 9962 MVT FloatTy = Op.getSimpleValueType().getVectorElementType(); 9963 uint32_t FloatBits = FloatTy.getSizeInBits(); 9964 MVT IntTy = N->getSimpleValueType(0).getVectorElementType(); 9965 uint32_t IntBits = IntTy.getSizeInBits(); 9966 unsigned NumLanes = Op.getValueType().getVectorNumElements(); 9967 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { 9968 // These instructions only exist converting from f32 to i32. We can handle 9969 // smaller integers by generating an extra truncate, but larger ones would 9970 // be lossy. We also can't handle more then 4 lanes, since these intructions 9971 // only support v2i32/v4i32 types. 9972 return SDValue(); 9973 } 9974 9975 BitVector UndefElements; 9976 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec); 9977 int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, 33); 9978 if (C == -1 || C == 0 || C > 32) 9979 return SDValue(); 9980 9981 SDLoc dl(N); 9982 bool isSigned = N->getOpcode() == ISD::FP_TO_SINT; 9983 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfp2fxs : 9984 Intrinsic::arm_neon_vcvtfp2fxu; 9985 SDValue FixConv = DAG.getNode( 9986 ISD::INTRINSIC_WO_CHAIN, dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32, 9987 DAG.getConstant(IntrinsicOpcode, dl, MVT::i32), Op->getOperand(0), 9988 DAG.getConstant(C, dl, MVT::i32)); 9989 9990 if (IntBits < FloatBits) 9991 FixConv = DAG.getNode(ISD::TRUNCATE, dl, N->getValueType(0), FixConv); 9992 9993 return FixConv; 9994 } 9995 9996 /// PerformVDIVCombine - VCVT (fixed-point to floating-point, Advanced SIMD) 9997 /// can replace combinations of VCVT (integer to floating-point) and VDIV 9998 /// when the VDIV has a constant operand that is a power of 2. 9999 /// 10000 /// Example (assume d17 = <float 8.000000e+00, float 8.000000e+00>): 10001 /// vcvt.f32.s32 d16, d16 10002 /// vdiv.f32 d16, d17, d16 10003 /// becomes: 10004 /// vcvt.f32.s32 d16, d16, #3 10005 static SDValue PerformVDIVCombine(SDNode *N, SelectionDAG &DAG, 10006 const ARMSubtarget *Subtarget) { 10007 if (!Subtarget->hasNEON()) 10008 return SDValue(); 10009 10010 SDValue Op = N->getOperand(0); 10011 unsigned OpOpcode = Op.getNode()->getOpcode(); 10012 if (!N->getValueType(0).isVector() || 10013 (OpOpcode != ISD::SINT_TO_FP && OpOpcode != ISD::UINT_TO_FP)) 10014 return SDValue(); 10015 10016 SDValue ConstVec = N->getOperand(1); 10017 if (!isa<BuildVectorSDNode>(ConstVec)) 10018 return SDValue(); 10019 10020 MVT FloatTy = N->getSimpleValueType(0).getVectorElementType(); 10021 uint32_t FloatBits = FloatTy.getSizeInBits(); 10022 MVT IntTy = Op.getOperand(0).getSimpleValueType().getVectorElementType(); 10023 uint32_t IntBits = IntTy.getSizeInBits(); 10024 unsigned NumLanes = Op.getValueType().getVectorNumElements(); 10025 if (FloatBits != 32 || IntBits > 32 || NumLanes > 4) { 10026 // These instructions only exist converting from i32 to f32. We can handle 10027 // smaller integers by generating an extra extend, but larger ones would 10028 // be lossy. We also can't handle more then 4 lanes, since these intructions 10029 // only support v2i32/v4i32 types. 10030 return SDValue(); 10031 } 10032 10033 BitVector UndefElements; 10034 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(ConstVec); 10035 int32_t C = BV->getConstantFPSplatPow2ToLog2Int(&UndefElements, 33); 10036 if (C == -1 || C == 0 || C > 32) 10037 return SDValue(); 10038 10039 SDLoc dl(N); 10040 bool isSigned = OpOpcode == ISD::SINT_TO_FP; 10041 SDValue ConvInput = Op.getOperand(0); 10042 if (IntBits < FloatBits) 10043 ConvInput = DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, 10044 dl, NumLanes == 2 ? MVT::v2i32 : MVT::v4i32, 10045 ConvInput); 10046 10047 unsigned IntrinsicOpcode = isSigned ? Intrinsic::arm_neon_vcvtfxs2fp : 10048 Intrinsic::arm_neon_vcvtfxu2fp; 10049 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, 10050 Op.getValueType(), 10051 DAG.getConstant(IntrinsicOpcode, dl, MVT::i32), 10052 ConvInput, DAG.getConstant(C, dl, MVT::i32)); 10053 } 10054 10055 /// Getvshiftimm - Check if this is a valid build_vector for the immediate 10056 /// operand of a vector shift operation, where all the elements of the 10057 /// build_vector must have the same constant integer value. 10058 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { 10059 // Ignore bit_converts. 10060 while (Op.getOpcode() == ISD::BITCAST) 10061 Op = Op.getOperand(0); 10062 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode()); 10063 APInt SplatBits, SplatUndef; 10064 unsigned SplatBitSize; 10065 bool HasAnyUndefs; 10066 if (! BVN || ! BVN->isConstantSplat(SplatBits, SplatUndef, SplatBitSize, 10067 HasAnyUndefs, ElementBits) || 10068 SplatBitSize > ElementBits) 10069 return false; 10070 Cnt = SplatBits.getSExtValue(); 10071 return true; 10072 } 10073 10074 /// isVShiftLImm - Check if this is a valid build_vector for the immediate 10075 /// operand of a vector shift left operation. That value must be in the range: 10076 /// 0 <= Value < ElementBits for a left shift; or 10077 /// 0 <= Value <= ElementBits for a long left shift. 10078 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { 10079 assert(VT.isVector() && "vector shift count is not a vector type"); 10080 int64_t ElementBits = VT.getVectorElementType().getSizeInBits(); 10081 if (! getVShiftImm(Op, ElementBits, Cnt)) 10082 return false; 10083 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits); 10084 } 10085 10086 /// isVShiftRImm - Check if this is a valid build_vector for the immediate 10087 /// operand of a vector shift right operation. For a shift opcode, the value 10088 /// is positive, but for an intrinsic the value count must be negative. The 10089 /// absolute value must be in the range: 10090 /// 1 <= |Value| <= ElementBits for a right shift; or 10091 /// 1 <= |Value| <= ElementBits/2 for a narrow right shift. 10092 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, 10093 int64_t &Cnt) { 10094 assert(VT.isVector() && "vector shift count is not a vector type"); 10095 int64_t ElementBits = VT.getVectorElementType().getSizeInBits(); 10096 if (! getVShiftImm(Op, ElementBits, Cnt)) 10097 return false; 10098 if (!isIntrinsic) 10099 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits)); 10100 if (Cnt >= -(isNarrow ? ElementBits/2 : ElementBits) && Cnt <= -1) { 10101 Cnt = -Cnt; 10102 return true; 10103 } 10104 return false; 10105 } 10106 10107 /// PerformIntrinsicCombine - ARM-specific DAG combining for intrinsics. 10108 static SDValue PerformIntrinsicCombine(SDNode *N, SelectionDAG &DAG) { 10109 unsigned IntNo = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue(); 10110 switch (IntNo) { 10111 default: 10112 // Don't do anything for most intrinsics. 10113 break; 10114 10115 case Intrinsic::arm_neon_vabds: 10116 if (!N->getValueType(0).isInteger()) 10117 return SDValue(); 10118 return DAG.getNode(ISD::SABSDIFF, SDLoc(N), N->getValueType(0), 10119 N->getOperand(1), N->getOperand(2)); 10120 case Intrinsic::arm_neon_vabdu: 10121 return DAG.getNode(ISD::UABSDIFF, SDLoc(N), N->getValueType(0), 10122 N->getOperand(1), N->getOperand(2)); 10123 10124 // Vector shifts: check for immediate versions and lower them. 10125 // Note: This is done during DAG combining instead of DAG legalizing because 10126 // the build_vectors for 64-bit vector element shift counts are generally 10127 // not legal, and it is hard to see their values after they get legalized to 10128 // loads from a constant pool. 10129 case Intrinsic::arm_neon_vshifts: 10130 case Intrinsic::arm_neon_vshiftu: 10131 case Intrinsic::arm_neon_vrshifts: 10132 case Intrinsic::arm_neon_vrshiftu: 10133 case Intrinsic::arm_neon_vrshiftn: 10134 case Intrinsic::arm_neon_vqshifts: 10135 case Intrinsic::arm_neon_vqshiftu: 10136 case Intrinsic::arm_neon_vqshiftsu: 10137 case Intrinsic::arm_neon_vqshiftns: 10138 case Intrinsic::arm_neon_vqshiftnu: 10139 case Intrinsic::arm_neon_vqshiftnsu: 10140 case Intrinsic::arm_neon_vqrshiftns: 10141 case Intrinsic::arm_neon_vqrshiftnu: 10142 case Intrinsic::arm_neon_vqrshiftnsu: { 10143 EVT VT = N->getOperand(1).getValueType(); 10144 int64_t Cnt; 10145 unsigned VShiftOpc = 0; 10146 10147 switch (IntNo) { 10148 case Intrinsic::arm_neon_vshifts: 10149 case Intrinsic::arm_neon_vshiftu: 10150 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) { 10151 VShiftOpc = ARMISD::VSHL; 10152 break; 10153 } 10154 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) { 10155 VShiftOpc = (IntNo == Intrinsic::arm_neon_vshifts ? 10156 ARMISD::VSHRs : ARMISD::VSHRu); 10157 break; 10158 } 10159 return SDValue(); 10160 10161 case Intrinsic::arm_neon_vrshifts: 10162 case Intrinsic::arm_neon_vrshiftu: 10163 if (isVShiftRImm(N->getOperand(2), VT, false, true, Cnt)) 10164 break; 10165 return SDValue(); 10166 10167 case Intrinsic::arm_neon_vqshifts: 10168 case Intrinsic::arm_neon_vqshiftu: 10169 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) 10170 break; 10171 return SDValue(); 10172 10173 case Intrinsic::arm_neon_vqshiftsu: 10174 if (isVShiftLImm(N->getOperand(2), VT, false, Cnt)) 10175 break; 10176 llvm_unreachable("invalid shift count for vqshlu intrinsic"); 10177 10178 case Intrinsic::arm_neon_vrshiftn: 10179 case Intrinsic::arm_neon_vqshiftns: 10180 case Intrinsic::arm_neon_vqshiftnu: 10181 case Intrinsic::arm_neon_vqshiftnsu: 10182 case Intrinsic::arm_neon_vqrshiftns: 10183 case Intrinsic::arm_neon_vqrshiftnu: 10184 case Intrinsic::arm_neon_vqrshiftnsu: 10185 // Narrowing shifts require an immediate right shift. 10186 if (isVShiftRImm(N->getOperand(2), VT, true, true, Cnt)) 10187 break; 10188 llvm_unreachable("invalid shift count for narrowing vector shift " 10189 "intrinsic"); 10190 10191 default: 10192 llvm_unreachable("unhandled vector shift"); 10193 } 10194 10195 switch (IntNo) { 10196 case Intrinsic::arm_neon_vshifts: 10197 case Intrinsic::arm_neon_vshiftu: 10198 // Opcode already set above. 10199 break; 10200 case Intrinsic::arm_neon_vrshifts: 10201 VShiftOpc = ARMISD::VRSHRs; break; 10202 case Intrinsic::arm_neon_vrshiftu: 10203 VShiftOpc = ARMISD::VRSHRu; break; 10204 case Intrinsic::arm_neon_vrshiftn: 10205 VShiftOpc = ARMISD::VRSHRN; break; 10206 case Intrinsic::arm_neon_vqshifts: 10207 VShiftOpc = ARMISD::VQSHLs; break; 10208 case Intrinsic::arm_neon_vqshiftu: 10209 VShiftOpc = ARMISD::VQSHLu; break; 10210 case Intrinsic::arm_neon_vqshiftsu: 10211 VShiftOpc = ARMISD::VQSHLsu; break; 10212 case Intrinsic::arm_neon_vqshiftns: 10213 VShiftOpc = ARMISD::VQSHRNs; break; 10214 case Intrinsic::arm_neon_vqshiftnu: 10215 VShiftOpc = ARMISD::VQSHRNu; break; 10216 case Intrinsic::arm_neon_vqshiftnsu: 10217 VShiftOpc = ARMISD::VQSHRNsu; break; 10218 case Intrinsic::arm_neon_vqrshiftns: 10219 VShiftOpc = ARMISD::VQRSHRNs; break; 10220 case Intrinsic::arm_neon_vqrshiftnu: 10221 VShiftOpc = ARMISD::VQRSHRNu; break; 10222 case Intrinsic::arm_neon_vqrshiftnsu: 10223 VShiftOpc = ARMISD::VQRSHRNsu; break; 10224 } 10225 10226 SDLoc dl(N); 10227 return DAG.getNode(VShiftOpc, dl, N->getValueType(0), 10228 N->getOperand(1), DAG.getConstant(Cnt, dl, MVT::i32)); 10229 } 10230 10231 case Intrinsic::arm_neon_vshiftins: { 10232 EVT VT = N->getOperand(1).getValueType(); 10233 int64_t Cnt; 10234 unsigned VShiftOpc = 0; 10235 10236 if (isVShiftLImm(N->getOperand(3), VT, false, Cnt)) 10237 VShiftOpc = ARMISD::VSLI; 10238 else if (isVShiftRImm(N->getOperand(3), VT, false, true, Cnt)) 10239 VShiftOpc = ARMISD::VSRI; 10240 else { 10241 llvm_unreachable("invalid shift count for vsli/vsri intrinsic"); 10242 } 10243 10244 SDLoc dl(N); 10245 return DAG.getNode(VShiftOpc, dl, N->getValueType(0), 10246 N->getOperand(1), N->getOperand(2), 10247 DAG.getConstant(Cnt, dl, MVT::i32)); 10248 } 10249 10250 case Intrinsic::arm_neon_vqrshifts: 10251 case Intrinsic::arm_neon_vqrshiftu: 10252 // No immediate versions of these to check for. 10253 break; 10254 } 10255 10256 return SDValue(); 10257 } 10258 10259 /// PerformShiftCombine - Checks for immediate versions of vector shifts and 10260 /// lowers them. As with the vector shift intrinsics, this is done during DAG 10261 /// combining instead of DAG legalizing because the build_vectors for 64-bit 10262 /// vector element shift counts are generally not legal, and it is hard to see 10263 /// their values after they get legalized to loads from a constant pool. 10264 static SDValue PerformShiftCombine(SDNode *N, SelectionDAG &DAG, 10265 const ARMSubtarget *ST) { 10266 EVT VT = N->getValueType(0); 10267 if (N->getOpcode() == ISD::SRL && VT == MVT::i32 && ST->hasV6Ops()) { 10268 // Canonicalize (srl (bswap x), 16) to (rotr (bswap x), 16) if the high 10269 // 16-bits of x is zero. This optimizes rev + lsr 16 to rev16. 10270 SDValue N1 = N->getOperand(1); 10271 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { 10272 SDValue N0 = N->getOperand(0); 10273 if (C->getZExtValue() == 16 && N0.getOpcode() == ISD::BSWAP && 10274 DAG.MaskedValueIsZero(N0.getOperand(0), 10275 APInt::getHighBitsSet(32, 16))) 10276 return DAG.getNode(ISD::ROTR, SDLoc(N), VT, N0, N1); 10277 } 10278 } 10279 10280 // Nothing to be done for scalar shifts. 10281 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 10282 if (!VT.isVector() || !TLI.isTypeLegal(VT)) 10283 return SDValue(); 10284 10285 assert(ST->hasNEON() && "unexpected vector shift"); 10286 int64_t Cnt; 10287 10288 switch (N->getOpcode()) { 10289 default: llvm_unreachable("unexpected shift opcode"); 10290 10291 case ISD::SHL: 10292 if (isVShiftLImm(N->getOperand(1), VT, false, Cnt)) { 10293 SDLoc dl(N); 10294 return DAG.getNode(ARMISD::VSHL, dl, VT, N->getOperand(0), 10295 DAG.getConstant(Cnt, dl, MVT::i32)); 10296 } 10297 break; 10298 10299 case ISD::SRA: 10300 case ISD::SRL: 10301 if (isVShiftRImm(N->getOperand(1), VT, false, false, Cnt)) { 10302 unsigned VShiftOpc = (N->getOpcode() == ISD::SRA ? 10303 ARMISD::VSHRs : ARMISD::VSHRu); 10304 SDLoc dl(N); 10305 return DAG.getNode(VShiftOpc, dl, VT, N->getOperand(0), 10306 DAG.getConstant(Cnt, dl, MVT::i32)); 10307 } 10308 } 10309 return SDValue(); 10310 } 10311 10312 /// PerformExtendCombine - Target-specific DAG combining for ISD::SIGN_EXTEND, 10313 /// ISD::ZERO_EXTEND, and ISD::ANY_EXTEND. 10314 static SDValue PerformExtendCombine(SDNode *N, SelectionDAG &DAG, 10315 const ARMSubtarget *ST) { 10316 SDValue N0 = N->getOperand(0); 10317 10318 // Check for sign- and zero-extensions of vector extract operations of 8- 10319 // and 16-bit vector elements. NEON supports these directly. They are 10320 // handled during DAG combining because type legalization will promote them 10321 // to 32-bit types and it is messy to recognize the operations after that. 10322 if (ST->hasNEON() && N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT) { 10323 SDValue Vec = N0.getOperand(0); 10324 SDValue Lane = N0.getOperand(1); 10325 EVT VT = N->getValueType(0); 10326 EVT EltVT = N0.getValueType(); 10327 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 10328 10329 if (VT == MVT::i32 && 10330 (EltVT == MVT::i8 || EltVT == MVT::i16) && 10331 TLI.isTypeLegal(Vec.getValueType()) && 10332 isa<ConstantSDNode>(Lane)) { 10333 10334 unsigned Opc = 0; 10335 switch (N->getOpcode()) { 10336 default: llvm_unreachable("unexpected opcode"); 10337 case ISD::SIGN_EXTEND: 10338 Opc = ARMISD::VGETLANEs; 10339 break; 10340 case ISD::ZERO_EXTEND: 10341 case ISD::ANY_EXTEND: 10342 Opc = ARMISD::VGETLANEu; 10343 break; 10344 } 10345 return DAG.getNode(Opc, SDLoc(N), VT, Vec, Lane); 10346 } 10347 } 10348 10349 return SDValue(); 10350 } 10351 10352 static void computeKnownBits(SelectionDAG &DAG, SDValue Op, APInt &KnownZero, 10353 APInt &KnownOne) { 10354 if (Op.getOpcode() == ARMISD::BFI) { 10355 // Conservatively, we can recurse down the first operand 10356 // and just mask out all affected bits. 10357 computeKnownBits(DAG, Op.getOperand(0), KnownZero, KnownOne); 10358 10359 // The operand to BFI is already a mask suitable for removing the bits it 10360 // sets. 10361 ConstantSDNode *CI = cast<ConstantSDNode>(Op.getOperand(2)); 10362 APInt Mask = CI->getAPIntValue(); 10363 KnownZero &= Mask; 10364 KnownOne &= Mask; 10365 return; 10366 } 10367 if (Op.getOpcode() == ARMISD::CMOV) { 10368 APInt KZ2(KnownZero.getBitWidth(), 0); 10369 APInt KO2(KnownOne.getBitWidth(), 0); 10370 computeKnownBits(DAG, Op.getOperand(1), KnownZero, KnownOne); 10371 computeKnownBits(DAG, Op.getOperand(2), KZ2, KO2); 10372 10373 KnownZero &= KZ2; 10374 KnownOne &= KO2; 10375 return; 10376 } 10377 return DAG.computeKnownBits(Op, KnownZero, KnownOne); 10378 } 10379 10380 SDValue ARMTargetLowering::PerformCMOVToBFICombine(SDNode *CMOV, SelectionDAG &DAG) const { 10381 // If we have a CMOV, OR and AND combination such as: 10382 // if (x & CN) 10383 // y |= CM; 10384 // 10385 // And: 10386 // * CN is a single bit; 10387 // * All bits covered by CM are known zero in y 10388 // 10389 // Then we can convert this into a sequence of BFI instructions. This will 10390 // always be a win if CM is a single bit, will always be no worse than the 10391 // TST&OR sequence if CM is two bits, and for thumb will be no worse if CM is 10392 // three bits (due to the extra IT instruction). 10393 10394 SDValue Op0 = CMOV->getOperand(0); 10395 SDValue Op1 = CMOV->getOperand(1); 10396 auto CCNode = cast<ConstantSDNode>(CMOV->getOperand(2)); 10397 auto CC = CCNode->getAPIntValue().getLimitedValue(); 10398 SDValue CmpZ = CMOV->getOperand(4); 10399 10400 assert(CmpZ->getOpcode() == ARMISD::CMPZ); 10401 SDValue And = CmpZ->getOperand(0); 10402 if (And->getOpcode() != ISD::AND) 10403 return SDValue(); 10404 ConstantSDNode *AndC = dyn_cast<ConstantSDNode>(And->getOperand(1)); 10405 if (!AndC || !AndC->getAPIntValue().isPowerOf2()) 10406 return SDValue(); 10407 SDValue X = And->getOperand(0); 10408 10409 if (CC == ARMCC::EQ) { 10410 // We're performing an "equal to zero" compare. Swap the operands so we 10411 // canonicalize on a "not equal to zero" compare. 10412 std::swap(Op0, Op1); 10413 } else { 10414 assert(CC == ARMCC::NE && "How can a CMPZ node not be EQ or NE?"); 10415 } 10416 10417 if (Op1->getOpcode() != ISD::OR) 10418 return SDValue(); 10419 10420 ConstantSDNode *OrC = dyn_cast<ConstantSDNode>(Op1->getOperand(1)); 10421 if (!OrC) 10422 return SDValue(); 10423 SDValue Y = Op1->getOperand(0); 10424 10425 if (Op0 != Y) 10426 return SDValue(); 10427 10428 // Now, is it profitable to continue? 10429 APInt OrCI = OrC->getAPIntValue(); 10430 unsigned Heuristic = Subtarget->isThumb() ? 3 : 2; 10431 if (OrCI.countPopulation() > Heuristic) 10432 return SDValue(); 10433 10434 // Lastly, can we determine that the bits defined by OrCI 10435 // are zero in Y? 10436 APInt KnownZero, KnownOne; 10437 computeKnownBits(DAG, Y, KnownZero, KnownOne); 10438 if ((OrCI & KnownZero) != OrCI) 10439 return SDValue(); 10440 10441 // OK, we can do the combine. 10442 SDValue V = Y; 10443 SDLoc dl(X); 10444 EVT VT = X.getValueType(); 10445 unsigned BitInX = AndC->getAPIntValue().logBase2(); 10446 10447 if (BitInX != 0) { 10448 // We must shift X first. 10449 X = DAG.getNode(ISD::SRL, dl, VT, X, 10450 DAG.getConstant(BitInX, dl, VT)); 10451 } 10452 10453 for (unsigned BitInY = 0, NumActiveBits = OrCI.getActiveBits(); 10454 BitInY < NumActiveBits; ++BitInY) { 10455 if (OrCI[BitInY] == 0) 10456 continue; 10457 APInt Mask(VT.getSizeInBits(), 0); 10458 Mask.setBit(BitInY); 10459 V = DAG.getNode(ARMISD::BFI, dl, VT, V, X, 10460 // Confusingly, the operand is an *inverted* mask. 10461 DAG.getConstant(~Mask, dl, VT)); 10462 } 10463 10464 return V; 10465 } 10466 10467 /// PerformCMOVCombine - Target-specific DAG combining for ARMISD::CMOV. 10468 SDValue 10469 ARMTargetLowering::PerformCMOVCombine(SDNode *N, SelectionDAG &DAG) const { 10470 SDValue Cmp = N->getOperand(4); 10471 if (Cmp.getOpcode() != ARMISD::CMPZ) 10472 // Only looking at EQ and NE cases. 10473 return SDValue(); 10474 10475 EVT VT = N->getValueType(0); 10476 SDLoc dl(N); 10477 SDValue LHS = Cmp.getOperand(0); 10478 SDValue RHS = Cmp.getOperand(1); 10479 SDValue FalseVal = N->getOperand(0); 10480 SDValue TrueVal = N->getOperand(1); 10481 SDValue ARMcc = N->getOperand(2); 10482 ARMCC::CondCodes CC = 10483 (ARMCC::CondCodes)cast<ConstantSDNode>(ARMcc)->getZExtValue(); 10484 10485 // BFI is only available on V6T2+. 10486 if (!Subtarget->isThumb1Only() && Subtarget->hasV6T2Ops()) { 10487 SDValue R = PerformCMOVToBFICombine(N, DAG); 10488 if (R) 10489 return R; 10490 } 10491 10492 // Simplify 10493 // mov r1, r0 10494 // cmp r1, x 10495 // mov r0, y 10496 // moveq r0, x 10497 // to 10498 // cmp r0, x 10499 // movne r0, y 10500 // 10501 // mov r1, r0 10502 // cmp r1, x 10503 // mov r0, x 10504 // movne r0, y 10505 // to 10506 // cmp r0, x 10507 // movne r0, y 10508 /// FIXME: Turn this into a target neutral optimization? 10509 SDValue Res; 10510 if (CC == ARMCC::NE && FalseVal == RHS && FalseVal != LHS) { 10511 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, TrueVal, ARMcc, 10512 N->getOperand(3), Cmp); 10513 } else if (CC == ARMCC::EQ && TrueVal == RHS) { 10514 SDValue ARMcc; 10515 SDValue NewCmp = getARMCmp(LHS, RHS, ISD::SETNE, ARMcc, DAG, dl); 10516 Res = DAG.getNode(ARMISD::CMOV, dl, VT, LHS, FalseVal, ARMcc, 10517 N->getOperand(3), NewCmp); 10518 } 10519 10520 if (Res.getNode()) { 10521 APInt KnownZero, KnownOne; 10522 DAG.computeKnownBits(SDValue(N,0), KnownZero, KnownOne); 10523 // Capture demanded bits information that would be otherwise lost. 10524 if (KnownZero == 0xfffffffe) 10525 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 10526 DAG.getValueType(MVT::i1)); 10527 else if (KnownZero == 0xffffff00) 10528 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 10529 DAG.getValueType(MVT::i8)); 10530 else if (KnownZero == 0xffff0000) 10531 Res = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Res, 10532 DAG.getValueType(MVT::i16)); 10533 } 10534 10535 return Res; 10536 } 10537 10538 SDValue ARMTargetLowering::PerformDAGCombine(SDNode *N, 10539 DAGCombinerInfo &DCI) const { 10540 switch (N->getOpcode()) { 10541 default: break; 10542 case ISD::ADDC: return PerformADDCCombine(N, DCI, Subtarget); 10543 case ISD::ADD: return PerformADDCombine(N, DCI, Subtarget); 10544 case ISD::SUB: return PerformSUBCombine(N, DCI); 10545 case ISD::MUL: return PerformMULCombine(N, DCI, Subtarget); 10546 case ISD::OR: return PerformORCombine(N, DCI, Subtarget); 10547 case ISD::XOR: return PerformXORCombine(N, DCI, Subtarget); 10548 case ISD::AND: return PerformANDCombine(N, DCI, Subtarget); 10549 case ARMISD::BFI: return PerformBFICombine(N, DCI); 10550 case ARMISD::VMOVRRD: return PerformVMOVRRDCombine(N, DCI, Subtarget); 10551 case ARMISD::VMOVDRR: return PerformVMOVDRRCombine(N, DCI.DAG); 10552 case ISD::STORE: return PerformSTORECombine(N, DCI); 10553 case ISD::BUILD_VECTOR: return PerformBUILD_VECTORCombine(N, DCI, Subtarget); 10554 case ISD::INSERT_VECTOR_ELT: return PerformInsertEltCombine(N, DCI); 10555 case ISD::VECTOR_SHUFFLE: return PerformVECTOR_SHUFFLECombine(N, DCI.DAG); 10556 case ARMISD::VDUPLANE: return PerformVDUPLANECombine(N, DCI); 10557 case ISD::FP_TO_SINT: 10558 case ISD::FP_TO_UINT: 10559 return PerformVCVTCombine(N, DCI.DAG, Subtarget); 10560 case ISD::FDIV: 10561 return PerformVDIVCombine(N, DCI.DAG, Subtarget); 10562 case ISD::INTRINSIC_WO_CHAIN: return PerformIntrinsicCombine(N, DCI.DAG); 10563 case ISD::SHL: 10564 case ISD::SRA: 10565 case ISD::SRL: return PerformShiftCombine(N, DCI.DAG, Subtarget); 10566 case ISD::SIGN_EXTEND: 10567 case ISD::ZERO_EXTEND: 10568 case ISD::ANY_EXTEND: return PerformExtendCombine(N, DCI.DAG, Subtarget); 10569 case ARMISD::CMOV: return PerformCMOVCombine(N, DCI.DAG); 10570 case ISD::LOAD: return PerformLOADCombine(N, DCI); 10571 case ARMISD::VLD2DUP: 10572 case ARMISD::VLD3DUP: 10573 case ARMISD::VLD4DUP: 10574 return PerformVLDCombine(N, DCI); 10575 case ARMISD::BUILD_VECTOR: 10576 return PerformARMBUILD_VECTORCombine(N, DCI); 10577 case ISD::INTRINSIC_VOID: 10578 case ISD::INTRINSIC_W_CHAIN: 10579 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 10580 case Intrinsic::arm_neon_vld1: 10581 case Intrinsic::arm_neon_vld2: 10582 case Intrinsic::arm_neon_vld3: 10583 case Intrinsic::arm_neon_vld4: 10584 case Intrinsic::arm_neon_vld2lane: 10585 case Intrinsic::arm_neon_vld3lane: 10586 case Intrinsic::arm_neon_vld4lane: 10587 case Intrinsic::arm_neon_vst1: 10588 case Intrinsic::arm_neon_vst2: 10589 case Intrinsic::arm_neon_vst3: 10590 case Intrinsic::arm_neon_vst4: 10591 case Intrinsic::arm_neon_vst2lane: 10592 case Intrinsic::arm_neon_vst3lane: 10593 case Intrinsic::arm_neon_vst4lane: 10594 return PerformVLDCombine(N, DCI); 10595 default: break; 10596 } 10597 break; 10598 } 10599 return SDValue(); 10600 } 10601 10602 bool ARMTargetLowering::isDesirableToTransformToIntegerOp(unsigned Opc, 10603 EVT VT) const { 10604 return (VT == MVT::f32) && (Opc == ISD::LOAD || Opc == ISD::STORE); 10605 } 10606 10607 bool ARMTargetLowering::allowsMisalignedMemoryAccesses(EVT VT, 10608 unsigned, 10609 unsigned, 10610 bool *Fast) const { 10611 // The AllowsUnaliged flag models the SCTLR.A setting in ARM cpus 10612 bool AllowsUnaligned = Subtarget->allowsUnalignedMem(); 10613 10614 switch (VT.getSimpleVT().SimpleTy) { 10615 default: 10616 return false; 10617 case MVT::i8: 10618 case MVT::i16: 10619 case MVT::i32: { 10620 // Unaligned access can use (for example) LRDB, LRDH, LDR 10621 if (AllowsUnaligned) { 10622 if (Fast) 10623 *Fast = Subtarget->hasV7Ops(); 10624 return true; 10625 } 10626 return false; 10627 } 10628 case MVT::f64: 10629 case MVT::v2f64: { 10630 // For any little-endian targets with neon, we can support unaligned ld/st 10631 // of D and Q (e.g. {D0,D1}) registers by using vld1.i8/vst1.i8. 10632 // A big-endian target may also explicitly support unaligned accesses 10633 if (Subtarget->hasNEON() && (AllowsUnaligned || Subtarget->isLittle())) { 10634 if (Fast) 10635 *Fast = true; 10636 return true; 10637 } 10638 return false; 10639 } 10640 } 10641 } 10642 10643 static bool memOpAlign(unsigned DstAlign, unsigned SrcAlign, 10644 unsigned AlignCheck) { 10645 return ((SrcAlign == 0 || SrcAlign % AlignCheck == 0) && 10646 (DstAlign == 0 || DstAlign % AlignCheck == 0)); 10647 } 10648 10649 EVT ARMTargetLowering::getOptimalMemOpType(uint64_t Size, 10650 unsigned DstAlign, unsigned SrcAlign, 10651 bool IsMemset, bool ZeroMemset, 10652 bool MemcpyStrSrc, 10653 MachineFunction &MF) const { 10654 const Function *F = MF.getFunction(); 10655 10656 // See if we can use NEON instructions for this... 10657 if ((!IsMemset || ZeroMemset) && Subtarget->hasNEON() && 10658 !F->hasFnAttribute(Attribute::NoImplicitFloat)) { 10659 bool Fast; 10660 if (Size >= 16 && 10661 (memOpAlign(SrcAlign, DstAlign, 16) || 10662 (allowsMisalignedMemoryAccesses(MVT::v2f64, 0, 1, &Fast) && Fast))) { 10663 return MVT::v2f64; 10664 } else if (Size >= 8 && 10665 (memOpAlign(SrcAlign, DstAlign, 8) || 10666 (allowsMisalignedMemoryAccesses(MVT::f64, 0, 1, &Fast) && 10667 Fast))) { 10668 return MVT::f64; 10669 } 10670 } 10671 10672 // Lowering to i32/i16 if the size permits. 10673 if (Size >= 4) 10674 return MVT::i32; 10675 else if (Size >= 2) 10676 return MVT::i16; 10677 10678 // Let the target-independent logic figure it out. 10679 return MVT::Other; 10680 } 10681 10682 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { 10683 if (Val.getOpcode() != ISD::LOAD) 10684 return false; 10685 10686 EVT VT1 = Val.getValueType(); 10687 if (!VT1.isSimple() || !VT1.isInteger() || 10688 !VT2.isSimple() || !VT2.isInteger()) 10689 return false; 10690 10691 switch (VT1.getSimpleVT().SimpleTy) { 10692 default: break; 10693 case MVT::i1: 10694 case MVT::i8: 10695 case MVT::i16: 10696 // 8-bit and 16-bit loads implicitly zero-extend to 32-bits. 10697 return true; 10698 } 10699 10700 return false; 10701 } 10702 10703 bool ARMTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const { 10704 EVT VT = ExtVal.getValueType(); 10705 10706 if (!isTypeLegal(VT)) 10707 return false; 10708 10709 // Don't create a loadext if we can fold the extension into a wide/long 10710 // instruction. 10711 // If there's more than one user instruction, the loadext is desirable no 10712 // matter what. There can be two uses by the same instruction. 10713 if (ExtVal->use_empty() || 10714 !ExtVal->use_begin()->isOnlyUserOf(ExtVal.getNode())) 10715 return true; 10716 10717 SDNode *U = *ExtVal->use_begin(); 10718 if ((U->getOpcode() == ISD::ADD || U->getOpcode() == ISD::SUB || 10719 U->getOpcode() == ISD::SHL || U->getOpcode() == ARMISD::VSHL)) 10720 return false; 10721 10722 return true; 10723 } 10724 10725 bool ARMTargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const { 10726 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy()) 10727 return false; 10728 10729 if (!isTypeLegal(EVT::getEVT(Ty1))) 10730 return false; 10731 10732 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop"); 10733 10734 // Assuming the caller doesn't have a zeroext or signext return parameter, 10735 // truncation all the way down to i1 is valid. 10736 return true; 10737 } 10738 10739 10740 static bool isLegalT1AddressImmediate(int64_t V, EVT VT) { 10741 if (V < 0) 10742 return false; 10743 10744 unsigned Scale = 1; 10745 switch (VT.getSimpleVT().SimpleTy) { 10746 default: return false; 10747 case MVT::i1: 10748 case MVT::i8: 10749 // Scale == 1; 10750 break; 10751 case MVT::i16: 10752 // Scale == 2; 10753 Scale = 2; 10754 break; 10755 case MVT::i32: 10756 // Scale == 4; 10757 Scale = 4; 10758 break; 10759 } 10760 10761 if ((V & (Scale - 1)) != 0) 10762 return false; 10763 V /= Scale; 10764 return V == (V & ((1LL << 5) - 1)); 10765 } 10766 10767 static bool isLegalT2AddressImmediate(int64_t V, EVT VT, 10768 const ARMSubtarget *Subtarget) { 10769 bool isNeg = false; 10770 if (V < 0) { 10771 isNeg = true; 10772 V = - V; 10773 } 10774 10775 switch (VT.getSimpleVT().SimpleTy) { 10776 default: return false; 10777 case MVT::i1: 10778 case MVT::i8: 10779 case MVT::i16: 10780 case MVT::i32: 10781 // + imm12 or - imm8 10782 if (isNeg) 10783 return V == (V & ((1LL << 8) - 1)); 10784 return V == (V & ((1LL << 12) - 1)); 10785 case MVT::f32: 10786 case MVT::f64: 10787 // Same as ARM mode. FIXME: NEON? 10788 if (!Subtarget->hasVFP2()) 10789 return false; 10790 if ((V & 3) != 0) 10791 return false; 10792 V >>= 2; 10793 return V == (V & ((1LL << 8) - 1)); 10794 } 10795 } 10796 10797 /// isLegalAddressImmediate - Return true if the integer value can be used 10798 /// as the offset of the target addressing mode for load / store of the 10799 /// given type. 10800 static bool isLegalAddressImmediate(int64_t V, EVT VT, 10801 const ARMSubtarget *Subtarget) { 10802 if (V == 0) 10803 return true; 10804 10805 if (!VT.isSimple()) 10806 return false; 10807 10808 if (Subtarget->isThumb1Only()) 10809 return isLegalT1AddressImmediate(V, VT); 10810 else if (Subtarget->isThumb2()) 10811 return isLegalT2AddressImmediate(V, VT, Subtarget); 10812 10813 // ARM mode. 10814 if (V < 0) 10815 V = - V; 10816 switch (VT.getSimpleVT().SimpleTy) { 10817 default: return false; 10818 case MVT::i1: 10819 case MVT::i8: 10820 case MVT::i32: 10821 // +- imm12 10822 return V == (V & ((1LL << 12) - 1)); 10823 case MVT::i16: 10824 // +- imm8 10825 return V == (V & ((1LL << 8) - 1)); 10826 case MVT::f32: 10827 case MVT::f64: 10828 if (!Subtarget->hasVFP2()) // FIXME: NEON? 10829 return false; 10830 if ((V & 3) != 0) 10831 return false; 10832 V >>= 2; 10833 return V == (V & ((1LL << 8) - 1)); 10834 } 10835 } 10836 10837 bool ARMTargetLowering::isLegalT2ScaledAddressingMode(const AddrMode &AM, 10838 EVT VT) const { 10839 int Scale = AM.Scale; 10840 if (Scale < 0) 10841 return false; 10842 10843 switch (VT.getSimpleVT().SimpleTy) { 10844 default: return false; 10845 case MVT::i1: 10846 case MVT::i8: 10847 case MVT::i16: 10848 case MVT::i32: 10849 if (Scale == 1) 10850 return true; 10851 // r + r << imm 10852 Scale = Scale & ~1; 10853 return Scale == 2 || Scale == 4 || Scale == 8; 10854 case MVT::i64: 10855 // r + r 10856 if (((unsigned)AM.HasBaseReg + Scale) <= 2) 10857 return true; 10858 return false; 10859 case MVT::isVoid: 10860 // Note, we allow "void" uses (basically, uses that aren't loads or 10861 // stores), because arm allows folding a scale into many arithmetic 10862 // operations. This should be made more precise and revisited later. 10863 10864 // Allow r << imm, but the imm has to be a multiple of two. 10865 if (Scale & 1) return false; 10866 return isPowerOf2_32(Scale); 10867 } 10868 } 10869 10870 /// isLegalAddressingMode - Return true if the addressing mode represented 10871 /// by AM is legal for this target, for a load/store of the specified type. 10872 bool ARMTargetLowering::isLegalAddressingMode(const DataLayout &DL, 10873 const AddrMode &AM, Type *Ty, 10874 unsigned AS) const { 10875 EVT VT = getValueType(DL, Ty, true); 10876 if (!isLegalAddressImmediate(AM.BaseOffs, VT, Subtarget)) 10877 return false; 10878 10879 // Can never fold addr of global into load/store. 10880 if (AM.BaseGV) 10881 return false; 10882 10883 switch (AM.Scale) { 10884 case 0: // no scale reg, must be "r+i" or "r", or "i". 10885 break; 10886 case 1: 10887 if (Subtarget->isThumb1Only()) 10888 return false; 10889 // FALL THROUGH. 10890 default: 10891 // ARM doesn't support any R+R*scale+imm addr modes. 10892 if (AM.BaseOffs) 10893 return false; 10894 10895 if (!VT.isSimple()) 10896 return false; 10897 10898 if (Subtarget->isThumb2()) 10899 return isLegalT2ScaledAddressingMode(AM, VT); 10900 10901 int Scale = AM.Scale; 10902 switch (VT.getSimpleVT().SimpleTy) { 10903 default: return false; 10904 case MVT::i1: 10905 case MVT::i8: 10906 case MVT::i32: 10907 if (Scale < 0) Scale = -Scale; 10908 if (Scale == 1) 10909 return true; 10910 // r + r << imm 10911 return isPowerOf2_32(Scale & ~1); 10912 case MVT::i16: 10913 case MVT::i64: 10914 // r + r 10915 if (((unsigned)AM.HasBaseReg + Scale) <= 2) 10916 return true; 10917 return false; 10918 10919 case MVT::isVoid: 10920 // Note, we allow "void" uses (basically, uses that aren't loads or 10921 // stores), because arm allows folding a scale into many arithmetic 10922 // operations. This should be made more precise and revisited later. 10923 10924 // Allow r << imm, but the imm has to be a multiple of two. 10925 if (Scale & 1) return false; 10926 return isPowerOf2_32(Scale); 10927 } 10928 } 10929 return true; 10930 } 10931 10932 /// isLegalICmpImmediate - Return true if the specified immediate is legal 10933 /// icmp immediate, that is the target has icmp instructions which can compare 10934 /// a register against the immediate without having to materialize the 10935 /// immediate into a register. 10936 bool ARMTargetLowering::isLegalICmpImmediate(int64_t Imm) const { 10937 // Thumb2 and ARM modes can use cmn for negative immediates. 10938 if (!Subtarget->isThumb()) 10939 return ARM_AM::getSOImmVal(std::abs(Imm)) != -1; 10940 if (Subtarget->isThumb2()) 10941 return ARM_AM::getT2SOImmVal(std::abs(Imm)) != -1; 10942 // Thumb1 doesn't have cmn, and only 8-bit immediates. 10943 return Imm >= 0 && Imm <= 255; 10944 } 10945 10946 /// isLegalAddImmediate - Return true if the specified immediate is a legal add 10947 /// *or sub* immediate, that is the target has add or sub instructions which can 10948 /// add a register with the immediate without having to materialize the 10949 /// immediate into a register. 10950 bool ARMTargetLowering::isLegalAddImmediate(int64_t Imm) const { 10951 // Same encoding for add/sub, just flip the sign. 10952 int64_t AbsImm = std::abs(Imm); 10953 if (!Subtarget->isThumb()) 10954 return ARM_AM::getSOImmVal(AbsImm) != -1; 10955 if (Subtarget->isThumb2()) 10956 return ARM_AM::getT2SOImmVal(AbsImm) != -1; 10957 // Thumb1 only has 8-bit unsigned immediate. 10958 return AbsImm >= 0 && AbsImm <= 255; 10959 } 10960 10961 static bool getARMIndexedAddressParts(SDNode *Ptr, EVT VT, 10962 bool isSEXTLoad, SDValue &Base, 10963 SDValue &Offset, bool &isInc, 10964 SelectionDAG &DAG) { 10965 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB) 10966 return false; 10967 10968 if (VT == MVT::i16 || ((VT == MVT::i8 || VT == MVT::i1) && isSEXTLoad)) { 10969 // AddressingMode 3 10970 Base = Ptr->getOperand(0); 10971 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 10972 int RHSC = (int)RHS->getZExtValue(); 10973 if (RHSC < 0 && RHSC > -256) { 10974 assert(Ptr->getOpcode() == ISD::ADD); 10975 isInc = false; 10976 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); 10977 return true; 10978 } 10979 } 10980 isInc = (Ptr->getOpcode() == ISD::ADD); 10981 Offset = Ptr->getOperand(1); 10982 return true; 10983 } else if (VT == MVT::i32 || VT == MVT::i8 || VT == MVT::i1) { 10984 // AddressingMode 2 10985 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 10986 int RHSC = (int)RHS->getZExtValue(); 10987 if (RHSC < 0 && RHSC > -0x1000) { 10988 assert(Ptr->getOpcode() == ISD::ADD); 10989 isInc = false; 10990 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); 10991 Base = Ptr->getOperand(0); 10992 return true; 10993 } 10994 } 10995 10996 if (Ptr->getOpcode() == ISD::ADD) { 10997 isInc = true; 10998 ARM_AM::ShiftOpc ShOpcVal= 10999 ARM_AM::getShiftOpcForNode(Ptr->getOperand(0).getOpcode()); 11000 if (ShOpcVal != ARM_AM::no_shift) { 11001 Base = Ptr->getOperand(1); 11002 Offset = Ptr->getOperand(0); 11003 } else { 11004 Base = Ptr->getOperand(0); 11005 Offset = Ptr->getOperand(1); 11006 } 11007 return true; 11008 } 11009 11010 isInc = (Ptr->getOpcode() == ISD::ADD); 11011 Base = Ptr->getOperand(0); 11012 Offset = Ptr->getOperand(1); 11013 return true; 11014 } 11015 11016 // FIXME: Use VLDM / VSTM to emulate indexed FP load / store. 11017 return false; 11018 } 11019 11020 static bool getT2IndexedAddressParts(SDNode *Ptr, EVT VT, 11021 bool isSEXTLoad, SDValue &Base, 11022 SDValue &Offset, bool &isInc, 11023 SelectionDAG &DAG) { 11024 if (Ptr->getOpcode() != ISD::ADD && Ptr->getOpcode() != ISD::SUB) 11025 return false; 11026 11027 Base = Ptr->getOperand(0); 11028 if (ConstantSDNode *RHS = dyn_cast<ConstantSDNode>(Ptr->getOperand(1))) { 11029 int RHSC = (int)RHS->getZExtValue(); 11030 if (RHSC < 0 && RHSC > -0x100) { // 8 bits. 11031 assert(Ptr->getOpcode() == ISD::ADD); 11032 isInc = false; 11033 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); 11034 return true; 11035 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero. 11036 isInc = Ptr->getOpcode() == ISD::ADD; 11037 Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0)); 11038 return true; 11039 } 11040 } 11041 11042 return false; 11043 } 11044 11045 /// getPreIndexedAddressParts - returns true by value, base pointer and 11046 /// offset pointer and addressing mode by reference if the node's address 11047 /// can be legally represented as pre-indexed load / store address. 11048 bool 11049 ARMTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base, 11050 SDValue &Offset, 11051 ISD::MemIndexedMode &AM, 11052 SelectionDAG &DAG) const { 11053 if (Subtarget->isThumb1Only()) 11054 return false; 11055 11056 EVT VT; 11057 SDValue Ptr; 11058 bool isSEXTLoad = false; 11059 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 11060 Ptr = LD->getBasePtr(); 11061 VT = LD->getMemoryVT(); 11062 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD; 11063 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 11064 Ptr = ST->getBasePtr(); 11065 VT = ST->getMemoryVT(); 11066 } else 11067 return false; 11068 11069 bool isInc; 11070 bool isLegal = false; 11071 if (Subtarget->isThumb2()) 11072 isLegal = getT2IndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base, 11073 Offset, isInc, DAG); 11074 else 11075 isLegal = getARMIndexedAddressParts(Ptr.getNode(), VT, isSEXTLoad, Base, 11076 Offset, isInc, DAG); 11077 if (!isLegal) 11078 return false; 11079 11080 AM = isInc ? ISD::PRE_INC : ISD::PRE_DEC; 11081 return true; 11082 } 11083 11084 /// getPostIndexedAddressParts - returns true by value, base pointer and 11085 /// offset pointer and addressing mode by reference if this node can be 11086 /// combined with a load / store to form a post-indexed load / store. 11087 bool ARMTargetLowering::getPostIndexedAddressParts(SDNode *N, SDNode *Op, 11088 SDValue &Base, 11089 SDValue &Offset, 11090 ISD::MemIndexedMode &AM, 11091 SelectionDAG &DAG) const { 11092 if (Subtarget->isThumb1Only()) 11093 return false; 11094 11095 EVT VT; 11096 SDValue Ptr; 11097 bool isSEXTLoad = false; 11098 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 11099 VT = LD->getMemoryVT(); 11100 Ptr = LD->getBasePtr(); 11101 isSEXTLoad = LD->getExtensionType() == ISD::SEXTLOAD; 11102 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 11103 VT = ST->getMemoryVT(); 11104 Ptr = ST->getBasePtr(); 11105 } else 11106 return false; 11107 11108 bool isInc; 11109 bool isLegal = false; 11110 if (Subtarget->isThumb2()) 11111 isLegal = getT2IndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset, 11112 isInc, DAG); 11113 else 11114 isLegal = getARMIndexedAddressParts(Op, VT, isSEXTLoad, Base, Offset, 11115 isInc, DAG); 11116 if (!isLegal) 11117 return false; 11118 11119 if (Ptr != Base) { 11120 // Swap base ptr and offset to catch more post-index load / store when 11121 // it's legal. In Thumb2 mode, offset must be an immediate. 11122 if (Ptr == Offset && Op->getOpcode() == ISD::ADD && 11123 !Subtarget->isThumb2()) 11124 std::swap(Base, Offset); 11125 11126 // Post-indexed load / store update the base pointer. 11127 if (Ptr != Base) 11128 return false; 11129 } 11130 11131 AM = isInc ? ISD::POST_INC : ISD::POST_DEC; 11132 return true; 11133 } 11134 11135 void ARMTargetLowering::computeKnownBitsForTargetNode(const SDValue Op, 11136 APInt &KnownZero, 11137 APInt &KnownOne, 11138 const SelectionDAG &DAG, 11139 unsigned Depth) const { 11140 unsigned BitWidth = KnownOne.getBitWidth(); 11141 KnownZero = KnownOne = APInt(BitWidth, 0); 11142 switch (Op.getOpcode()) { 11143 default: break; 11144 case ARMISD::ADDC: 11145 case ARMISD::ADDE: 11146 case ARMISD::SUBC: 11147 case ARMISD::SUBE: 11148 // These nodes' second result is a boolean 11149 if (Op.getResNo() == 0) 11150 break; 11151 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1); 11152 break; 11153 case ARMISD::CMOV: { 11154 // Bits are known zero/one if known on the LHS and RHS. 11155 DAG.computeKnownBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); 11156 if (KnownZero == 0 && KnownOne == 0) return; 11157 11158 APInt KnownZeroRHS, KnownOneRHS; 11159 DAG.computeKnownBits(Op.getOperand(1), KnownZeroRHS, KnownOneRHS, Depth+1); 11160 KnownZero &= KnownZeroRHS; 11161 KnownOne &= KnownOneRHS; 11162 return; 11163 } 11164 case ISD::INTRINSIC_W_CHAIN: { 11165 ConstantSDNode *CN = cast<ConstantSDNode>(Op->getOperand(1)); 11166 Intrinsic::ID IntID = static_cast<Intrinsic::ID>(CN->getZExtValue()); 11167 switch (IntID) { 11168 default: return; 11169 case Intrinsic::arm_ldaex: 11170 case Intrinsic::arm_ldrex: { 11171 EVT VT = cast<MemIntrinsicSDNode>(Op)->getMemoryVT(); 11172 unsigned MemBits = VT.getScalarType().getSizeInBits(); 11173 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits); 11174 return; 11175 } 11176 } 11177 } 11178 } 11179 } 11180 11181 //===----------------------------------------------------------------------===// 11182 // ARM Inline Assembly Support 11183 //===----------------------------------------------------------------------===// 11184 11185 bool ARMTargetLowering::ExpandInlineAsm(CallInst *CI) const { 11186 // Looking for "rev" which is V6+. 11187 if (!Subtarget->hasV6Ops()) 11188 return false; 11189 11190 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue()); 11191 std::string AsmStr = IA->getAsmString(); 11192 SmallVector<StringRef, 4> AsmPieces; 11193 SplitString(AsmStr, AsmPieces, ";\n"); 11194 11195 switch (AsmPieces.size()) { 11196 default: return false; 11197 case 1: 11198 AsmStr = AsmPieces[0]; 11199 AsmPieces.clear(); 11200 SplitString(AsmStr, AsmPieces, " \t,"); 11201 11202 // rev $0, $1 11203 if (AsmPieces.size() == 3 && 11204 AsmPieces[0] == "rev" && AsmPieces[1] == "$0" && AsmPieces[2] == "$1" && 11205 IA->getConstraintString().compare(0, 4, "=l,l") == 0) { 11206 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType()); 11207 if (Ty && Ty->getBitWidth() == 32) 11208 return IntrinsicLowering::LowerToByteSwap(CI); 11209 } 11210 break; 11211 } 11212 11213 return false; 11214 } 11215 11216 /// getConstraintType - Given a constraint letter, return the type of 11217 /// constraint it is for this target. 11218 ARMTargetLowering::ConstraintType 11219 ARMTargetLowering::getConstraintType(StringRef Constraint) const { 11220 if (Constraint.size() == 1) { 11221 switch (Constraint[0]) { 11222 default: break; 11223 case 'l': return C_RegisterClass; 11224 case 'w': return C_RegisterClass; 11225 case 'h': return C_RegisterClass; 11226 case 'x': return C_RegisterClass; 11227 case 't': return C_RegisterClass; 11228 case 'j': return C_Other; // Constant for movw. 11229 // An address with a single base register. Due to the way we 11230 // currently handle addresses it is the same as an 'r' memory constraint. 11231 case 'Q': return C_Memory; 11232 } 11233 } else if (Constraint.size() == 2) { 11234 switch (Constraint[0]) { 11235 default: break; 11236 // All 'U+' constraints are addresses. 11237 case 'U': return C_Memory; 11238 } 11239 } 11240 return TargetLowering::getConstraintType(Constraint); 11241 } 11242 11243 /// Examine constraint type and operand type and determine a weight value. 11244 /// This object must already have been set up with the operand type 11245 /// and the current alternative constraint selected. 11246 TargetLowering::ConstraintWeight 11247 ARMTargetLowering::getSingleConstraintMatchWeight( 11248 AsmOperandInfo &info, const char *constraint) const { 11249 ConstraintWeight weight = CW_Invalid; 11250 Value *CallOperandVal = info.CallOperandVal; 11251 // If we don't have a value, we can't do a match, 11252 // but allow it at the lowest weight. 11253 if (!CallOperandVal) 11254 return CW_Default; 11255 Type *type = CallOperandVal->getType(); 11256 // Look at the constraint type. 11257 switch (*constraint) { 11258 default: 11259 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); 11260 break; 11261 case 'l': 11262 if (type->isIntegerTy()) { 11263 if (Subtarget->isThumb()) 11264 weight = CW_SpecificReg; 11265 else 11266 weight = CW_Register; 11267 } 11268 break; 11269 case 'w': 11270 if (type->isFloatingPointTy()) 11271 weight = CW_Register; 11272 break; 11273 } 11274 return weight; 11275 } 11276 11277 typedef std::pair<unsigned, const TargetRegisterClass*> RCPair; 11278 RCPair ARMTargetLowering::getRegForInlineAsmConstraint( 11279 const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const { 11280 if (Constraint.size() == 1) { 11281 // GCC ARM Constraint Letters 11282 switch (Constraint[0]) { 11283 case 'l': // Low regs or general regs. 11284 if (Subtarget->isThumb()) 11285 return RCPair(0U, &ARM::tGPRRegClass); 11286 return RCPair(0U, &ARM::GPRRegClass); 11287 case 'h': // High regs or no regs. 11288 if (Subtarget->isThumb()) 11289 return RCPair(0U, &ARM::hGPRRegClass); 11290 break; 11291 case 'r': 11292 if (Subtarget->isThumb1Only()) 11293 return RCPair(0U, &ARM::tGPRRegClass); 11294 return RCPair(0U, &ARM::GPRRegClass); 11295 case 'w': 11296 if (VT == MVT::Other) 11297 break; 11298 if (VT == MVT::f32) 11299 return RCPair(0U, &ARM::SPRRegClass); 11300 if (VT.getSizeInBits() == 64) 11301 return RCPair(0U, &ARM::DPRRegClass); 11302 if (VT.getSizeInBits() == 128) 11303 return RCPair(0U, &ARM::QPRRegClass); 11304 break; 11305 case 'x': 11306 if (VT == MVT::Other) 11307 break; 11308 if (VT == MVT::f32) 11309 return RCPair(0U, &ARM::SPR_8RegClass); 11310 if (VT.getSizeInBits() == 64) 11311 return RCPair(0U, &ARM::DPR_8RegClass); 11312 if (VT.getSizeInBits() == 128) 11313 return RCPair(0U, &ARM::QPR_8RegClass); 11314 break; 11315 case 't': 11316 if (VT == MVT::f32) 11317 return RCPair(0U, &ARM::SPRRegClass); 11318 break; 11319 } 11320 } 11321 if (StringRef("{cc}").equals_lower(Constraint)) 11322 return std::make_pair(unsigned(ARM::CPSR), &ARM::CCRRegClass); 11323 11324 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT); 11325 } 11326 11327 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops 11328 /// vector. If it is invalid, don't add anything to Ops. 11329 void ARMTargetLowering::LowerAsmOperandForConstraint(SDValue Op, 11330 std::string &Constraint, 11331 std::vector<SDValue>&Ops, 11332 SelectionDAG &DAG) const { 11333 SDValue Result; 11334 11335 // Currently only support length 1 constraints. 11336 if (Constraint.length() != 1) return; 11337 11338 char ConstraintLetter = Constraint[0]; 11339 switch (ConstraintLetter) { 11340 default: break; 11341 case 'j': 11342 case 'I': case 'J': case 'K': case 'L': 11343 case 'M': case 'N': case 'O': 11344 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); 11345 if (!C) 11346 return; 11347 11348 int64_t CVal64 = C->getSExtValue(); 11349 int CVal = (int) CVal64; 11350 // None of these constraints allow values larger than 32 bits. Check 11351 // that the value fits in an int. 11352 if (CVal != CVal64) 11353 return; 11354 11355 switch (ConstraintLetter) { 11356 case 'j': 11357 // Constant suitable for movw, must be between 0 and 11358 // 65535. 11359 if (Subtarget->hasV6T2Ops()) 11360 if (CVal >= 0 && CVal <= 65535) 11361 break; 11362 return; 11363 case 'I': 11364 if (Subtarget->isThumb1Only()) { 11365 // This must be a constant between 0 and 255, for ADD 11366 // immediates. 11367 if (CVal >= 0 && CVal <= 255) 11368 break; 11369 } else if (Subtarget->isThumb2()) { 11370 // A constant that can be used as an immediate value in a 11371 // data-processing instruction. 11372 if (ARM_AM::getT2SOImmVal(CVal) != -1) 11373 break; 11374 } else { 11375 // A constant that can be used as an immediate value in a 11376 // data-processing instruction. 11377 if (ARM_AM::getSOImmVal(CVal) != -1) 11378 break; 11379 } 11380 return; 11381 11382 case 'J': 11383 if (Subtarget->isThumb()) { // FIXME thumb2 11384 // This must be a constant between -255 and -1, for negated ADD 11385 // immediates. This can be used in GCC with an "n" modifier that 11386 // prints the negated value, for use with SUB instructions. It is 11387 // not useful otherwise but is implemented for compatibility. 11388 if (CVal >= -255 && CVal <= -1) 11389 break; 11390 } else { 11391 // This must be a constant between -4095 and 4095. It is not clear 11392 // what this constraint is intended for. Implemented for 11393 // compatibility with GCC. 11394 if (CVal >= -4095 && CVal <= 4095) 11395 break; 11396 } 11397 return; 11398 11399 case 'K': 11400 if (Subtarget->isThumb1Only()) { 11401 // A 32-bit value where only one byte has a nonzero value. Exclude 11402 // zero to match GCC. This constraint is used by GCC internally for 11403 // constants that can be loaded with a move/shift combination. 11404 // It is not useful otherwise but is implemented for compatibility. 11405 if (CVal != 0 && ARM_AM::isThumbImmShiftedVal(CVal)) 11406 break; 11407 } else if (Subtarget->isThumb2()) { 11408 // A constant whose bitwise inverse can be used as an immediate 11409 // value in a data-processing instruction. This can be used in GCC 11410 // with a "B" modifier that prints the inverted value, for use with 11411 // BIC and MVN instructions. It is not useful otherwise but is 11412 // implemented for compatibility. 11413 if (ARM_AM::getT2SOImmVal(~CVal) != -1) 11414 break; 11415 } else { 11416 // A constant whose bitwise inverse can be used as an immediate 11417 // value in a data-processing instruction. This can be used in GCC 11418 // with a "B" modifier that prints the inverted value, for use with 11419 // BIC and MVN instructions. It is not useful otherwise but is 11420 // implemented for compatibility. 11421 if (ARM_AM::getSOImmVal(~CVal) != -1) 11422 break; 11423 } 11424 return; 11425 11426 case 'L': 11427 if (Subtarget->isThumb1Only()) { 11428 // This must be a constant between -7 and 7, 11429 // for 3-operand ADD/SUB immediate instructions. 11430 if (CVal >= -7 && CVal < 7) 11431 break; 11432 } else if (Subtarget->isThumb2()) { 11433 // A constant whose negation can be used as an immediate value in a 11434 // data-processing instruction. This can be used in GCC with an "n" 11435 // modifier that prints the negated value, for use with SUB 11436 // instructions. It is not useful otherwise but is implemented for 11437 // compatibility. 11438 if (ARM_AM::getT2SOImmVal(-CVal) != -1) 11439 break; 11440 } else { 11441 // A constant whose negation can be used as an immediate value in a 11442 // data-processing instruction. This can be used in GCC with an "n" 11443 // modifier that prints the negated value, for use with SUB 11444 // instructions. It is not useful otherwise but is implemented for 11445 // compatibility. 11446 if (ARM_AM::getSOImmVal(-CVal) != -1) 11447 break; 11448 } 11449 return; 11450 11451 case 'M': 11452 if (Subtarget->isThumb()) { // FIXME thumb2 11453 // This must be a multiple of 4 between 0 and 1020, for 11454 // ADD sp + immediate. 11455 if ((CVal >= 0 && CVal <= 1020) && ((CVal & 3) == 0)) 11456 break; 11457 } else { 11458 // A power of two or a constant between 0 and 32. This is used in 11459 // GCC for the shift amount on shifted register operands, but it is 11460 // useful in general for any shift amounts. 11461 if ((CVal >= 0 && CVal <= 32) || ((CVal & (CVal - 1)) == 0)) 11462 break; 11463 } 11464 return; 11465 11466 case 'N': 11467 if (Subtarget->isThumb()) { // FIXME thumb2 11468 // This must be a constant between 0 and 31, for shift amounts. 11469 if (CVal >= 0 && CVal <= 31) 11470 break; 11471 } 11472 return; 11473 11474 case 'O': 11475 if (Subtarget->isThumb()) { // FIXME thumb2 11476 // This must be a multiple of 4 between -508 and 508, for 11477 // ADD/SUB sp = sp + immediate. 11478 if ((CVal >= -508 && CVal <= 508) && ((CVal & 3) == 0)) 11479 break; 11480 } 11481 return; 11482 } 11483 Result = DAG.getTargetConstant(CVal, SDLoc(Op), Op.getValueType()); 11484 break; 11485 } 11486 11487 if (Result.getNode()) { 11488 Ops.push_back(Result); 11489 return; 11490 } 11491 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); 11492 } 11493 11494 static RTLIB::Libcall getDivRemLibcall( 11495 const SDNode *N, MVT::SimpleValueType SVT) { 11496 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || 11497 N->getOpcode() == ISD::SREM || N->getOpcode() == ISD::UREM) && 11498 "Unhandled Opcode in getDivRemLibcall"); 11499 bool isSigned = N->getOpcode() == ISD::SDIVREM || 11500 N->getOpcode() == ISD::SREM; 11501 RTLIB::Libcall LC; 11502 switch (SVT) { 11503 default: llvm_unreachable("Unexpected request for libcall!"); 11504 case MVT::i8: LC = isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break; 11505 case MVT::i16: LC = isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break; 11506 case MVT::i32: LC = isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break; 11507 case MVT::i64: LC = isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break; 11508 } 11509 return LC; 11510 } 11511 11512 static TargetLowering::ArgListTy getDivRemArgList( 11513 const SDNode *N, LLVMContext *Context) { 11514 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || 11515 N->getOpcode() == ISD::SREM || N->getOpcode() == ISD::UREM) && 11516 "Unhandled Opcode in getDivRemArgList"); 11517 bool isSigned = N->getOpcode() == ISD::SDIVREM || 11518 N->getOpcode() == ISD::SREM; 11519 TargetLowering::ArgListTy Args; 11520 TargetLowering::ArgListEntry Entry; 11521 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 11522 EVT ArgVT = N->getOperand(i).getValueType(); 11523 Type *ArgTy = ArgVT.getTypeForEVT(*Context); 11524 Entry.Node = N->getOperand(i); 11525 Entry.Ty = ArgTy; 11526 Entry.isSExt = isSigned; 11527 Entry.isZExt = !isSigned; 11528 Args.push_back(Entry); 11529 } 11530 return Args; 11531 } 11532 11533 SDValue ARMTargetLowering::LowerDivRem(SDValue Op, SelectionDAG &DAG) const { 11534 assert((Subtarget->isTargetAEABI() || Subtarget->isTargetAndroid()) && 11535 "Register-based DivRem lowering only"); 11536 unsigned Opcode = Op->getOpcode(); 11537 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) && 11538 "Invalid opcode for Div/Rem lowering"); 11539 bool isSigned = (Opcode == ISD::SDIVREM); 11540 EVT VT = Op->getValueType(0); 11541 Type *Ty = VT.getTypeForEVT(*DAG.getContext()); 11542 11543 RTLIB::Libcall LC = getDivRemLibcall(Op.getNode(), 11544 VT.getSimpleVT().SimpleTy); 11545 SDValue InChain = DAG.getEntryNode(); 11546 11547 TargetLowering::ArgListTy Args = getDivRemArgList(Op.getNode(), 11548 DAG.getContext()); 11549 11550 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC), 11551 getPointerTy(DAG.getDataLayout())); 11552 11553 Type *RetTy = (Type*)StructType::get(Ty, Ty, nullptr); 11554 11555 SDLoc dl(Op); 11556 TargetLowering::CallLoweringInfo CLI(DAG); 11557 CLI.setDebugLoc(dl).setChain(InChain) 11558 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) 11559 .setInRegister().setSExtResult(isSigned).setZExtResult(!isSigned); 11560 11561 std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI); 11562 return CallInfo.first; 11563 } 11564 11565 // Lowers REM using divmod helpers 11566 // see RTABI section 4.2/4.3 11567 SDValue ARMTargetLowering::LowerREM(SDNode *N, SelectionDAG &DAG) const { 11568 // Build return types (div and rem) 11569 std::vector<Type*> RetTyParams; 11570 Type *RetTyElement; 11571 11572 switch (N->getValueType(0).getSimpleVT().SimpleTy) { 11573 default: llvm_unreachable("Unexpected request for libcall!"); 11574 case MVT::i8: RetTyElement = Type::getInt8Ty(*DAG.getContext()); break; 11575 case MVT::i16: RetTyElement = Type::getInt16Ty(*DAG.getContext()); break; 11576 case MVT::i32: RetTyElement = Type::getInt32Ty(*DAG.getContext()); break; 11577 case MVT::i64: RetTyElement = Type::getInt64Ty(*DAG.getContext()); break; 11578 } 11579 11580 RetTyParams.push_back(RetTyElement); 11581 RetTyParams.push_back(RetTyElement); 11582 ArrayRef<Type*> ret = ArrayRef<Type*>(RetTyParams); 11583 Type *RetTy = StructType::get(*DAG.getContext(), ret); 11584 11585 RTLIB::Libcall LC = getDivRemLibcall(N, N->getValueType(0).getSimpleVT(). 11586 SimpleTy); 11587 SDValue InChain = DAG.getEntryNode(); 11588 TargetLowering::ArgListTy Args = getDivRemArgList(N, DAG.getContext()); 11589 bool isSigned = N->getOpcode() == ISD::SREM; 11590 SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC), 11591 getPointerTy(DAG.getDataLayout())); 11592 11593 // Lower call 11594 CallLoweringInfo CLI(DAG); 11595 CLI.setChain(InChain) 11596 .setCallee(CallingConv::ARM_AAPCS, RetTy, Callee, std::move(Args), 0) 11597 .setSExtResult(isSigned).setZExtResult(!isSigned).setDebugLoc(SDLoc(N)); 11598 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 11599 11600 // Return second (rem) result operand (first contains div) 11601 SDNode *ResNode = CallResult.first.getNode(); 11602 assert(ResNode->getNumOperands() == 2 && "divmod should return two operands"); 11603 return ResNode->getOperand(1); 11604 } 11605 11606 SDValue 11607 ARMTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const { 11608 assert(Subtarget->isTargetWindows() && "unsupported target platform"); 11609 SDLoc DL(Op); 11610 11611 // Get the inputs. 11612 SDValue Chain = Op.getOperand(0); 11613 SDValue Size = Op.getOperand(1); 11614 11615 SDValue Words = DAG.getNode(ISD::SRL, DL, MVT::i32, Size, 11616 DAG.getConstant(2, DL, MVT::i32)); 11617 11618 SDValue Flag; 11619 Chain = DAG.getCopyToReg(Chain, DL, ARM::R4, Words, Flag); 11620 Flag = Chain.getValue(1); 11621 11622 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue); 11623 Chain = DAG.getNode(ARMISD::WIN__CHKSTK, DL, NodeTys, Chain, Flag); 11624 11625 SDValue NewSP = DAG.getCopyFromReg(Chain, DL, ARM::SP, MVT::i32); 11626 Chain = NewSP.getValue(1); 11627 11628 SDValue Ops[2] = { NewSP, Chain }; 11629 return DAG.getMergeValues(Ops, DL); 11630 } 11631 11632 SDValue ARMTargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const { 11633 assert(Op.getValueType() == MVT::f64 && Subtarget->isFPOnlySP() && 11634 "Unexpected type for custom-lowering FP_EXTEND"); 11635 11636 RTLIB::Libcall LC; 11637 LC = RTLIB::getFPEXT(Op.getOperand(0).getValueType(), Op.getValueType()); 11638 11639 SDValue SrcVal = Op.getOperand(0); 11640 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false, 11641 SDLoc(Op)).first; 11642 } 11643 11644 SDValue ARMTargetLowering::LowerFP_ROUND(SDValue Op, SelectionDAG &DAG) const { 11645 assert(Op.getOperand(0).getValueType() == MVT::f64 && 11646 Subtarget->isFPOnlySP() && 11647 "Unexpected type for custom-lowering FP_ROUND"); 11648 11649 RTLIB::Libcall LC; 11650 LC = RTLIB::getFPROUND(Op.getOperand(0).getValueType(), Op.getValueType()); 11651 11652 SDValue SrcVal = Op.getOperand(0); 11653 return makeLibCall(DAG, LC, Op.getValueType(), SrcVal, /*isSigned*/ false, 11654 SDLoc(Op)).first; 11655 } 11656 11657 bool 11658 ARMTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 11659 // The ARM target isn't yet aware of offsets. 11660 return false; 11661 } 11662 11663 bool ARM::isBitFieldInvertedMask(unsigned v) { 11664 if (v == 0xffffffff) 11665 return false; 11666 11667 // there can be 1's on either or both "outsides", all the "inside" 11668 // bits must be 0's 11669 return isShiftedMask_32(~v); 11670 } 11671 11672 /// isFPImmLegal - Returns true if the target can instruction select the 11673 /// specified FP immediate natively. If false, the legalizer will 11674 /// materialize the FP immediate as a load from a constant pool. 11675 bool ARMTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const { 11676 if (!Subtarget->hasVFP3()) 11677 return false; 11678 if (VT == MVT::f32) 11679 return ARM_AM::getFP32Imm(Imm) != -1; 11680 if (VT == MVT::f64 && !Subtarget->isFPOnlySP()) 11681 return ARM_AM::getFP64Imm(Imm) != -1; 11682 return false; 11683 } 11684 11685 /// getTgtMemIntrinsic - Represent NEON load and store intrinsics as 11686 /// MemIntrinsicNodes. The associated MachineMemOperands record the alignment 11687 /// specified in the intrinsic calls. 11688 bool ARMTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info, 11689 const CallInst &I, 11690 unsigned Intrinsic) const { 11691 switch (Intrinsic) { 11692 case Intrinsic::arm_neon_vld1: 11693 case Intrinsic::arm_neon_vld2: 11694 case Intrinsic::arm_neon_vld3: 11695 case Intrinsic::arm_neon_vld4: 11696 case Intrinsic::arm_neon_vld2lane: 11697 case Intrinsic::arm_neon_vld3lane: 11698 case Intrinsic::arm_neon_vld4lane: { 11699 Info.opc = ISD::INTRINSIC_W_CHAIN; 11700 // Conservatively set memVT to the entire set of vectors loaded. 11701 auto &DL = I.getCalledFunction()->getParent()->getDataLayout(); 11702 uint64_t NumElts = DL.getTypeAllocSize(I.getType()) / 8; 11703 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts); 11704 Info.ptrVal = I.getArgOperand(0); 11705 Info.offset = 0; 11706 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1); 11707 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue(); 11708 Info.vol = false; // volatile loads with NEON intrinsics not supported 11709 Info.readMem = true; 11710 Info.writeMem = false; 11711 return true; 11712 } 11713 case Intrinsic::arm_neon_vst1: 11714 case Intrinsic::arm_neon_vst2: 11715 case Intrinsic::arm_neon_vst3: 11716 case Intrinsic::arm_neon_vst4: 11717 case Intrinsic::arm_neon_vst2lane: 11718 case Intrinsic::arm_neon_vst3lane: 11719 case Intrinsic::arm_neon_vst4lane: { 11720 Info.opc = ISD::INTRINSIC_VOID; 11721 // Conservatively set memVT to the entire set of vectors stored. 11722 auto &DL = I.getCalledFunction()->getParent()->getDataLayout(); 11723 unsigned NumElts = 0; 11724 for (unsigned ArgI = 1, ArgE = I.getNumArgOperands(); ArgI < ArgE; ++ArgI) { 11725 Type *ArgTy = I.getArgOperand(ArgI)->getType(); 11726 if (!ArgTy->isVectorTy()) 11727 break; 11728 NumElts += DL.getTypeAllocSize(ArgTy) / 8; 11729 } 11730 Info.memVT = EVT::getVectorVT(I.getType()->getContext(), MVT::i64, NumElts); 11731 Info.ptrVal = I.getArgOperand(0); 11732 Info.offset = 0; 11733 Value *AlignArg = I.getArgOperand(I.getNumArgOperands() - 1); 11734 Info.align = cast<ConstantInt>(AlignArg)->getZExtValue(); 11735 Info.vol = false; // volatile stores with NEON intrinsics not supported 11736 Info.readMem = false; 11737 Info.writeMem = true; 11738 return true; 11739 } 11740 case Intrinsic::arm_ldaex: 11741 case Intrinsic::arm_ldrex: { 11742 auto &DL = I.getCalledFunction()->getParent()->getDataLayout(); 11743 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(0)->getType()); 11744 Info.opc = ISD::INTRINSIC_W_CHAIN; 11745 Info.memVT = MVT::getVT(PtrTy->getElementType()); 11746 Info.ptrVal = I.getArgOperand(0); 11747 Info.offset = 0; 11748 Info.align = DL.getABITypeAlignment(PtrTy->getElementType()); 11749 Info.vol = true; 11750 Info.readMem = true; 11751 Info.writeMem = false; 11752 return true; 11753 } 11754 case Intrinsic::arm_stlex: 11755 case Intrinsic::arm_strex: { 11756 auto &DL = I.getCalledFunction()->getParent()->getDataLayout(); 11757 PointerType *PtrTy = cast<PointerType>(I.getArgOperand(1)->getType()); 11758 Info.opc = ISD::INTRINSIC_W_CHAIN; 11759 Info.memVT = MVT::getVT(PtrTy->getElementType()); 11760 Info.ptrVal = I.getArgOperand(1); 11761 Info.offset = 0; 11762 Info.align = DL.getABITypeAlignment(PtrTy->getElementType()); 11763 Info.vol = true; 11764 Info.readMem = false; 11765 Info.writeMem = true; 11766 return true; 11767 } 11768 case Intrinsic::arm_stlexd: 11769 case Intrinsic::arm_strexd: { 11770 Info.opc = ISD::INTRINSIC_W_CHAIN; 11771 Info.memVT = MVT::i64; 11772 Info.ptrVal = I.getArgOperand(2); 11773 Info.offset = 0; 11774 Info.align = 8; 11775 Info.vol = true; 11776 Info.readMem = false; 11777 Info.writeMem = true; 11778 return true; 11779 } 11780 case Intrinsic::arm_ldaexd: 11781 case Intrinsic::arm_ldrexd: { 11782 Info.opc = ISD::INTRINSIC_W_CHAIN; 11783 Info.memVT = MVT::i64; 11784 Info.ptrVal = I.getArgOperand(0); 11785 Info.offset = 0; 11786 Info.align = 8; 11787 Info.vol = true; 11788 Info.readMem = true; 11789 Info.writeMem = false; 11790 return true; 11791 } 11792 default: 11793 break; 11794 } 11795 11796 return false; 11797 } 11798 11799 /// \brief Returns true if it is beneficial to convert a load of a constant 11800 /// to just the constant itself. 11801 bool ARMTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm, 11802 Type *Ty) const { 11803 assert(Ty->isIntegerTy()); 11804 11805 unsigned Bits = Ty->getPrimitiveSizeInBits(); 11806 if (Bits == 0 || Bits > 32) 11807 return false; 11808 return true; 11809 } 11810 11811 Instruction* ARMTargetLowering::makeDMB(IRBuilder<> &Builder, 11812 ARM_MB::MemBOpt Domain) const { 11813 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 11814 11815 // First, if the target has no DMB, see what fallback we can use. 11816 if (!Subtarget->hasDataBarrier()) { 11817 // Some ARMv6 cpus can support data barriers with an mcr instruction. 11818 // Thumb1 and pre-v6 ARM mode use a libcall instead and should never get 11819 // here. 11820 if (Subtarget->hasV6Ops() && !Subtarget->isThumb()) { 11821 Function *MCR = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_mcr); 11822 Value* args[6] = {Builder.getInt32(15), Builder.getInt32(0), 11823 Builder.getInt32(0), Builder.getInt32(7), 11824 Builder.getInt32(10), Builder.getInt32(5)}; 11825 return Builder.CreateCall(MCR, args); 11826 } else { 11827 // Instead of using barriers, atomic accesses on these subtargets use 11828 // libcalls. 11829 llvm_unreachable("makeDMB on a target so old that it has no barriers"); 11830 } 11831 } else { 11832 Function *DMB = llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_dmb); 11833 // Only a full system barrier exists in the M-class architectures. 11834 Domain = Subtarget->isMClass() ? ARM_MB::SY : Domain; 11835 Constant *CDomain = Builder.getInt32(Domain); 11836 return Builder.CreateCall(DMB, CDomain); 11837 } 11838 } 11839 11840 // Based on http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html 11841 Instruction* ARMTargetLowering::emitLeadingFence(IRBuilder<> &Builder, 11842 AtomicOrdering Ord, bool IsStore, 11843 bool IsLoad) const { 11844 if (!getInsertFencesForAtomic()) 11845 return nullptr; 11846 11847 switch (Ord) { 11848 case NotAtomic: 11849 case Unordered: 11850 llvm_unreachable("Invalid fence: unordered/non-atomic"); 11851 case Monotonic: 11852 case Acquire: 11853 return nullptr; // Nothing to do 11854 case SequentiallyConsistent: 11855 if (!IsStore) 11856 return nullptr; // Nothing to do 11857 /*FALLTHROUGH*/ 11858 case Release: 11859 case AcquireRelease: 11860 if (Subtarget->isSwift()) 11861 return makeDMB(Builder, ARM_MB::ISHST); 11862 // FIXME: add a comment with a link to documentation justifying this. 11863 else 11864 return makeDMB(Builder, ARM_MB::ISH); 11865 } 11866 llvm_unreachable("Unknown fence ordering in emitLeadingFence"); 11867 } 11868 11869 Instruction* ARMTargetLowering::emitTrailingFence(IRBuilder<> &Builder, 11870 AtomicOrdering Ord, bool IsStore, 11871 bool IsLoad) const { 11872 if (!getInsertFencesForAtomic()) 11873 return nullptr; 11874 11875 switch (Ord) { 11876 case NotAtomic: 11877 case Unordered: 11878 llvm_unreachable("Invalid fence: unordered/not-atomic"); 11879 case Monotonic: 11880 case Release: 11881 return nullptr; // Nothing to do 11882 case Acquire: 11883 case AcquireRelease: 11884 case SequentiallyConsistent: 11885 return makeDMB(Builder, ARM_MB::ISH); 11886 } 11887 llvm_unreachable("Unknown fence ordering in emitTrailingFence"); 11888 } 11889 11890 // Loads and stores less than 64-bits are already atomic; ones above that 11891 // are doomed anyway, so defer to the default libcall and blame the OS when 11892 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit 11893 // anything for those. 11894 bool ARMTargetLowering::shouldExpandAtomicStoreInIR(StoreInst *SI) const { 11895 unsigned Size = SI->getValueOperand()->getType()->getPrimitiveSizeInBits(); 11896 return (Size == 64) && !Subtarget->isMClass(); 11897 } 11898 11899 // Loads and stores less than 64-bits are already atomic; ones above that 11900 // are doomed anyway, so defer to the default libcall and blame the OS when 11901 // things go wrong. Cortex M doesn't have ldrexd/strexd though, so don't emit 11902 // anything for those. 11903 // FIXME: ldrd and strd are atomic if the CPU has LPAE (e.g. A15 has that 11904 // guarantee, see DDI0406C ARM architecture reference manual, 11905 // sections A8.8.72-74 LDRD) 11906 TargetLowering::AtomicExpansionKind 11907 ARMTargetLowering::shouldExpandAtomicLoadInIR(LoadInst *LI) const { 11908 unsigned Size = LI->getType()->getPrimitiveSizeInBits(); 11909 return ((Size == 64) && !Subtarget->isMClass()) ? AtomicExpansionKind::LLSC 11910 : AtomicExpansionKind::None; 11911 } 11912 11913 // For the real atomic operations, we have ldrex/strex up to 32 bits, 11914 // and up to 64 bits on the non-M profiles 11915 TargetLowering::AtomicExpansionKind 11916 ARMTargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const { 11917 unsigned Size = AI->getType()->getPrimitiveSizeInBits(); 11918 return (Size <= (Subtarget->isMClass() ? 32U : 64U)) 11919 ? AtomicExpansionKind::LLSC 11920 : AtomicExpansionKind::None; 11921 } 11922 11923 bool ARMTargetLowering::shouldExpandAtomicCmpXchgInIR( 11924 AtomicCmpXchgInst *AI) const { 11925 return true; 11926 } 11927 11928 // This has so far only been implemented for MachO. 11929 bool ARMTargetLowering::useLoadStackGuardNode() const { 11930 return Subtarget->isTargetMachO(); 11931 } 11932 11933 bool ARMTargetLowering::canCombineStoreAndExtract(Type *VectorTy, Value *Idx, 11934 unsigned &Cost) const { 11935 // If we do not have NEON, vector types are not natively supported. 11936 if (!Subtarget->hasNEON()) 11937 return false; 11938 11939 // Floating point values and vector values map to the same register file. 11940 // Therefore, although we could do a store extract of a vector type, this is 11941 // better to leave at float as we have more freedom in the addressing mode for 11942 // those. 11943 if (VectorTy->isFPOrFPVectorTy()) 11944 return false; 11945 11946 // If the index is unknown at compile time, this is very expensive to lower 11947 // and it is not possible to combine the store with the extract. 11948 if (!isa<ConstantInt>(Idx)) 11949 return false; 11950 11951 assert(VectorTy->isVectorTy() && "VectorTy is not a vector type"); 11952 unsigned BitWidth = cast<VectorType>(VectorTy)->getBitWidth(); 11953 // We can do a store + vector extract on any vector that fits perfectly in a D 11954 // or Q register. 11955 if (BitWidth == 64 || BitWidth == 128) { 11956 Cost = 0; 11957 return true; 11958 } 11959 return false; 11960 } 11961 11962 bool ARMTargetLowering::isCheapToSpeculateCttz() const { 11963 return Subtarget->hasV6T2Ops(); 11964 } 11965 11966 bool ARMTargetLowering::isCheapToSpeculateCtlz() const { 11967 return Subtarget->hasV6T2Ops(); 11968 } 11969 11970 Value *ARMTargetLowering::emitLoadLinked(IRBuilder<> &Builder, Value *Addr, 11971 AtomicOrdering Ord) const { 11972 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 11973 Type *ValTy = cast<PointerType>(Addr->getType())->getElementType(); 11974 bool IsAcquire = isAtLeastAcquire(Ord); 11975 11976 // Since i64 isn't legal and intrinsics don't get type-lowered, the ldrexd 11977 // intrinsic must return {i32, i32} and we have to recombine them into a 11978 // single i64 here. 11979 if (ValTy->getPrimitiveSizeInBits() == 64) { 11980 Intrinsic::ID Int = 11981 IsAcquire ? Intrinsic::arm_ldaexd : Intrinsic::arm_ldrexd; 11982 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int); 11983 11984 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext())); 11985 Value *LoHi = Builder.CreateCall(Ldrex, Addr, "lohi"); 11986 11987 Value *Lo = Builder.CreateExtractValue(LoHi, 0, "lo"); 11988 Value *Hi = Builder.CreateExtractValue(LoHi, 1, "hi"); 11989 if (!Subtarget->isLittle()) 11990 std::swap (Lo, Hi); 11991 Lo = Builder.CreateZExt(Lo, ValTy, "lo64"); 11992 Hi = Builder.CreateZExt(Hi, ValTy, "hi64"); 11993 return Builder.CreateOr( 11994 Lo, Builder.CreateShl(Hi, ConstantInt::get(ValTy, 32)), "val64"); 11995 } 11996 11997 Type *Tys[] = { Addr->getType() }; 11998 Intrinsic::ID Int = IsAcquire ? Intrinsic::arm_ldaex : Intrinsic::arm_ldrex; 11999 Function *Ldrex = llvm::Intrinsic::getDeclaration(M, Int, Tys); 12000 12001 return Builder.CreateTruncOrBitCast( 12002 Builder.CreateCall(Ldrex, Addr), 12003 cast<PointerType>(Addr->getType())->getElementType()); 12004 } 12005 12006 void ARMTargetLowering::emitAtomicCmpXchgNoStoreLLBalance( 12007 IRBuilder<> &Builder) const { 12008 if (!Subtarget->hasV7Ops()) 12009 return; 12010 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 12011 Builder.CreateCall(llvm::Intrinsic::getDeclaration(M, Intrinsic::arm_clrex)); 12012 } 12013 12014 Value *ARMTargetLowering::emitStoreConditional(IRBuilder<> &Builder, Value *Val, 12015 Value *Addr, 12016 AtomicOrdering Ord) const { 12017 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 12018 bool IsRelease = isAtLeastRelease(Ord); 12019 12020 // Since the intrinsics must have legal type, the i64 intrinsics take two 12021 // parameters: "i32, i32". We must marshal Val into the appropriate form 12022 // before the call. 12023 if (Val->getType()->getPrimitiveSizeInBits() == 64) { 12024 Intrinsic::ID Int = 12025 IsRelease ? Intrinsic::arm_stlexd : Intrinsic::arm_strexd; 12026 Function *Strex = Intrinsic::getDeclaration(M, Int); 12027 Type *Int32Ty = Type::getInt32Ty(M->getContext()); 12028 12029 Value *Lo = Builder.CreateTrunc(Val, Int32Ty, "lo"); 12030 Value *Hi = Builder.CreateTrunc(Builder.CreateLShr(Val, 32), Int32Ty, "hi"); 12031 if (!Subtarget->isLittle()) 12032 std::swap (Lo, Hi); 12033 Addr = Builder.CreateBitCast(Addr, Type::getInt8PtrTy(M->getContext())); 12034 return Builder.CreateCall(Strex, {Lo, Hi, Addr}); 12035 } 12036 12037 Intrinsic::ID Int = IsRelease ? Intrinsic::arm_stlex : Intrinsic::arm_strex; 12038 Type *Tys[] = { Addr->getType() }; 12039 Function *Strex = Intrinsic::getDeclaration(M, Int, Tys); 12040 12041 return Builder.CreateCall( 12042 Strex, {Builder.CreateZExtOrBitCast( 12043 Val, Strex->getFunctionType()->getParamType(0)), 12044 Addr}); 12045 } 12046 12047 /// \brief Lower an interleaved load into a vldN intrinsic. 12048 /// 12049 /// E.g. Lower an interleaved load (Factor = 2): 12050 /// %wide.vec = load <8 x i32>, <8 x i32>* %ptr, align 4 12051 /// %v0 = shuffle %wide.vec, undef, <0, 2, 4, 6> ; Extract even elements 12052 /// %v1 = shuffle %wide.vec, undef, <1, 3, 5, 7> ; Extract odd elements 12053 /// 12054 /// Into: 12055 /// %vld2 = { <4 x i32>, <4 x i32> } call llvm.arm.neon.vld2(%ptr, 4) 12056 /// %vec0 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 0 12057 /// %vec1 = extractelement { <4 x i32>, <4 x i32> } %vld2, i32 1 12058 bool ARMTargetLowering::lowerInterleavedLoad( 12059 LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles, 12060 ArrayRef<unsigned> Indices, unsigned Factor) const { 12061 assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() && 12062 "Invalid interleave factor"); 12063 assert(!Shuffles.empty() && "Empty shufflevector input"); 12064 assert(Shuffles.size() == Indices.size() && 12065 "Unmatched number of shufflevectors and indices"); 12066 12067 VectorType *VecTy = Shuffles[0]->getType(); 12068 Type *EltTy = VecTy->getVectorElementType(); 12069 12070 const DataLayout &DL = LI->getModule()->getDataLayout(); 12071 unsigned VecSize = DL.getTypeAllocSizeInBits(VecTy); 12072 bool EltIs64Bits = DL.getTypeAllocSizeInBits(EltTy) == 64; 12073 12074 // Skip if we do not have NEON and skip illegal vector types and vector types 12075 // with i64/f64 elements (vldN doesn't support i64/f64 elements). 12076 if (!Subtarget->hasNEON() || (VecSize != 64 && VecSize != 128) || EltIs64Bits) 12077 return false; 12078 12079 // A pointer vector can not be the return type of the ldN intrinsics. Need to 12080 // load integer vectors first and then convert to pointer vectors. 12081 if (EltTy->isPointerTy()) 12082 VecTy = 12083 VectorType::get(DL.getIntPtrType(EltTy), VecTy->getVectorNumElements()); 12084 12085 static const Intrinsic::ID LoadInts[3] = {Intrinsic::arm_neon_vld2, 12086 Intrinsic::arm_neon_vld3, 12087 Intrinsic::arm_neon_vld4}; 12088 12089 IRBuilder<> Builder(LI); 12090 SmallVector<Value *, 2> Ops; 12091 12092 Type *Int8Ptr = Builder.getInt8PtrTy(LI->getPointerAddressSpace()); 12093 Ops.push_back(Builder.CreateBitCast(LI->getPointerOperand(), Int8Ptr)); 12094 Ops.push_back(Builder.getInt32(LI->getAlignment())); 12095 12096 Type *Tys[] = { VecTy, Int8Ptr }; 12097 Function *VldnFunc = 12098 Intrinsic::getDeclaration(LI->getModule(), LoadInts[Factor - 2], Tys); 12099 CallInst *VldN = Builder.CreateCall(VldnFunc, Ops, "vldN"); 12100 12101 // Replace uses of each shufflevector with the corresponding vector loaded 12102 // by ldN. 12103 for (unsigned i = 0; i < Shuffles.size(); i++) { 12104 ShuffleVectorInst *SV = Shuffles[i]; 12105 unsigned Index = Indices[i]; 12106 12107 Value *SubVec = Builder.CreateExtractValue(VldN, Index); 12108 12109 // Convert the integer vector to pointer vector if the element is pointer. 12110 if (EltTy->isPointerTy()) 12111 SubVec = Builder.CreateIntToPtr(SubVec, SV->getType()); 12112 12113 SV->replaceAllUsesWith(SubVec); 12114 } 12115 12116 return true; 12117 } 12118 12119 /// \brief Get a mask consisting of sequential integers starting from \p Start. 12120 /// 12121 /// I.e. <Start, Start + 1, ..., Start + NumElts - 1> 12122 static Constant *getSequentialMask(IRBuilder<> &Builder, unsigned Start, 12123 unsigned NumElts) { 12124 SmallVector<Constant *, 16> Mask; 12125 for (unsigned i = 0; i < NumElts; i++) 12126 Mask.push_back(Builder.getInt32(Start + i)); 12127 12128 return ConstantVector::get(Mask); 12129 } 12130 12131 /// \brief Lower an interleaved store into a vstN intrinsic. 12132 /// 12133 /// E.g. Lower an interleaved store (Factor = 3): 12134 /// %i.vec = shuffle <8 x i32> %v0, <8 x i32> %v1, 12135 /// <0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11> 12136 /// store <12 x i32> %i.vec, <12 x i32>* %ptr, align 4 12137 /// 12138 /// Into: 12139 /// %sub.v0 = shuffle <8 x i32> %v0, <8 x i32> v1, <0, 1, 2, 3> 12140 /// %sub.v1 = shuffle <8 x i32> %v0, <8 x i32> v1, <4, 5, 6, 7> 12141 /// %sub.v2 = shuffle <8 x i32> %v0, <8 x i32> v1, <8, 9, 10, 11> 12142 /// call void llvm.arm.neon.vst3(%ptr, %sub.v0, %sub.v1, %sub.v2, 4) 12143 /// 12144 /// Note that the new shufflevectors will be removed and we'll only generate one 12145 /// vst3 instruction in CodeGen. 12146 bool ARMTargetLowering::lowerInterleavedStore(StoreInst *SI, 12147 ShuffleVectorInst *SVI, 12148 unsigned Factor) const { 12149 assert(Factor >= 2 && Factor <= getMaxSupportedInterleaveFactor() && 12150 "Invalid interleave factor"); 12151 12152 VectorType *VecTy = SVI->getType(); 12153 assert(VecTy->getVectorNumElements() % Factor == 0 && 12154 "Invalid interleaved store"); 12155 12156 unsigned NumSubElts = VecTy->getVectorNumElements() / Factor; 12157 Type *EltTy = VecTy->getVectorElementType(); 12158 VectorType *SubVecTy = VectorType::get(EltTy, NumSubElts); 12159 12160 const DataLayout &DL = SI->getModule()->getDataLayout(); 12161 unsigned SubVecSize = DL.getTypeAllocSizeInBits(SubVecTy); 12162 bool EltIs64Bits = DL.getTypeAllocSizeInBits(EltTy) == 64; 12163 12164 // Skip if we do not have NEON and skip illegal vector types and vector types 12165 // with i64/f64 elements (vstN doesn't support i64/f64 elements). 12166 if (!Subtarget->hasNEON() || (SubVecSize != 64 && SubVecSize != 128) || 12167 EltIs64Bits) 12168 return false; 12169 12170 Value *Op0 = SVI->getOperand(0); 12171 Value *Op1 = SVI->getOperand(1); 12172 IRBuilder<> Builder(SI); 12173 12174 // StN intrinsics don't support pointer vectors as arguments. Convert pointer 12175 // vectors to integer vectors. 12176 if (EltTy->isPointerTy()) { 12177 Type *IntTy = DL.getIntPtrType(EltTy); 12178 12179 // Convert to the corresponding integer vector. 12180 Type *IntVecTy = 12181 VectorType::get(IntTy, Op0->getType()->getVectorNumElements()); 12182 Op0 = Builder.CreatePtrToInt(Op0, IntVecTy); 12183 Op1 = Builder.CreatePtrToInt(Op1, IntVecTy); 12184 12185 SubVecTy = VectorType::get(IntTy, NumSubElts); 12186 } 12187 12188 static const Intrinsic::ID StoreInts[3] = {Intrinsic::arm_neon_vst2, 12189 Intrinsic::arm_neon_vst3, 12190 Intrinsic::arm_neon_vst4}; 12191 SmallVector<Value *, 6> Ops; 12192 12193 Type *Int8Ptr = Builder.getInt8PtrTy(SI->getPointerAddressSpace()); 12194 Ops.push_back(Builder.CreateBitCast(SI->getPointerOperand(), Int8Ptr)); 12195 12196 Type *Tys[] = { Int8Ptr, SubVecTy }; 12197 Function *VstNFunc = Intrinsic::getDeclaration( 12198 SI->getModule(), StoreInts[Factor - 2], Tys); 12199 12200 // Split the shufflevector operands into sub vectors for the new vstN call. 12201 for (unsigned i = 0; i < Factor; i++) 12202 Ops.push_back(Builder.CreateShuffleVector( 12203 Op0, Op1, getSequentialMask(Builder, NumSubElts * i, NumSubElts))); 12204 12205 Ops.push_back(Builder.getInt32(SI->getAlignment())); 12206 Builder.CreateCall(VstNFunc, Ops); 12207 return true; 12208 } 12209 12210 enum HABaseType { 12211 HA_UNKNOWN = 0, 12212 HA_FLOAT, 12213 HA_DOUBLE, 12214 HA_VECT64, 12215 HA_VECT128 12216 }; 12217 12218 static bool isHomogeneousAggregate(Type *Ty, HABaseType &Base, 12219 uint64_t &Members) { 12220 if (auto *ST = dyn_cast<StructType>(Ty)) { 12221 for (unsigned i = 0; i < ST->getNumElements(); ++i) { 12222 uint64_t SubMembers = 0; 12223 if (!isHomogeneousAggregate(ST->getElementType(i), Base, SubMembers)) 12224 return false; 12225 Members += SubMembers; 12226 } 12227 } else if (auto *AT = dyn_cast<ArrayType>(Ty)) { 12228 uint64_t SubMembers = 0; 12229 if (!isHomogeneousAggregate(AT->getElementType(), Base, SubMembers)) 12230 return false; 12231 Members += SubMembers * AT->getNumElements(); 12232 } else if (Ty->isFloatTy()) { 12233 if (Base != HA_UNKNOWN && Base != HA_FLOAT) 12234 return false; 12235 Members = 1; 12236 Base = HA_FLOAT; 12237 } else if (Ty->isDoubleTy()) { 12238 if (Base != HA_UNKNOWN && Base != HA_DOUBLE) 12239 return false; 12240 Members = 1; 12241 Base = HA_DOUBLE; 12242 } else if (auto *VT = dyn_cast<VectorType>(Ty)) { 12243 Members = 1; 12244 switch (Base) { 12245 case HA_FLOAT: 12246 case HA_DOUBLE: 12247 return false; 12248 case HA_VECT64: 12249 return VT->getBitWidth() == 64; 12250 case HA_VECT128: 12251 return VT->getBitWidth() == 128; 12252 case HA_UNKNOWN: 12253 switch (VT->getBitWidth()) { 12254 case 64: 12255 Base = HA_VECT64; 12256 return true; 12257 case 128: 12258 Base = HA_VECT128; 12259 return true; 12260 default: 12261 return false; 12262 } 12263 } 12264 } 12265 12266 return (Members > 0 && Members <= 4); 12267 } 12268 12269 /// \brief Return true if a type is an AAPCS-VFP homogeneous aggregate or one of 12270 /// [N x i32] or [N x i64]. This allows front-ends to skip emitting padding when 12271 /// passing according to AAPCS rules. 12272 bool ARMTargetLowering::functionArgumentNeedsConsecutiveRegisters( 12273 Type *Ty, CallingConv::ID CallConv, bool isVarArg) const { 12274 if (getEffectiveCallingConv(CallConv, isVarArg) != 12275 CallingConv::ARM_AAPCS_VFP) 12276 return false; 12277 12278 HABaseType Base = HA_UNKNOWN; 12279 uint64_t Members = 0; 12280 bool IsHA = isHomogeneousAggregate(Ty, Base, Members); 12281 DEBUG(dbgs() << "isHA: " << IsHA << " "; Ty->dump()); 12282 12283 bool IsIntArray = Ty->isArrayTy() && Ty->getArrayElementType()->isIntegerTy(); 12284 return IsHA || IsIntArray; 12285 } 12286 12287 unsigned ARMTargetLowering::getExceptionPointerRegister( 12288 const Constant *PersonalityFn) const { 12289 // Platforms which do not use SjLj EH may return values in these registers 12290 // via the personality function. 12291 return Subtarget->useSjLjEH() ? ARM::NoRegister : ARM::R0; 12292 } 12293 12294 unsigned ARMTargetLowering::getExceptionSelectorRegister( 12295 const Constant *PersonalityFn) const { 12296 // Platforms which do not use SjLj EH may return values in these registers 12297 // via the personality function. 12298 return Subtarget->useSjLjEH() ? ARM::NoRegister : ARM::R1; 12299 } 12300