1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements the PPCISelLowering class. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "PPCISelLowering.h" 14 #include "MCTargetDesc/PPCPredicates.h" 15 #include "PPC.h" 16 #include "PPCCCState.h" 17 #include "PPCCallingConv.h" 18 #include "PPCFrameLowering.h" 19 #include "PPCInstrInfo.h" 20 #include "PPCMachineFunctionInfo.h" 21 #include "PPCPerfectShuffle.h" 22 #include "PPCRegisterInfo.h" 23 #include "PPCSubtarget.h" 24 #include "PPCTargetMachine.h" 25 #include "llvm/ADT/APFloat.h" 26 #include "llvm/ADT/APInt.h" 27 #include "llvm/ADT/ArrayRef.h" 28 #include "llvm/ADT/DenseMap.h" 29 #include "llvm/ADT/None.h" 30 #include "llvm/ADT/STLExtras.h" 31 #include "llvm/ADT/SmallPtrSet.h" 32 #include "llvm/ADT/SmallSet.h" 33 #include "llvm/ADT/SmallVector.h" 34 #include "llvm/ADT/Statistic.h" 35 #include "llvm/ADT/StringRef.h" 36 #include "llvm/ADT/StringSwitch.h" 37 #include "llvm/CodeGen/CallingConvLower.h" 38 #include "llvm/CodeGen/ISDOpcodes.h" 39 #include "llvm/CodeGen/MachineBasicBlock.h" 40 #include "llvm/CodeGen/MachineFrameInfo.h" 41 #include "llvm/CodeGen/MachineFunction.h" 42 #include "llvm/CodeGen/MachineInstr.h" 43 #include "llvm/CodeGen/MachineInstrBuilder.h" 44 #include "llvm/CodeGen/MachineJumpTableInfo.h" 45 #include "llvm/CodeGen/MachineLoopInfo.h" 46 #include "llvm/CodeGen/MachineMemOperand.h" 47 #include "llvm/CodeGen/MachineModuleInfo.h" 48 #include "llvm/CodeGen/MachineOperand.h" 49 #include "llvm/CodeGen/MachineRegisterInfo.h" 50 #include "llvm/CodeGen/RuntimeLibcalls.h" 51 #include "llvm/CodeGen/SelectionDAG.h" 52 #include "llvm/CodeGen/SelectionDAGNodes.h" 53 #include "llvm/CodeGen/TargetInstrInfo.h" 54 #include "llvm/CodeGen/TargetLowering.h" 55 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" 56 #include "llvm/CodeGen/TargetRegisterInfo.h" 57 #include "llvm/CodeGen/ValueTypes.h" 58 #include "llvm/IR/CallSite.h" 59 #include "llvm/IR/CallingConv.h" 60 #include "llvm/IR/Constant.h" 61 #include "llvm/IR/Constants.h" 62 #include "llvm/IR/DataLayout.h" 63 #include "llvm/IR/DebugLoc.h" 64 #include "llvm/IR/DerivedTypes.h" 65 #include "llvm/IR/Function.h" 66 #include "llvm/IR/GlobalValue.h" 67 #include "llvm/IR/IRBuilder.h" 68 #include "llvm/IR/Instructions.h" 69 #include "llvm/IR/Intrinsics.h" 70 #include "llvm/IR/IntrinsicsPowerPC.h" 71 #include "llvm/IR/Module.h" 72 #include "llvm/IR/Type.h" 73 #include "llvm/IR/Use.h" 74 #include "llvm/IR/Value.h" 75 #include "llvm/MC/MCContext.h" 76 #include "llvm/MC/MCExpr.h" 77 #include "llvm/MC/MCRegisterInfo.h" 78 #include "llvm/MC/MCSymbolXCOFF.h" 79 #include "llvm/Support/AtomicOrdering.h" 80 #include "llvm/Support/BranchProbability.h" 81 #include "llvm/Support/Casting.h" 82 #include "llvm/Support/CodeGen.h" 83 #include "llvm/Support/CommandLine.h" 84 #include "llvm/Support/Compiler.h" 85 #include "llvm/Support/Debug.h" 86 #include "llvm/Support/ErrorHandling.h" 87 #include "llvm/Support/Format.h" 88 #include "llvm/Support/KnownBits.h" 89 #include "llvm/Support/MachineValueType.h" 90 #include "llvm/Support/MathExtras.h" 91 #include "llvm/Support/raw_ostream.h" 92 #include "llvm/Target/TargetMachine.h" 93 #include "llvm/Target/TargetOptions.h" 94 #include <algorithm> 95 #include <cassert> 96 #include <cstdint> 97 #include <iterator> 98 #include <list> 99 #include <utility> 100 #include <vector> 101 102 using namespace llvm; 103 104 #define DEBUG_TYPE "ppc-lowering" 105 106 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc", 107 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden); 108 109 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref", 110 cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden); 111 112 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned", 113 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden); 114 115 static cl::opt<bool> DisableSCO("disable-ppc-sco", 116 cl::desc("disable sibling call optimization on ppc"), cl::Hidden); 117 118 static cl::opt<bool> DisableInnermostLoopAlign32("disable-ppc-innermost-loop-align32", 119 cl::desc("don't always align innermost loop to 32 bytes on ppc"), cl::Hidden); 120 121 static cl::opt<bool> EnableQuadPrecision("enable-ppc-quad-precision", 122 cl::desc("enable quad precision float support on ppc"), cl::Hidden); 123 124 static cl::opt<bool> UseAbsoluteJumpTables("ppc-use-absolute-jumptables", 125 cl::desc("use absolute jump tables on ppc"), cl::Hidden); 126 127 STATISTIC(NumTailCalls, "Number of tail calls"); 128 STATISTIC(NumSiblingCalls, "Number of sibling calls"); 129 130 static bool isNByteElemShuffleMask(ShuffleVectorSDNode *, unsigned, int); 131 132 static SDValue widenVec(SelectionDAG &DAG, SDValue Vec, const SDLoc &dl); 133 134 // FIXME: Remove this once the bug has been fixed! 135 extern cl::opt<bool> ANDIGlueBug; 136 137 PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM, 138 const PPCSubtarget &STI) 139 : TargetLowering(TM), Subtarget(STI) { 140 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all 141 // arguments are at least 4/8 bytes aligned. 142 bool isPPC64 = Subtarget.isPPC64(); 143 setMinStackArgumentAlignment(isPPC64 ? Align(8) : Align(4)); 144 145 // Set up the register classes. 146 addRegisterClass(MVT::i32, &PPC::GPRCRegClass); 147 if (!useSoftFloat()) { 148 if (hasSPE()) { 149 addRegisterClass(MVT::f32, &PPC::GPRCRegClass); 150 addRegisterClass(MVT::f64, &PPC::SPERCRegClass); 151 } else { 152 addRegisterClass(MVT::f32, &PPC::F4RCRegClass); 153 addRegisterClass(MVT::f64, &PPC::F8RCRegClass); 154 } 155 } 156 157 // Match BITREVERSE to customized fast code sequence in the td file. 158 setOperationAction(ISD::BITREVERSE, MVT::i32, Legal); 159 setOperationAction(ISD::BITREVERSE, MVT::i64, Legal); 160 161 // Sub-word ATOMIC_CMP_SWAP need to ensure that the input is zero-extended. 162 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom); 163 164 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD. 165 for (MVT VT : MVT::integer_valuetypes()) { 166 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 167 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand); 168 } 169 170 setTruncStoreAction(MVT::f64, MVT::f32, Expand); 171 172 // PowerPC has pre-inc load and store's. 173 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal); 174 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal); 175 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal); 176 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal); 177 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal); 178 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal); 179 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal); 180 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal); 181 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal); 182 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal); 183 if (!Subtarget.hasSPE()) { 184 setIndexedLoadAction(ISD::PRE_INC, MVT::f32, Legal); 185 setIndexedLoadAction(ISD::PRE_INC, MVT::f64, Legal); 186 setIndexedStoreAction(ISD::PRE_INC, MVT::f32, Legal); 187 setIndexedStoreAction(ISD::PRE_INC, MVT::f64, Legal); 188 } 189 190 // PowerPC uses ADDC/ADDE/SUBC/SUBE to propagate carry. 191 const MVT ScalarIntVTs[] = { MVT::i32, MVT::i64 }; 192 for (MVT VT : ScalarIntVTs) { 193 setOperationAction(ISD::ADDC, VT, Legal); 194 setOperationAction(ISD::ADDE, VT, Legal); 195 setOperationAction(ISD::SUBC, VT, Legal); 196 setOperationAction(ISD::SUBE, VT, Legal); 197 } 198 199 if (Subtarget.useCRBits()) { 200 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 201 202 if (isPPC64 || Subtarget.hasFPCVT()) { 203 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote); 204 AddPromotedToType (ISD::SINT_TO_FP, MVT::i1, 205 isPPC64 ? MVT::i64 : MVT::i32); 206 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote); 207 AddPromotedToType(ISD::UINT_TO_FP, MVT::i1, 208 isPPC64 ? MVT::i64 : MVT::i32); 209 } else { 210 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom); 211 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom); 212 } 213 214 // PowerPC does not support direct load/store of condition registers. 215 setOperationAction(ISD::LOAD, MVT::i1, Custom); 216 setOperationAction(ISD::STORE, MVT::i1, Custom); 217 218 // FIXME: Remove this once the ANDI glue bug is fixed: 219 if (ANDIGlueBug) 220 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom); 221 222 for (MVT VT : MVT::integer_valuetypes()) { 223 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 224 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote); 225 setTruncStoreAction(VT, MVT::i1, Expand); 226 } 227 228 addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass); 229 } 230 231 // Expand ppcf128 to i32 by hand for the benefit of llvm-gcc bootstrap on 232 // PPC (the libcall is not available). 233 setOperationAction(ISD::FP_TO_SINT, MVT::ppcf128, Custom); 234 setOperationAction(ISD::FP_TO_UINT, MVT::ppcf128, Custom); 235 236 // We do not currently implement these libm ops for PowerPC. 237 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand); 238 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand); 239 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand); 240 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand); 241 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand); 242 setOperationAction(ISD::FREM, MVT::ppcf128, Expand); 243 244 // PowerPC has no SREM/UREM instructions unless we are on P9 245 // On P9 we may use a hardware instruction to compute the remainder. 246 // The instructions are not legalized directly because in the cases where the 247 // result of both the remainder and the division is required it is more 248 // efficient to compute the remainder from the result of the division rather 249 // than use the remainder instruction. 250 if (Subtarget.isISA3_0()) { 251 setOperationAction(ISD::SREM, MVT::i32, Custom); 252 setOperationAction(ISD::UREM, MVT::i32, Custom); 253 setOperationAction(ISD::SREM, MVT::i64, Custom); 254 setOperationAction(ISD::UREM, MVT::i64, Custom); 255 } else { 256 setOperationAction(ISD::SREM, MVT::i32, Expand); 257 setOperationAction(ISD::UREM, MVT::i32, Expand); 258 setOperationAction(ISD::SREM, MVT::i64, Expand); 259 setOperationAction(ISD::UREM, MVT::i64, Expand); 260 } 261 262 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM. 263 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); 264 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand); 265 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand); 266 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand); 267 setOperationAction(ISD::UDIVREM, MVT::i32, Expand); 268 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); 269 setOperationAction(ISD::UDIVREM, MVT::i64, Expand); 270 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); 271 272 // We don't support sin/cos/sqrt/fmod/pow 273 setOperationAction(ISD::FSIN , MVT::f64, Expand); 274 setOperationAction(ISD::FCOS , MVT::f64, Expand); 275 setOperationAction(ISD::FSINCOS, MVT::f64, Expand); 276 setOperationAction(ISD::FREM , MVT::f64, Expand); 277 setOperationAction(ISD::FPOW , MVT::f64, Expand); 278 setOperationAction(ISD::FSIN , MVT::f32, Expand); 279 setOperationAction(ISD::FCOS , MVT::f32, Expand); 280 setOperationAction(ISD::FSINCOS, MVT::f32, Expand); 281 setOperationAction(ISD::FREM , MVT::f32, Expand); 282 setOperationAction(ISD::FPOW , MVT::f32, Expand); 283 if (Subtarget.hasSPE()) { 284 setOperationAction(ISD::FMA , MVT::f64, Expand); 285 setOperationAction(ISD::FMA , MVT::f32, Expand); 286 } else { 287 setOperationAction(ISD::FMA , MVT::f64, Legal); 288 setOperationAction(ISD::FMA , MVT::f32, Legal); 289 } 290 291 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom); 292 293 // If we're enabling GP optimizations, use hardware square root 294 if (!Subtarget.hasFSQRT() && 295 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTE() && 296 Subtarget.hasFRE())) 297 setOperationAction(ISD::FSQRT, MVT::f64, Expand); 298 299 if (!Subtarget.hasFSQRT() && 300 !(TM.Options.UnsafeFPMath && Subtarget.hasFRSQRTES() && 301 Subtarget.hasFRES())) 302 setOperationAction(ISD::FSQRT, MVT::f32, Expand); 303 304 if (Subtarget.hasFCPSGN()) { 305 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal); 306 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal); 307 } else { 308 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); 309 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); 310 } 311 312 if (Subtarget.hasFPRND()) { 313 setOperationAction(ISD::FFLOOR, MVT::f64, Legal); 314 setOperationAction(ISD::FCEIL, MVT::f64, Legal); 315 setOperationAction(ISD::FTRUNC, MVT::f64, Legal); 316 setOperationAction(ISD::FROUND, MVT::f64, Legal); 317 318 setOperationAction(ISD::FFLOOR, MVT::f32, Legal); 319 setOperationAction(ISD::FCEIL, MVT::f32, Legal); 320 setOperationAction(ISD::FTRUNC, MVT::f32, Legal); 321 setOperationAction(ISD::FROUND, MVT::f32, Legal); 322 } 323 324 // PowerPC does not have BSWAP, but we can use vector BSWAP instruction xxbrd 325 // to speed up scalar BSWAP64. 326 // CTPOP or CTTZ were introduced in P8/P9 respectively 327 setOperationAction(ISD::BSWAP, MVT::i32 , Expand); 328 if (Subtarget.hasP9Vector()) 329 setOperationAction(ISD::BSWAP, MVT::i64 , Custom); 330 else 331 setOperationAction(ISD::BSWAP, MVT::i64 , Expand); 332 if (Subtarget.isISA3_0()) { 333 setOperationAction(ISD::CTTZ , MVT::i32 , Legal); 334 setOperationAction(ISD::CTTZ , MVT::i64 , Legal); 335 } else { 336 setOperationAction(ISD::CTTZ , MVT::i32 , Expand); 337 setOperationAction(ISD::CTTZ , MVT::i64 , Expand); 338 } 339 340 if (Subtarget.hasPOPCNTD() == PPCSubtarget::POPCNTD_Fast) { 341 setOperationAction(ISD::CTPOP, MVT::i32 , Legal); 342 setOperationAction(ISD::CTPOP, MVT::i64 , Legal); 343 } else { 344 setOperationAction(ISD::CTPOP, MVT::i32 , Expand); 345 setOperationAction(ISD::CTPOP, MVT::i64 , Expand); 346 } 347 348 // PowerPC does not have ROTR 349 setOperationAction(ISD::ROTR, MVT::i32 , Expand); 350 setOperationAction(ISD::ROTR, MVT::i64 , Expand); 351 352 if (!Subtarget.useCRBits()) { 353 // PowerPC does not have Select 354 setOperationAction(ISD::SELECT, MVT::i32, Expand); 355 setOperationAction(ISD::SELECT, MVT::i64, Expand); 356 setOperationAction(ISD::SELECT, MVT::f32, Expand); 357 setOperationAction(ISD::SELECT, MVT::f64, Expand); 358 } 359 360 // PowerPC wants to turn select_cc of FP into fsel when possible. 361 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); 362 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); 363 364 // PowerPC wants to optimize integer setcc a bit 365 if (!Subtarget.useCRBits()) 366 setOperationAction(ISD::SETCC, MVT::i32, Custom); 367 368 // PowerPC does not have BRCOND which requires SetCC 369 if (!Subtarget.useCRBits()) 370 setOperationAction(ISD::BRCOND, MVT::Other, Expand); 371 372 setOperationAction(ISD::BR_JT, MVT::Other, Expand); 373 374 if (Subtarget.hasSPE()) { 375 // SPE has built-in conversions 376 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Legal); 377 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Legal); 378 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Legal); 379 } else { 380 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores. 381 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 382 383 // PowerPC does not have [U|S]INT_TO_FP 384 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand); 385 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand); 386 } 387 388 if (Subtarget.hasDirectMove() && isPPC64) { 389 setOperationAction(ISD::BITCAST, MVT::f32, Legal); 390 setOperationAction(ISD::BITCAST, MVT::i32, Legal); 391 setOperationAction(ISD::BITCAST, MVT::i64, Legal); 392 setOperationAction(ISD::BITCAST, MVT::f64, Legal); 393 if (TM.Options.UnsafeFPMath) { 394 setOperationAction(ISD::LRINT, MVT::f64, Legal); 395 setOperationAction(ISD::LRINT, MVT::f32, Legal); 396 setOperationAction(ISD::LLRINT, MVT::f64, Legal); 397 setOperationAction(ISD::LLRINT, MVT::f32, Legal); 398 setOperationAction(ISD::LROUND, MVT::f64, Legal); 399 setOperationAction(ISD::LROUND, MVT::f32, Legal); 400 setOperationAction(ISD::LLROUND, MVT::f64, Legal); 401 setOperationAction(ISD::LLROUND, MVT::f32, Legal); 402 } 403 } else { 404 setOperationAction(ISD::BITCAST, MVT::f32, Expand); 405 setOperationAction(ISD::BITCAST, MVT::i32, Expand); 406 setOperationAction(ISD::BITCAST, MVT::i64, Expand); 407 setOperationAction(ISD::BITCAST, MVT::f64, Expand); 408 } 409 410 // We cannot sextinreg(i1). Expand to shifts. 411 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 412 413 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support 414 // SjLj exception handling but a light-weight setjmp/longjmp replacement to 415 // support continuation, user-level threading, and etc.. As a result, no 416 // other SjLj exception interfaces are implemented and please don't build 417 // your own exception handling based on them. 418 // LLVM/Clang supports zero-cost DWARF exception handling. 419 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom); 420 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom); 421 422 // We want to legalize GlobalAddress and ConstantPool nodes into the 423 // appropriate instructions to materialize the address. 424 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); 425 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); 426 setOperationAction(ISD::BlockAddress, MVT::i32, Custom); 427 setOperationAction(ISD::ConstantPool, MVT::i32, Custom); 428 setOperationAction(ISD::JumpTable, MVT::i32, Custom); 429 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom); 430 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom); 431 setOperationAction(ISD::BlockAddress, MVT::i64, Custom); 432 setOperationAction(ISD::ConstantPool, MVT::i64, Custom); 433 setOperationAction(ISD::JumpTable, MVT::i64, Custom); 434 435 // TRAP is legal. 436 setOperationAction(ISD::TRAP, MVT::Other, Legal); 437 438 // TRAMPOLINE is custom lowered. 439 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom); 440 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom); 441 442 // VASTART needs to be custom lowered to use the VarArgsFrameIndex 443 setOperationAction(ISD::VASTART , MVT::Other, Custom); 444 445 if (Subtarget.is64BitELFABI()) { 446 // VAARG always uses double-word chunks, so promote anything smaller. 447 setOperationAction(ISD::VAARG, MVT::i1, Promote); 448 AddPromotedToType(ISD::VAARG, MVT::i1, MVT::i64); 449 setOperationAction(ISD::VAARG, MVT::i8, Promote); 450 AddPromotedToType(ISD::VAARG, MVT::i8, MVT::i64); 451 setOperationAction(ISD::VAARG, MVT::i16, Promote); 452 AddPromotedToType(ISD::VAARG, MVT::i16, MVT::i64); 453 setOperationAction(ISD::VAARG, MVT::i32, Promote); 454 AddPromotedToType(ISD::VAARG, MVT::i32, MVT::i64); 455 setOperationAction(ISD::VAARG, MVT::Other, Expand); 456 } else if (Subtarget.is32BitELFABI()) { 457 // VAARG is custom lowered with the 32-bit SVR4 ABI. 458 setOperationAction(ISD::VAARG, MVT::Other, Custom); 459 setOperationAction(ISD::VAARG, MVT::i64, Custom); 460 } else 461 setOperationAction(ISD::VAARG, MVT::Other, Expand); 462 463 // VACOPY is custom lowered with the 32-bit SVR4 ABI. 464 if (Subtarget.is32BitELFABI()) 465 setOperationAction(ISD::VACOPY , MVT::Other, Custom); 466 else 467 setOperationAction(ISD::VACOPY , MVT::Other, Expand); 468 469 // Use the default implementation. 470 setOperationAction(ISD::VAEND , MVT::Other, Expand); 471 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand); 472 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom); 473 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom); 474 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom); 475 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i32, Custom); 476 setOperationAction(ISD::GET_DYNAMIC_AREA_OFFSET, MVT::i64, Custom); 477 setOperationAction(ISD::EH_DWARF_CFA, MVT::i32, Custom); 478 setOperationAction(ISD::EH_DWARF_CFA, MVT::i64, Custom); 479 480 // We want to custom lower some of our intrinsics. 481 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 482 483 // To handle counter-based loop conditions. 484 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom); 485 486 setOperationAction(ISD::INTRINSIC_VOID, MVT::i8, Custom); 487 setOperationAction(ISD::INTRINSIC_VOID, MVT::i16, Custom); 488 setOperationAction(ISD::INTRINSIC_VOID, MVT::i32, Custom); 489 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom); 490 491 // Comparisons that require checking two conditions. 492 if (Subtarget.hasSPE()) { 493 setCondCodeAction(ISD::SETO, MVT::f32, Expand); 494 setCondCodeAction(ISD::SETO, MVT::f64, Expand); 495 setCondCodeAction(ISD::SETUO, MVT::f32, Expand); 496 setCondCodeAction(ISD::SETUO, MVT::f64, Expand); 497 } 498 setCondCodeAction(ISD::SETULT, MVT::f32, Expand); 499 setCondCodeAction(ISD::SETULT, MVT::f64, Expand); 500 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand); 501 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand); 502 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand); 503 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand); 504 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand); 505 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand); 506 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand); 507 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand); 508 setCondCodeAction(ISD::SETONE, MVT::f32, Expand); 509 setCondCodeAction(ISD::SETONE, MVT::f64, Expand); 510 511 if (Subtarget.has64BitSupport()) { 512 // They also have instructions for converting between i64 and fp. 513 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); 514 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand); 515 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); 516 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand); 517 // This is just the low 32 bits of a (signed) fp->i64 conversion. 518 // We cannot do this with Promote because i64 is not a legal type. 519 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 520 521 if (Subtarget.hasLFIWAX() || Subtarget.isPPC64()) 522 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 523 } else { 524 // PowerPC does not have FP_TO_UINT on 32-bit implementations. 525 if (Subtarget.hasSPE()) 526 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Legal); 527 else 528 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand); 529 } 530 531 // With the instructions enabled under FPCVT, we can do everything. 532 if (Subtarget.hasFPCVT()) { 533 if (Subtarget.has64BitSupport()) { 534 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); 535 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom); 536 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); 537 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom); 538 } 539 540 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 541 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 542 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 543 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom); 544 } 545 546 if (Subtarget.use64BitRegs()) { 547 // 64-bit PowerPC implementations can support i64 types directly 548 addRegisterClass(MVT::i64, &PPC::G8RCRegClass); 549 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or 550 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand); 551 // 64-bit PowerPC wants to expand i128 shifts itself. 552 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom); 553 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom); 554 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom); 555 } else { 556 // 32-bit PowerPC wants to expand i64 shifts itself. 557 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom); 558 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom); 559 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom); 560 } 561 562 if (Subtarget.hasVSX()) { 563 setOperationAction(ISD::FMAXNUM_IEEE, MVT::f64, Legal); 564 setOperationAction(ISD::FMAXNUM_IEEE, MVT::f32, Legal); 565 setOperationAction(ISD::FMINNUM_IEEE, MVT::f64, Legal); 566 setOperationAction(ISD::FMINNUM_IEEE, MVT::f32, Legal); 567 } 568 569 if (Subtarget.hasAltivec()) { 570 // First set operation action for all vector types to expand. Then we 571 // will selectively turn on ones that can be effectively codegen'd. 572 for (MVT VT : MVT::fixedlen_vector_valuetypes()) { 573 // add/sub are legal for all supported vector VT's. 574 setOperationAction(ISD::ADD, VT, Legal); 575 setOperationAction(ISD::SUB, VT, Legal); 576 577 // For v2i64, these are only valid with P8Vector. This is corrected after 578 // the loop. 579 if (VT.getSizeInBits() <= 128 && VT.getScalarSizeInBits() <= 64) { 580 setOperationAction(ISD::SMAX, VT, Legal); 581 setOperationAction(ISD::SMIN, VT, Legal); 582 setOperationAction(ISD::UMAX, VT, Legal); 583 setOperationAction(ISD::UMIN, VT, Legal); 584 } 585 else { 586 setOperationAction(ISD::SMAX, VT, Expand); 587 setOperationAction(ISD::SMIN, VT, Expand); 588 setOperationAction(ISD::UMAX, VT, Expand); 589 setOperationAction(ISD::UMIN, VT, Expand); 590 } 591 592 if (Subtarget.hasVSX()) { 593 setOperationAction(ISD::FMAXNUM, VT, Legal); 594 setOperationAction(ISD::FMINNUM, VT, Legal); 595 } 596 597 // Vector instructions introduced in P8 598 if (Subtarget.hasP8Altivec() && (VT.SimpleTy != MVT::v1i128)) { 599 setOperationAction(ISD::CTPOP, VT, Legal); 600 setOperationAction(ISD::CTLZ, VT, Legal); 601 } 602 else { 603 setOperationAction(ISD::CTPOP, VT, Expand); 604 setOperationAction(ISD::CTLZ, VT, Expand); 605 } 606 607 // Vector instructions introduced in P9 608 if (Subtarget.hasP9Altivec() && (VT.SimpleTy != MVT::v1i128)) 609 setOperationAction(ISD::CTTZ, VT, Legal); 610 else 611 setOperationAction(ISD::CTTZ, VT, Expand); 612 613 // We promote all shuffles to v16i8. 614 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote); 615 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8); 616 617 // We promote all non-typed operations to v4i32. 618 setOperationAction(ISD::AND , VT, Promote); 619 AddPromotedToType (ISD::AND , VT, MVT::v4i32); 620 setOperationAction(ISD::OR , VT, Promote); 621 AddPromotedToType (ISD::OR , VT, MVT::v4i32); 622 setOperationAction(ISD::XOR , VT, Promote); 623 AddPromotedToType (ISD::XOR , VT, MVT::v4i32); 624 setOperationAction(ISD::LOAD , VT, Promote); 625 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32); 626 setOperationAction(ISD::SELECT, VT, Promote); 627 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32); 628 setOperationAction(ISD::VSELECT, VT, Legal); 629 setOperationAction(ISD::SELECT_CC, VT, Promote); 630 AddPromotedToType (ISD::SELECT_CC, VT, MVT::v4i32); 631 setOperationAction(ISD::STORE, VT, Promote); 632 AddPromotedToType (ISD::STORE, VT, MVT::v4i32); 633 634 // No other operations are legal. 635 setOperationAction(ISD::MUL , VT, Expand); 636 setOperationAction(ISD::SDIV, VT, Expand); 637 setOperationAction(ISD::SREM, VT, Expand); 638 setOperationAction(ISD::UDIV, VT, Expand); 639 setOperationAction(ISD::UREM, VT, Expand); 640 setOperationAction(ISD::FDIV, VT, Expand); 641 setOperationAction(ISD::FREM, VT, Expand); 642 setOperationAction(ISD::FNEG, VT, Expand); 643 setOperationAction(ISD::FSQRT, VT, Expand); 644 setOperationAction(ISD::FLOG, VT, Expand); 645 setOperationAction(ISD::FLOG10, VT, Expand); 646 setOperationAction(ISD::FLOG2, VT, Expand); 647 setOperationAction(ISD::FEXP, VT, Expand); 648 setOperationAction(ISD::FEXP2, VT, Expand); 649 setOperationAction(ISD::FSIN, VT, Expand); 650 setOperationAction(ISD::FCOS, VT, Expand); 651 setOperationAction(ISD::FABS, VT, Expand); 652 setOperationAction(ISD::FFLOOR, VT, Expand); 653 setOperationAction(ISD::FCEIL, VT, Expand); 654 setOperationAction(ISD::FTRUNC, VT, Expand); 655 setOperationAction(ISD::FRINT, VT, Expand); 656 setOperationAction(ISD::FNEARBYINT, VT, Expand); 657 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand); 658 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand); 659 setOperationAction(ISD::BUILD_VECTOR, VT, Expand); 660 setOperationAction(ISD::MULHU, VT, Expand); 661 setOperationAction(ISD::MULHS, VT, Expand); 662 setOperationAction(ISD::UMUL_LOHI, VT, Expand); 663 setOperationAction(ISD::SMUL_LOHI, VT, Expand); 664 setOperationAction(ISD::UDIVREM, VT, Expand); 665 setOperationAction(ISD::SDIVREM, VT, Expand); 666 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand); 667 setOperationAction(ISD::FPOW, VT, Expand); 668 setOperationAction(ISD::BSWAP, VT, Expand); 669 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand); 670 setOperationAction(ISD::ROTL, VT, Expand); 671 setOperationAction(ISD::ROTR, VT, Expand); 672 673 for (MVT InnerVT : MVT::fixedlen_vector_valuetypes()) { 674 setTruncStoreAction(VT, InnerVT, Expand); 675 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand); 676 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand); 677 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand); 678 } 679 } 680 if (!Subtarget.hasP8Vector()) { 681 setOperationAction(ISD::SMAX, MVT::v2i64, Expand); 682 setOperationAction(ISD::SMIN, MVT::v2i64, Expand); 683 setOperationAction(ISD::UMAX, MVT::v2i64, Expand); 684 setOperationAction(ISD::UMIN, MVT::v2i64, Expand); 685 } 686 687 for (auto VT : {MVT::v2i64, MVT::v4i32, MVT::v8i16, MVT::v16i8}) 688 setOperationAction(ISD::ABS, VT, Custom); 689 690 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle 691 // with merges, splats, etc. 692 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom); 693 694 // Vector truncates to sub-word integer that fit in an Altivec/VSX register 695 // are cheap, so handle them before they get expanded to scalar. 696 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Custom); 697 setOperationAction(ISD::TRUNCATE, MVT::v4i8, Custom); 698 setOperationAction(ISD::TRUNCATE, MVT::v2i8, Custom); 699 setOperationAction(ISD::TRUNCATE, MVT::v4i16, Custom); 700 setOperationAction(ISD::TRUNCATE, MVT::v2i16, Custom); 701 702 setOperationAction(ISD::AND , MVT::v4i32, Legal); 703 setOperationAction(ISD::OR , MVT::v4i32, Legal); 704 setOperationAction(ISD::XOR , MVT::v4i32, Legal); 705 setOperationAction(ISD::LOAD , MVT::v4i32, Legal); 706 setOperationAction(ISD::SELECT, MVT::v4i32, 707 Subtarget.useCRBits() ? Legal : Expand); 708 setOperationAction(ISD::STORE , MVT::v4i32, Legal); 709 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal); 710 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal); 711 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal); 712 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal); 713 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal); 714 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal); 715 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal); 716 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal); 717 718 // Without hasP8Altivec set, v2i64 SMAX isn't available. 719 // But ABS custom lowering requires SMAX support. 720 if (!Subtarget.hasP8Altivec()) 721 setOperationAction(ISD::ABS, MVT::v2i64, Expand); 722 723 // With hasAltivec set, we can lower ISD::ROTL to vrl(b|h|w). 724 if (Subtarget.hasAltivec()) 725 for (auto VT : {MVT::v4i32, MVT::v8i16, MVT::v16i8}) 726 setOperationAction(ISD::ROTL, VT, Legal); 727 // With hasP8Altivec set, we can lower ISD::ROTL to vrld. 728 if (Subtarget.hasP8Altivec()) 729 setOperationAction(ISD::ROTL, MVT::v2i64, Legal); 730 731 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass); 732 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass); 733 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass); 734 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass); 735 736 setOperationAction(ISD::MUL, MVT::v4f32, Legal); 737 setOperationAction(ISD::FMA, MVT::v4f32, Legal); 738 739 if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) { 740 setOperationAction(ISD::FDIV, MVT::v4f32, Legal); 741 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal); 742 } 743 744 if (Subtarget.hasP8Altivec()) 745 setOperationAction(ISD::MUL, MVT::v4i32, Legal); 746 else 747 setOperationAction(ISD::MUL, MVT::v4i32, Custom); 748 749 setOperationAction(ISD::MUL, MVT::v8i16, Custom); 750 setOperationAction(ISD::MUL, MVT::v16i8, Custom); 751 752 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom); 753 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom); 754 755 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom); 756 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom); 757 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom); 758 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom); 759 760 // Altivec does not contain unordered floating-point compare instructions 761 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand); 762 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand); 763 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand); 764 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand); 765 766 if (Subtarget.hasVSX()) { 767 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal); 768 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal); 769 if (Subtarget.hasP8Vector()) { 770 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal); 771 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Legal); 772 } 773 if (Subtarget.hasDirectMove() && isPPC64) { 774 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Legal); 775 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Legal); 776 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Legal); 777 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Legal); 778 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Legal); 779 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Legal); 780 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Legal); 781 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal); 782 } 783 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal); 784 785 // The nearbyint variants are not allowed to raise the inexact exception 786 // so we can only code-gen them with unsafe math. 787 if (TM.Options.UnsafeFPMath) { 788 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal); 789 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal); 790 } 791 792 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal); 793 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal); 794 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal); 795 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal); 796 setOperationAction(ISD::FROUND, MVT::v2f64, Legal); 797 setOperationAction(ISD::FROUND, MVT::f64, Legal); 798 799 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal); 800 setOperationAction(ISD::FROUND, MVT::v4f32, Legal); 801 setOperationAction(ISD::FROUND, MVT::f32, Legal); 802 803 setOperationAction(ISD::MUL, MVT::v2f64, Legal); 804 setOperationAction(ISD::FMA, MVT::v2f64, Legal); 805 806 setOperationAction(ISD::FDIV, MVT::v2f64, Legal); 807 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal); 808 809 // Share the Altivec comparison restrictions. 810 setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand); 811 setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand); 812 setCondCodeAction(ISD::SETO, MVT::v2f64, Expand); 813 setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand); 814 815 setOperationAction(ISD::LOAD, MVT::v2f64, Legal); 816 setOperationAction(ISD::STORE, MVT::v2f64, Legal); 817 818 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal); 819 820 if (Subtarget.hasP8Vector()) 821 addRegisterClass(MVT::f32, &PPC::VSSRCRegClass); 822 823 addRegisterClass(MVT::f64, &PPC::VSFRCRegClass); 824 825 addRegisterClass(MVT::v4i32, &PPC::VSRCRegClass); 826 addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass); 827 addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass); 828 829 if (Subtarget.hasP8Altivec()) { 830 setOperationAction(ISD::SHL, MVT::v2i64, Legal); 831 setOperationAction(ISD::SRA, MVT::v2i64, Legal); 832 setOperationAction(ISD::SRL, MVT::v2i64, Legal); 833 834 // 128 bit shifts can be accomplished via 3 instructions for SHL and 835 // SRL, but not for SRA because of the instructions available: 836 // VS{RL} and VS{RL}O. However due to direct move costs, it's not worth 837 // doing 838 setOperationAction(ISD::SHL, MVT::v1i128, Expand); 839 setOperationAction(ISD::SRL, MVT::v1i128, Expand); 840 setOperationAction(ISD::SRA, MVT::v1i128, Expand); 841 842 setOperationAction(ISD::SETCC, MVT::v2i64, Legal); 843 } 844 else { 845 setOperationAction(ISD::SHL, MVT::v2i64, Expand); 846 setOperationAction(ISD::SRA, MVT::v2i64, Expand); 847 setOperationAction(ISD::SRL, MVT::v2i64, Expand); 848 849 setOperationAction(ISD::SETCC, MVT::v2i64, Custom); 850 851 // VSX v2i64 only supports non-arithmetic operations. 852 setOperationAction(ISD::ADD, MVT::v2i64, Expand); 853 setOperationAction(ISD::SUB, MVT::v2i64, Expand); 854 } 855 856 setOperationAction(ISD::LOAD, MVT::v2i64, Promote); 857 AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64); 858 setOperationAction(ISD::STORE, MVT::v2i64, Promote); 859 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64); 860 861 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal); 862 863 setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal); 864 setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal); 865 setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal); 866 setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal); 867 868 // Custom handling for partial vectors of integers converted to 869 // floating point. We already have optimal handling for v2i32 through 870 // the DAG combine, so those aren't necessary. 871 setOperationAction(ISD::UINT_TO_FP, MVT::v2i8, Custom); 872 setOperationAction(ISD::UINT_TO_FP, MVT::v4i8, Custom); 873 setOperationAction(ISD::UINT_TO_FP, MVT::v2i16, Custom); 874 setOperationAction(ISD::UINT_TO_FP, MVT::v4i16, Custom); 875 setOperationAction(ISD::SINT_TO_FP, MVT::v2i8, Custom); 876 setOperationAction(ISD::SINT_TO_FP, MVT::v4i8, Custom); 877 setOperationAction(ISD::SINT_TO_FP, MVT::v2i16, Custom); 878 setOperationAction(ISD::SINT_TO_FP, MVT::v4i16, Custom); 879 880 setOperationAction(ISD::FNEG, MVT::v4f32, Legal); 881 setOperationAction(ISD::FNEG, MVT::v2f64, Legal); 882 setOperationAction(ISD::FABS, MVT::v4f32, Legal); 883 setOperationAction(ISD::FABS, MVT::v2f64, Legal); 884 setOperationAction(ISD::FCOPYSIGN, MVT::v4f32, Legal); 885 setOperationAction(ISD::FCOPYSIGN, MVT::v2f64, Legal); 886 887 if (Subtarget.hasDirectMove()) 888 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom); 889 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom); 890 891 addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass); 892 } 893 894 if (Subtarget.hasP8Altivec()) { 895 addRegisterClass(MVT::v2i64, &PPC::VRRCRegClass); 896 addRegisterClass(MVT::v1i128, &PPC::VRRCRegClass); 897 } 898 899 if (Subtarget.hasP9Vector()) { 900 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom); 901 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom); 902 903 // 128 bit shifts can be accomplished via 3 instructions for SHL and 904 // SRL, but not for SRA because of the instructions available: 905 // VS{RL} and VS{RL}O. 906 setOperationAction(ISD::SHL, MVT::v1i128, Legal); 907 setOperationAction(ISD::SRL, MVT::v1i128, Legal); 908 setOperationAction(ISD::SRA, MVT::v1i128, Expand); 909 910 if (EnableQuadPrecision) { 911 addRegisterClass(MVT::f128, &PPC::VRRCRegClass); 912 setOperationAction(ISD::FADD, MVT::f128, Legal); 913 setOperationAction(ISD::FSUB, MVT::f128, Legal); 914 setOperationAction(ISD::FDIV, MVT::f128, Legal); 915 setOperationAction(ISD::FMUL, MVT::f128, Legal); 916 setOperationAction(ISD::FP_EXTEND, MVT::f128, Legal); 917 // No extending loads to f128 on PPC. 918 for (MVT FPT : MVT::fp_valuetypes()) 919 setLoadExtAction(ISD::EXTLOAD, MVT::f128, FPT, Expand); 920 setOperationAction(ISD::FMA, MVT::f128, Legal); 921 setCondCodeAction(ISD::SETULT, MVT::f128, Expand); 922 setCondCodeAction(ISD::SETUGT, MVT::f128, Expand); 923 setCondCodeAction(ISD::SETUEQ, MVT::f128, Expand); 924 setCondCodeAction(ISD::SETOGE, MVT::f128, Expand); 925 setCondCodeAction(ISD::SETOLE, MVT::f128, Expand); 926 setCondCodeAction(ISD::SETONE, MVT::f128, Expand); 927 928 setOperationAction(ISD::FTRUNC, MVT::f128, Legal); 929 setOperationAction(ISD::FRINT, MVT::f128, Legal); 930 setOperationAction(ISD::FFLOOR, MVT::f128, Legal); 931 setOperationAction(ISD::FCEIL, MVT::f128, Legal); 932 setOperationAction(ISD::FNEARBYINT, MVT::f128, Legal); 933 setOperationAction(ISD::FROUND, MVT::f128, Legal); 934 935 setOperationAction(ISD::SELECT, MVT::f128, Expand); 936 setOperationAction(ISD::FP_ROUND, MVT::f64, Legal); 937 setOperationAction(ISD::FP_ROUND, MVT::f32, Legal); 938 setTruncStoreAction(MVT::f128, MVT::f64, Expand); 939 setTruncStoreAction(MVT::f128, MVT::f32, Expand); 940 setOperationAction(ISD::BITCAST, MVT::i128, Custom); 941 // No implementation for these ops for PowerPC. 942 setOperationAction(ISD::FSIN , MVT::f128, Expand); 943 setOperationAction(ISD::FCOS , MVT::f128, Expand); 944 setOperationAction(ISD::FPOW, MVT::f128, Expand); 945 setOperationAction(ISD::FPOWI, MVT::f128, Expand); 946 setOperationAction(ISD::FREM, MVT::f128, Expand); 947 } 948 setOperationAction(ISD::FP_EXTEND, MVT::v2f32, Custom); 949 setOperationAction(ISD::BSWAP, MVT::v8i16, Legal); 950 setOperationAction(ISD::BSWAP, MVT::v4i32, Legal); 951 setOperationAction(ISD::BSWAP, MVT::v2i64, Legal); 952 setOperationAction(ISD::BSWAP, MVT::v1i128, Legal); 953 } 954 955 if (Subtarget.hasP9Altivec()) { 956 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom); 957 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom); 958 959 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i8, Legal); 960 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i16, Legal); 961 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v4i32, Legal); 962 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Legal); 963 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Legal); 964 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal); 965 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal); 966 } 967 } 968 969 if (Subtarget.hasQPX()) { 970 setOperationAction(ISD::FADD, MVT::v4f64, Legal); 971 setOperationAction(ISD::FSUB, MVT::v4f64, Legal); 972 setOperationAction(ISD::FMUL, MVT::v4f64, Legal); 973 setOperationAction(ISD::FREM, MVT::v4f64, Expand); 974 975 setOperationAction(ISD::FCOPYSIGN, MVT::v4f64, Legal); 976 setOperationAction(ISD::FGETSIGN, MVT::v4f64, Expand); 977 978 setOperationAction(ISD::LOAD , MVT::v4f64, Custom); 979 setOperationAction(ISD::STORE , MVT::v4f64, Custom); 980 981 setTruncStoreAction(MVT::v4f64, MVT::v4f32, Custom); 982 setLoadExtAction(ISD::EXTLOAD, MVT::v4f64, MVT::v4f32, Custom); 983 984 if (!Subtarget.useCRBits()) 985 setOperationAction(ISD::SELECT, MVT::v4f64, Expand); 986 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal); 987 988 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f64, Legal); 989 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f64, Expand); 990 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f64, Expand); 991 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f64, Expand); 992 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f64, Custom); 993 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f64, Legal); 994 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom); 995 996 setOperationAction(ISD::FP_TO_SINT , MVT::v4f64, Legal); 997 setOperationAction(ISD::FP_TO_UINT , MVT::v4f64, Expand); 998 999 setOperationAction(ISD::FP_ROUND , MVT::v4f32, Legal); 1000 setOperationAction(ISD::FP_EXTEND, MVT::v4f64, Legal); 1001 1002 setOperationAction(ISD::FNEG , MVT::v4f64, Legal); 1003 setOperationAction(ISD::FABS , MVT::v4f64, Legal); 1004 setOperationAction(ISD::FSIN , MVT::v4f64, Expand); 1005 setOperationAction(ISD::FCOS , MVT::v4f64, Expand); 1006 setOperationAction(ISD::FPOW , MVT::v4f64, Expand); 1007 setOperationAction(ISD::FLOG , MVT::v4f64, Expand); 1008 setOperationAction(ISD::FLOG2 , MVT::v4f64, Expand); 1009 setOperationAction(ISD::FLOG10 , MVT::v4f64, Expand); 1010 setOperationAction(ISD::FEXP , MVT::v4f64, Expand); 1011 setOperationAction(ISD::FEXP2 , MVT::v4f64, Expand); 1012 1013 setOperationAction(ISD::FMINNUM, MVT::v4f64, Legal); 1014 setOperationAction(ISD::FMAXNUM, MVT::v4f64, Legal); 1015 1016 setIndexedLoadAction(ISD::PRE_INC, MVT::v4f64, Legal); 1017 setIndexedStoreAction(ISD::PRE_INC, MVT::v4f64, Legal); 1018 1019 addRegisterClass(MVT::v4f64, &PPC::QFRCRegClass); 1020 1021 setOperationAction(ISD::FADD, MVT::v4f32, Legal); 1022 setOperationAction(ISD::FSUB, MVT::v4f32, Legal); 1023 setOperationAction(ISD::FMUL, MVT::v4f32, Legal); 1024 setOperationAction(ISD::FREM, MVT::v4f32, Expand); 1025 1026 setOperationAction(ISD::FCOPYSIGN, MVT::v4f32, Legal); 1027 setOperationAction(ISD::FGETSIGN, MVT::v4f32, Expand); 1028 1029 setOperationAction(ISD::LOAD , MVT::v4f32, Custom); 1030 setOperationAction(ISD::STORE , MVT::v4f32, Custom); 1031 1032 if (!Subtarget.useCRBits()) 1033 setOperationAction(ISD::SELECT, MVT::v4f32, Expand); 1034 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal); 1035 1036 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4f32, Legal); 1037 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4f32, Expand); 1038 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4f32, Expand); 1039 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4f32, Expand); 1040 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4f32, Custom); 1041 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Legal); 1042 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom); 1043 1044 setOperationAction(ISD::FP_TO_SINT , MVT::v4f32, Legal); 1045 setOperationAction(ISD::FP_TO_UINT , MVT::v4f32, Expand); 1046 1047 setOperationAction(ISD::FNEG , MVT::v4f32, Legal); 1048 setOperationAction(ISD::FABS , MVT::v4f32, Legal); 1049 setOperationAction(ISD::FSIN , MVT::v4f32, Expand); 1050 setOperationAction(ISD::FCOS , MVT::v4f32, Expand); 1051 setOperationAction(ISD::FPOW , MVT::v4f32, Expand); 1052 setOperationAction(ISD::FLOG , MVT::v4f32, Expand); 1053 setOperationAction(ISD::FLOG2 , MVT::v4f32, Expand); 1054 setOperationAction(ISD::FLOG10 , MVT::v4f32, Expand); 1055 setOperationAction(ISD::FEXP , MVT::v4f32, Expand); 1056 setOperationAction(ISD::FEXP2 , MVT::v4f32, Expand); 1057 1058 setOperationAction(ISD::FMINNUM, MVT::v4f32, Legal); 1059 setOperationAction(ISD::FMAXNUM, MVT::v4f32, Legal); 1060 1061 setIndexedLoadAction(ISD::PRE_INC, MVT::v4f32, Legal); 1062 setIndexedStoreAction(ISD::PRE_INC, MVT::v4f32, Legal); 1063 1064 addRegisterClass(MVT::v4f32, &PPC::QSRCRegClass); 1065 1066 setOperationAction(ISD::AND , MVT::v4i1, Legal); 1067 setOperationAction(ISD::OR , MVT::v4i1, Legal); 1068 setOperationAction(ISD::XOR , MVT::v4i1, Legal); 1069 1070 if (!Subtarget.useCRBits()) 1071 setOperationAction(ISD::SELECT, MVT::v4i1, Expand); 1072 setOperationAction(ISD::VSELECT, MVT::v4i1, Legal); 1073 1074 setOperationAction(ISD::LOAD , MVT::v4i1, Custom); 1075 setOperationAction(ISD::STORE , MVT::v4i1, Custom); 1076 1077 setOperationAction(ISD::EXTRACT_VECTOR_ELT , MVT::v4i1, Custom); 1078 setOperationAction(ISD::INSERT_VECTOR_ELT , MVT::v4i1, Expand); 1079 setOperationAction(ISD::CONCAT_VECTORS , MVT::v4i1, Expand); 1080 setOperationAction(ISD::EXTRACT_SUBVECTOR , MVT::v4i1, Expand); 1081 setOperationAction(ISD::VECTOR_SHUFFLE , MVT::v4i1, Custom); 1082 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i1, Expand); 1083 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i1, Custom); 1084 1085 setOperationAction(ISD::SINT_TO_FP, MVT::v4i1, Custom); 1086 setOperationAction(ISD::UINT_TO_FP, MVT::v4i1, Custom); 1087 1088 addRegisterClass(MVT::v4i1, &PPC::QBRCRegClass); 1089 1090 setOperationAction(ISD::FFLOOR, MVT::v4f64, Legal); 1091 setOperationAction(ISD::FCEIL, MVT::v4f64, Legal); 1092 setOperationAction(ISD::FTRUNC, MVT::v4f64, Legal); 1093 setOperationAction(ISD::FROUND, MVT::v4f64, Legal); 1094 1095 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal); 1096 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal); 1097 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal); 1098 setOperationAction(ISD::FROUND, MVT::v4f32, Legal); 1099 1100 setOperationAction(ISD::FNEARBYINT, MVT::v4f64, Expand); 1101 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Expand); 1102 1103 // These need to set FE_INEXACT, and so cannot be vectorized here. 1104 setOperationAction(ISD::FRINT, MVT::v4f64, Expand); 1105 setOperationAction(ISD::FRINT, MVT::v4f32, Expand); 1106 1107 if (TM.Options.UnsafeFPMath) { 1108 setOperationAction(ISD::FDIV, MVT::v4f64, Legal); 1109 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal); 1110 1111 setOperationAction(ISD::FDIV, MVT::v4f32, Legal); 1112 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal); 1113 } else { 1114 setOperationAction(ISD::FDIV, MVT::v4f64, Expand); 1115 setOperationAction(ISD::FSQRT, MVT::v4f64, Expand); 1116 1117 setOperationAction(ISD::FDIV, MVT::v4f32, Expand); 1118 setOperationAction(ISD::FSQRT, MVT::v4f32, Expand); 1119 } 1120 } 1121 1122 if (Subtarget.has64BitSupport()) 1123 setOperationAction(ISD::PREFETCH, MVT::Other, Legal); 1124 1125 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom); 1126 1127 if (!isPPC64) { 1128 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand); 1129 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand); 1130 } 1131 1132 setBooleanContents(ZeroOrOneBooleanContent); 1133 1134 if (Subtarget.hasAltivec()) { 1135 // Altivec instructions set fields to all zeros or all ones. 1136 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent); 1137 } 1138 1139 if (!isPPC64) { 1140 // These libcalls are not available in 32-bit. 1141 setLibcallName(RTLIB::SHL_I128, nullptr); 1142 setLibcallName(RTLIB::SRL_I128, nullptr); 1143 setLibcallName(RTLIB::SRA_I128, nullptr); 1144 } 1145 1146 setStackPointerRegisterToSaveRestore(isPPC64 ? PPC::X1 : PPC::R1); 1147 1148 // We have target-specific dag combine patterns for the following nodes: 1149 setTargetDAGCombine(ISD::ADD); 1150 setTargetDAGCombine(ISD::SHL); 1151 setTargetDAGCombine(ISD::SRA); 1152 setTargetDAGCombine(ISD::SRL); 1153 setTargetDAGCombine(ISD::MUL); 1154 setTargetDAGCombine(ISD::SINT_TO_FP); 1155 setTargetDAGCombine(ISD::BUILD_VECTOR); 1156 if (Subtarget.hasFPCVT()) 1157 setTargetDAGCombine(ISD::UINT_TO_FP); 1158 setTargetDAGCombine(ISD::LOAD); 1159 setTargetDAGCombine(ISD::STORE); 1160 setTargetDAGCombine(ISD::BR_CC); 1161 if (Subtarget.useCRBits()) 1162 setTargetDAGCombine(ISD::BRCOND); 1163 setTargetDAGCombine(ISD::BSWAP); 1164 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN); 1165 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN); 1166 setTargetDAGCombine(ISD::INTRINSIC_VOID); 1167 1168 setTargetDAGCombine(ISD::SIGN_EXTEND); 1169 setTargetDAGCombine(ISD::ZERO_EXTEND); 1170 setTargetDAGCombine(ISD::ANY_EXTEND); 1171 1172 setTargetDAGCombine(ISD::TRUNCATE); 1173 setTargetDAGCombine(ISD::VECTOR_SHUFFLE); 1174 1175 1176 if (Subtarget.useCRBits()) { 1177 setTargetDAGCombine(ISD::TRUNCATE); 1178 setTargetDAGCombine(ISD::SETCC); 1179 setTargetDAGCombine(ISD::SELECT_CC); 1180 } 1181 1182 // Use reciprocal estimates. 1183 if (TM.Options.UnsafeFPMath) { 1184 setTargetDAGCombine(ISD::FDIV); 1185 setTargetDAGCombine(ISD::FSQRT); 1186 } 1187 1188 if (Subtarget.hasP9Altivec()) { 1189 setTargetDAGCombine(ISD::ABS); 1190 setTargetDAGCombine(ISD::VSELECT); 1191 } 1192 1193 // Darwin long double math library functions have $LDBL128 appended. 1194 if (Subtarget.isDarwin()) { 1195 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128"); 1196 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128"); 1197 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128"); 1198 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128"); 1199 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128"); 1200 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128"); 1201 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128"); 1202 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128"); 1203 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128"); 1204 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128"); 1205 } 1206 1207 if (EnableQuadPrecision) { 1208 setLibcallName(RTLIB::LOG_F128, "logf128"); 1209 setLibcallName(RTLIB::LOG2_F128, "log2f128"); 1210 setLibcallName(RTLIB::LOG10_F128, "log10f128"); 1211 setLibcallName(RTLIB::EXP_F128, "expf128"); 1212 setLibcallName(RTLIB::EXP2_F128, "exp2f128"); 1213 setLibcallName(RTLIB::SIN_F128, "sinf128"); 1214 setLibcallName(RTLIB::COS_F128, "cosf128"); 1215 setLibcallName(RTLIB::POW_F128, "powf128"); 1216 setLibcallName(RTLIB::FMIN_F128, "fminf128"); 1217 setLibcallName(RTLIB::FMAX_F128, "fmaxf128"); 1218 setLibcallName(RTLIB::POWI_F128, "__powikf2"); 1219 setLibcallName(RTLIB::REM_F128, "fmodf128"); 1220 } 1221 1222 // With 32 condition bits, we don't need to sink (and duplicate) compares 1223 // aggressively in CodeGenPrep. 1224 if (Subtarget.useCRBits()) { 1225 setHasMultipleConditionRegisters(); 1226 setJumpIsExpensive(); 1227 } 1228 1229 setMinFunctionAlignment(Align(4)); 1230 if (Subtarget.isDarwin()) 1231 setPrefFunctionAlignment(Align(16)); 1232 1233 switch (Subtarget.getCPUDirective()) { 1234 default: break; 1235 case PPC::DIR_970: 1236 case PPC::DIR_A2: 1237 case PPC::DIR_E500: 1238 case PPC::DIR_E500mc: 1239 case PPC::DIR_E5500: 1240 case PPC::DIR_PWR4: 1241 case PPC::DIR_PWR5: 1242 case PPC::DIR_PWR5X: 1243 case PPC::DIR_PWR6: 1244 case PPC::DIR_PWR6X: 1245 case PPC::DIR_PWR7: 1246 case PPC::DIR_PWR8: 1247 case PPC::DIR_PWR9: 1248 case PPC::DIR_PWR_FUTURE: 1249 setPrefLoopAlignment(Align(16)); 1250 setPrefFunctionAlignment(Align(16)); 1251 break; 1252 } 1253 1254 if (Subtarget.enableMachineScheduler()) 1255 setSchedulingPreference(Sched::Source); 1256 else 1257 setSchedulingPreference(Sched::Hybrid); 1258 1259 computeRegisterProperties(STI.getRegisterInfo()); 1260 1261 // The Freescale cores do better with aggressive inlining of memcpy and 1262 // friends. GCC uses same threshold of 128 bytes (= 32 word stores). 1263 if (Subtarget.getCPUDirective() == PPC::DIR_E500mc || 1264 Subtarget.getCPUDirective() == PPC::DIR_E5500) { 1265 MaxStoresPerMemset = 32; 1266 MaxStoresPerMemsetOptSize = 16; 1267 MaxStoresPerMemcpy = 32; 1268 MaxStoresPerMemcpyOptSize = 8; 1269 MaxStoresPerMemmove = 32; 1270 MaxStoresPerMemmoveOptSize = 8; 1271 } else if (Subtarget.getCPUDirective() == PPC::DIR_A2) { 1272 // The A2 also benefits from (very) aggressive inlining of memcpy and 1273 // friends. The overhead of a the function call, even when warm, can be 1274 // over one hundred cycles. 1275 MaxStoresPerMemset = 128; 1276 MaxStoresPerMemcpy = 128; 1277 MaxStoresPerMemmove = 128; 1278 MaxLoadsPerMemcmp = 128; 1279 } else { 1280 MaxLoadsPerMemcmp = 8; 1281 MaxLoadsPerMemcmpOptSize = 4; 1282 } 1283 } 1284 1285 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine 1286 /// the desired ByVal argument alignment. 1287 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign, 1288 unsigned MaxMaxAlign) { 1289 if (MaxAlign == MaxMaxAlign) 1290 return; 1291 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) { 1292 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256) 1293 MaxAlign = 32; 1294 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16) 1295 MaxAlign = 16; 1296 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { 1297 unsigned EltAlign = 0; 1298 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign); 1299 if (EltAlign > MaxAlign) 1300 MaxAlign = EltAlign; 1301 } else if (StructType *STy = dyn_cast<StructType>(Ty)) { 1302 for (auto *EltTy : STy->elements()) { 1303 unsigned EltAlign = 0; 1304 getMaxByValAlign(EltTy, EltAlign, MaxMaxAlign); 1305 if (EltAlign > MaxAlign) 1306 MaxAlign = EltAlign; 1307 if (MaxAlign == MaxMaxAlign) 1308 break; 1309 } 1310 } 1311 } 1312 1313 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate 1314 /// function arguments in the caller parameter area. 1315 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty, 1316 const DataLayout &DL) const { 1317 // Darwin passes everything on 4 byte boundary. 1318 if (Subtarget.isDarwin()) 1319 return 4; 1320 1321 // 16byte and wider vectors are passed on 16byte boundary. 1322 // The rest is 8 on PPC64 and 4 on PPC32 boundary. 1323 unsigned Align = Subtarget.isPPC64() ? 8 : 4; 1324 if (Subtarget.hasAltivec() || Subtarget.hasQPX()) 1325 getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16); 1326 return Align; 1327 } 1328 1329 bool PPCTargetLowering::useSoftFloat() const { 1330 return Subtarget.useSoftFloat(); 1331 } 1332 1333 bool PPCTargetLowering::hasSPE() const { 1334 return Subtarget.hasSPE(); 1335 } 1336 1337 bool PPCTargetLowering::preferIncOfAddToSubOfNot(EVT VT) const { 1338 return VT.isScalarInteger(); 1339 } 1340 1341 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const { 1342 switch ((PPCISD::NodeType)Opcode) { 1343 case PPCISD::FIRST_NUMBER: break; 1344 case PPCISD::FSEL: return "PPCISD::FSEL"; 1345 case PPCISD::XSMAXCDP: return "PPCISD::XSMAXCDP"; 1346 case PPCISD::XSMINCDP: return "PPCISD::XSMINCDP"; 1347 case PPCISD::FCFID: return "PPCISD::FCFID"; 1348 case PPCISD::FCFIDU: return "PPCISD::FCFIDU"; 1349 case PPCISD::FCFIDS: return "PPCISD::FCFIDS"; 1350 case PPCISD::FCFIDUS: return "PPCISD::FCFIDUS"; 1351 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ"; 1352 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ"; 1353 case PPCISD::FCTIDUZ: return "PPCISD::FCTIDUZ"; 1354 case PPCISD::FCTIWUZ: return "PPCISD::FCTIWUZ"; 1355 case PPCISD::FP_TO_UINT_IN_VSR: 1356 return "PPCISD::FP_TO_UINT_IN_VSR,"; 1357 case PPCISD::FP_TO_SINT_IN_VSR: 1358 return "PPCISD::FP_TO_SINT_IN_VSR"; 1359 case PPCISD::FRE: return "PPCISD::FRE"; 1360 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE"; 1361 case PPCISD::STFIWX: return "PPCISD::STFIWX"; 1362 case PPCISD::VMADDFP: return "PPCISD::VMADDFP"; 1363 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP"; 1364 case PPCISD::VPERM: return "PPCISD::VPERM"; 1365 case PPCISD::XXSPLT: return "PPCISD::XXSPLT"; 1366 case PPCISD::VECINSERT: return "PPCISD::VECINSERT"; 1367 case PPCISD::XXPERMDI: return "PPCISD::XXPERMDI"; 1368 case PPCISD::VECSHL: return "PPCISD::VECSHL"; 1369 case PPCISD::CMPB: return "PPCISD::CMPB"; 1370 case PPCISD::Hi: return "PPCISD::Hi"; 1371 case PPCISD::Lo: return "PPCISD::Lo"; 1372 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY"; 1373 case PPCISD::ATOMIC_CMP_SWAP_8: return "PPCISD::ATOMIC_CMP_SWAP_8"; 1374 case PPCISD::ATOMIC_CMP_SWAP_16: return "PPCISD::ATOMIC_CMP_SWAP_16"; 1375 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC"; 1376 case PPCISD::DYNAREAOFFSET: return "PPCISD::DYNAREAOFFSET"; 1377 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg"; 1378 case PPCISD::SRL: return "PPCISD::SRL"; 1379 case PPCISD::SRA: return "PPCISD::SRA"; 1380 case PPCISD::SHL: return "PPCISD::SHL"; 1381 case PPCISD::SRA_ADDZE: return "PPCISD::SRA_ADDZE"; 1382 case PPCISD::CALL: return "PPCISD::CALL"; 1383 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP"; 1384 case PPCISD::MTCTR: return "PPCISD::MTCTR"; 1385 case PPCISD::BCTRL: return "PPCISD::BCTRL"; 1386 case PPCISD::BCTRL_LOAD_TOC: return "PPCISD::BCTRL_LOAD_TOC"; 1387 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG"; 1388 case PPCISD::READ_TIME_BASE: return "PPCISD::READ_TIME_BASE"; 1389 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP"; 1390 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP"; 1391 case PPCISD::MFOCRF: return "PPCISD::MFOCRF"; 1392 case PPCISD::MFVSR: return "PPCISD::MFVSR"; 1393 case PPCISD::MTVSRA: return "PPCISD::MTVSRA"; 1394 case PPCISD::MTVSRZ: return "PPCISD::MTVSRZ"; 1395 case PPCISD::SINT_VEC_TO_FP: return "PPCISD::SINT_VEC_TO_FP"; 1396 case PPCISD::UINT_VEC_TO_FP: return "PPCISD::UINT_VEC_TO_FP"; 1397 case PPCISD::ANDI_rec_1_EQ_BIT: 1398 return "PPCISD::ANDI_rec_1_EQ_BIT"; 1399 case PPCISD::ANDI_rec_1_GT_BIT: 1400 return "PPCISD::ANDI_rec_1_GT_BIT"; 1401 case PPCISD::VCMP: return "PPCISD::VCMP"; 1402 case PPCISD::VCMPo: return "PPCISD::VCMPo"; 1403 case PPCISD::LBRX: return "PPCISD::LBRX"; 1404 case PPCISD::STBRX: return "PPCISD::STBRX"; 1405 case PPCISD::LFIWAX: return "PPCISD::LFIWAX"; 1406 case PPCISD::LFIWZX: return "PPCISD::LFIWZX"; 1407 case PPCISD::LXSIZX: return "PPCISD::LXSIZX"; 1408 case PPCISD::STXSIX: return "PPCISD::STXSIX"; 1409 case PPCISD::VEXTS: return "PPCISD::VEXTS"; 1410 case PPCISD::SExtVElems: return "PPCISD::SExtVElems"; 1411 case PPCISD::LXVD2X: return "PPCISD::LXVD2X"; 1412 case PPCISD::STXVD2X: return "PPCISD::STXVD2X"; 1413 case PPCISD::LOAD_VEC_BE: return "PPCISD::LOAD_VEC_BE"; 1414 case PPCISD::STORE_VEC_BE: return "PPCISD::STORE_VEC_BE"; 1415 case PPCISD::ST_VSR_SCAL_INT: 1416 return "PPCISD::ST_VSR_SCAL_INT"; 1417 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH"; 1418 case PPCISD::BDNZ: return "PPCISD::BDNZ"; 1419 case PPCISD::BDZ: return "PPCISD::BDZ"; 1420 case PPCISD::MFFS: return "PPCISD::MFFS"; 1421 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ"; 1422 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN"; 1423 case PPCISD::CR6SET: return "PPCISD::CR6SET"; 1424 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET"; 1425 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT"; 1426 case PPCISD::PPC32_PICGOT: return "PPCISD::PPC32_PICGOT"; 1427 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA"; 1428 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L"; 1429 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS"; 1430 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA"; 1431 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L"; 1432 case PPCISD::GET_TLS_ADDR: return "PPCISD::GET_TLS_ADDR"; 1433 case PPCISD::ADDI_TLSGD_L_ADDR: return "PPCISD::ADDI_TLSGD_L_ADDR"; 1434 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA"; 1435 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L"; 1436 case PPCISD::GET_TLSLD_ADDR: return "PPCISD::GET_TLSLD_ADDR"; 1437 case PPCISD::ADDI_TLSLD_L_ADDR: return "PPCISD::ADDI_TLSLD_L_ADDR"; 1438 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA"; 1439 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L"; 1440 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT"; 1441 case PPCISD::SC: return "PPCISD::SC"; 1442 case PPCISD::CLRBHRB: return "PPCISD::CLRBHRB"; 1443 case PPCISD::MFBHRBE: return "PPCISD::MFBHRBE"; 1444 case PPCISD::RFEBB: return "PPCISD::RFEBB"; 1445 case PPCISD::XXSWAPD: return "PPCISD::XXSWAPD"; 1446 case PPCISD::SWAP_NO_CHAIN: return "PPCISD::SWAP_NO_CHAIN"; 1447 case PPCISD::VABSD: return "PPCISD::VABSD"; 1448 case PPCISD::QVFPERM: return "PPCISD::QVFPERM"; 1449 case PPCISD::QVGPCI: return "PPCISD::QVGPCI"; 1450 case PPCISD::QVALIGNI: return "PPCISD::QVALIGNI"; 1451 case PPCISD::QVESPLATI: return "PPCISD::QVESPLATI"; 1452 case PPCISD::QBFLT: return "PPCISD::QBFLT"; 1453 case PPCISD::QVLFSb: return "PPCISD::QVLFSb"; 1454 case PPCISD::BUILD_FP128: return "PPCISD::BUILD_FP128"; 1455 case PPCISD::BUILD_SPE64: return "PPCISD::BUILD_SPE64"; 1456 case PPCISD::EXTRACT_SPE: return "PPCISD::EXTRACT_SPE"; 1457 case PPCISD::EXTSWSLI: return "PPCISD::EXTSWSLI"; 1458 case PPCISD::LD_VSX_LH: return "PPCISD::LD_VSX_LH"; 1459 case PPCISD::FP_EXTEND_HALF: return "PPCISD::FP_EXTEND_HALF"; 1460 case PPCISD::LD_SPLAT: return "PPCISD::LD_SPLAT"; 1461 } 1462 return nullptr; 1463 } 1464 1465 EVT PPCTargetLowering::getSetCCResultType(const DataLayout &DL, LLVMContext &C, 1466 EVT VT) const { 1467 if (!VT.isVector()) 1468 return Subtarget.useCRBits() ? MVT::i1 : MVT::i32; 1469 1470 if (Subtarget.hasQPX()) 1471 return EVT::getVectorVT(C, MVT::i1, VT.getVectorNumElements()); 1472 1473 return VT.changeVectorElementTypeToInteger(); 1474 } 1475 1476 bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const { 1477 assert(VT.isFloatingPoint() && "Non-floating-point FMA?"); 1478 return true; 1479 } 1480 1481 //===----------------------------------------------------------------------===// 1482 // Node matching predicates, for use by the tblgen matching code. 1483 //===----------------------------------------------------------------------===// 1484 1485 /// isFloatingPointZero - Return true if this is 0.0 or -0.0. 1486 static bool isFloatingPointZero(SDValue Op) { 1487 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) 1488 return CFP->getValueAPF().isZero(); 1489 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) { 1490 // Maybe this has already been legalized into the constant pool? 1491 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1))) 1492 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal())) 1493 return CFP->getValueAPF().isZero(); 1494 } 1495 return false; 1496 } 1497 1498 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return 1499 /// true if Op is undef or if it matches the specified value. 1500 static bool isConstantOrUndef(int Op, int Val) { 1501 return Op < 0 || Op == Val; 1502 } 1503 1504 /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a 1505 /// VPKUHUM instruction. 1506 /// The ShuffleKind distinguishes between big-endian operations with 1507 /// two different inputs (0), either-endian operations with two identical 1508 /// inputs (1), and little-endian operations with two different inputs (2). 1509 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td). 1510 bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind, 1511 SelectionDAG &DAG) { 1512 bool IsLE = DAG.getDataLayout().isLittleEndian(); 1513 if (ShuffleKind == 0) { 1514 if (IsLE) 1515 return false; 1516 for (unsigned i = 0; i != 16; ++i) 1517 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1)) 1518 return false; 1519 } else if (ShuffleKind == 2) { 1520 if (!IsLE) 1521 return false; 1522 for (unsigned i = 0; i != 16; ++i) 1523 if (!isConstantOrUndef(N->getMaskElt(i), i*2)) 1524 return false; 1525 } else if (ShuffleKind == 1) { 1526 unsigned j = IsLE ? 0 : 1; 1527 for (unsigned i = 0; i != 8; ++i) 1528 if (!isConstantOrUndef(N->getMaskElt(i), i*2+j) || 1529 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j)) 1530 return false; 1531 } 1532 return true; 1533 } 1534 1535 /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a 1536 /// VPKUWUM instruction. 1537 /// The ShuffleKind distinguishes between big-endian operations with 1538 /// two different inputs (0), either-endian operations with two identical 1539 /// inputs (1), and little-endian operations with two different inputs (2). 1540 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td). 1541 bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind, 1542 SelectionDAG &DAG) { 1543 bool IsLE = DAG.getDataLayout().isLittleEndian(); 1544 if (ShuffleKind == 0) { 1545 if (IsLE) 1546 return false; 1547 for (unsigned i = 0; i != 16; i += 2) 1548 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) || 1549 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3)) 1550 return false; 1551 } else if (ShuffleKind == 2) { 1552 if (!IsLE) 1553 return false; 1554 for (unsigned i = 0; i != 16; i += 2) 1555 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) || 1556 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1)) 1557 return false; 1558 } else if (ShuffleKind == 1) { 1559 unsigned j = IsLE ? 0 : 2; 1560 for (unsigned i = 0; i != 8; i += 2) 1561 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) || 1562 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) || 1563 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) || 1564 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1)) 1565 return false; 1566 } 1567 return true; 1568 } 1569 1570 /// isVPKUDUMShuffleMask - Return true if this is the shuffle mask for a 1571 /// VPKUDUM instruction, AND the VPKUDUM instruction exists for the 1572 /// current subtarget. 1573 /// 1574 /// The ShuffleKind distinguishes between big-endian operations with 1575 /// two different inputs (0), either-endian operations with two identical 1576 /// inputs (1), and little-endian operations with two different inputs (2). 1577 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td). 1578 bool PPC::isVPKUDUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind, 1579 SelectionDAG &DAG) { 1580 const PPCSubtarget& Subtarget = 1581 static_cast<const PPCSubtarget&>(DAG.getSubtarget()); 1582 if (!Subtarget.hasP8Vector()) 1583 return false; 1584 1585 bool IsLE = DAG.getDataLayout().isLittleEndian(); 1586 if (ShuffleKind == 0) { 1587 if (IsLE) 1588 return false; 1589 for (unsigned i = 0; i != 16; i += 4) 1590 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+4) || 1591 !isConstantOrUndef(N->getMaskElt(i+1), i*2+5) || 1592 !isConstantOrUndef(N->getMaskElt(i+2), i*2+6) || 1593 !isConstantOrUndef(N->getMaskElt(i+3), i*2+7)) 1594 return false; 1595 } else if (ShuffleKind == 2) { 1596 if (!IsLE) 1597 return false; 1598 for (unsigned i = 0; i != 16; i += 4) 1599 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) || 1600 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1) || 1601 !isConstantOrUndef(N->getMaskElt(i+2), i*2+2) || 1602 !isConstantOrUndef(N->getMaskElt(i+3), i*2+3)) 1603 return false; 1604 } else if (ShuffleKind == 1) { 1605 unsigned j = IsLE ? 0 : 4; 1606 for (unsigned i = 0; i != 8; i += 4) 1607 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) || 1608 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) || 1609 !isConstantOrUndef(N->getMaskElt(i+2), i*2+j+2) || 1610 !isConstantOrUndef(N->getMaskElt(i+3), i*2+j+3) || 1611 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) || 1612 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1) || 1613 !isConstantOrUndef(N->getMaskElt(i+10), i*2+j+2) || 1614 !isConstantOrUndef(N->getMaskElt(i+11), i*2+j+3)) 1615 return false; 1616 } 1617 return true; 1618 } 1619 1620 /// isVMerge - Common function, used to match vmrg* shuffles. 1621 /// 1622 static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize, 1623 unsigned LHSStart, unsigned RHSStart) { 1624 if (N->getValueType(0) != MVT::v16i8) 1625 return false; 1626 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) && 1627 "Unsupported merge size!"); 1628 1629 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units 1630 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit 1631 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j), 1632 LHSStart+j+i*UnitSize) || 1633 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j), 1634 RHSStart+j+i*UnitSize)) 1635 return false; 1636 } 1637 return true; 1638 } 1639 1640 /// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for 1641 /// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes). 1642 /// The ShuffleKind distinguishes between big-endian merges with two 1643 /// different inputs (0), either-endian merges with two identical inputs (1), 1644 /// and little-endian merges with two different inputs (2). For the latter, 1645 /// the input operands are swapped (see PPCInstrAltivec.td). 1646 bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize, 1647 unsigned ShuffleKind, SelectionDAG &DAG) { 1648 if (DAG.getDataLayout().isLittleEndian()) { 1649 if (ShuffleKind == 1) // unary 1650 return isVMerge(N, UnitSize, 0, 0); 1651 else if (ShuffleKind == 2) // swapped 1652 return isVMerge(N, UnitSize, 0, 16); 1653 else 1654 return false; 1655 } else { 1656 if (ShuffleKind == 1) // unary 1657 return isVMerge(N, UnitSize, 8, 8); 1658 else if (ShuffleKind == 0) // normal 1659 return isVMerge(N, UnitSize, 8, 24); 1660 else 1661 return false; 1662 } 1663 } 1664 1665 /// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for 1666 /// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes). 1667 /// The ShuffleKind distinguishes between big-endian merges with two 1668 /// different inputs (0), either-endian merges with two identical inputs (1), 1669 /// and little-endian merges with two different inputs (2). For the latter, 1670 /// the input operands are swapped (see PPCInstrAltivec.td). 1671 bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize, 1672 unsigned ShuffleKind, SelectionDAG &DAG) { 1673 if (DAG.getDataLayout().isLittleEndian()) { 1674 if (ShuffleKind == 1) // unary 1675 return isVMerge(N, UnitSize, 8, 8); 1676 else if (ShuffleKind == 2) // swapped 1677 return isVMerge(N, UnitSize, 8, 24); 1678 else 1679 return false; 1680 } else { 1681 if (ShuffleKind == 1) // unary 1682 return isVMerge(N, UnitSize, 0, 0); 1683 else if (ShuffleKind == 0) // normal 1684 return isVMerge(N, UnitSize, 0, 16); 1685 else 1686 return false; 1687 } 1688 } 1689 1690 /** 1691 * Common function used to match vmrgew and vmrgow shuffles 1692 * 1693 * The indexOffset determines whether to look for even or odd words in 1694 * the shuffle mask. This is based on the of the endianness of the target 1695 * machine. 1696 * - Little Endian: 1697 * - Use offset of 0 to check for odd elements 1698 * - Use offset of 4 to check for even elements 1699 * - Big Endian: 1700 * - Use offset of 0 to check for even elements 1701 * - Use offset of 4 to check for odd elements 1702 * A detailed description of the vector element ordering for little endian and 1703 * big endian can be found at 1704 * http://www.ibm.com/developerworks/library/l-ibm-xl-c-cpp-compiler/index.html 1705 * Targeting your applications - what little endian and big endian IBM XL C/C++ 1706 * compiler differences mean to you 1707 * 1708 * The mask to the shuffle vector instruction specifies the indices of the 1709 * elements from the two input vectors to place in the result. The elements are 1710 * numbered in array-access order, starting with the first vector. These vectors 1711 * are always of type v16i8, thus each vector will contain 16 elements of size 1712 * 8. More info on the shuffle vector can be found in the 1713 * http://llvm.org/docs/LangRef.html#shufflevector-instruction 1714 * Language Reference. 1715 * 1716 * The RHSStartValue indicates whether the same input vectors are used (unary) 1717 * or two different input vectors are used, based on the following: 1718 * - If the instruction uses the same vector for both inputs, the range of the 1719 * indices will be 0 to 15. In this case, the RHSStart value passed should 1720 * be 0. 1721 * - If the instruction has two different vectors then the range of the 1722 * indices will be 0 to 31. In this case, the RHSStart value passed should 1723 * be 16 (indices 0-15 specify elements in the first vector while indices 16 1724 * to 31 specify elements in the second vector). 1725 * 1726 * \param[in] N The shuffle vector SD Node to analyze 1727 * \param[in] IndexOffset Specifies whether to look for even or odd elements 1728 * \param[in] RHSStartValue Specifies the starting index for the righthand input 1729 * vector to the shuffle_vector instruction 1730 * \return true iff this shuffle vector represents an even or odd word merge 1731 */ 1732 static bool isVMerge(ShuffleVectorSDNode *N, unsigned IndexOffset, 1733 unsigned RHSStartValue) { 1734 if (N->getValueType(0) != MVT::v16i8) 1735 return false; 1736 1737 for (unsigned i = 0; i < 2; ++i) 1738 for (unsigned j = 0; j < 4; ++j) 1739 if (!isConstantOrUndef(N->getMaskElt(i*4+j), 1740 i*RHSStartValue+j+IndexOffset) || 1741 !isConstantOrUndef(N->getMaskElt(i*4+j+8), 1742 i*RHSStartValue+j+IndexOffset+8)) 1743 return false; 1744 return true; 1745 } 1746 1747 /** 1748 * Determine if the specified shuffle mask is suitable for the vmrgew or 1749 * vmrgow instructions. 1750 * 1751 * \param[in] N The shuffle vector SD Node to analyze 1752 * \param[in] CheckEven Check for an even merge (true) or an odd merge (false) 1753 * \param[in] ShuffleKind Identify the type of merge: 1754 * - 0 = big-endian merge with two different inputs; 1755 * - 1 = either-endian merge with two identical inputs; 1756 * - 2 = little-endian merge with two different inputs (inputs are swapped for 1757 * little-endian merges). 1758 * \param[in] DAG The current SelectionDAG 1759 * \return true iff this shuffle mask 1760 */ 1761 bool PPC::isVMRGEOShuffleMask(ShuffleVectorSDNode *N, bool CheckEven, 1762 unsigned ShuffleKind, SelectionDAG &DAG) { 1763 if (DAG.getDataLayout().isLittleEndian()) { 1764 unsigned indexOffset = CheckEven ? 4 : 0; 1765 if (ShuffleKind == 1) // Unary 1766 return isVMerge(N, indexOffset, 0); 1767 else if (ShuffleKind == 2) // swapped 1768 return isVMerge(N, indexOffset, 16); 1769 else 1770 return false; 1771 } 1772 else { 1773 unsigned indexOffset = CheckEven ? 0 : 4; 1774 if (ShuffleKind == 1) // Unary 1775 return isVMerge(N, indexOffset, 0); 1776 else if (ShuffleKind == 0) // Normal 1777 return isVMerge(N, indexOffset, 16); 1778 else 1779 return false; 1780 } 1781 return false; 1782 } 1783 1784 /// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift 1785 /// amount, otherwise return -1. 1786 /// The ShuffleKind distinguishes between big-endian operations with two 1787 /// different inputs (0), either-endian operations with two identical inputs 1788 /// (1), and little-endian operations with two different inputs (2). For the 1789 /// latter, the input operands are swapped (see PPCInstrAltivec.td). 1790 int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind, 1791 SelectionDAG &DAG) { 1792 if (N->getValueType(0) != MVT::v16i8) 1793 return -1; 1794 1795 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); 1796 1797 // Find the first non-undef value in the shuffle mask. 1798 unsigned i; 1799 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i) 1800 /*search*/; 1801 1802 if (i == 16) return -1; // all undef. 1803 1804 // Otherwise, check to see if the rest of the elements are consecutively 1805 // numbered from this value. 1806 unsigned ShiftAmt = SVOp->getMaskElt(i); 1807 if (ShiftAmt < i) return -1; 1808 1809 ShiftAmt -= i; 1810 bool isLE = DAG.getDataLayout().isLittleEndian(); 1811 1812 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { 1813 // Check the rest of the elements to see if they are consecutive. 1814 for (++i; i != 16; ++i) 1815 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i)) 1816 return -1; 1817 } else if (ShuffleKind == 1) { 1818 // Check the rest of the elements to see if they are consecutive. 1819 for (++i; i != 16; ++i) 1820 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15)) 1821 return -1; 1822 } else 1823 return -1; 1824 1825 if (isLE) 1826 ShiftAmt = 16 - ShiftAmt; 1827 1828 return ShiftAmt; 1829 } 1830 1831 /// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand 1832 /// specifies a splat of a single element that is suitable for input to 1833 /// one of the splat operations (VSPLTB/VSPLTH/VSPLTW/XXSPLTW/LXVDSX/etc.). 1834 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) { 1835 assert(N->getValueType(0) == MVT::v16i8 && isPowerOf2_32(EltSize) && 1836 EltSize <= 8 && "Can only handle 1,2,4,8 byte element sizes"); 1837 1838 // The consecutive indices need to specify an element, not part of two 1839 // different elements. So abandon ship early if this isn't the case. 1840 if (N->getMaskElt(0) % EltSize != 0) 1841 return false; 1842 1843 // This is a splat operation if each element of the permute is the same, and 1844 // if the value doesn't reference the second vector. 1845 unsigned ElementBase = N->getMaskElt(0); 1846 1847 // FIXME: Handle UNDEF elements too! 1848 if (ElementBase >= 16) 1849 return false; 1850 1851 // Check that the indices are consecutive, in the case of a multi-byte element 1852 // splatted with a v16i8 mask. 1853 for (unsigned i = 1; i != EltSize; ++i) 1854 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase)) 1855 return false; 1856 1857 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) { 1858 if (N->getMaskElt(i) < 0) continue; 1859 for (unsigned j = 0; j != EltSize; ++j) 1860 if (N->getMaskElt(i+j) != N->getMaskElt(j)) 1861 return false; 1862 } 1863 return true; 1864 } 1865 1866 /// Check that the mask is shuffling N byte elements. Within each N byte 1867 /// element of the mask, the indices could be either in increasing or 1868 /// decreasing order as long as they are consecutive. 1869 /// \param[in] N the shuffle vector SD Node to analyze 1870 /// \param[in] Width the element width in bytes, could be 2/4/8/16 (HalfWord/ 1871 /// Word/DoubleWord/QuadWord). 1872 /// \param[in] StepLen the delta indices number among the N byte element, if 1873 /// the mask is in increasing/decreasing order then it is 1/-1. 1874 /// \return true iff the mask is shuffling N byte elements. 1875 static bool isNByteElemShuffleMask(ShuffleVectorSDNode *N, unsigned Width, 1876 int StepLen) { 1877 assert((Width == 2 || Width == 4 || Width == 8 || Width == 16) && 1878 "Unexpected element width."); 1879 assert((StepLen == 1 || StepLen == -1) && "Unexpected element width."); 1880 1881 unsigned NumOfElem = 16 / Width; 1882 unsigned MaskVal[16]; // Width is never greater than 16 1883 for (unsigned i = 0; i < NumOfElem; ++i) { 1884 MaskVal[0] = N->getMaskElt(i * Width); 1885 if ((StepLen == 1) && (MaskVal[0] % Width)) { 1886 return false; 1887 } else if ((StepLen == -1) && ((MaskVal[0] + 1) % Width)) { 1888 return false; 1889 } 1890 1891 for (unsigned int j = 1; j < Width; ++j) { 1892 MaskVal[j] = N->getMaskElt(i * Width + j); 1893 if (MaskVal[j] != MaskVal[j-1] + StepLen) { 1894 return false; 1895 } 1896 } 1897 } 1898 1899 return true; 1900 } 1901 1902 bool PPC::isXXINSERTWMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, 1903 unsigned &InsertAtByte, bool &Swap, bool IsLE) { 1904 if (!isNByteElemShuffleMask(N, 4, 1)) 1905 return false; 1906 1907 // Now we look at mask elements 0,4,8,12 1908 unsigned M0 = N->getMaskElt(0) / 4; 1909 unsigned M1 = N->getMaskElt(4) / 4; 1910 unsigned M2 = N->getMaskElt(8) / 4; 1911 unsigned M3 = N->getMaskElt(12) / 4; 1912 unsigned LittleEndianShifts[] = { 2, 1, 0, 3 }; 1913 unsigned BigEndianShifts[] = { 3, 0, 1, 2 }; 1914 1915 // Below, let H and L be arbitrary elements of the shuffle mask 1916 // where H is in the range [4,7] and L is in the range [0,3]. 1917 // H, 1, 2, 3 or L, 5, 6, 7 1918 if ((M0 > 3 && M1 == 1 && M2 == 2 && M3 == 3) || 1919 (M0 < 4 && M1 == 5 && M2 == 6 && M3 == 7)) { 1920 ShiftElts = IsLE ? LittleEndianShifts[M0 & 0x3] : BigEndianShifts[M0 & 0x3]; 1921 InsertAtByte = IsLE ? 12 : 0; 1922 Swap = M0 < 4; 1923 return true; 1924 } 1925 // 0, H, 2, 3 or 4, L, 6, 7 1926 if ((M1 > 3 && M0 == 0 && M2 == 2 && M3 == 3) || 1927 (M1 < 4 && M0 == 4 && M2 == 6 && M3 == 7)) { 1928 ShiftElts = IsLE ? LittleEndianShifts[M1 & 0x3] : BigEndianShifts[M1 & 0x3]; 1929 InsertAtByte = IsLE ? 8 : 4; 1930 Swap = M1 < 4; 1931 return true; 1932 } 1933 // 0, 1, H, 3 or 4, 5, L, 7 1934 if ((M2 > 3 && M0 == 0 && M1 == 1 && M3 == 3) || 1935 (M2 < 4 && M0 == 4 && M1 == 5 && M3 == 7)) { 1936 ShiftElts = IsLE ? LittleEndianShifts[M2 & 0x3] : BigEndianShifts[M2 & 0x3]; 1937 InsertAtByte = IsLE ? 4 : 8; 1938 Swap = M2 < 4; 1939 return true; 1940 } 1941 // 0, 1, 2, H or 4, 5, 6, L 1942 if ((M3 > 3 && M0 == 0 && M1 == 1 && M2 == 2) || 1943 (M3 < 4 && M0 == 4 && M1 == 5 && M2 == 6)) { 1944 ShiftElts = IsLE ? LittleEndianShifts[M3 & 0x3] : BigEndianShifts[M3 & 0x3]; 1945 InsertAtByte = IsLE ? 0 : 12; 1946 Swap = M3 < 4; 1947 return true; 1948 } 1949 1950 // If both vector operands for the shuffle are the same vector, the mask will 1951 // contain only elements from the first one and the second one will be undef. 1952 if (N->getOperand(1).isUndef()) { 1953 ShiftElts = 0; 1954 Swap = true; 1955 unsigned XXINSERTWSrcElem = IsLE ? 2 : 1; 1956 if (M0 == XXINSERTWSrcElem && M1 == 1 && M2 == 2 && M3 == 3) { 1957 InsertAtByte = IsLE ? 12 : 0; 1958 return true; 1959 } 1960 if (M0 == 0 && M1 == XXINSERTWSrcElem && M2 == 2 && M3 == 3) { 1961 InsertAtByte = IsLE ? 8 : 4; 1962 return true; 1963 } 1964 if (M0 == 0 && M1 == 1 && M2 == XXINSERTWSrcElem && M3 == 3) { 1965 InsertAtByte = IsLE ? 4 : 8; 1966 return true; 1967 } 1968 if (M0 == 0 && M1 == 1 && M2 == 2 && M3 == XXINSERTWSrcElem) { 1969 InsertAtByte = IsLE ? 0 : 12; 1970 return true; 1971 } 1972 } 1973 1974 return false; 1975 } 1976 1977 bool PPC::isXXSLDWIShuffleMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, 1978 bool &Swap, bool IsLE) { 1979 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); 1980 // Ensure each byte index of the word is consecutive. 1981 if (!isNByteElemShuffleMask(N, 4, 1)) 1982 return false; 1983 1984 // Now we look at mask elements 0,4,8,12, which are the beginning of words. 1985 unsigned M0 = N->getMaskElt(0) / 4; 1986 unsigned M1 = N->getMaskElt(4) / 4; 1987 unsigned M2 = N->getMaskElt(8) / 4; 1988 unsigned M3 = N->getMaskElt(12) / 4; 1989 1990 // If both vector operands for the shuffle are the same vector, the mask will 1991 // contain only elements from the first one and the second one will be undef. 1992 if (N->getOperand(1).isUndef()) { 1993 assert(M0 < 4 && "Indexing into an undef vector?"); 1994 if (M1 != (M0 + 1) % 4 || M2 != (M1 + 1) % 4 || M3 != (M2 + 1) % 4) 1995 return false; 1996 1997 ShiftElts = IsLE ? (4 - M0) % 4 : M0; 1998 Swap = false; 1999 return true; 2000 } 2001 2002 // Ensure each word index of the ShuffleVector Mask is consecutive. 2003 if (M1 != (M0 + 1) % 8 || M2 != (M1 + 1) % 8 || M3 != (M2 + 1) % 8) 2004 return false; 2005 2006 if (IsLE) { 2007 if (M0 == 0 || M0 == 7 || M0 == 6 || M0 == 5) { 2008 // Input vectors don't need to be swapped if the leading element 2009 // of the result is one of the 3 left elements of the second vector 2010 // (or if there is no shift to be done at all). 2011 Swap = false; 2012 ShiftElts = (8 - M0) % 8; 2013 } else if (M0 == 4 || M0 == 3 || M0 == 2 || M0 == 1) { 2014 // Input vectors need to be swapped if the leading element 2015 // of the result is one of the 3 left elements of the first vector 2016 // (or if we're shifting by 4 - thereby simply swapping the vectors). 2017 Swap = true; 2018 ShiftElts = (4 - M0) % 4; 2019 } 2020 2021 return true; 2022 } else { // BE 2023 if (M0 == 0 || M0 == 1 || M0 == 2 || M0 == 3) { 2024 // Input vectors don't need to be swapped if the leading element 2025 // of the result is one of the 4 elements of the first vector. 2026 Swap = false; 2027 ShiftElts = M0; 2028 } else if (M0 == 4 || M0 == 5 || M0 == 6 || M0 == 7) { 2029 // Input vectors need to be swapped if the leading element 2030 // of the result is one of the 4 elements of the right vector. 2031 Swap = true; 2032 ShiftElts = M0 - 4; 2033 } 2034 2035 return true; 2036 } 2037 } 2038 2039 bool static isXXBRShuffleMaskHelper(ShuffleVectorSDNode *N, int Width) { 2040 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); 2041 2042 if (!isNByteElemShuffleMask(N, Width, -1)) 2043 return false; 2044 2045 for (int i = 0; i < 16; i += Width) 2046 if (N->getMaskElt(i) != i + Width - 1) 2047 return false; 2048 2049 return true; 2050 } 2051 2052 bool PPC::isXXBRHShuffleMask(ShuffleVectorSDNode *N) { 2053 return isXXBRShuffleMaskHelper(N, 2); 2054 } 2055 2056 bool PPC::isXXBRWShuffleMask(ShuffleVectorSDNode *N) { 2057 return isXXBRShuffleMaskHelper(N, 4); 2058 } 2059 2060 bool PPC::isXXBRDShuffleMask(ShuffleVectorSDNode *N) { 2061 return isXXBRShuffleMaskHelper(N, 8); 2062 } 2063 2064 bool PPC::isXXBRQShuffleMask(ShuffleVectorSDNode *N) { 2065 return isXXBRShuffleMaskHelper(N, 16); 2066 } 2067 2068 /// Can node \p N be lowered to an XXPERMDI instruction? If so, set \p Swap 2069 /// if the inputs to the instruction should be swapped and set \p DM to the 2070 /// value for the immediate. 2071 /// Specifically, set \p Swap to true only if \p N can be lowered to XXPERMDI 2072 /// AND element 0 of the result comes from the first input (LE) or second input 2073 /// (BE). Set \p DM to the calculated result (0-3) only if \p N can be lowered. 2074 /// \return true iff the given mask of shuffle node \p N is a XXPERMDI shuffle 2075 /// mask. 2076 bool PPC::isXXPERMDIShuffleMask(ShuffleVectorSDNode *N, unsigned &DM, 2077 bool &Swap, bool IsLE) { 2078 assert(N->getValueType(0) == MVT::v16i8 && "Shuffle vector expects v16i8"); 2079 2080 // Ensure each byte index of the double word is consecutive. 2081 if (!isNByteElemShuffleMask(N, 8, 1)) 2082 return false; 2083 2084 unsigned M0 = N->getMaskElt(0) / 8; 2085 unsigned M1 = N->getMaskElt(8) / 8; 2086 assert(((M0 | M1) < 4) && "A mask element out of bounds?"); 2087 2088 // If both vector operands for the shuffle are the same vector, the mask will 2089 // contain only elements from the first one and the second one will be undef. 2090 if (N->getOperand(1).isUndef()) { 2091 if ((M0 | M1) < 2) { 2092 DM = IsLE ? (((~M1) & 1) << 1) + ((~M0) & 1) : (M0 << 1) + (M1 & 1); 2093 Swap = false; 2094 return true; 2095 } else 2096 return false; 2097 } 2098 2099 if (IsLE) { 2100 if (M0 > 1 && M1 < 2) { 2101 Swap = false; 2102 } else if (M0 < 2 && M1 > 1) { 2103 M0 = (M0 + 2) % 4; 2104 M1 = (M1 + 2) % 4; 2105 Swap = true; 2106 } else 2107 return false; 2108 2109 // Note: if control flow comes here that means Swap is already set above 2110 DM = (((~M1) & 1) << 1) + ((~M0) & 1); 2111 return true; 2112 } else { // BE 2113 if (M0 < 2 && M1 > 1) { 2114 Swap = false; 2115 } else if (M0 > 1 && M1 < 2) { 2116 M0 = (M0 + 2) % 4; 2117 M1 = (M1 + 2) % 4; 2118 Swap = true; 2119 } else 2120 return false; 2121 2122 // Note: if control flow comes here that means Swap is already set above 2123 DM = (M0 << 1) + (M1 & 1); 2124 return true; 2125 } 2126 } 2127 2128 2129 /// getSplatIdxForPPCMnemonics - Return the splat index as a value that is 2130 /// appropriate for PPC mnemonics (which have a big endian bias - namely 2131 /// elements are counted from the left of the vector register). 2132 unsigned PPC::getSplatIdxForPPCMnemonics(SDNode *N, unsigned EltSize, 2133 SelectionDAG &DAG) { 2134 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); 2135 assert(isSplatShuffleMask(SVOp, EltSize)); 2136 if (DAG.getDataLayout().isLittleEndian()) 2137 return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize); 2138 else 2139 return SVOp->getMaskElt(0) / EltSize; 2140 } 2141 2142 /// get_VSPLTI_elt - If this is a build_vector of constants which can be formed 2143 /// by using a vspltis[bhw] instruction of the specified element size, return 2144 /// the constant being splatted. The ByteSize field indicates the number of 2145 /// bytes of each element [124] -> [bhw]. 2146 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { 2147 SDValue OpVal(nullptr, 0); 2148 2149 // If ByteSize of the splat is bigger than the element size of the 2150 // build_vector, then we have a case where we are checking for a splat where 2151 // multiple elements of the buildvector are folded together into a single 2152 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8). 2153 unsigned EltSize = 16/N->getNumOperands(); 2154 if (EltSize < ByteSize) { 2155 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval. 2156 SDValue UniquedVals[4]; 2157 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?"); 2158 2159 // See if all of the elements in the buildvector agree across. 2160 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 2161 if (N->getOperand(i).isUndef()) continue; 2162 // If the element isn't a constant, bail fully out. 2163 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue(); 2164 2165 if (!UniquedVals[i&(Multiple-1)].getNode()) 2166 UniquedVals[i&(Multiple-1)] = N->getOperand(i); 2167 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i)) 2168 return SDValue(); // no match. 2169 } 2170 2171 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains 2172 // either constant or undef values that are identical for each chunk. See 2173 // if these chunks can form into a larger vspltis*. 2174 2175 // Check to see if all of the leading entries are either 0 or -1. If 2176 // neither, then this won't fit into the immediate field. 2177 bool LeadingZero = true; 2178 bool LeadingOnes = true; 2179 for (unsigned i = 0; i != Multiple-1; ++i) { 2180 if (!UniquedVals[i].getNode()) continue; // Must have been undefs. 2181 2182 LeadingZero &= isNullConstant(UniquedVals[i]); 2183 LeadingOnes &= isAllOnesConstant(UniquedVals[i]); 2184 } 2185 // Finally, check the least significant entry. 2186 if (LeadingZero) { 2187 if (!UniquedVals[Multiple-1].getNode()) 2188 return DAG.getTargetConstant(0, SDLoc(N), MVT::i32); // 0,0,0,undef 2189 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue(); 2190 if (Val < 16) // 0,0,0,4 -> vspltisw(4) 2191 return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32); 2192 } 2193 if (LeadingOnes) { 2194 if (!UniquedVals[Multiple-1].getNode()) 2195 return DAG.getTargetConstant(~0U, SDLoc(N), MVT::i32); // -1,-1,-1,undef 2196 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue(); 2197 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2) 2198 return DAG.getTargetConstant(Val, SDLoc(N), MVT::i32); 2199 } 2200 2201 return SDValue(); 2202 } 2203 2204 // Check to see if this buildvec has a single non-undef value in its elements. 2205 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 2206 if (N->getOperand(i).isUndef()) continue; 2207 if (!OpVal.getNode()) 2208 OpVal = N->getOperand(i); 2209 else if (OpVal != N->getOperand(i)) 2210 return SDValue(); 2211 } 2212 2213 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def. 2214 2215 unsigned ValSizeInBytes = EltSize; 2216 uint64_t Value = 0; 2217 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) { 2218 Value = CN->getZExtValue(); 2219 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) { 2220 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!"); 2221 Value = FloatToBits(CN->getValueAPF().convertToFloat()); 2222 } 2223 2224 // If the splat value is larger than the element value, then we can never do 2225 // this splat. The only case that we could fit the replicated bits into our 2226 // immediate field for would be zero, and we prefer to use vxor for it. 2227 if (ValSizeInBytes < ByteSize) return SDValue(); 2228 2229 // If the element value is larger than the splat value, check if it consists 2230 // of a repeated bit pattern of size ByteSize. 2231 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8)) 2232 return SDValue(); 2233 2234 // Properly sign extend the value. 2235 int MaskVal = SignExtend32(Value, ByteSize * 8); 2236 2237 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros. 2238 if (MaskVal == 0) return SDValue(); 2239 2240 // Finally, if this value fits in a 5 bit sext field, return it 2241 if (SignExtend32<5>(MaskVal) == MaskVal) 2242 return DAG.getTargetConstant(MaskVal, SDLoc(N), MVT::i32); 2243 return SDValue(); 2244 } 2245 2246 /// isQVALIGNIShuffleMask - If this is a qvaligni shuffle mask, return the shift 2247 /// amount, otherwise return -1. 2248 int PPC::isQVALIGNIShuffleMask(SDNode *N) { 2249 EVT VT = N->getValueType(0); 2250 if (VT != MVT::v4f64 && VT != MVT::v4f32 && VT != MVT::v4i1) 2251 return -1; 2252 2253 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); 2254 2255 // Find the first non-undef value in the shuffle mask. 2256 unsigned i; 2257 for (i = 0; i != 4 && SVOp->getMaskElt(i) < 0; ++i) 2258 /*search*/; 2259 2260 if (i == 4) return -1; // all undef. 2261 2262 // Otherwise, check to see if the rest of the elements are consecutively 2263 // numbered from this value. 2264 unsigned ShiftAmt = SVOp->getMaskElt(i); 2265 if (ShiftAmt < i) return -1; 2266 ShiftAmt -= i; 2267 2268 // Check the rest of the elements to see if they are consecutive. 2269 for (++i; i != 4; ++i) 2270 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i)) 2271 return -1; 2272 2273 return ShiftAmt; 2274 } 2275 2276 //===----------------------------------------------------------------------===// 2277 // Addressing Mode Selection 2278 //===----------------------------------------------------------------------===// 2279 2280 /// isIntS16Immediate - This method tests to see if the node is either a 32-bit 2281 /// or 64-bit immediate, and if the value can be accurately represented as a 2282 /// sign extension from a 16-bit value. If so, this returns true and the 2283 /// immediate. 2284 bool llvm::isIntS16Immediate(SDNode *N, int16_t &Imm) { 2285 if (!isa<ConstantSDNode>(N)) 2286 return false; 2287 2288 Imm = (int16_t)cast<ConstantSDNode>(N)->getZExtValue(); 2289 if (N->getValueType(0) == MVT::i32) 2290 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue(); 2291 else 2292 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue(); 2293 } 2294 bool llvm::isIntS16Immediate(SDValue Op, int16_t &Imm) { 2295 return isIntS16Immediate(Op.getNode(), Imm); 2296 } 2297 2298 2299 /// SelectAddressEVXRegReg - Given the specified address, check to see if it can 2300 /// be represented as an indexed [r+r] operation. 2301 bool PPCTargetLowering::SelectAddressEVXRegReg(SDValue N, SDValue &Base, 2302 SDValue &Index, 2303 SelectionDAG &DAG) const { 2304 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); 2305 UI != E; ++UI) { 2306 if (MemSDNode *Memop = dyn_cast<MemSDNode>(*UI)) { 2307 if (Memop->getMemoryVT() == MVT::f64) { 2308 Base = N.getOperand(0); 2309 Index = N.getOperand(1); 2310 return true; 2311 } 2312 } 2313 } 2314 return false; 2315 } 2316 2317 /// SelectAddressRegReg - Given the specified addressed, check to see if it 2318 /// can be represented as an indexed [r+r] operation. Returns false if it 2319 /// can be more efficiently represented as [r+imm]. If \p EncodingAlignment is 2320 /// non-zero and N can be represented by a base register plus a signed 16-bit 2321 /// displacement, make a more precise judgement by checking (displacement % \p 2322 /// EncodingAlignment). 2323 bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base, 2324 SDValue &Index, SelectionDAG &DAG, 2325 unsigned EncodingAlignment) const { 2326 int16_t imm = 0; 2327 if (N.getOpcode() == ISD::ADD) { 2328 // Is there any SPE load/store (f64), which can't handle 16bit offset? 2329 // SPE load/store can only handle 8-bit offsets. 2330 if (hasSPE() && SelectAddressEVXRegReg(N, Base, Index, DAG)) 2331 return true; 2332 if (isIntS16Immediate(N.getOperand(1), imm) && 2333 (!EncodingAlignment || !(imm % EncodingAlignment))) 2334 return false; // r+i 2335 if (N.getOperand(1).getOpcode() == PPCISD::Lo) 2336 return false; // r+i 2337 2338 Base = N.getOperand(0); 2339 Index = N.getOperand(1); 2340 return true; 2341 } else if (N.getOpcode() == ISD::OR) { 2342 if (isIntS16Immediate(N.getOperand(1), imm) && 2343 (!EncodingAlignment || !(imm % EncodingAlignment))) 2344 return false; // r+i can fold it if we can. 2345 2346 // If this is an or of disjoint bitfields, we can codegen this as an add 2347 // (for better address arithmetic) if the LHS and RHS of the OR are provably 2348 // disjoint. 2349 KnownBits LHSKnown = DAG.computeKnownBits(N.getOperand(0)); 2350 2351 if (LHSKnown.Zero.getBoolValue()) { 2352 KnownBits RHSKnown = DAG.computeKnownBits(N.getOperand(1)); 2353 // If all of the bits are known zero on the LHS or RHS, the add won't 2354 // carry. 2355 if (~(LHSKnown.Zero | RHSKnown.Zero) == 0) { 2356 Base = N.getOperand(0); 2357 Index = N.getOperand(1); 2358 return true; 2359 } 2360 } 2361 } 2362 2363 return false; 2364 } 2365 2366 // If we happen to be doing an i64 load or store into a stack slot that has 2367 // less than a 4-byte alignment, then the frame-index elimination may need to 2368 // use an indexed load or store instruction (because the offset may not be a 2369 // multiple of 4). The extra register needed to hold the offset comes from the 2370 // register scavenger, and it is possible that the scavenger will need to use 2371 // an emergency spill slot. As a result, we need to make sure that a spill slot 2372 // is allocated when doing an i64 load/store into a less-than-4-byte-aligned 2373 // stack slot. 2374 static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) { 2375 // FIXME: This does not handle the LWA case. 2376 if (VT != MVT::i64) 2377 return; 2378 2379 // NOTE: We'll exclude negative FIs here, which come from argument 2380 // lowering, because there are no known test cases triggering this problem 2381 // using packed structures (or similar). We can remove this exclusion if 2382 // we find such a test case. The reason why this is so test-case driven is 2383 // because this entire 'fixup' is only to prevent crashes (from the 2384 // register scavenger) on not-really-valid inputs. For example, if we have: 2385 // %a = alloca i1 2386 // %b = bitcast i1* %a to i64* 2387 // store i64* a, i64 b 2388 // then the store should really be marked as 'align 1', but is not. If it 2389 // were marked as 'align 1' then the indexed form would have been 2390 // instruction-selected initially, and the problem this 'fixup' is preventing 2391 // won't happen regardless. 2392 if (FrameIdx < 0) 2393 return; 2394 2395 MachineFunction &MF = DAG.getMachineFunction(); 2396 MachineFrameInfo &MFI = MF.getFrameInfo(); 2397 2398 unsigned Align = MFI.getObjectAlignment(FrameIdx); 2399 if (Align >= 4) 2400 return; 2401 2402 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2403 FuncInfo->setHasNonRISpills(); 2404 } 2405 2406 /// Returns true if the address N can be represented by a base register plus 2407 /// a signed 16-bit displacement [r+imm], and if it is not better 2408 /// represented as reg+reg. If \p EncodingAlignment is non-zero, only accept 2409 /// displacements that are multiples of that value. 2410 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp, 2411 SDValue &Base, 2412 SelectionDAG &DAG, 2413 unsigned EncodingAlignment) const { 2414 // FIXME dl should come from parent load or store, not from address 2415 SDLoc dl(N); 2416 // If this can be more profitably realized as r+r, fail. 2417 if (SelectAddressRegReg(N, Disp, Base, DAG, EncodingAlignment)) 2418 return false; 2419 2420 if (N.getOpcode() == ISD::ADD) { 2421 int16_t imm = 0; 2422 if (isIntS16Immediate(N.getOperand(1), imm) && 2423 (!EncodingAlignment || (imm % EncodingAlignment) == 0)) { 2424 Disp = DAG.getTargetConstant(imm, dl, N.getValueType()); 2425 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) { 2426 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 2427 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 2428 } else { 2429 Base = N.getOperand(0); 2430 } 2431 return true; // [r+i] 2432 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) { 2433 // Match LOAD (ADD (X, Lo(G))). 2434 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue() 2435 && "Cannot handle constant offsets yet!"); 2436 Disp = N.getOperand(1).getOperand(0); // The global address. 2437 assert(Disp.getOpcode() == ISD::TargetGlobalAddress || 2438 Disp.getOpcode() == ISD::TargetGlobalTLSAddress || 2439 Disp.getOpcode() == ISD::TargetConstantPool || 2440 Disp.getOpcode() == ISD::TargetJumpTable); 2441 Base = N.getOperand(0); 2442 return true; // [&g+r] 2443 } 2444 } else if (N.getOpcode() == ISD::OR) { 2445 int16_t imm = 0; 2446 if (isIntS16Immediate(N.getOperand(1), imm) && 2447 (!EncodingAlignment || (imm % EncodingAlignment) == 0)) { 2448 // If this is an or of disjoint bitfields, we can codegen this as an add 2449 // (for better address arithmetic) if the LHS and RHS of the OR are 2450 // provably disjoint. 2451 KnownBits LHSKnown = DAG.computeKnownBits(N.getOperand(0)); 2452 2453 if ((LHSKnown.Zero.getZExtValue()|~(uint64_t)imm) == ~0ULL) { 2454 // If all of the bits are known zero on the LHS or RHS, the add won't 2455 // carry. 2456 if (FrameIndexSDNode *FI = 2457 dyn_cast<FrameIndexSDNode>(N.getOperand(0))) { 2458 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 2459 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 2460 } else { 2461 Base = N.getOperand(0); 2462 } 2463 Disp = DAG.getTargetConstant(imm, dl, N.getValueType()); 2464 return true; 2465 } 2466 } 2467 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) { 2468 // Loading from a constant address. 2469 2470 // If this address fits entirely in a 16-bit sext immediate field, codegen 2471 // this as "d, 0" 2472 int16_t Imm; 2473 if (isIntS16Immediate(CN, Imm) && 2474 (!EncodingAlignment || (Imm % EncodingAlignment) == 0)) { 2475 Disp = DAG.getTargetConstant(Imm, dl, CN->getValueType(0)); 2476 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO, 2477 CN->getValueType(0)); 2478 return true; 2479 } 2480 2481 // Handle 32-bit sext immediates with LIS + addr mode. 2482 if ((CN->getValueType(0) == MVT::i32 || 2483 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) && 2484 (!EncodingAlignment || (CN->getZExtValue() % EncodingAlignment) == 0)) { 2485 int Addr = (int)CN->getZExtValue(); 2486 2487 // Otherwise, break this down into an LIS + disp. 2488 Disp = DAG.getTargetConstant((short)Addr, dl, MVT::i32); 2489 2490 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, dl, 2491 MVT::i32); 2492 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8; 2493 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0); 2494 return true; 2495 } 2496 } 2497 2498 Disp = DAG.getTargetConstant(0, dl, getPointerTy(DAG.getDataLayout())); 2499 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) { 2500 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 2501 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 2502 } else 2503 Base = N; 2504 return true; // [r+0] 2505 } 2506 2507 /// SelectAddressRegRegOnly - Given the specified addressed, force it to be 2508 /// represented as an indexed [r+r] operation. 2509 bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base, 2510 SDValue &Index, 2511 SelectionDAG &DAG) const { 2512 // Check to see if we can easily represent this as an [r+r] address. This 2513 // will fail if it thinks that the address is more profitably represented as 2514 // reg+imm, e.g. where imm = 0. 2515 if (SelectAddressRegReg(N, Base, Index, DAG)) 2516 return true; 2517 2518 // If the address is the result of an add, we will utilize the fact that the 2519 // address calculation includes an implicit add. However, we can reduce 2520 // register pressure if we do not materialize a constant just for use as the 2521 // index register. We only get rid of the add if it is not an add of a 2522 // value and a 16-bit signed constant and both have a single use. 2523 int16_t imm = 0; 2524 if (N.getOpcode() == ISD::ADD && 2525 (!isIntS16Immediate(N.getOperand(1), imm) || 2526 !N.getOperand(1).hasOneUse() || !N.getOperand(0).hasOneUse())) { 2527 Base = N.getOperand(0); 2528 Index = N.getOperand(1); 2529 return true; 2530 } 2531 2532 // Otherwise, do it the hard way, using R0 as the base register. 2533 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO, 2534 N.getValueType()); 2535 Index = N; 2536 return true; 2537 } 2538 2539 /// Returns true if we should use a direct load into vector instruction 2540 /// (such as lxsd or lfd), instead of a load into gpr + direct move sequence. 2541 static bool usePartialVectorLoads(SDNode *N, const PPCSubtarget& ST) { 2542 2543 // If there are any other uses other than scalar to vector, then we should 2544 // keep it as a scalar load -> direct move pattern to prevent multiple 2545 // loads. 2546 LoadSDNode *LD = dyn_cast<LoadSDNode>(N); 2547 if (!LD) 2548 return false; 2549 2550 EVT MemVT = LD->getMemoryVT(); 2551 if (!MemVT.isSimple()) 2552 return false; 2553 switch(MemVT.getSimpleVT().SimpleTy) { 2554 case MVT::i64: 2555 break; 2556 case MVT::i32: 2557 if (!ST.hasP8Vector()) 2558 return false; 2559 break; 2560 case MVT::i16: 2561 case MVT::i8: 2562 if (!ST.hasP9Vector()) 2563 return false; 2564 break; 2565 default: 2566 return false; 2567 } 2568 2569 SDValue LoadedVal(N, 0); 2570 if (!LoadedVal.hasOneUse()) 2571 return false; 2572 2573 for (SDNode::use_iterator UI = LD->use_begin(), UE = LD->use_end(); 2574 UI != UE; ++UI) 2575 if (UI.getUse().get().getResNo() == 0 && 2576 UI->getOpcode() != ISD::SCALAR_TO_VECTOR) 2577 return false; 2578 2579 return true; 2580 } 2581 2582 /// getPreIndexedAddressParts - returns true by value, base pointer and 2583 /// offset pointer and addressing mode by reference if the node's address 2584 /// can be legally represented as pre-indexed load / store address. 2585 bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base, 2586 SDValue &Offset, 2587 ISD::MemIndexedMode &AM, 2588 SelectionDAG &DAG) const { 2589 if (DisablePPCPreinc) return false; 2590 2591 bool isLoad = true; 2592 SDValue Ptr; 2593 EVT VT; 2594 unsigned Alignment; 2595 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 2596 Ptr = LD->getBasePtr(); 2597 VT = LD->getMemoryVT(); 2598 Alignment = LD->getAlignment(); 2599 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 2600 Ptr = ST->getBasePtr(); 2601 VT = ST->getMemoryVT(); 2602 Alignment = ST->getAlignment(); 2603 isLoad = false; 2604 } else 2605 return false; 2606 2607 // Do not generate pre-inc forms for specific loads that feed scalar_to_vector 2608 // instructions because we can fold these into a more efficient instruction 2609 // instead, (such as LXSD). 2610 if (isLoad && usePartialVectorLoads(N, Subtarget)) { 2611 return false; 2612 } 2613 2614 // PowerPC doesn't have preinc load/store instructions for vectors (except 2615 // for QPX, which does have preinc r+r forms). 2616 if (VT.isVector()) { 2617 if (!Subtarget.hasQPX() || (VT != MVT::v4f64 && VT != MVT::v4f32)) { 2618 return false; 2619 } else if (SelectAddressRegRegOnly(Ptr, Offset, Base, DAG)) { 2620 AM = ISD::PRE_INC; 2621 return true; 2622 } 2623 } 2624 2625 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) { 2626 // Common code will reject creating a pre-inc form if the base pointer 2627 // is a frame index, or if N is a store and the base pointer is either 2628 // the same as or a predecessor of the value being stored. Check for 2629 // those situations here, and try with swapped Base/Offset instead. 2630 bool Swap = false; 2631 2632 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base)) 2633 Swap = true; 2634 else if (!isLoad) { 2635 SDValue Val = cast<StoreSDNode>(N)->getValue(); 2636 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode())) 2637 Swap = true; 2638 } 2639 2640 if (Swap) 2641 std::swap(Base, Offset); 2642 2643 AM = ISD::PRE_INC; 2644 return true; 2645 } 2646 2647 // LDU/STU can only handle immediates that are a multiple of 4. 2648 if (VT != MVT::i64) { 2649 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, 0)) 2650 return false; 2651 } else { 2652 // LDU/STU need an address with at least 4-byte alignment. 2653 if (Alignment < 4) 2654 return false; 2655 2656 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, 4)) 2657 return false; 2658 } 2659 2660 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 2661 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of 2662 // sext i32 to i64 when addr mode is r+i. 2663 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 && 2664 LD->getExtensionType() == ISD::SEXTLOAD && 2665 isa<ConstantSDNode>(Offset)) 2666 return false; 2667 } 2668 2669 AM = ISD::PRE_INC; 2670 return true; 2671 } 2672 2673 //===----------------------------------------------------------------------===// 2674 // LowerOperation implementation 2675 //===----------------------------------------------------------------------===// 2676 2677 /// Return true if we should reference labels using a PICBase, set the HiOpFlags 2678 /// and LoOpFlags to the target MO flags. 2679 static void getLabelAccessInfo(bool IsPIC, const PPCSubtarget &Subtarget, 2680 unsigned &HiOpFlags, unsigned &LoOpFlags, 2681 const GlobalValue *GV = nullptr) { 2682 HiOpFlags = PPCII::MO_HA; 2683 LoOpFlags = PPCII::MO_LO; 2684 2685 // Don't use the pic base if not in PIC relocation model. 2686 if (IsPIC) { 2687 HiOpFlags |= PPCII::MO_PIC_FLAG; 2688 LoOpFlags |= PPCII::MO_PIC_FLAG; 2689 } 2690 2691 // If this is a reference to a global value that requires a non-lazy-ptr, make 2692 // sure that instruction lowering adds it. 2693 if (GV && Subtarget.hasLazyResolverStub(GV)) { 2694 HiOpFlags |= PPCII::MO_NLP_FLAG; 2695 LoOpFlags |= PPCII::MO_NLP_FLAG; 2696 2697 if (GV->hasHiddenVisibility()) { 2698 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG; 2699 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG; 2700 } 2701 } 2702 } 2703 2704 static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC, 2705 SelectionDAG &DAG) { 2706 SDLoc DL(HiPart); 2707 EVT PtrVT = HiPart.getValueType(); 2708 SDValue Zero = DAG.getConstant(0, DL, PtrVT); 2709 2710 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero); 2711 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero); 2712 2713 // With PIC, the first instruction is actually "GR+hi(&G)". 2714 if (isPIC) 2715 Hi = DAG.getNode(ISD::ADD, DL, PtrVT, 2716 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi); 2717 2718 // Generate non-pic code that has direct accesses to the constant pool. 2719 // The address of the global is just (hi(&g)+lo(&g)). 2720 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo); 2721 } 2722 2723 static void setUsesTOCBasePtr(MachineFunction &MF) { 2724 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2725 FuncInfo->setUsesTOCBasePtr(); 2726 } 2727 2728 static void setUsesTOCBasePtr(SelectionDAG &DAG) { 2729 setUsesTOCBasePtr(DAG.getMachineFunction()); 2730 } 2731 2732 SDValue PPCTargetLowering::getTOCEntry(SelectionDAG &DAG, const SDLoc &dl, 2733 SDValue GA) const { 2734 const bool Is64Bit = Subtarget.isPPC64(); 2735 EVT VT = Is64Bit ? MVT::i64 : MVT::i32; 2736 SDValue Reg = Is64Bit ? DAG.getRegister(PPC::X2, VT) 2737 : Subtarget.isAIXABI() 2738 ? DAG.getRegister(PPC::R2, VT) 2739 : DAG.getNode(PPCISD::GlobalBaseReg, dl, VT); 2740 SDValue Ops[] = { GA, Reg }; 2741 return DAG.getMemIntrinsicNode( 2742 PPCISD::TOC_ENTRY, dl, DAG.getVTList(VT, MVT::Other), Ops, VT, 2743 MachinePointerInfo::getGOT(DAG.getMachineFunction()), 0, 2744 MachineMemOperand::MOLoad); 2745 } 2746 2747 SDValue PPCTargetLowering::LowerConstantPool(SDValue Op, 2748 SelectionDAG &DAG) const { 2749 EVT PtrVT = Op.getValueType(); 2750 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); 2751 const Constant *C = CP->getConstVal(); 2752 2753 // 64-bit SVR4 ABI and AIX ABI code are always position-independent. 2754 // The actual address of the GlobalValue is stored in the TOC. 2755 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) { 2756 setUsesTOCBasePtr(DAG); 2757 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0); 2758 return getTOCEntry(DAG, SDLoc(CP), GA); 2759 } 2760 2761 unsigned MOHiFlag, MOLoFlag; 2762 bool IsPIC = isPositionIndependent(); 2763 getLabelAccessInfo(IsPIC, Subtarget, MOHiFlag, MOLoFlag); 2764 2765 if (IsPIC && Subtarget.isSVR4ABI()) { 2766 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 2767 PPCII::MO_PIC_FLAG); 2768 return getTOCEntry(DAG, SDLoc(CP), GA); 2769 } 2770 2771 SDValue CPIHi = 2772 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag); 2773 SDValue CPILo = 2774 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag); 2775 return LowerLabelRef(CPIHi, CPILo, IsPIC, DAG); 2776 } 2777 2778 // For 64-bit PowerPC, prefer the more compact relative encodings. 2779 // This trades 32 bits per jump table entry for one or two instructions 2780 // on the jump site. 2781 unsigned PPCTargetLowering::getJumpTableEncoding() const { 2782 if (isJumpTableRelative()) 2783 return MachineJumpTableInfo::EK_LabelDifference32; 2784 2785 return TargetLowering::getJumpTableEncoding(); 2786 } 2787 2788 bool PPCTargetLowering::isJumpTableRelative() const { 2789 if (UseAbsoluteJumpTables) 2790 return false; 2791 if (Subtarget.isPPC64() || Subtarget.isAIXABI()) 2792 return true; 2793 return TargetLowering::isJumpTableRelative(); 2794 } 2795 2796 SDValue PPCTargetLowering::getPICJumpTableRelocBase(SDValue Table, 2797 SelectionDAG &DAG) const { 2798 if (!Subtarget.isPPC64() || Subtarget.isAIXABI()) 2799 return TargetLowering::getPICJumpTableRelocBase(Table, DAG); 2800 2801 switch (getTargetMachine().getCodeModel()) { 2802 case CodeModel::Small: 2803 case CodeModel::Medium: 2804 return TargetLowering::getPICJumpTableRelocBase(Table, DAG); 2805 default: 2806 return DAG.getNode(PPCISD::GlobalBaseReg, SDLoc(), 2807 getPointerTy(DAG.getDataLayout())); 2808 } 2809 } 2810 2811 const MCExpr * 2812 PPCTargetLowering::getPICJumpTableRelocBaseExpr(const MachineFunction *MF, 2813 unsigned JTI, 2814 MCContext &Ctx) const { 2815 if (!Subtarget.isPPC64() || Subtarget.isAIXABI()) 2816 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx); 2817 2818 switch (getTargetMachine().getCodeModel()) { 2819 case CodeModel::Small: 2820 case CodeModel::Medium: 2821 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx); 2822 default: 2823 return MCSymbolRefExpr::create(MF->getPICBaseSymbol(), Ctx); 2824 } 2825 } 2826 2827 SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const { 2828 EVT PtrVT = Op.getValueType(); 2829 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); 2830 2831 // 64-bit SVR4 ABI and AIX ABI code are always position-independent. 2832 // The actual address of the GlobalValue is stored in the TOC. 2833 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) { 2834 setUsesTOCBasePtr(DAG); 2835 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT); 2836 return getTOCEntry(DAG, SDLoc(JT), GA); 2837 } 2838 2839 unsigned MOHiFlag, MOLoFlag; 2840 bool IsPIC = isPositionIndependent(); 2841 getLabelAccessInfo(IsPIC, Subtarget, MOHiFlag, MOLoFlag); 2842 2843 if (IsPIC && Subtarget.isSVR4ABI()) { 2844 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, 2845 PPCII::MO_PIC_FLAG); 2846 return getTOCEntry(DAG, SDLoc(GA), GA); 2847 } 2848 2849 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag); 2850 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag); 2851 return LowerLabelRef(JTIHi, JTILo, IsPIC, DAG); 2852 } 2853 2854 SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op, 2855 SelectionDAG &DAG) const { 2856 EVT PtrVT = Op.getValueType(); 2857 BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op); 2858 const BlockAddress *BA = BASDN->getBlockAddress(); 2859 2860 // 64-bit SVR4 ABI and AIX ABI code are always position-independent. 2861 // The actual BlockAddress is stored in the TOC. 2862 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) { 2863 setUsesTOCBasePtr(DAG); 2864 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset()); 2865 return getTOCEntry(DAG, SDLoc(BASDN), GA); 2866 } 2867 2868 // 32-bit position-independent ELF stores the BlockAddress in the .got. 2869 if (Subtarget.is32BitELFABI() && isPositionIndependent()) 2870 return getTOCEntry( 2871 DAG, SDLoc(BASDN), 2872 DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset())); 2873 2874 unsigned MOHiFlag, MOLoFlag; 2875 bool IsPIC = isPositionIndependent(); 2876 getLabelAccessInfo(IsPIC, Subtarget, MOHiFlag, MOLoFlag); 2877 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag); 2878 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag); 2879 return LowerLabelRef(TgtBAHi, TgtBALo, IsPIC, DAG); 2880 } 2881 2882 SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op, 2883 SelectionDAG &DAG) const { 2884 // FIXME: TLS addresses currently use medium model code sequences, 2885 // which is the most useful form. Eventually support for small and 2886 // large models could be added if users need it, at the cost of 2887 // additional complexity. 2888 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); 2889 if (DAG.getTarget().useEmulatedTLS()) 2890 return LowerToTLSEmulatedModel(GA, DAG); 2891 2892 SDLoc dl(GA); 2893 const GlobalValue *GV = GA->getGlobal(); 2894 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 2895 bool is64bit = Subtarget.isPPC64(); 2896 const Module *M = DAG.getMachineFunction().getFunction().getParent(); 2897 PICLevel::Level picLevel = M->getPICLevel(); 2898 2899 const TargetMachine &TM = getTargetMachine(); 2900 TLSModel::Model Model = TM.getTLSModel(GV); 2901 2902 if (Model == TLSModel::LocalExec) { 2903 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 2904 PPCII::MO_TPREL_HA); 2905 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 2906 PPCII::MO_TPREL_LO); 2907 SDValue TLSReg = is64bit ? DAG.getRegister(PPC::X13, MVT::i64) 2908 : DAG.getRegister(PPC::R2, MVT::i32); 2909 2910 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg); 2911 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi); 2912 } 2913 2914 if (Model == TLSModel::InitialExec) { 2915 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0); 2916 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 2917 PPCII::MO_TLS); 2918 SDValue GOTPtr; 2919 if (is64bit) { 2920 setUsesTOCBasePtr(DAG); 2921 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 2922 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl, 2923 PtrVT, GOTReg, TGA); 2924 } else { 2925 if (!TM.isPositionIndependent()) 2926 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT); 2927 else if (picLevel == PICLevel::SmallPIC) 2928 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT); 2929 else 2930 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT); 2931 } 2932 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl, 2933 PtrVT, TGA, GOTPtr); 2934 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS); 2935 } 2936 2937 if (Model == TLSModel::GeneralDynamic) { 2938 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0); 2939 SDValue GOTPtr; 2940 if (is64bit) { 2941 setUsesTOCBasePtr(DAG); 2942 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 2943 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT, 2944 GOTReg, TGA); 2945 } else { 2946 if (picLevel == PICLevel::SmallPIC) 2947 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT); 2948 else 2949 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT); 2950 } 2951 return DAG.getNode(PPCISD::ADDI_TLSGD_L_ADDR, dl, PtrVT, 2952 GOTPtr, TGA, TGA); 2953 } 2954 2955 if (Model == TLSModel::LocalDynamic) { 2956 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0); 2957 SDValue GOTPtr; 2958 if (is64bit) { 2959 setUsesTOCBasePtr(DAG); 2960 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 2961 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT, 2962 GOTReg, TGA); 2963 } else { 2964 if (picLevel == PICLevel::SmallPIC) 2965 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT); 2966 else 2967 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT); 2968 } 2969 SDValue TLSAddr = DAG.getNode(PPCISD::ADDI_TLSLD_L_ADDR, dl, 2970 PtrVT, GOTPtr, TGA, TGA); 2971 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, 2972 PtrVT, TLSAddr, TGA); 2973 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA); 2974 } 2975 2976 llvm_unreachable("Unknown TLS model!"); 2977 } 2978 2979 SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op, 2980 SelectionDAG &DAG) const { 2981 EVT PtrVT = Op.getValueType(); 2982 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op); 2983 SDLoc DL(GSDN); 2984 const GlobalValue *GV = GSDN->getGlobal(); 2985 2986 // 64-bit SVR4 ABI & AIX ABI code is always position-independent. 2987 // The actual address of the GlobalValue is stored in the TOC. 2988 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) { 2989 setUsesTOCBasePtr(DAG); 2990 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset()); 2991 return getTOCEntry(DAG, DL, GA); 2992 } 2993 2994 unsigned MOHiFlag, MOLoFlag; 2995 bool IsPIC = isPositionIndependent(); 2996 getLabelAccessInfo(IsPIC, Subtarget, MOHiFlag, MOLoFlag, GV); 2997 2998 if (IsPIC && Subtarget.isSVR4ABI()) { 2999 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 3000 GSDN->getOffset(), 3001 PPCII::MO_PIC_FLAG); 3002 return getTOCEntry(DAG, DL, GA); 3003 } 3004 3005 SDValue GAHi = 3006 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag); 3007 SDValue GALo = 3008 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag); 3009 3010 SDValue Ptr = LowerLabelRef(GAHi, GALo, IsPIC, DAG); 3011 3012 // If the global reference is actually to a non-lazy-pointer, we have to do an 3013 // extra load to get the address of the global. 3014 if (MOHiFlag & PPCII::MO_NLP_FLAG) 3015 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo()); 3016 return Ptr; 3017 } 3018 3019 SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const { 3020 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); 3021 SDLoc dl(Op); 3022 3023 if (Op.getValueType() == MVT::v2i64) { 3024 // When the operands themselves are v2i64 values, we need to do something 3025 // special because VSX has no underlying comparison operations for these. 3026 if (Op.getOperand(0).getValueType() == MVT::v2i64) { 3027 // Equality can be handled by casting to the legal type for Altivec 3028 // comparisons, everything else needs to be expanded. 3029 if (CC == ISD::SETEQ || CC == ISD::SETNE) { 3030 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, 3031 DAG.getSetCC(dl, MVT::v4i32, 3032 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)), 3033 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)), 3034 CC)); 3035 } 3036 3037 return SDValue(); 3038 } 3039 3040 // We handle most of these in the usual way. 3041 return Op; 3042 } 3043 3044 // If we're comparing for equality to zero, expose the fact that this is 3045 // implemented as a ctlz/srl pair on ppc, so that the dag combiner can 3046 // fold the new nodes. 3047 if (SDValue V = lowerCmpEqZeroToCtlzSrl(Op, DAG)) 3048 return V; 3049 3050 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { 3051 // Leave comparisons against 0 and -1 alone for now, since they're usually 3052 // optimized. FIXME: revisit this when we can custom lower all setcc 3053 // optimizations. 3054 if (C->isAllOnesValue() || C->isNullValue()) 3055 return SDValue(); 3056 } 3057 3058 // If we have an integer seteq/setne, turn it into a compare against zero 3059 // by xor'ing the rhs with the lhs, which is faster than setting a 3060 // condition register, reading it back out, and masking the correct bit. The 3061 // normal approach here uses sub to do this instead of xor. Using xor exposes 3062 // the result to other bit-twiddling opportunities. 3063 EVT LHSVT = Op.getOperand(0).getValueType(); 3064 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { 3065 EVT VT = Op.getValueType(); 3066 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0), 3067 Op.getOperand(1)); 3068 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, dl, LHSVT), CC); 3069 } 3070 return SDValue(); 3071 } 3072 3073 SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const { 3074 SDNode *Node = Op.getNode(); 3075 EVT VT = Node->getValueType(0); 3076 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 3077 SDValue InChain = Node->getOperand(0); 3078 SDValue VAListPtr = Node->getOperand(1); 3079 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); 3080 SDLoc dl(Node); 3081 3082 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only"); 3083 3084 // gpr_index 3085 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, 3086 VAListPtr, MachinePointerInfo(SV), MVT::i8); 3087 InChain = GprIndex.getValue(1); 3088 3089 if (VT == MVT::i64) { 3090 // Check if GprIndex is even 3091 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex, 3092 DAG.getConstant(1, dl, MVT::i32)); 3093 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd, 3094 DAG.getConstant(0, dl, MVT::i32), ISD::SETNE); 3095 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex, 3096 DAG.getConstant(1, dl, MVT::i32)); 3097 // Align GprIndex to be even if it isn't 3098 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne, 3099 GprIndex); 3100 } 3101 3102 // fpr index is 1 byte after gpr 3103 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 3104 DAG.getConstant(1, dl, MVT::i32)); 3105 3106 // fpr 3107 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, 3108 FprPtr, MachinePointerInfo(SV), MVT::i8); 3109 InChain = FprIndex.getValue(1); 3110 3111 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 3112 DAG.getConstant(8, dl, MVT::i32)); 3113 3114 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 3115 DAG.getConstant(4, dl, MVT::i32)); 3116 3117 // areas 3118 SDValue OverflowArea = 3119 DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr, MachinePointerInfo()); 3120 InChain = OverflowArea.getValue(1); 3121 3122 SDValue RegSaveArea = 3123 DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr, MachinePointerInfo()); 3124 InChain = RegSaveArea.getValue(1); 3125 3126 // select overflow_area if index > 8 3127 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex, 3128 DAG.getConstant(8, dl, MVT::i32), ISD::SETLT); 3129 3130 // adjustment constant gpr_index * 4/8 3131 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32, 3132 VT.isInteger() ? GprIndex : FprIndex, 3133 DAG.getConstant(VT.isInteger() ? 4 : 8, dl, 3134 MVT::i32)); 3135 3136 // OurReg = RegSaveArea + RegConstant 3137 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea, 3138 RegConstant); 3139 3140 // Floating types are 32 bytes into RegSaveArea 3141 if (VT.isFloatingPoint()) 3142 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg, 3143 DAG.getConstant(32, dl, MVT::i32)); 3144 3145 // increase {f,g}pr_index by 1 (or 2 if VT is i64) 3146 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32, 3147 VT.isInteger() ? GprIndex : FprIndex, 3148 DAG.getConstant(VT == MVT::i64 ? 2 : 1, dl, 3149 MVT::i32)); 3150 3151 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1, 3152 VT.isInteger() ? VAListPtr : FprPtr, 3153 MachinePointerInfo(SV), MVT::i8); 3154 3155 // determine if we should load from reg_save_area or overflow_area 3156 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea); 3157 3158 // increase overflow_area by 4/8 if gpr/fpr > 8 3159 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea, 3160 DAG.getConstant(VT.isInteger() ? 4 : 8, 3161 dl, MVT::i32)); 3162 3163 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea, 3164 OverflowAreaPlusN); 3165 3166 InChain = DAG.getTruncStore(InChain, dl, OverflowArea, OverflowAreaPtr, 3167 MachinePointerInfo(), MVT::i32); 3168 3169 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo()); 3170 } 3171 3172 SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const { 3173 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only"); 3174 3175 // We have to copy the entire va_list struct: 3176 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte 3177 return DAG.getMemcpy(Op.getOperand(0), Op, 3178 Op.getOperand(1), Op.getOperand(2), 3179 DAG.getConstant(12, SDLoc(Op), MVT::i32), 8, false, true, 3180 false, MachinePointerInfo(), MachinePointerInfo()); 3181 } 3182 3183 SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op, 3184 SelectionDAG &DAG) const { 3185 if (Subtarget.isAIXABI()) 3186 report_fatal_error("ADJUST_TRAMPOLINE operation is not supported on AIX."); 3187 3188 return Op.getOperand(0); 3189 } 3190 3191 SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op, 3192 SelectionDAG &DAG) const { 3193 if (Subtarget.isAIXABI()) 3194 report_fatal_error("INIT_TRAMPOLINE operation is not supported on AIX."); 3195 3196 SDValue Chain = Op.getOperand(0); 3197 SDValue Trmp = Op.getOperand(1); // trampoline 3198 SDValue FPtr = Op.getOperand(2); // nested function 3199 SDValue Nest = Op.getOperand(3); // 'nest' parameter value 3200 SDLoc dl(Op); 3201 3202 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 3203 bool isPPC64 = (PtrVT == MVT::i64); 3204 Type *IntPtrTy = DAG.getDataLayout().getIntPtrType(*DAG.getContext()); 3205 3206 TargetLowering::ArgListTy Args; 3207 TargetLowering::ArgListEntry Entry; 3208 3209 Entry.Ty = IntPtrTy; 3210 Entry.Node = Trmp; Args.push_back(Entry); 3211 3212 // TrampSize == (isPPC64 ? 48 : 40); 3213 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40, dl, 3214 isPPC64 ? MVT::i64 : MVT::i32); 3215 Args.push_back(Entry); 3216 3217 Entry.Node = FPtr; Args.push_back(Entry); 3218 Entry.Node = Nest; Args.push_back(Entry); 3219 3220 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg) 3221 TargetLowering::CallLoweringInfo CLI(DAG); 3222 CLI.setDebugLoc(dl).setChain(Chain).setLibCallee( 3223 CallingConv::C, Type::getVoidTy(*DAG.getContext()), 3224 DAG.getExternalSymbol("__trampoline_setup", PtrVT), std::move(Args)); 3225 3226 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 3227 return CallResult.second; 3228 } 3229 3230 SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const { 3231 MachineFunction &MF = DAG.getMachineFunction(); 3232 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 3233 EVT PtrVT = getPointerTy(MF.getDataLayout()); 3234 3235 SDLoc dl(Op); 3236 3237 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) { 3238 // vastart just stores the address of the VarArgsFrameIndex slot into the 3239 // memory location argument. 3240 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 3241 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 3242 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), 3243 MachinePointerInfo(SV)); 3244 } 3245 3246 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct. 3247 // We suppose the given va_list is already allocated. 3248 // 3249 // typedef struct { 3250 // char gpr; /* index into the array of 8 GPRs 3251 // * stored in the register save area 3252 // * gpr=0 corresponds to r3, 3253 // * gpr=1 to r4, etc. 3254 // */ 3255 // char fpr; /* index into the array of 8 FPRs 3256 // * stored in the register save area 3257 // * fpr=0 corresponds to f1, 3258 // * fpr=1 to f2, etc. 3259 // */ 3260 // char *overflow_arg_area; 3261 // /* location on stack that holds 3262 // * the next overflow argument 3263 // */ 3264 // char *reg_save_area; 3265 // /* where r3:r10 and f1:f8 (if saved) 3266 // * are stored 3267 // */ 3268 // } va_list[1]; 3269 3270 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), dl, MVT::i32); 3271 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), dl, MVT::i32); 3272 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(), 3273 PtrVT); 3274 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), 3275 PtrVT); 3276 3277 uint64_t FrameOffset = PtrVT.getSizeInBits()/8; 3278 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, dl, PtrVT); 3279 3280 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1; 3281 SDValue ConstStackOffset = DAG.getConstant(StackOffset, dl, PtrVT); 3282 3283 uint64_t FPROffset = 1; 3284 SDValue ConstFPROffset = DAG.getConstant(FPROffset, dl, PtrVT); 3285 3286 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 3287 3288 // Store first byte : number of int regs 3289 SDValue firstStore = 3290 DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR, Op.getOperand(1), 3291 MachinePointerInfo(SV), MVT::i8); 3292 uint64_t nextOffset = FPROffset; 3293 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1), 3294 ConstFPROffset); 3295 3296 // Store second byte : number of float regs 3297 SDValue secondStore = 3298 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr, 3299 MachinePointerInfo(SV, nextOffset), MVT::i8); 3300 nextOffset += StackOffset; 3301 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset); 3302 3303 // Store second word : arguments given on stack 3304 SDValue thirdStore = DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr, 3305 MachinePointerInfo(SV, nextOffset)); 3306 nextOffset += FrameOffset; 3307 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset); 3308 3309 // Store third word : arguments given in registers 3310 return DAG.getStore(thirdStore, dl, FR, nextPtr, 3311 MachinePointerInfo(SV, nextOffset)); 3312 } 3313 3314 /// FPR - The set of FP registers that should be allocated for arguments 3315 /// on Darwin and AIX. 3316 static const MCPhysReg FPR[] = {PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, 3317 PPC::F6, PPC::F7, PPC::F8, PPC::F9, PPC::F10, 3318 PPC::F11, PPC::F12, PPC::F13}; 3319 3320 /// QFPR - The set of QPX registers that should be allocated for arguments. 3321 static const MCPhysReg QFPR[] = { 3322 PPC::QF1, PPC::QF2, PPC::QF3, PPC::QF4, PPC::QF5, PPC::QF6, PPC::QF7, 3323 PPC::QF8, PPC::QF9, PPC::QF10, PPC::QF11, PPC::QF12, PPC::QF13}; 3324 3325 /// CalculateStackSlotSize - Calculates the size reserved for this argument on 3326 /// the stack. 3327 static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags, 3328 unsigned PtrByteSize) { 3329 unsigned ArgSize = ArgVT.getStoreSize(); 3330 if (Flags.isByVal()) 3331 ArgSize = Flags.getByValSize(); 3332 3333 // Round up to multiples of the pointer size, except for array members, 3334 // which are always packed. 3335 if (!Flags.isInConsecutiveRegs()) 3336 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 3337 3338 return ArgSize; 3339 } 3340 3341 /// CalculateStackSlotAlignment - Calculates the alignment of this argument 3342 /// on the stack. 3343 static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT, 3344 ISD::ArgFlagsTy Flags, 3345 unsigned PtrByteSize) { 3346 unsigned Align = PtrByteSize; 3347 3348 // Altivec parameters are padded to a 16 byte boundary. 3349 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 3350 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 3351 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 || 3352 ArgVT == MVT::v1i128 || ArgVT == MVT::f128) 3353 Align = 16; 3354 // QPX vector types stored in double-precision are padded to a 32 byte 3355 // boundary. 3356 else if (ArgVT == MVT::v4f64 || ArgVT == MVT::v4i1) 3357 Align = 32; 3358 3359 // ByVal parameters are aligned as requested. 3360 if (Flags.isByVal()) { 3361 unsigned BVAlign = Flags.getByValAlign(); 3362 if (BVAlign > PtrByteSize) { 3363 if (BVAlign % PtrByteSize != 0) 3364 llvm_unreachable( 3365 "ByVal alignment is not a multiple of the pointer size"); 3366 3367 Align = BVAlign; 3368 } 3369 } 3370 3371 // Array members are always packed to their original alignment. 3372 if (Flags.isInConsecutiveRegs()) { 3373 // If the array member was split into multiple registers, the first 3374 // needs to be aligned to the size of the full type. (Except for 3375 // ppcf128, which is only aligned as its f64 components.) 3376 if (Flags.isSplit() && OrigVT != MVT::ppcf128) 3377 Align = OrigVT.getStoreSize(); 3378 else 3379 Align = ArgVT.getStoreSize(); 3380 } 3381 3382 return Align; 3383 } 3384 3385 /// CalculateStackSlotUsed - Return whether this argument will use its 3386 /// stack slot (instead of being passed in registers). ArgOffset, 3387 /// AvailableFPRs, and AvailableVRs must hold the current argument 3388 /// position, and will be updated to account for this argument. 3389 static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT, 3390 ISD::ArgFlagsTy Flags, 3391 unsigned PtrByteSize, 3392 unsigned LinkageSize, 3393 unsigned ParamAreaSize, 3394 unsigned &ArgOffset, 3395 unsigned &AvailableFPRs, 3396 unsigned &AvailableVRs, bool HasQPX) { 3397 bool UseMemory = false; 3398 3399 // Respect alignment of argument on the stack. 3400 unsigned Align = 3401 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 3402 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 3403 // If there's no space left in the argument save area, we must 3404 // use memory (this check also catches zero-sized arguments). 3405 if (ArgOffset >= LinkageSize + ParamAreaSize) 3406 UseMemory = true; 3407 3408 // Allocate argument on the stack. 3409 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 3410 if (Flags.isInConsecutiveRegsLast()) 3411 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 3412 // If we overran the argument save area, we must use memory 3413 // (this check catches arguments passed partially in memory) 3414 if (ArgOffset > LinkageSize + ParamAreaSize) 3415 UseMemory = true; 3416 3417 // However, if the argument is actually passed in an FPR or a VR, 3418 // we don't use memory after all. 3419 if (!Flags.isByVal()) { 3420 if (ArgVT == MVT::f32 || ArgVT == MVT::f64 || 3421 // QPX registers overlap with the scalar FP registers. 3422 (HasQPX && (ArgVT == MVT::v4f32 || 3423 ArgVT == MVT::v4f64 || 3424 ArgVT == MVT::v4i1))) 3425 if (AvailableFPRs > 0) { 3426 --AvailableFPRs; 3427 return false; 3428 } 3429 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 3430 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 3431 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64 || 3432 ArgVT == MVT::v1i128 || ArgVT == MVT::f128) 3433 if (AvailableVRs > 0) { 3434 --AvailableVRs; 3435 return false; 3436 } 3437 } 3438 3439 return UseMemory; 3440 } 3441 3442 /// EnsureStackAlignment - Round stack frame size up from NumBytes to 3443 /// ensure minimum alignment required for target. 3444 static unsigned EnsureStackAlignment(const PPCFrameLowering *Lowering, 3445 unsigned NumBytes) { 3446 unsigned TargetAlign = Lowering->getStackAlignment(); 3447 unsigned AlignMask = TargetAlign - 1; 3448 NumBytes = (NumBytes + AlignMask) & ~AlignMask; 3449 return NumBytes; 3450 } 3451 3452 SDValue PPCTargetLowering::LowerFormalArguments( 3453 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 3454 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 3455 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 3456 if (Subtarget.isAIXABI()) 3457 return LowerFormalArguments_AIX(Chain, CallConv, isVarArg, Ins, dl, DAG, 3458 InVals); 3459 if (Subtarget.is64BitELFABI()) 3460 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins, dl, DAG, 3461 InVals); 3462 if (Subtarget.is32BitELFABI()) 3463 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins, dl, DAG, 3464 InVals); 3465 3466 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins, dl, DAG, 3467 InVals); 3468 } 3469 3470 SDValue PPCTargetLowering::LowerFormalArguments_32SVR4( 3471 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 3472 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 3473 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 3474 3475 // 32-bit SVR4 ABI Stack Frame Layout: 3476 // +-----------------------------------+ 3477 // +--> | Back chain | 3478 // | +-----------------------------------+ 3479 // | | Floating-point register save area | 3480 // | +-----------------------------------+ 3481 // | | General register save area | 3482 // | +-----------------------------------+ 3483 // | | CR save word | 3484 // | +-----------------------------------+ 3485 // | | VRSAVE save word | 3486 // | +-----------------------------------+ 3487 // | | Alignment padding | 3488 // | +-----------------------------------+ 3489 // | | Vector register save area | 3490 // | +-----------------------------------+ 3491 // | | Local variable space | 3492 // | +-----------------------------------+ 3493 // | | Parameter list area | 3494 // | +-----------------------------------+ 3495 // | | LR save word | 3496 // | +-----------------------------------+ 3497 // SP--> +--- | Back chain | 3498 // +-----------------------------------+ 3499 // 3500 // Specifications: 3501 // System V Application Binary Interface PowerPC Processor Supplement 3502 // AltiVec Technology Programming Interface Manual 3503 3504 MachineFunction &MF = DAG.getMachineFunction(); 3505 MachineFrameInfo &MFI = MF.getFrameInfo(); 3506 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 3507 3508 EVT PtrVT = getPointerTy(MF.getDataLayout()); 3509 // Potential tail calls could cause overwriting of argument stack slots. 3510 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 3511 (CallConv == CallingConv::Fast)); 3512 unsigned PtrByteSize = 4; 3513 3514 // Assign locations to all of the incoming arguments. 3515 SmallVector<CCValAssign, 16> ArgLocs; 3516 PPCCCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 3517 *DAG.getContext()); 3518 3519 // Reserve space for the linkage area on the stack. 3520 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 3521 CCInfo.AllocateStack(LinkageSize, PtrByteSize); 3522 if (useSoftFloat()) 3523 CCInfo.PreAnalyzeFormalArguments(Ins); 3524 3525 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4); 3526 CCInfo.clearWasPPCF128(); 3527 3528 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 3529 CCValAssign &VA = ArgLocs[i]; 3530 3531 // Arguments stored in registers. 3532 if (VA.isRegLoc()) { 3533 const TargetRegisterClass *RC; 3534 EVT ValVT = VA.getValVT(); 3535 3536 switch (ValVT.getSimpleVT().SimpleTy) { 3537 default: 3538 llvm_unreachable("ValVT not supported by formal arguments Lowering"); 3539 case MVT::i1: 3540 case MVT::i32: 3541 RC = &PPC::GPRCRegClass; 3542 break; 3543 case MVT::f32: 3544 if (Subtarget.hasP8Vector()) 3545 RC = &PPC::VSSRCRegClass; 3546 else if (Subtarget.hasSPE()) 3547 RC = &PPC::GPRCRegClass; 3548 else 3549 RC = &PPC::F4RCRegClass; 3550 break; 3551 case MVT::f64: 3552 if (Subtarget.hasVSX()) 3553 RC = &PPC::VSFRCRegClass; 3554 else if (Subtarget.hasSPE()) 3555 // SPE passes doubles in GPR pairs. 3556 RC = &PPC::GPRCRegClass; 3557 else 3558 RC = &PPC::F8RCRegClass; 3559 break; 3560 case MVT::v16i8: 3561 case MVT::v8i16: 3562 case MVT::v4i32: 3563 RC = &PPC::VRRCRegClass; 3564 break; 3565 case MVT::v4f32: 3566 RC = Subtarget.hasQPX() ? &PPC::QSRCRegClass : &PPC::VRRCRegClass; 3567 break; 3568 case MVT::v2f64: 3569 case MVT::v2i64: 3570 RC = &PPC::VRRCRegClass; 3571 break; 3572 case MVT::v4f64: 3573 RC = &PPC::QFRCRegClass; 3574 break; 3575 case MVT::v4i1: 3576 RC = &PPC::QBRCRegClass; 3577 break; 3578 } 3579 3580 SDValue ArgValue; 3581 // Transform the arguments stored in physical registers into 3582 // virtual ones. 3583 if (VA.getLocVT() == MVT::f64 && Subtarget.hasSPE()) { 3584 assert(i + 1 < e && "No second half of double precision argument"); 3585 unsigned RegLo = MF.addLiveIn(VA.getLocReg(), RC); 3586 unsigned RegHi = MF.addLiveIn(ArgLocs[++i].getLocReg(), RC); 3587 SDValue ArgValueLo = DAG.getCopyFromReg(Chain, dl, RegLo, MVT::i32); 3588 SDValue ArgValueHi = DAG.getCopyFromReg(Chain, dl, RegHi, MVT::i32); 3589 if (!Subtarget.isLittleEndian()) 3590 std::swap (ArgValueLo, ArgValueHi); 3591 ArgValue = DAG.getNode(PPCISD::BUILD_SPE64, dl, MVT::f64, ArgValueLo, 3592 ArgValueHi); 3593 } else { 3594 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 3595 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, 3596 ValVT == MVT::i1 ? MVT::i32 : ValVT); 3597 if (ValVT == MVT::i1) 3598 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue); 3599 } 3600 3601 InVals.push_back(ArgValue); 3602 } else { 3603 // Argument stored in memory. 3604 assert(VA.isMemLoc()); 3605 3606 // Get the extended size of the argument type in stack 3607 unsigned ArgSize = VA.getLocVT().getStoreSize(); 3608 // Get the actual size of the argument type 3609 unsigned ObjSize = VA.getValVT().getStoreSize(); 3610 unsigned ArgOffset = VA.getLocMemOffset(); 3611 // Stack objects in PPC32 are right justified. 3612 ArgOffset += ArgSize - ObjSize; 3613 int FI = MFI.CreateFixedObject(ArgSize, ArgOffset, isImmutable); 3614 3615 // Create load nodes to retrieve arguments from the stack. 3616 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3617 InVals.push_back( 3618 DAG.getLoad(VA.getValVT(), dl, Chain, FIN, MachinePointerInfo())); 3619 } 3620 } 3621 3622 // Assign locations to all of the incoming aggregate by value arguments. 3623 // Aggregates passed by value are stored in the local variable space of the 3624 // caller's stack frame, right above the parameter list area. 3625 SmallVector<CCValAssign, 16> ByValArgLocs; 3626 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(), 3627 ByValArgLocs, *DAG.getContext()); 3628 3629 // Reserve stack space for the allocations in CCInfo. 3630 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize); 3631 3632 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal); 3633 3634 // Area that is at least reserved in the caller of this function. 3635 unsigned MinReservedArea = CCByValInfo.getNextStackOffset(); 3636 MinReservedArea = std::max(MinReservedArea, LinkageSize); 3637 3638 // Set the size that is at least reserved in caller of this function. Tail 3639 // call optimized function's reserved stack space needs to be aligned so that 3640 // taking the difference between two stack areas will result in an aligned 3641 // stack. 3642 MinReservedArea = 3643 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea); 3644 FuncInfo->setMinReservedArea(MinReservedArea); 3645 3646 SmallVector<SDValue, 8> MemOps; 3647 3648 // If the function takes variable number of arguments, make a frame index for 3649 // the start of the first vararg value... for expansion of llvm.va_start. 3650 if (isVarArg) { 3651 static const MCPhysReg GPArgRegs[] = { 3652 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 3653 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 3654 }; 3655 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs); 3656 3657 static const MCPhysReg FPArgRegs[] = { 3658 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7, 3659 PPC::F8 3660 }; 3661 unsigned NumFPArgRegs = array_lengthof(FPArgRegs); 3662 3663 if (useSoftFloat() || hasSPE()) 3664 NumFPArgRegs = 0; 3665 3666 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs)); 3667 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs)); 3668 3669 // Make room for NumGPArgRegs and NumFPArgRegs. 3670 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 + 3671 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8; 3672 3673 FuncInfo->setVarArgsStackOffset( 3674 MFI.CreateFixedObject(PtrVT.getSizeInBits()/8, 3675 CCInfo.getNextStackOffset(), true)); 3676 3677 FuncInfo->setVarArgsFrameIndex(MFI.CreateStackObject(Depth, 8, false)); 3678 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 3679 3680 // The fixed integer arguments of a variadic function are stored to the 3681 // VarArgsFrameIndex on the stack so that they may be loaded by 3682 // dereferencing the result of va_next. 3683 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) { 3684 // Get an existing live-in vreg, or add a new one. 3685 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]); 3686 if (!VReg) 3687 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass); 3688 3689 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3690 SDValue Store = 3691 DAG.getStore(Val.getValue(1), dl, Val, FIN, MachinePointerInfo()); 3692 MemOps.push_back(Store); 3693 // Increment the address by four for the next argument to store 3694 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT); 3695 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 3696 } 3697 3698 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6 3699 // is set. 3700 // The double arguments are stored to the VarArgsFrameIndex 3701 // on the stack. 3702 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) { 3703 // Get an existing live-in vreg, or add a new one. 3704 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]); 3705 if (!VReg) 3706 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass); 3707 3708 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64); 3709 SDValue Store = 3710 DAG.getStore(Val.getValue(1), dl, Val, FIN, MachinePointerInfo()); 3711 MemOps.push_back(Store); 3712 // Increment the address by eight for the next argument to store 3713 SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8, dl, 3714 PtrVT); 3715 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 3716 } 3717 } 3718 3719 if (!MemOps.empty()) 3720 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 3721 3722 return Chain; 3723 } 3724 3725 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 3726 // value to MVT::i64 and then truncate to the correct register size. 3727 SDValue PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, 3728 EVT ObjectVT, SelectionDAG &DAG, 3729 SDValue ArgVal, 3730 const SDLoc &dl) const { 3731 if (Flags.isSExt()) 3732 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal, 3733 DAG.getValueType(ObjectVT)); 3734 else if (Flags.isZExt()) 3735 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal, 3736 DAG.getValueType(ObjectVT)); 3737 3738 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal); 3739 } 3740 3741 SDValue PPCTargetLowering::LowerFormalArguments_64SVR4( 3742 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 3743 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 3744 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 3745 // TODO: add description of PPC stack frame format, or at least some docs. 3746 // 3747 bool isELFv2ABI = Subtarget.isELFv2ABI(); 3748 bool isLittleEndian = Subtarget.isLittleEndian(); 3749 MachineFunction &MF = DAG.getMachineFunction(); 3750 MachineFrameInfo &MFI = MF.getFrameInfo(); 3751 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 3752 3753 assert(!(CallConv == CallingConv::Fast && isVarArg) && 3754 "fastcc not supported on varargs functions"); 3755 3756 EVT PtrVT = getPointerTy(MF.getDataLayout()); 3757 // Potential tail calls could cause overwriting of argument stack slots. 3758 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 3759 (CallConv == CallingConv::Fast)); 3760 unsigned PtrByteSize = 8; 3761 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 3762 3763 static const MCPhysReg GPR[] = { 3764 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 3765 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 3766 }; 3767 static const MCPhysReg VR[] = { 3768 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 3769 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 3770 }; 3771 3772 const unsigned Num_GPR_Regs = array_lengthof(GPR); 3773 const unsigned Num_FPR_Regs = useSoftFloat() ? 0 : 13; 3774 const unsigned Num_VR_Regs = array_lengthof(VR); 3775 const unsigned Num_QFPR_Regs = Num_FPR_Regs; 3776 3777 // Do a first pass over the arguments to determine whether the ABI 3778 // guarantees that our caller has allocated the parameter save area 3779 // on its stack frame. In the ELFv1 ABI, this is always the case; 3780 // in the ELFv2 ABI, it is true if this is a vararg function or if 3781 // any parameter is located in a stack slot. 3782 3783 bool HasParameterArea = !isELFv2ABI || isVarArg; 3784 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize; 3785 unsigned NumBytes = LinkageSize; 3786 unsigned AvailableFPRs = Num_FPR_Regs; 3787 unsigned AvailableVRs = Num_VR_Regs; 3788 for (unsigned i = 0, e = Ins.size(); i != e; ++i) { 3789 if (Ins[i].Flags.isNest()) 3790 continue; 3791 3792 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags, 3793 PtrByteSize, LinkageSize, ParamAreaSize, 3794 NumBytes, AvailableFPRs, AvailableVRs, 3795 Subtarget.hasQPX())) 3796 HasParameterArea = true; 3797 } 3798 3799 // Add DAG nodes to load the arguments or copy them out of registers. On 3800 // entry to a function on PPC, the arguments start after the linkage area, 3801 // although the first ones are often in registers. 3802 3803 unsigned ArgOffset = LinkageSize; 3804 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 3805 unsigned &QFPR_idx = FPR_idx; 3806 SmallVector<SDValue, 8> MemOps; 3807 Function::const_arg_iterator FuncArg = MF.getFunction().arg_begin(); 3808 unsigned CurArgIdx = 0; 3809 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) { 3810 SDValue ArgVal; 3811 bool needsLoad = false; 3812 EVT ObjectVT = Ins[ArgNo].VT; 3813 EVT OrigVT = Ins[ArgNo].ArgVT; 3814 unsigned ObjSize = ObjectVT.getStoreSize(); 3815 unsigned ArgSize = ObjSize; 3816 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 3817 if (Ins[ArgNo].isOrigArg()) { 3818 std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx); 3819 CurArgIdx = Ins[ArgNo].getOrigArgIndex(); 3820 } 3821 // We re-align the argument offset for each argument, except when using the 3822 // fast calling convention, when we need to make sure we do that only when 3823 // we'll actually use a stack slot. 3824 unsigned CurArgOffset, Align; 3825 auto ComputeArgOffset = [&]() { 3826 /* Respect alignment of argument on the stack. */ 3827 Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize); 3828 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 3829 CurArgOffset = ArgOffset; 3830 }; 3831 3832 if (CallConv != CallingConv::Fast) { 3833 ComputeArgOffset(); 3834 3835 /* Compute GPR index associated with argument offset. */ 3836 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 3837 GPR_idx = std::min(GPR_idx, Num_GPR_Regs); 3838 } 3839 3840 // FIXME the codegen can be much improved in some cases. 3841 // We do not have to keep everything in memory. 3842 if (Flags.isByVal()) { 3843 assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit"); 3844 3845 if (CallConv == CallingConv::Fast) 3846 ComputeArgOffset(); 3847 3848 // ObjSize is the true size, ArgSize rounded up to multiple of registers. 3849 ObjSize = Flags.getByValSize(); 3850 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 3851 // Empty aggregate parameters do not take up registers. Examples: 3852 // struct { } a; 3853 // union { } b; 3854 // int c[0]; 3855 // etc. However, we have to provide a place-holder in InVals, so 3856 // pretend we have an 8-byte item at the current address for that 3857 // purpose. 3858 if (!ObjSize) { 3859 int FI = MFI.CreateFixedObject(PtrByteSize, ArgOffset, true); 3860 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3861 InVals.push_back(FIN); 3862 continue; 3863 } 3864 3865 // Create a stack object covering all stack doublewords occupied 3866 // by the argument. If the argument is (fully or partially) on 3867 // the stack, or if the argument is fully in registers but the 3868 // caller has allocated the parameter save anyway, we can refer 3869 // directly to the caller's stack frame. Otherwise, create a 3870 // local copy in our own frame. 3871 int FI; 3872 if (HasParameterArea || 3873 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize) 3874 FI = MFI.CreateFixedObject(ArgSize, ArgOffset, false, true); 3875 else 3876 FI = MFI.CreateStackObject(ArgSize, Align, false); 3877 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3878 3879 // Handle aggregates smaller than 8 bytes. 3880 if (ObjSize < PtrByteSize) { 3881 // The value of the object is its address, which differs from the 3882 // address of the enclosing doubleword on big-endian systems. 3883 SDValue Arg = FIN; 3884 if (!isLittleEndian) { 3885 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, dl, PtrVT); 3886 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff); 3887 } 3888 InVals.push_back(Arg); 3889 3890 if (GPR_idx != Num_GPR_Regs) { 3891 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 3892 FuncInfo->addLiveInAttr(VReg, Flags); 3893 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3894 SDValue Store; 3895 3896 if (ObjSize==1 || ObjSize==2 || ObjSize==4) { 3897 EVT ObjType = (ObjSize == 1 ? MVT::i8 : 3898 (ObjSize == 2 ? MVT::i16 : MVT::i32)); 3899 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg, 3900 MachinePointerInfo(&*FuncArg), ObjType); 3901 } else { 3902 // For sizes that don't fit a truncating store (3, 5, 6, 7), 3903 // store the whole register as-is to the parameter save area 3904 // slot. 3905 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 3906 MachinePointerInfo(&*FuncArg)); 3907 } 3908 3909 MemOps.push_back(Store); 3910 } 3911 // Whether we copied from a register or not, advance the offset 3912 // into the parameter save area by a full doubleword. 3913 ArgOffset += PtrByteSize; 3914 continue; 3915 } 3916 3917 // The value of the object is its address, which is the address of 3918 // its first stack doubleword. 3919 InVals.push_back(FIN); 3920 3921 // Store whatever pieces of the object are in registers to memory. 3922 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) { 3923 if (GPR_idx == Num_GPR_Regs) 3924 break; 3925 3926 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 3927 FuncInfo->addLiveInAttr(VReg, Flags); 3928 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3929 SDValue Addr = FIN; 3930 if (j) { 3931 SDValue Off = DAG.getConstant(j, dl, PtrVT); 3932 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off); 3933 } 3934 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr, 3935 MachinePointerInfo(&*FuncArg, j)); 3936 MemOps.push_back(Store); 3937 ++GPR_idx; 3938 } 3939 ArgOffset += ArgSize; 3940 continue; 3941 } 3942 3943 switch (ObjectVT.getSimpleVT().SimpleTy) { 3944 default: llvm_unreachable("Unhandled argument type!"); 3945 case MVT::i1: 3946 case MVT::i32: 3947 case MVT::i64: 3948 if (Flags.isNest()) { 3949 // The 'nest' parameter, if any, is passed in R11. 3950 unsigned VReg = MF.addLiveIn(PPC::X11, &PPC::G8RCRegClass); 3951 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 3952 3953 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1) 3954 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl); 3955 3956 break; 3957 } 3958 3959 // These can be scalar arguments or elements of an integer array type 3960 // passed directly. Clang may use those instead of "byval" aggregate 3961 // types to avoid forcing arguments to memory unnecessarily. 3962 if (GPR_idx != Num_GPR_Regs) { 3963 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 3964 FuncInfo->addLiveInAttr(VReg, Flags); 3965 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 3966 3967 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1) 3968 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 3969 // value to MVT::i64 and then truncate to the correct register size. 3970 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl); 3971 } else { 3972 if (CallConv == CallingConv::Fast) 3973 ComputeArgOffset(); 3974 3975 needsLoad = true; 3976 ArgSize = PtrByteSize; 3977 } 3978 if (CallConv != CallingConv::Fast || needsLoad) 3979 ArgOffset += 8; 3980 break; 3981 3982 case MVT::f32: 3983 case MVT::f64: 3984 // These can be scalar arguments or elements of a float array type 3985 // passed directly. The latter are used to implement ELFv2 homogenous 3986 // float aggregates. 3987 if (FPR_idx != Num_FPR_Regs) { 3988 unsigned VReg; 3989 3990 if (ObjectVT == MVT::f32) 3991 VReg = MF.addLiveIn(FPR[FPR_idx], 3992 Subtarget.hasP8Vector() 3993 ? &PPC::VSSRCRegClass 3994 : &PPC::F4RCRegClass); 3995 else 3996 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX() 3997 ? &PPC::VSFRCRegClass 3998 : &PPC::F8RCRegClass); 3999 4000 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 4001 ++FPR_idx; 4002 } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) { 4003 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8 4004 // once we support fp <-> gpr moves. 4005 4006 // This can only ever happen in the presence of f32 array types, 4007 // since otherwise we never run out of FPRs before running out 4008 // of GPRs. 4009 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 4010 FuncInfo->addLiveInAttr(VReg, Flags); 4011 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 4012 4013 if (ObjectVT == MVT::f32) { 4014 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0)) 4015 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal, 4016 DAG.getConstant(32, dl, MVT::i32)); 4017 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal); 4018 } 4019 4020 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal); 4021 } else { 4022 if (CallConv == CallingConv::Fast) 4023 ComputeArgOffset(); 4024 4025 needsLoad = true; 4026 } 4027 4028 // When passing an array of floats, the array occupies consecutive 4029 // space in the argument area; only round up to the next doubleword 4030 // at the end of the array. Otherwise, each float takes 8 bytes. 4031 if (CallConv != CallingConv::Fast || needsLoad) { 4032 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize; 4033 ArgOffset += ArgSize; 4034 if (Flags.isInConsecutiveRegsLast()) 4035 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 4036 } 4037 break; 4038 case MVT::v4f32: 4039 case MVT::v4i32: 4040 case MVT::v8i16: 4041 case MVT::v16i8: 4042 case MVT::v2f64: 4043 case MVT::v2i64: 4044 case MVT::v1i128: 4045 case MVT::f128: 4046 if (!Subtarget.hasQPX()) { 4047 // These can be scalar arguments or elements of a vector array type 4048 // passed directly. The latter are used to implement ELFv2 homogenous 4049 // vector aggregates. 4050 if (VR_idx != Num_VR_Regs) { 4051 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass); 4052 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 4053 ++VR_idx; 4054 } else { 4055 if (CallConv == CallingConv::Fast) 4056 ComputeArgOffset(); 4057 needsLoad = true; 4058 } 4059 if (CallConv != CallingConv::Fast || needsLoad) 4060 ArgOffset += 16; 4061 break; 4062 } // not QPX 4063 4064 assert(ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 && 4065 "Invalid QPX parameter type"); 4066 LLVM_FALLTHROUGH; 4067 4068 case MVT::v4f64: 4069 case MVT::v4i1: 4070 // QPX vectors are treated like their scalar floating-point subregisters 4071 // (except that they're larger). 4072 unsigned Sz = ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 ? 16 : 32; 4073 if (QFPR_idx != Num_QFPR_Regs) { 4074 const TargetRegisterClass *RC; 4075 switch (ObjectVT.getSimpleVT().SimpleTy) { 4076 case MVT::v4f64: RC = &PPC::QFRCRegClass; break; 4077 case MVT::v4f32: RC = &PPC::QSRCRegClass; break; 4078 default: RC = &PPC::QBRCRegClass; break; 4079 } 4080 4081 unsigned VReg = MF.addLiveIn(QFPR[QFPR_idx], RC); 4082 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 4083 ++QFPR_idx; 4084 } else { 4085 if (CallConv == CallingConv::Fast) 4086 ComputeArgOffset(); 4087 needsLoad = true; 4088 } 4089 if (CallConv != CallingConv::Fast || needsLoad) 4090 ArgOffset += Sz; 4091 break; 4092 } 4093 4094 // We need to load the argument to a virtual register if we determined 4095 // above that we ran out of physical registers of the appropriate type. 4096 if (needsLoad) { 4097 if (ObjSize < ArgSize && !isLittleEndian) 4098 CurArgOffset += ArgSize - ObjSize; 4099 int FI = MFI.CreateFixedObject(ObjSize, CurArgOffset, isImmutable); 4100 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 4101 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo()); 4102 } 4103 4104 InVals.push_back(ArgVal); 4105 } 4106 4107 // Area that is at least reserved in the caller of this function. 4108 unsigned MinReservedArea; 4109 if (HasParameterArea) 4110 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize); 4111 else 4112 MinReservedArea = LinkageSize; 4113 4114 // Set the size that is at least reserved in caller of this function. Tail 4115 // call optimized functions' reserved stack space needs to be aligned so that 4116 // taking the difference between two stack areas will result in an aligned 4117 // stack. 4118 MinReservedArea = 4119 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea); 4120 FuncInfo->setMinReservedArea(MinReservedArea); 4121 4122 // If the function takes variable number of arguments, make a frame index for 4123 // the start of the first vararg value... for expansion of llvm.va_start. 4124 if (isVarArg) { 4125 int Depth = ArgOffset; 4126 4127 FuncInfo->setVarArgsFrameIndex( 4128 MFI.CreateFixedObject(PtrByteSize, Depth, true)); 4129 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 4130 4131 // If this function is vararg, store any remaining integer argument regs 4132 // to their spots on the stack so that they may be loaded by dereferencing 4133 // the result of va_next. 4134 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 4135 GPR_idx < Num_GPR_Regs; ++GPR_idx) { 4136 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 4137 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 4138 SDValue Store = 4139 DAG.getStore(Val.getValue(1), dl, Val, FIN, MachinePointerInfo()); 4140 MemOps.push_back(Store); 4141 // Increment the address by four for the next argument to store 4142 SDValue PtrOff = DAG.getConstant(PtrByteSize, dl, PtrVT); 4143 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 4144 } 4145 } 4146 4147 if (!MemOps.empty()) 4148 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 4149 4150 return Chain; 4151 } 4152 4153 SDValue PPCTargetLowering::LowerFormalArguments_Darwin( 4154 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 4155 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 4156 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 4157 // TODO: add description of PPC stack frame format, or at least some docs. 4158 // 4159 MachineFunction &MF = DAG.getMachineFunction(); 4160 MachineFrameInfo &MFI = MF.getFrameInfo(); 4161 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 4162 4163 EVT PtrVT = getPointerTy(MF.getDataLayout()); 4164 bool isPPC64 = PtrVT == MVT::i64; 4165 // Potential tail calls could cause overwriting of argument stack slots. 4166 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 4167 (CallConv == CallingConv::Fast)); 4168 unsigned PtrByteSize = isPPC64 ? 8 : 4; 4169 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 4170 unsigned ArgOffset = LinkageSize; 4171 // Area that is at least reserved in caller of this function. 4172 unsigned MinReservedArea = ArgOffset; 4173 4174 static const MCPhysReg GPR_32[] = { // 32-bit registers. 4175 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 4176 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 4177 }; 4178 static const MCPhysReg GPR_64[] = { // 64-bit registers. 4179 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 4180 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 4181 }; 4182 static const MCPhysReg VR[] = { 4183 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 4184 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 4185 }; 4186 4187 const unsigned Num_GPR_Regs = array_lengthof(GPR_32); 4188 const unsigned Num_FPR_Regs = useSoftFloat() ? 0 : 13; 4189 const unsigned Num_VR_Regs = array_lengthof( VR); 4190 4191 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 4192 4193 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32; 4194 4195 // In 32-bit non-varargs functions, the stack space for vectors is after the 4196 // stack space for non-vectors. We do not use this space unless we have 4197 // too many vectors to fit in registers, something that only occurs in 4198 // constructed examples:), but we have to walk the arglist to figure 4199 // that out...for the pathological case, compute VecArgOffset as the 4200 // start of the vector parameter area. Computing VecArgOffset is the 4201 // entire point of the following loop. 4202 unsigned VecArgOffset = ArgOffset; 4203 if (!isVarArg && !isPPC64) { 4204 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; 4205 ++ArgNo) { 4206 EVT ObjectVT = Ins[ArgNo].VT; 4207 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 4208 4209 if (Flags.isByVal()) { 4210 // ObjSize is the true size, ArgSize rounded up to multiple of regs. 4211 unsigned ObjSize = Flags.getByValSize(); 4212 unsigned ArgSize = 4213 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 4214 VecArgOffset += ArgSize; 4215 continue; 4216 } 4217 4218 switch(ObjectVT.getSimpleVT().SimpleTy) { 4219 default: llvm_unreachable("Unhandled argument type!"); 4220 case MVT::i1: 4221 case MVT::i32: 4222 case MVT::f32: 4223 VecArgOffset += 4; 4224 break; 4225 case MVT::i64: // PPC64 4226 case MVT::f64: 4227 // FIXME: We are guaranteed to be !isPPC64 at this point. 4228 // Does MVT::i64 apply? 4229 VecArgOffset += 8; 4230 break; 4231 case MVT::v4f32: 4232 case MVT::v4i32: 4233 case MVT::v8i16: 4234 case MVT::v16i8: 4235 // Nothing to do, we're only looking at Nonvector args here. 4236 break; 4237 } 4238 } 4239 } 4240 // We've found where the vector parameter area in memory is. Skip the 4241 // first 12 parameters; these don't use that memory. 4242 VecArgOffset = ((VecArgOffset+15)/16)*16; 4243 VecArgOffset += 12*16; 4244 4245 // Add DAG nodes to load the arguments or copy them out of registers. On 4246 // entry to a function on PPC, the arguments start after the linkage area, 4247 // although the first ones are often in registers. 4248 4249 SmallVector<SDValue, 8> MemOps; 4250 unsigned nAltivecParamsAtEnd = 0; 4251 Function::const_arg_iterator FuncArg = MF.getFunction().arg_begin(); 4252 unsigned CurArgIdx = 0; 4253 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) { 4254 SDValue ArgVal; 4255 bool needsLoad = false; 4256 EVT ObjectVT = Ins[ArgNo].VT; 4257 unsigned ObjSize = ObjectVT.getSizeInBits()/8; 4258 unsigned ArgSize = ObjSize; 4259 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 4260 if (Ins[ArgNo].isOrigArg()) { 4261 std::advance(FuncArg, Ins[ArgNo].getOrigArgIndex() - CurArgIdx); 4262 CurArgIdx = Ins[ArgNo].getOrigArgIndex(); 4263 } 4264 unsigned CurArgOffset = ArgOffset; 4265 4266 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary. 4267 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 || 4268 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) { 4269 if (isVarArg || isPPC64) { 4270 MinReservedArea = ((MinReservedArea+15)/16)*16; 4271 MinReservedArea += CalculateStackSlotSize(ObjectVT, 4272 Flags, 4273 PtrByteSize); 4274 } else nAltivecParamsAtEnd++; 4275 } else 4276 // Calculate min reserved area. 4277 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT, 4278 Flags, 4279 PtrByteSize); 4280 4281 // FIXME the codegen can be much improved in some cases. 4282 // We do not have to keep everything in memory. 4283 if (Flags.isByVal()) { 4284 assert(Ins[ArgNo].isOrigArg() && "Byval arguments cannot be implicit"); 4285 4286 // ObjSize is the true size, ArgSize rounded up to multiple of registers. 4287 ObjSize = Flags.getByValSize(); 4288 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 4289 // Objects of size 1 and 2 are right justified, everything else is 4290 // left justified. This means the memory address is adjusted forwards. 4291 if (ObjSize==1 || ObjSize==2) { 4292 CurArgOffset = CurArgOffset + (4 - ObjSize); 4293 } 4294 // The value of the object is its address. 4295 int FI = MFI.CreateFixedObject(ObjSize, CurArgOffset, false, true); 4296 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 4297 InVals.push_back(FIN); 4298 if (ObjSize==1 || ObjSize==2) { 4299 if (GPR_idx != Num_GPR_Regs) { 4300 unsigned VReg; 4301 if (isPPC64) 4302 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 4303 else 4304 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 4305 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 4306 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16; 4307 SDValue Store = 4308 DAG.getTruncStore(Val.getValue(1), dl, Val, FIN, 4309 MachinePointerInfo(&*FuncArg), ObjType); 4310 MemOps.push_back(Store); 4311 ++GPR_idx; 4312 } 4313 4314 ArgOffset += PtrByteSize; 4315 4316 continue; 4317 } 4318 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) { 4319 // Store whatever pieces of the object are in registers 4320 // to memory. ArgOffset will be the address of the beginning 4321 // of the object. 4322 if (GPR_idx != Num_GPR_Regs) { 4323 unsigned VReg; 4324 if (isPPC64) 4325 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 4326 else 4327 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 4328 int FI = MFI.CreateFixedObject(PtrByteSize, ArgOffset, true); 4329 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 4330 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 4331 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 4332 MachinePointerInfo(&*FuncArg, j)); 4333 MemOps.push_back(Store); 4334 ++GPR_idx; 4335 ArgOffset += PtrByteSize; 4336 } else { 4337 ArgOffset += ArgSize - (ArgOffset-CurArgOffset); 4338 break; 4339 } 4340 } 4341 continue; 4342 } 4343 4344 switch (ObjectVT.getSimpleVT().SimpleTy) { 4345 default: llvm_unreachable("Unhandled argument type!"); 4346 case MVT::i1: 4347 case MVT::i32: 4348 if (!isPPC64) { 4349 if (GPR_idx != Num_GPR_Regs) { 4350 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 4351 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32); 4352 4353 if (ObjectVT == MVT::i1) 4354 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal); 4355 4356 ++GPR_idx; 4357 } else { 4358 needsLoad = true; 4359 ArgSize = PtrByteSize; 4360 } 4361 // All int arguments reserve stack space in the Darwin ABI. 4362 ArgOffset += PtrByteSize; 4363 break; 4364 } 4365 LLVM_FALLTHROUGH; 4366 case MVT::i64: // PPC64 4367 if (GPR_idx != Num_GPR_Regs) { 4368 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 4369 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 4370 4371 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1) 4372 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 4373 // value to MVT::i64 and then truncate to the correct register size. 4374 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl); 4375 4376 ++GPR_idx; 4377 } else { 4378 needsLoad = true; 4379 ArgSize = PtrByteSize; 4380 } 4381 // All int arguments reserve stack space in the Darwin ABI. 4382 ArgOffset += 8; 4383 break; 4384 4385 case MVT::f32: 4386 case MVT::f64: 4387 // Every 4 bytes of argument space consumes one of the GPRs available for 4388 // argument passing. 4389 if (GPR_idx != Num_GPR_Regs) { 4390 ++GPR_idx; 4391 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64) 4392 ++GPR_idx; 4393 } 4394 if (FPR_idx != Num_FPR_Regs) { 4395 unsigned VReg; 4396 4397 if (ObjectVT == MVT::f32) 4398 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass); 4399 else 4400 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass); 4401 4402 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 4403 ++FPR_idx; 4404 } else { 4405 needsLoad = true; 4406 } 4407 4408 // All FP arguments reserve stack space in the Darwin ABI. 4409 ArgOffset += isPPC64 ? 8 : ObjSize; 4410 break; 4411 case MVT::v4f32: 4412 case MVT::v4i32: 4413 case MVT::v8i16: 4414 case MVT::v16i8: 4415 // Note that vector arguments in registers don't reserve stack space, 4416 // except in varargs functions. 4417 if (VR_idx != Num_VR_Regs) { 4418 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass); 4419 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 4420 if (isVarArg) { 4421 while ((ArgOffset % 16) != 0) { 4422 ArgOffset += PtrByteSize; 4423 if (GPR_idx != Num_GPR_Regs) 4424 GPR_idx++; 4425 } 4426 ArgOffset += 16; 4427 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64? 4428 } 4429 ++VR_idx; 4430 } else { 4431 if (!isVarArg && !isPPC64) { 4432 // Vectors go after all the nonvectors. 4433 CurArgOffset = VecArgOffset; 4434 VecArgOffset += 16; 4435 } else { 4436 // Vectors are aligned. 4437 ArgOffset = ((ArgOffset+15)/16)*16; 4438 CurArgOffset = ArgOffset; 4439 ArgOffset += 16; 4440 } 4441 needsLoad = true; 4442 } 4443 break; 4444 } 4445 4446 // We need to load the argument to a virtual register if we determined above 4447 // that we ran out of physical registers of the appropriate type. 4448 if (needsLoad) { 4449 int FI = MFI.CreateFixedObject(ObjSize, 4450 CurArgOffset + (ArgSize - ObjSize), 4451 isImmutable); 4452 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 4453 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo()); 4454 } 4455 4456 InVals.push_back(ArgVal); 4457 } 4458 4459 // Allow for Altivec parameters at the end, if needed. 4460 if (nAltivecParamsAtEnd) { 4461 MinReservedArea = ((MinReservedArea+15)/16)*16; 4462 MinReservedArea += 16*nAltivecParamsAtEnd; 4463 } 4464 4465 // Area that is at least reserved in the caller of this function. 4466 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize); 4467 4468 // Set the size that is at least reserved in caller of this function. Tail 4469 // call optimized functions' reserved stack space needs to be aligned so that 4470 // taking the difference between two stack areas will result in an aligned 4471 // stack. 4472 MinReservedArea = 4473 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea); 4474 FuncInfo->setMinReservedArea(MinReservedArea); 4475 4476 // If the function takes variable number of arguments, make a frame index for 4477 // the start of the first vararg value... for expansion of llvm.va_start. 4478 if (isVarArg) { 4479 int Depth = ArgOffset; 4480 4481 FuncInfo->setVarArgsFrameIndex( 4482 MFI.CreateFixedObject(PtrVT.getSizeInBits()/8, 4483 Depth, true)); 4484 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 4485 4486 // If this function is vararg, store any remaining integer argument regs 4487 // to their spots on the stack so that they may be loaded by dereferencing 4488 // the result of va_next. 4489 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) { 4490 unsigned VReg; 4491 4492 if (isPPC64) 4493 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 4494 else 4495 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 4496 4497 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 4498 SDValue Store = 4499 DAG.getStore(Val.getValue(1), dl, Val, FIN, MachinePointerInfo()); 4500 MemOps.push_back(Store); 4501 // Increment the address by four for the next argument to store 4502 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, dl, PtrVT); 4503 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 4504 } 4505 } 4506 4507 if (!MemOps.empty()) 4508 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 4509 4510 return Chain; 4511 } 4512 4513 /// CalculateTailCallSPDiff - Get the amount the stack pointer has to be 4514 /// adjusted to accommodate the arguments for the tailcall. 4515 static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall, 4516 unsigned ParamSize) { 4517 4518 if (!isTailCall) return 0; 4519 4520 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>(); 4521 unsigned CallerMinReservedArea = FI->getMinReservedArea(); 4522 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize; 4523 // Remember only if the new adjustment is bigger. 4524 if (SPDiff < FI->getTailCallSPDelta()) 4525 FI->setTailCallSPDelta(SPDiff); 4526 4527 return SPDiff; 4528 } 4529 4530 static bool isFunctionGlobalAddress(SDValue Callee); 4531 4532 static bool 4533 callsShareTOCBase(const Function *Caller, SDValue Callee, 4534 const TargetMachine &TM) { 4535 // Callee is either a GlobalAddress or an ExternalSymbol. ExternalSymbols 4536 // don't have enough information to determine if the caller and calle share 4537 // the same TOC base, so we have to pessimistically assume they don't for 4538 // correctness. 4539 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee); 4540 if (!G) 4541 return false; 4542 4543 const GlobalValue *GV = G->getGlobal(); 4544 // The medium and large code models are expected to provide a sufficiently 4545 // large TOC to provide all data addressing needs of a module with a 4546 // single TOC. Since each module will be addressed with a single TOC then we 4547 // only need to check that caller and callee don't cross dso boundaries. 4548 if (CodeModel::Medium == TM.getCodeModel() || 4549 CodeModel::Large == TM.getCodeModel()) 4550 return TM.shouldAssumeDSOLocal(*Caller->getParent(), GV); 4551 4552 // Otherwise we need to ensure callee and caller are in the same section, 4553 // since the linker may allocate multiple TOCs, and we don't know which 4554 // sections will belong to the same TOC base. 4555 4556 if (!GV->isStrongDefinitionForLinker()) 4557 return false; 4558 4559 // Any explicitly-specified sections and section prefixes must also match. 4560 // Also, if we're using -ffunction-sections, then each function is always in 4561 // a different section (the same is true for COMDAT functions). 4562 if (TM.getFunctionSections() || GV->hasComdat() || Caller->hasComdat() || 4563 GV->getSection() != Caller->getSection()) 4564 return false; 4565 if (const auto *F = dyn_cast<Function>(GV)) { 4566 if (F->getSectionPrefix() != Caller->getSectionPrefix()) 4567 return false; 4568 } 4569 4570 // If the callee might be interposed, then we can't assume the ultimate call 4571 // target will be in the same section. Even in cases where we can assume that 4572 // interposition won't happen, in any case where the linker might insert a 4573 // stub to allow for interposition, we must generate code as though 4574 // interposition might occur. To understand why this matters, consider a 4575 // situation where: a -> b -> c where the arrows indicate calls. b and c are 4576 // in the same section, but a is in a different module (i.e. has a different 4577 // TOC base pointer). If the linker allows for interposition between b and c, 4578 // then it will generate a stub for the call edge between b and c which will 4579 // save the TOC pointer into the designated stack slot allocated by b. If we 4580 // return true here, and therefore allow a tail call between b and c, that 4581 // stack slot won't exist and the b -> c stub will end up saving b'c TOC base 4582 // pointer into the stack slot allocated by a (where the a -> b stub saved 4583 // a's TOC base pointer). If we're not considering a tail call, but rather, 4584 // whether a nop is needed after the call instruction in b, because the linker 4585 // will insert a stub, it might complain about a missing nop if we omit it 4586 // (although many don't complain in this case). 4587 if (!TM.shouldAssumeDSOLocal(*Caller->getParent(), GV)) 4588 return false; 4589 4590 return true; 4591 } 4592 4593 static bool 4594 needStackSlotPassParameters(const PPCSubtarget &Subtarget, 4595 const SmallVectorImpl<ISD::OutputArg> &Outs) { 4596 assert(Subtarget.is64BitELFABI()); 4597 4598 const unsigned PtrByteSize = 8; 4599 const unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 4600 4601 static const MCPhysReg GPR[] = { 4602 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 4603 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 4604 }; 4605 static const MCPhysReg VR[] = { 4606 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 4607 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 4608 }; 4609 4610 const unsigned NumGPRs = array_lengthof(GPR); 4611 const unsigned NumFPRs = 13; 4612 const unsigned NumVRs = array_lengthof(VR); 4613 const unsigned ParamAreaSize = NumGPRs * PtrByteSize; 4614 4615 unsigned NumBytes = LinkageSize; 4616 unsigned AvailableFPRs = NumFPRs; 4617 unsigned AvailableVRs = NumVRs; 4618 4619 for (const ISD::OutputArg& Param : Outs) { 4620 if (Param.Flags.isNest()) continue; 4621 4622 if (CalculateStackSlotUsed(Param.VT, Param.ArgVT, Param.Flags, 4623 PtrByteSize, LinkageSize, ParamAreaSize, 4624 NumBytes, AvailableFPRs, AvailableVRs, 4625 Subtarget.hasQPX())) 4626 return true; 4627 } 4628 return false; 4629 } 4630 4631 static bool 4632 hasSameArgumentList(const Function *CallerFn, ImmutableCallSite CS) { 4633 if (CS.arg_size() != CallerFn->arg_size()) 4634 return false; 4635 4636 ImmutableCallSite::arg_iterator CalleeArgIter = CS.arg_begin(); 4637 ImmutableCallSite::arg_iterator CalleeArgEnd = CS.arg_end(); 4638 Function::const_arg_iterator CallerArgIter = CallerFn->arg_begin(); 4639 4640 for (; CalleeArgIter != CalleeArgEnd; ++CalleeArgIter, ++CallerArgIter) { 4641 const Value* CalleeArg = *CalleeArgIter; 4642 const Value* CallerArg = &(*CallerArgIter); 4643 if (CalleeArg == CallerArg) 4644 continue; 4645 4646 // e.g. @caller([4 x i64] %a, [4 x i64] %b) { 4647 // tail call @callee([4 x i64] undef, [4 x i64] %b) 4648 // } 4649 // 1st argument of callee is undef and has the same type as caller. 4650 if (CalleeArg->getType() == CallerArg->getType() && 4651 isa<UndefValue>(CalleeArg)) 4652 continue; 4653 4654 return false; 4655 } 4656 4657 return true; 4658 } 4659 4660 // Returns true if TCO is possible between the callers and callees 4661 // calling conventions. 4662 static bool 4663 areCallingConvEligibleForTCO_64SVR4(CallingConv::ID CallerCC, 4664 CallingConv::ID CalleeCC) { 4665 // Tail calls are possible with fastcc and ccc. 4666 auto isTailCallableCC = [] (CallingConv::ID CC){ 4667 return CC == CallingConv::C || CC == CallingConv::Fast; 4668 }; 4669 if (!isTailCallableCC(CallerCC) || !isTailCallableCC(CalleeCC)) 4670 return false; 4671 4672 // We can safely tail call both fastcc and ccc callees from a c calling 4673 // convention caller. If the caller is fastcc, we may have less stack space 4674 // than a non-fastcc caller with the same signature so disable tail-calls in 4675 // that case. 4676 return CallerCC == CallingConv::C || CallerCC == CalleeCC; 4677 } 4678 4679 bool 4680 PPCTargetLowering::IsEligibleForTailCallOptimization_64SVR4( 4681 SDValue Callee, 4682 CallingConv::ID CalleeCC, 4683 ImmutableCallSite CS, 4684 bool isVarArg, 4685 const SmallVectorImpl<ISD::OutputArg> &Outs, 4686 const SmallVectorImpl<ISD::InputArg> &Ins, 4687 SelectionDAG& DAG) const { 4688 bool TailCallOpt = getTargetMachine().Options.GuaranteedTailCallOpt; 4689 4690 if (DisableSCO && !TailCallOpt) return false; 4691 4692 // Variadic argument functions are not supported. 4693 if (isVarArg) return false; 4694 4695 auto &Caller = DAG.getMachineFunction().getFunction(); 4696 // Check that the calling conventions are compatible for tco. 4697 if (!areCallingConvEligibleForTCO_64SVR4(Caller.getCallingConv(), CalleeCC)) 4698 return false; 4699 4700 // Caller contains any byval parameter is not supported. 4701 if (any_of(Ins, [](const ISD::InputArg &IA) { return IA.Flags.isByVal(); })) 4702 return false; 4703 4704 // Callee contains any byval parameter is not supported, too. 4705 // Note: This is a quick work around, because in some cases, e.g. 4706 // caller's stack size > callee's stack size, we are still able to apply 4707 // sibling call optimization. For example, gcc is able to do SCO for caller1 4708 // in the following example, but not for caller2. 4709 // struct test { 4710 // long int a; 4711 // char ary[56]; 4712 // } gTest; 4713 // __attribute__((noinline)) int callee(struct test v, struct test *b) { 4714 // b->a = v.a; 4715 // return 0; 4716 // } 4717 // void caller1(struct test a, struct test c, struct test *b) { 4718 // callee(gTest, b); } 4719 // void caller2(struct test *b) { callee(gTest, b); } 4720 if (any_of(Outs, [](const ISD::OutputArg& OA) { return OA.Flags.isByVal(); })) 4721 return false; 4722 4723 // If callee and caller use different calling conventions, we cannot pass 4724 // parameters on stack since offsets for the parameter area may be different. 4725 if (Caller.getCallingConv() != CalleeCC && 4726 needStackSlotPassParameters(Subtarget, Outs)) 4727 return false; 4728 4729 // No TCO/SCO on indirect call because Caller have to restore its TOC 4730 if (!isFunctionGlobalAddress(Callee) && 4731 !isa<ExternalSymbolSDNode>(Callee)) 4732 return false; 4733 4734 // If the caller and callee potentially have different TOC bases then we 4735 // cannot tail call since we need to restore the TOC pointer after the call. 4736 // ref: https://bugzilla.mozilla.org/show_bug.cgi?id=973977 4737 if (!callsShareTOCBase(&Caller, Callee, getTargetMachine())) 4738 return false; 4739 4740 // TCO allows altering callee ABI, so we don't have to check further. 4741 if (CalleeCC == CallingConv::Fast && TailCallOpt) 4742 return true; 4743 4744 if (DisableSCO) return false; 4745 4746 // If callee use the same argument list that caller is using, then we can 4747 // apply SCO on this case. If it is not, then we need to check if callee needs 4748 // stack for passing arguments. 4749 if (!hasSameArgumentList(&Caller, CS) && 4750 needStackSlotPassParameters(Subtarget, Outs)) { 4751 return false; 4752 } 4753 4754 return true; 4755 } 4756 4757 /// IsEligibleForTailCallOptimization - Check whether the call is eligible 4758 /// for tail call optimization. Targets which want to do tail call 4759 /// optimization should implement this function. 4760 bool 4761 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, 4762 CallingConv::ID CalleeCC, 4763 bool isVarArg, 4764 const SmallVectorImpl<ISD::InputArg> &Ins, 4765 SelectionDAG& DAG) const { 4766 if (!getTargetMachine().Options.GuaranteedTailCallOpt) 4767 return false; 4768 4769 // Variable argument functions are not supported. 4770 if (isVarArg) 4771 return false; 4772 4773 MachineFunction &MF = DAG.getMachineFunction(); 4774 CallingConv::ID CallerCC = MF.getFunction().getCallingConv(); 4775 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) { 4776 // Functions containing by val parameters are not supported. 4777 for (unsigned i = 0; i != Ins.size(); i++) { 4778 ISD::ArgFlagsTy Flags = Ins[i].Flags; 4779 if (Flags.isByVal()) return false; 4780 } 4781 4782 // Non-PIC/GOT tail calls are supported. 4783 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) 4784 return true; 4785 4786 // At the moment we can only do local tail calls (in same module, hidden 4787 // or protected) if we are generating PIC. 4788 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) 4789 return G->getGlobal()->hasHiddenVisibility() 4790 || G->getGlobal()->hasProtectedVisibility(); 4791 } 4792 4793 return false; 4794 } 4795 4796 /// isCallCompatibleAddress - Return the immediate to use if the specified 4797 /// 32-bit value is representable in the immediate field of a BxA instruction. 4798 static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) { 4799 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); 4800 if (!C) return nullptr; 4801 4802 int Addr = C->getZExtValue(); 4803 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero. 4804 SignExtend32<26>(Addr) != Addr) 4805 return nullptr; // Top 6 bits have to be sext of immediate. 4806 4807 return DAG 4808 .getConstant( 4809 (int)C->getZExtValue() >> 2, SDLoc(Op), 4810 DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout())) 4811 .getNode(); 4812 } 4813 4814 namespace { 4815 4816 struct TailCallArgumentInfo { 4817 SDValue Arg; 4818 SDValue FrameIdxOp; 4819 int FrameIdx = 0; 4820 4821 TailCallArgumentInfo() = default; 4822 }; 4823 4824 } // end anonymous namespace 4825 4826 /// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot. 4827 static void StoreTailCallArgumentsToStackSlot( 4828 SelectionDAG &DAG, SDValue Chain, 4829 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs, 4830 SmallVectorImpl<SDValue> &MemOpChains, const SDLoc &dl) { 4831 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) { 4832 SDValue Arg = TailCallArgs[i].Arg; 4833 SDValue FIN = TailCallArgs[i].FrameIdxOp; 4834 int FI = TailCallArgs[i].FrameIdx; 4835 // Store relative to framepointer. 4836 MemOpChains.push_back(DAG.getStore( 4837 Chain, dl, Arg, FIN, 4838 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI))); 4839 } 4840 } 4841 4842 /// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to 4843 /// the appropriate stack slot for the tail call optimized function call. 4844 static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG, SDValue Chain, 4845 SDValue OldRetAddr, SDValue OldFP, 4846 int SPDiff, const SDLoc &dl) { 4847 if (SPDiff) { 4848 // Calculate the new stack slot for the return address. 4849 MachineFunction &MF = DAG.getMachineFunction(); 4850 const PPCSubtarget &Subtarget = MF.getSubtarget<PPCSubtarget>(); 4851 const PPCFrameLowering *FL = Subtarget.getFrameLowering(); 4852 bool isPPC64 = Subtarget.isPPC64(); 4853 int SlotSize = isPPC64 ? 8 : 4; 4854 int NewRetAddrLoc = SPDiff + FL->getReturnSaveOffset(); 4855 int NewRetAddr = MF.getFrameInfo().CreateFixedObject(SlotSize, 4856 NewRetAddrLoc, true); 4857 EVT VT = isPPC64 ? MVT::i64 : MVT::i32; 4858 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT); 4859 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx, 4860 MachinePointerInfo::getFixedStack(MF, NewRetAddr)); 4861 4862 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack 4863 // slot as the FP is never overwritten. 4864 if (Subtarget.isDarwinABI()) { 4865 int NewFPLoc = SPDiff + FL->getFramePointerSaveOffset(); 4866 int NewFPIdx = MF.getFrameInfo().CreateFixedObject(SlotSize, NewFPLoc, 4867 true); 4868 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT); 4869 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx, 4870 MachinePointerInfo::getFixedStack( 4871 DAG.getMachineFunction(), NewFPIdx)); 4872 } 4873 } 4874 return Chain; 4875 } 4876 4877 /// CalculateTailCallArgDest - Remember Argument for later processing. Calculate 4878 /// the position of the argument. 4879 static void 4880 CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64, 4881 SDValue Arg, int SPDiff, unsigned ArgOffset, 4882 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) { 4883 int Offset = ArgOffset + SPDiff; 4884 uint32_t OpSize = (Arg.getValueSizeInBits() + 7) / 8; 4885 int FI = MF.getFrameInfo().CreateFixedObject(OpSize, Offset, true); 4886 EVT VT = isPPC64 ? MVT::i64 : MVT::i32; 4887 SDValue FIN = DAG.getFrameIndex(FI, VT); 4888 TailCallArgumentInfo Info; 4889 Info.Arg = Arg; 4890 Info.FrameIdxOp = FIN; 4891 Info.FrameIdx = FI; 4892 TailCallArguments.push_back(Info); 4893 } 4894 4895 /// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address 4896 /// stack slot. Returns the chain as result and the loaded frame pointers in 4897 /// LROpOut/FPOpout. Used when tail calling. 4898 SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr( 4899 SelectionDAG &DAG, int SPDiff, SDValue Chain, SDValue &LROpOut, 4900 SDValue &FPOpOut, const SDLoc &dl) const { 4901 if (SPDiff) { 4902 // Load the LR and FP stack slot for later adjusting. 4903 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32; 4904 LROpOut = getReturnAddrFrameIndex(DAG); 4905 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo()); 4906 Chain = SDValue(LROpOut.getNode(), 1); 4907 4908 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack 4909 // slot as the FP is never overwritten. 4910 if (Subtarget.isDarwinABI()) { 4911 FPOpOut = getFramePointerFrameIndex(DAG); 4912 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo()); 4913 Chain = SDValue(FPOpOut.getNode(), 1); 4914 } 4915 } 4916 return Chain; 4917 } 4918 4919 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified 4920 /// by "Src" to address "Dst" of size "Size". Alignment information is 4921 /// specified by the specific parameter attribute. The copy will be passed as 4922 /// a byval function parameter. 4923 /// Sometimes what we are copying is the end of a larger object, the part that 4924 /// does not fit in registers. 4925 static SDValue CreateCopyOfByValArgument(SDValue Src, SDValue Dst, 4926 SDValue Chain, ISD::ArgFlagsTy Flags, 4927 SelectionDAG &DAG, const SDLoc &dl) { 4928 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), dl, MVT::i32); 4929 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(), 4930 false, false, false, MachinePointerInfo(), 4931 MachinePointerInfo()); 4932 } 4933 4934 /// LowerMemOpCallTo - Store the argument to the stack or remember it in case of 4935 /// tail calls. 4936 static void LowerMemOpCallTo( 4937 SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, SDValue Arg, 4938 SDValue PtrOff, int SPDiff, unsigned ArgOffset, bool isPPC64, 4939 bool isTailCall, bool isVector, SmallVectorImpl<SDValue> &MemOpChains, 4940 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments, const SDLoc &dl) { 4941 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()); 4942 if (!isTailCall) { 4943 if (isVector) { 4944 SDValue StackPtr; 4945 if (isPPC64) 4946 StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 4947 else 4948 StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 4949 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, 4950 DAG.getConstant(ArgOffset, dl, PtrVT)); 4951 } 4952 MemOpChains.push_back( 4953 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo())); 4954 // Calculate and remember argument location. 4955 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset, 4956 TailCallArguments); 4957 } 4958 4959 static void 4960 PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain, 4961 const SDLoc &dl, int SPDiff, unsigned NumBytes, SDValue LROp, 4962 SDValue FPOp, 4963 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) { 4964 // Emit a sequence of copyto/copyfrom virtual registers for arguments that 4965 // might overwrite each other in case of tail call optimization. 4966 SmallVector<SDValue, 8> MemOpChains2; 4967 // Do not flag preceding copytoreg stuff together with the following stuff. 4968 InFlag = SDValue(); 4969 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments, 4970 MemOpChains2, dl); 4971 if (!MemOpChains2.empty()) 4972 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2); 4973 4974 // Store the return address to the appropriate stack slot. 4975 Chain = EmitTailCallStoreFPAndRetAddr(DAG, Chain, LROp, FPOp, SPDiff, dl); 4976 4977 // Emit callseq_end just before tailcall node. 4978 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true), 4979 DAG.getIntPtrConstant(0, dl, true), InFlag, dl); 4980 InFlag = Chain.getValue(1); 4981 } 4982 4983 // Is this global address that of a function that can be called by name? (as 4984 // opposed to something that must hold a descriptor for an indirect call). 4985 static bool isFunctionGlobalAddress(SDValue Callee) { 4986 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 4987 if (Callee.getOpcode() == ISD::GlobalTLSAddress || 4988 Callee.getOpcode() == ISD::TargetGlobalTLSAddress) 4989 return false; 4990 4991 return G->getGlobal()->getValueType()->isFunctionTy(); 4992 } 4993 4994 return false; 4995 } 4996 4997 SDValue PPCTargetLowering::LowerCallResult( 4998 SDValue Chain, SDValue InFlag, CallingConv::ID CallConv, bool isVarArg, 4999 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 5000 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 5001 SmallVector<CCValAssign, 16> RVLocs; 5002 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 5003 *DAG.getContext()); 5004 5005 CCRetInfo.AnalyzeCallResult( 5006 Ins, (Subtarget.isSVR4ABI() && CallConv == CallingConv::Cold) 5007 ? RetCC_PPC_Cold 5008 : RetCC_PPC); 5009 5010 // Copy all of the result registers out of their specified physreg. 5011 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) { 5012 CCValAssign &VA = RVLocs[i]; 5013 assert(VA.isRegLoc() && "Can only return in registers!"); 5014 5015 SDValue Val; 5016 5017 if (Subtarget.hasSPE() && VA.getLocVT() == MVT::f64) { 5018 SDValue Lo = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 5019 InFlag); 5020 Chain = Lo.getValue(1); 5021 InFlag = Lo.getValue(2); 5022 VA = RVLocs[++i]; // skip ahead to next loc 5023 SDValue Hi = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), MVT::i32, 5024 InFlag); 5025 Chain = Hi.getValue(1); 5026 InFlag = Hi.getValue(2); 5027 if (!Subtarget.isLittleEndian()) 5028 std::swap (Lo, Hi); 5029 Val = DAG.getNode(PPCISD::BUILD_SPE64, dl, MVT::f64, Lo, Hi); 5030 } else { 5031 Val = DAG.getCopyFromReg(Chain, dl, 5032 VA.getLocReg(), VA.getLocVT(), InFlag); 5033 Chain = Val.getValue(1); 5034 InFlag = Val.getValue(2); 5035 } 5036 5037 switch (VA.getLocInfo()) { 5038 default: llvm_unreachable("Unknown loc info!"); 5039 case CCValAssign::Full: break; 5040 case CCValAssign::AExt: 5041 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 5042 break; 5043 case CCValAssign::ZExt: 5044 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val, 5045 DAG.getValueType(VA.getValVT())); 5046 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 5047 break; 5048 case CCValAssign::SExt: 5049 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val, 5050 DAG.getValueType(VA.getValVT())); 5051 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 5052 break; 5053 } 5054 5055 InVals.push_back(Val); 5056 } 5057 5058 return Chain; 5059 } 5060 5061 static bool isIndirectCall(const SDValue &Callee, SelectionDAG &DAG, 5062 const PPCSubtarget &Subtarget, bool isPatchPoint) { 5063 // PatchPoint calls are not indirect. 5064 if (isPatchPoint) 5065 return false; 5066 5067 if (isFunctionGlobalAddress(Callee) || dyn_cast<ExternalSymbolSDNode>(Callee)) 5068 return false; 5069 5070 // Darwin, and 32-bit ELF can use a BLA. The descriptor based ABIs can not 5071 // becuase the immediate function pointer points to a descriptor instead of 5072 // a function entry point. The ELFv2 ABI cannot use a BLA because the function 5073 // pointer immediate points to the global entry point, while the BLA would 5074 // need to jump to the local entry point (see rL211174). 5075 if (!Subtarget.usesFunctionDescriptors() && !Subtarget.isELFv2ABI() && 5076 isBLACompatibleAddress(Callee, DAG)) 5077 return false; 5078 5079 return true; 5080 } 5081 5082 static unsigned getCallOpcode(bool isIndirectCall, bool isPatchPoint, 5083 bool isTailCall, const Function &Caller, 5084 const SDValue &Callee, 5085 const PPCSubtarget &Subtarget, 5086 const TargetMachine &TM) { 5087 if (isTailCall) 5088 return PPCISD::TC_RETURN; 5089 5090 // This is a call through a function pointer. 5091 if (isIndirectCall) { 5092 // AIX and the 64-bit ELF ABIs need to maintain the TOC pointer accross 5093 // indirect calls. The save of the caller's TOC pointer to the stack will be 5094 // inserted into the DAG as part of call lowering. The restore of the TOC 5095 // pointer is modeled by using a pseudo instruction for the call opcode that 5096 // represents the 2 instruction sequence of an indirect branch and link, 5097 // immediately followed by a load of the TOC pointer from the the stack save 5098 // slot into gpr2. 5099 if (Subtarget.isAIXABI() || Subtarget.is64BitELFABI()) 5100 return PPCISD::BCTRL_LOAD_TOC; 5101 5102 // An indirect call that does not need a TOC restore. 5103 return PPCISD::BCTRL; 5104 } 5105 5106 // The ABIs that maintain a TOC pointer accross calls need to have a nop 5107 // immediately following the call instruction if the caller and callee may 5108 // have different TOC bases. At link time if the linker determines the calls 5109 // may not share a TOC base, the call is redirected to a trampoline inserted 5110 // by the linker. The trampoline will (among other things) save the callers 5111 // TOC pointer at an ABI designated offset in the linkage area and the linker 5112 // will rewrite the nop to be a load of the TOC pointer from the linkage area 5113 // into gpr2. 5114 if (Subtarget.isAIXABI() || Subtarget.is64BitELFABI()) 5115 return callsShareTOCBase(&Caller, Callee, TM) ? PPCISD::CALL 5116 : PPCISD::CALL_NOP; 5117 5118 return PPCISD::CALL; 5119 } 5120 static SDValue transformCallee(const SDValue &Callee, SelectionDAG &DAG, 5121 const SDLoc &dl, const PPCSubtarget &Subtarget) { 5122 if (!Subtarget.usesFunctionDescriptors() && !Subtarget.isELFv2ABI()) 5123 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) 5124 return SDValue(Dest, 0); 5125 5126 // Returns true if the callee is local, and false otherwise. 5127 auto isLocalCallee = [&]() { 5128 const GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee); 5129 const Module *Mod = DAG.getMachineFunction().getFunction().getParent(); 5130 const GlobalValue *GV = G ? G->getGlobal() : nullptr; 5131 5132 return DAG.getTarget().shouldAssumeDSOLocal(*Mod, GV) && 5133 !dyn_cast_or_null<GlobalIFunc>(GV); 5134 }; 5135 5136 // The PLT is only used in 32-bit ELF PIC mode. Attempting to use the PLT in 5137 // a static relocation model causes some versions of GNU LD (2.17.50, at 5138 // least) to force BSS-PLT, instead of secure-PLT, even if all objects are 5139 // built with secure-PLT. 5140 bool UsePlt = 5141 Subtarget.is32BitELFABI() && !isLocalCallee() && 5142 Subtarget.getTargetMachine().getRelocationModel() == Reloc::PIC_; 5143 5144 if (isFunctionGlobalAddress(Callee)) { 5145 const GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee); 5146 if (!Subtarget.isAIXABI()) 5147 return DAG.getTargetGlobalAddress(G->getGlobal(), dl, 5148 Callee.getValueType(), 0, 5149 UsePlt ? PPCII::MO_PLT : 0); 5150 5151 // On AIX, direct function calls reference the symbol for the function's 5152 // entry point, which is named by prepending a "." before the function's 5153 // C-linkage name. 5154 auto &Context = DAG.getMachineFunction().getMMI().getContext(); 5155 5156 const GlobalObject *GO = cast<GlobalObject>(G->getGlobal()); 5157 MCSymbolXCOFF *S = cast<MCSymbolXCOFF>( 5158 Context.getOrCreateSymbol(Twine(".") + Twine(GO->getName()))); 5159 5160 if (GO && GO->isDeclaration() && !S->hasContainingCsect()) { 5161 // On AIX, an undefined symbol needs to be associated with a 5162 // MCSectionXCOFF to get the correct storage mapping class. 5163 // In this case, XCOFF::XMC_PR. 5164 const XCOFF::StorageClass SC = 5165 TargetLoweringObjectFileXCOFF::getStorageClassForGlobal(GO); 5166 MCSectionXCOFF *Sec = 5167 Context.getXCOFFSection(S->getName(), XCOFF::XMC_PR, XCOFF::XTY_ER, 5168 SC, SectionKind::getMetadata()); 5169 S->setContainingCsect(Sec); 5170 } 5171 5172 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()); 5173 return DAG.getMCSymbol(S, PtrVT); 5174 } 5175 5176 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) 5177 return DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(), 5178 UsePlt ? PPCII::MO_PLT : 0); 5179 5180 // No transformation needed. 5181 assert(Callee.getNode() && "What no callee?"); 5182 return Callee; 5183 } 5184 5185 static SDValue getOutputChainFromCallSeq(SDValue CallSeqStart) { 5186 assert(CallSeqStart.getOpcode() == ISD::CALLSEQ_START && 5187 "Expected a CALLSEQ_STARTSDNode."); 5188 5189 // The last operand is the chain, except when the node has glue. If the node 5190 // has glue, then the last operand is the glue, and the chain is the second 5191 // last operand. 5192 SDValue LastValue = CallSeqStart.getValue(CallSeqStart->getNumValues() - 1); 5193 if (LastValue.getValueType() != MVT::Glue) 5194 return LastValue; 5195 5196 return CallSeqStart.getValue(CallSeqStart->getNumValues() - 2); 5197 } 5198 5199 // Creates the node that moves a functions address into the count register 5200 // to prepare for an indirect call instruction. 5201 static void prepareIndirectCall(SelectionDAG &DAG, SDValue &Callee, 5202 SDValue &Glue, SDValue &Chain, 5203 const SDLoc &dl) { 5204 SDValue MTCTROps[] = {Chain, Callee, Glue}; 5205 EVT ReturnTypes[] = {MVT::Other, MVT::Glue}; 5206 Chain = DAG.getNode(PPCISD::MTCTR, dl, makeArrayRef(ReturnTypes, 2), 5207 makeArrayRef(MTCTROps, Glue.getNode() ? 3 : 2)); 5208 // The glue is the second value produced. 5209 Glue = Chain.getValue(1); 5210 } 5211 5212 static void prepareDescriptorIndirectCall(SelectionDAG &DAG, SDValue &Callee, 5213 SDValue &Glue, SDValue &Chain, 5214 SDValue CallSeqStart, 5215 ImmutableCallSite CS, const SDLoc &dl, 5216 bool hasNest, 5217 const PPCSubtarget &Subtarget) { 5218 // Function pointers in the 64-bit SVR4 ABI do not point to the function 5219 // entry point, but to the function descriptor (the function entry point 5220 // address is part of the function descriptor though). 5221 // The function descriptor is a three doubleword structure with the 5222 // following fields: function entry point, TOC base address and 5223 // environment pointer. 5224 // Thus for a call through a function pointer, the following actions need 5225 // to be performed: 5226 // 1. Save the TOC of the caller in the TOC save area of its stack 5227 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()). 5228 // 2. Load the address of the function entry point from the function 5229 // descriptor. 5230 // 3. Load the TOC of the callee from the function descriptor into r2. 5231 // 4. Load the environment pointer from the function descriptor into 5232 // r11. 5233 // 5. Branch to the function entry point address. 5234 // 6. On return of the callee, the TOC of the caller needs to be 5235 // restored (this is done in FinishCall()). 5236 // 5237 // The loads are scheduled at the beginning of the call sequence, and the 5238 // register copies are flagged together to ensure that no other 5239 // operations can be scheduled in between. E.g. without flagging the 5240 // copies together, a TOC access in the caller could be scheduled between 5241 // the assignment of the callee TOC and the branch to the callee, which leads 5242 // to incorrect code. 5243 5244 // Start by loading the function address from the descriptor. 5245 SDValue LDChain = getOutputChainFromCallSeq(CallSeqStart); 5246 auto MMOFlags = Subtarget.hasInvariantFunctionDescriptors() 5247 ? (MachineMemOperand::MODereferenceable | 5248 MachineMemOperand::MOInvariant) 5249 : MachineMemOperand::MONone; 5250 5251 MachinePointerInfo MPI(CS ? CS.getCalledValue() : nullptr); 5252 5253 // Registers used in building the DAG. 5254 const MCRegister EnvPtrReg = Subtarget.getEnvironmentPointerRegister(); 5255 const MCRegister TOCReg = Subtarget.getTOCPointerRegister(); 5256 5257 // Offsets of descriptor members. 5258 const unsigned TOCAnchorOffset = Subtarget.descriptorTOCAnchorOffset(); 5259 const unsigned EnvPtrOffset = Subtarget.descriptorEnvironmentPointerOffset(); 5260 5261 const MVT RegVT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32; 5262 const unsigned Alignment = Subtarget.isPPC64() ? 8 : 4; 5263 5264 // One load for the functions entry point address. 5265 SDValue LoadFuncPtr = DAG.getLoad(RegVT, dl, LDChain, Callee, MPI, 5266 Alignment, MMOFlags); 5267 5268 // One for loading the TOC anchor for the module that contains the called 5269 // function. 5270 SDValue TOCOff = DAG.getIntPtrConstant(TOCAnchorOffset, dl); 5271 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, RegVT, Callee, TOCOff); 5272 SDValue TOCPtr = 5273 DAG.getLoad(RegVT, dl, LDChain, AddTOC, 5274 MPI.getWithOffset(TOCAnchorOffset), Alignment, MMOFlags); 5275 5276 // One for loading the environment pointer. 5277 SDValue PtrOff = DAG.getIntPtrConstant(EnvPtrOffset, dl); 5278 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, RegVT, Callee, PtrOff); 5279 SDValue LoadEnvPtr = 5280 DAG.getLoad(RegVT, dl, LDChain, AddPtr, 5281 MPI.getWithOffset(EnvPtrOffset), Alignment, MMOFlags); 5282 5283 5284 // Then copy the newly loaded TOC anchor to the TOC pointer. 5285 SDValue TOCVal = DAG.getCopyToReg(Chain, dl, TOCReg, TOCPtr, Glue); 5286 Chain = TOCVal.getValue(0); 5287 Glue = TOCVal.getValue(1); 5288 5289 // If the function call has an explicit 'nest' parameter, it takes the 5290 // place of the environment pointer. 5291 assert((!hasNest || !Subtarget.isAIXABI()) && 5292 "Nest parameter is not supported on AIX."); 5293 if (!hasNest) { 5294 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, EnvPtrReg, LoadEnvPtr, Glue); 5295 Chain = EnvVal.getValue(0); 5296 Glue = EnvVal.getValue(1); 5297 } 5298 5299 // The rest of the indirect call sequence is the same as the non-descriptor 5300 // DAG. 5301 prepareIndirectCall(DAG, LoadFuncPtr, Glue, Chain, dl); 5302 } 5303 5304 static void 5305 buildCallOperands(SmallVectorImpl<SDValue> &Ops, CallingConv::ID CallConv, 5306 const SDLoc &dl, bool isTailCall, bool isVarArg, 5307 bool isPatchPoint, bool hasNest, SelectionDAG &DAG, 5308 SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass, 5309 SDValue Glue, SDValue Chain, SDValue &Callee, int SPDiff, 5310 const PPCSubtarget &Subtarget, bool isIndirect) { 5311 const bool IsPPC64 = Subtarget.isPPC64(); 5312 // MVT for a general purpose register. 5313 const MVT RegVT = IsPPC64 ? MVT::i64 : MVT::i32; 5314 5315 // First operand is always the chain. 5316 Ops.push_back(Chain); 5317 5318 // If it's a direct call pass the callee as the second operand. 5319 if (!isIndirect) 5320 Ops.push_back(Callee); 5321 else { 5322 assert(!isPatchPoint && "Patch point call are not indirect."); 5323 5324 // For the TOC based ABIs, we have saved the TOC pointer to the linkage area 5325 // on the stack (this would have been done in `LowerCall_64SVR4` or 5326 // `LowerCall_AIX`). The call instruction is a pseudo instruction that 5327 // represents both the indirect branch and a load that restores the TOC 5328 // pointer from the linkage area. The operand for the TOC restore is an add 5329 // of the TOC save offset to the stack pointer. This must be the second 5330 // operand: after the chain input but before any other variadic arguments. 5331 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) { 5332 const MCRegister StackPtrReg = Subtarget.getStackPointerRegister(); 5333 5334 SDValue StackPtr = DAG.getRegister(StackPtrReg, RegVT); 5335 unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset(); 5336 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset, dl); 5337 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, RegVT, StackPtr, TOCOff); 5338 Ops.push_back(AddTOC); 5339 } 5340 5341 // Add the register used for the environment pointer. 5342 if (Subtarget.usesFunctionDescriptors() && !hasNest) 5343 Ops.push_back(DAG.getRegister(Subtarget.getEnvironmentPointerRegister(), 5344 RegVT)); 5345 5346 5347 // Add CTR register as callee so a bctr can be emitted later. 5348 if (isTailCall) 5349 Ops.push_back(DAG.getRegister(IsPPC64 ? PPC::CTR8 : PPC::CTR, RegVT)); 5350 } 5351 5352 // If this is a tail call add stack pointer delta. 5353 if (isTailCall) 5354 Ops.push_back(DAG.getConstant(SPDiff, dl, MVT::i32)); 5355 5356 // Add argument registers to the end of the list so that they are known live 5357 // into the call. 5358 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) 5359 Ops.push_back(DAG.getRegister(RegsToPass[i].first, 5360 RegsToPass[i].second.getValueType())); 5361 5362 // We cannot add R2/X2 as an operand here for PATCHPOINT, because there is 5363 // no way to mark dependencies as implicit here. 5364 // We will add the R2/X2 dependency in EmitInstrWithCustomInserter. 5365 if ((Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) && !isPatchPoint) 5366 Ops.push_back(DAG.getRegister(Subtarget.getTOCPointerRegister(), RegVT)); 5367 5368 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls 5369 if (isVarArg && Subtarget.is32BitELFABI()) 5370 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32)); 5371 5372 // Add a register mask operand representing the call-preserved registers. 5373 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo(); 5374 const uint32_t *Mask = 5375 TRI->getCallPreservedMask(DAG.getMachineFunction(), CallConv); 5376 assert(Mask && "Missing call preserved mask for calling convention"); 5377 Ops.push_back(DAG.getRegisterMask(Mask)); 5378 5379 // If the glue is valid, it is the last operand. 5380 if (Glue.getNode()) 5381 Ops.push_back(Glue); 5382 } 5383 5384 SDValue PPCTargetLowering::FinishCall( 5385 CallingConv::ID CallConv, const SDLoc &dl, bool isTailCall, bool isVarArg, 5386 bool isPatchPoint, bool hasNest, SelectionDAG &DAG, 5387 SmallVector<std::pair<unsigned, SDValue>, 8> &RegsToPass, SDValue Glue, 5388 SDValue Chain, SDValue CallSeqStart, SDValue &Callee, int SPDiff, 5389 unsigned NumBytes, const SmallVectorImpl<ISD::InputArg> &Ins, 5390 SmallVectorImpl<SDValue> &InVals, ImmutableCallSite CS) const { 5391 5392 if (Subtarget.is64BitELFABI() || Subtarget.isAIXABI()) 5393 setUsesTOCBasePtr(DAG); 5394 5395 const bool isIndirect = isIndirectCall(Callee, DAG, Subtarget, isPatchPoint); 5396 unsigned CallOpc = getCallOpcode(isIndirect, isPatchPoint, isTailCall, 5397 DAG.getMachineFunction().getFunction(), 5398 Callee, Subtarget, DAG.getTarget()); 5399 5400 if (!isIndirect) 5401 Callee = transformCallee(Callee, DAG, dl, Subtarget); 5402 else if (Subtarget.usesFunctionDescriptors()) 5403 prepareDescriptorIndirectCall(DAG, Callee, Glue, Chain, CallSeqStart, CS, 5404 dl, hasNest, Subtarget); 5405 else 5406 prepareIndirectCall(DAG, Callee, Glue, Chain, dl); 5407 5408 // Build the operand list for the call instruction. 5409 SmallVector<SDValue, 8> Ops; 5410 buildCallOperands(Ops, CallConv, dl, isTailCall, isVarArg, isPatchPoint, 5411 hasNest, DAG, RegsToPass, Glue, Chain, Callee, SPDiff, 5412 Subtarget, isIndirect); 5413 5414 // Emit tail call. 5415 if (isTailCall) { 5416 assert(((Callee.getOpcode() == ISD::Register && 5417 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) || 5418 Callee.getOpcode() == ISD::TargetExternalSymbol || 5419 Callee.getOpcode() == ISD::TargetGlobalAddress || 5420 isa<ConstantSDNode>(Callee)) && 5421 "Expecting a global address, external symbol, absolute value or " 5422 "register"); 5423 assert(CallOpc == PPCISD::TC_RETURN && 5424 "Unexpected call opcode for a tail call."); 5425 DAG.getMachineFunction().getFrameInfo().setHasTailCall(); 5426 return DAG.getNode(CallOpc, dl, MVT::Other, Ops); 5427 } 5428 5429 std::array<EVT, 2> ReturnTypes = {{MVT::Other, MVT::Glue}}; 5430 Chain = DAG.getNode(CallOpc, dl, ReturnTypes, Ops); 5431 Glue = Chain.getValue(1); 5432 5433 // When performing tail call optimization the callee pops its arguments off 5434 // the stack. Account for this here so these bytes can be pushed back on in 5435 // PPCFrameLowering::eliminateCallFramePseudoInstr. 5436 int BytesCalleePops = (CallConv == CallingConv::Fast && 5437 getTargetMachine().Options.GuaranteedTailCallOpt) 5438 ? NumBytes 5439 : 0; 5440 5441 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, dl, true), 5442 DAG.getIntPtrConstant(BytesCalleePops, dl, true), 5443 Glue, dl); 5444 Glue = Chain.getValue(1); 5445 5446 return LowerCallResult(Chain, Glue, CallConv, isVarArg, Ins, dl, DAG, InVals); 5447 } 5448 5449 SDValue 5450 PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, 5451 SmallVectorImpl<SDValue> &InVals) const { 5452 SelectionDAG &DAG = CLI.DAG; 5453 SDLoc &dl = CLI.DL; 5454 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs; 5455 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals; 5456 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins; 5457 SDValue Chain = CLI.Chain; 5458 SDValue Callee = CLI.Callee; 5459 bool &isTailCall = CLI.IsTailCall; 5460 CallingConv::ID CallConv = CLI.CallConv; 5461 bool isVarArg = CLI.IsVarArg; 5462 bool isPatchPoint = CLI.IsPatchPoint; 5463 ImmutableCallSite CS = CLI.CS; 5464 5465 if (isTailCall) { 5466 if (Subtarget.useLongCalls() && !(CS && CS.isMustTailCall())) 5467 isTailCall = false; 5468 else if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) 5469 isTailCall = 5470 IsEligibleForTailCallOptimization_64SVR4(Callee, CallConv, CS, 5471 isVarArg, Outs, Ins, DAG); 5472 else 5473 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, 5474 Ins, DAG); 5475 if (isTailCall) { 5476 ++NumTailCalls; 5477 if (!getTargetMachine().Options.GuaranteedTailCallOpt) 5478 ++NumSiblingCalls; 5479 5480 assert(isa<GlobalAddressSDNode>(Callee) && 5481 "Callee should be an llvm::Function object."); 5482 LLVM_DEBUG( 5483 const GlobalValue *GV = 5484 cast<GlobalAddressSDNode>(Callee)->getGlobal(); 5485 const unsigned Width = 5486 80 - strlen("TCO caller: ") - strlen(", callee linkage: 0, 0"); 5487 dbgs() << "TCO caller: " 5488 << left_justify(DAG.getMachineFunction().getName(), Width) 5489 << ", callee linkage: " << GV->getVisibility() << ", " 5490 << GV->getLinkage() << "\n"); 5491 } 5492 } 5493 5494 if (!isTailCall && CS && CS.isMustTailCall()) 5495 report_fatal_error("failed to perform tail call elimination on a call " 5496 "site marked musttail"); 5497 5498 // When long calls (i.e. indirect calls) are always used, calls are always 5499 // made via function pointer. If we have a function name, first translate it 5500 // into a pointer. 5501 if (Subtarget.useLongCalls() && isa<GlobalAddressSDNode>(Callee) && 5502 !isTailCall) 5503 Callee = LowerGlobalAddress(Callee, DAG); 5504 5505 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) 5506 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg, 5507 isTailCall, isPatchPoint, Outs, OutVals, Ins, 5508 dl, DAG, InVals, CS); 5509 5510 if (Subtarget.isSVR4ABI()) 5511 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg, 5512 isTailCall, isPatchPoint, Outs, OutVals, Ins, 5513 dl, DAG, InVals, CS); 5514 5515 if (Subtarget.isAIXABI()) 5516 return LowerCall_AIX(Chain, Callee, CallConv, isVarArg, 5517 isTailCall, isPatchPoint, Outs, OutVals, Ins, 5518 dl, DAG, InVals, CS); 5519 5520 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg, 5521 isTailCall, isPatchPoint, Outs, OutVals, Ins, 5522 dl, DAG, InVals, CS); 5523 } 5524 5525 SDValue PPCTargetLowering::LowerCall_32SVR4( 5526 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, 5527 bool isTailCall, bool isPatchPoint, 5528 const SmallVectorImpl<ISD::OutputArg> &Outs, 5529 const SmallVectorImpl<SDValue> &OutVals, 5530 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 5531 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, 5532 ImmutableCallSite CS) const { 5533 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description 5534 // of the 32-bit SVR4 ABI stack frame layout. 5535 5536 assert((CallConv == CallingConv::C || 5537 CallConv == CallingConv::Cold || 5538 CallConv == CallingConv::Fast) && "Unknown calling convention!"); 5539 5540 unsigned PtrByteSize = 4; 5541 5542 MachineFunction &MF = DAG.getMachineFunction(); 5543 5544 // Mark this function as potentially containing a function that contains a 5545 // tail call. As a consequence the frame pointer will be used for dynamicalloc 5546 // and restoring the callers stack pointer in this functions epilog. This is 5547 // done because by tail calling the called function might overwrite the value 5548 // in this function's (MF) stack pointer stack slot 0(SP). 5549 if (getTargetMachine().Options.GuaranteedTailCallOpt && 5550 CallConv == CallingConv::Fast) 5551 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 5552 5553 // Count how many bytes are to be pushed on the stack, including the linkage 5554 // area, parameter list area and the part of the local variable space which 5555 // contains copies of aggregates which are passed by value. 5556 5557 // Assign locations to all of the outgoing arguments. 5558 SmallVector<CCValAssign, 16> ArgLocs; 5559 PPCCCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext()); 5560 5561 // Reserve space for the linkage area on the stack. 5562 CCInfo.AllocateStack(Subtarget.getFrameLowering()->getLinkageSize(), 5563 PtrByteSize); 5564 if (useSoftFloat()) 5565 CCInfo.PreAnalyzeCallOperands(Outs); 5566 5567 if (isVarArg) { 5568 // Handle fixed and variable vector arguments differently. 5569 // Fixed vector arguments go into registers as long as registers are 5570 // available. Variable vector arguments always go into memory. 5571 unsigned NumArgs = Outs.size(); 5572 5573 for (unsigned i = 0; i != NumArgs; ++i) { 5574 MVT ArgVT = Outs[i].VT; 5575 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags; 5576 bool Result; 5577 5578 if (Outs[i].IsFixed) { 5579 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, 5580 CCInfo); 5581 } else { 5582 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full, 5583 ArgFlags, CCInfo); 5584 } 5585 5586 if (Result) { 5587 #ifndef NDEBUG 5588 errs() << "Call operand #" << i << " has unhandled type " 5589 << EVT(ArgVT).getEVTString() << "\n"; 5590 #endif 5591 llvm_unreachable(nullptr); 5592 } 5593 } 5594 } else { 5595 // All arguments are treated the same. 5596 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4); 5597 } 5598 CCInfo.clearWasPPCF128(); 5599 5600 // Assign locations to all of the outgoing aggregate by value arguments. 5601 SmallVector<CCValAssign, 16> ByValArgLocs; 5602 CCState CCByValInfo(CallConv, isVarArg, MF, ByValArgLocs, *DAG.getContext()); 5603 5604 // Reserve stack space for the allocations in CCInfo. 5605 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize); 5606 5607 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal); 5608 5609 // Size of the linkage area, parameter list area and the part of the local 5610 // space variable where copies of aggregates which are passed by value are 5611 // stored. 5612 unsigned NumBytes = CCByValInfo.getNextStackOffset(); 5613 5614 // Calculate by how many bytes the stack has to be adjusted in case of tail 5615 // call optimization. 5616 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 5617 5618 // Adjust the stack pointer for the new arguments... 5619 // These operations are automatically eliminated by the prolog/epilog pass 5620 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); 5621 SDValue CallSeqStart = Chain; 5622 5623 // Load the return address and frame pointer so it can be moved somewhere else 5624 // later. 5625 SDValue LROp, FPOp; 5626 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, dl); 5627 5628 // Set up a copy of the stack pointer for use loading and storing any 5629 // arguments that may not fit in the registers available for argument 5630 // passing. 5631 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 5632 5633 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 5634 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 5635 SmallVector<SDValue, 8> MemOpChains; 5636 5637 bool seenFloatArg = false; 5638 // Walk the register/memloc assignments, inserting copies/loads. 5639 // i - Tracks the index into the list of registers allocated for the call 5640 // RealArgIdx - Tracks the index into the list of actual function arguments 5641 // j - Tracks the index into the list of byval arguments 5642 for (unsigned i = 0, RealArgIdx = 0, j = 0, e = ArgLocs.size(); 5643 i != e; 5644 ++i, ++RealArgIdx) { 5645 CCValAssign &VA = ArgLocs[i]; 5646 SDValue Arg = OutVals[RealArgIdx]; 5647 ISD::ArgFlagsTy Flags = Outs[RealArgIdx].Flags; 5648 5649 if (Flags.isByVal()) { 5650 // Argument is an aggregate which is passed by value, thus we need to 5651 // create a copy of it in the local variable space of the current stack 5652 // frame (which is the stack frame of the caller) and pass the address of 5653 // this copy to the callee. 5654 assert((j < ByValArgLocs.size()) && "Index out of bounds!"); 5655 CCValAssign &ByValVA = ByValArgLocs[j++]; 5656 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!"); 5657 5658 // Memory reserved in the local variable space of the callers stack frame. 5659 unsigned LocMemOffset = ByValVA.getLocMemOffset(); 5660 5661 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl); 5662 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()), 5663 StackPtr, PtrOff); 5664 5665 // Create a copy of the argument in the local area of the current 5666 // stack frame. 5667 SDValue MemcpyCall = 5668 CreateCopyOfByValArgument(Arg, PtrOff, 5669 CallSeqStart.getNode()->getOperand(0), 5670 Flags, DAG, dl); 5671 5672 // This must go outside the CALLSEQ_START..END. 5673 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall, NumBytes, 0, 5674 SDLoc(MemcpyCall)); 5675 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), 5676 NewCallSeqStart.getNode()); 5677 Chain = CallSeqStart = NewCallSeqStart; 5678 5679 // Pass the address of the aggregate copy on the stack either in a 5680 // physical register or in the parameter list area of the current stack 5681 // frame to the callee. 5682 Arg = PtrOff; 5683 } 5684 5685 // When useCRBits() is true, there can be i1 arguments. 5686 // It is because getRegisterType(MVT::i1) => MVT::i1, 5687 // and for other integer types getRegisterType() => MVT::i32. 5688 // Extend i1 and ensure callee will get i32. 5689 if (Arg.getValueType() == MVT::i1) 5690 Arg = DAG.getNode(Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, 5691 dl, MVT::i32, Arg); 5692 5693 if (VA.isRegLoc()) { 5694 seenFloatArg |= VA.getLocVT().isFloatingPoint(); 5695 // Put argument in a physical register. 5696 if (Subtarget.hasSPE() && Arg.getValueType() == MVT::f64) { 5697 bool IsLE = Subtarget.isLittleEndian(); 5698 SDValue SVal = DAG.getNode(PPCISD::EXTRACT_SPE, dl, MVT::i32, Arg, 5699 DAG.getIntPtrConstant(IsLE ? 0 : 1, dl)); 5700 RegsToPass.push_back(std::make_pair(VA.getLocReg(), SVal.getValue(0))); 5701 SVal = DAG.getNode(PPCISD::EXTRACT_SPE, dl, MVT::i32, Arg, 5702 DAG.getIntPtrConstant(IsLE ? 1 : 0, dl)); 5703 RegsToPass.push_back(std::make_pair(ArgLocs[++i].getLocReg(), 5704 SVal.getValue(0))); 5705 } else 5706 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); 5707 } else { 5708 // Put argument in the parameter list area of the current stack frame. 5709 assert(VA.isMemLoc()); 5710 unsigned LocMemOffset = VA.getLocMemOffset(); 5711 5712 if (!isTailCall) { 5713 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset, dl); 5714 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(MF.getDataLayout()), 5715 StackPtr, PtrOff); 5716 5717 MemOpChains.push_back( 5718 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo())); 5719 } else { 5720 // Calculate and remember argument location. 5721 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset, 5722 TailCallArguments); 5723 } 5724 } 5725 } 5726 5727 if (!MemOpChains.empty()) 5728 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 5729 5730 // Build a sequence of copy-to-reg nodes chained together with token chain 5731 // and flag operands which copy the outgoing args into the appropriate regs. 5732 SDValue InFlag; 5733 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 5734 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 5735 RegsToPass[i].second, InFlag); 5736 InFlag = Chain.getValue(1); 5737 } 5738 5739 // Set CR bit 6 to true if this is a vararg call with floating args passed in 5740 // registers. 5741 if (isVarArg) { 5742 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue); 5743 SDValue Ops[] = { Chain, InFlag }; 5744 5745 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET, 5746 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1)); 5747 5748 InFlag = Chain.getValue(1); 5749 } 5750 5751 if (isTailCall) 5752 PrepareTailCall(DAG, InFlag, Chain, dl, SPDiff, NumBytes, LROp, FPOp, 5753 TailCallArguments); 5754 5755 return FinishCall(CallConv, dl, isTailCall, isVarArg, isPatchPoint, 5756 /* unused except on PPC64 ELFv1 */ false, DAG, 5757 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff, 5758 NumBytes, Ins, InVals, CS); 5759 } 5760 5761 // Copy an argument into memory, being careful to do this outside the 5762 // call sequence for the call to which the argument belongs. 5763 SDValue PPCTargetLowering::createMemcpyOutsideCallSeq( 5764 SDValue Arg, SDValue PtrOff, SDValue CallSeqStart, ISD::ArgFlagsTy Flags, 5765 SelectionDAG &DAG, const SDLoc &dl) const { 5766 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff, 5767 CallSeqStart.getNode()->getOperand(0), 5768 Flags, DAG, dl); 5769 // The MEMCPY must go outside the CALLSEQ_START..END. 5770 int64_t FrameSize = CallSeqStart.getConstantOperandVal(1); 5771 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall, FrameSize, 0, 5772 SDLoc(MemcpyCall)); 5773 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), 5774 NewCallSeqStart.getNode()); 5775 return NewCallSeqStart; 5776 } 5777 5778 SDValue PPCTargetLowering::LowerCall_64SVR4( 5779 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, 5780 bool isTailCall, bool isPatchPoint, 5781 const SmallVectorImpl<ISD::OutputArg> &Outs, 5782 const SmallVectorImpl<SDValue> &OutVals, 5783 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 5784 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, 5785 ImmutableCallSite CS) const { 5786 bool isELFv2ABI = Subtarget.isELFv2ABI(); 5787 bool isLittleEndian = Subtarget.isLittleEndian(); 5788 unsigned NumOps = Outs.size(); 5789 bool hasNest = false; 5790 bool IsSibCall = false; 5791 5792 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 5793 unsigned PtrByteSize = 8; 5794 5795 MachineFunction &MF = DAG.getMachineFunction(); 5796 5797 if (isTailCall && !getTargetMachine().Options.GuaranteedTailCallOpt) 5798 IsSibCall = true; 5799 5800 // Mark this function as potentially containing a function that contains a 5801 // tail call. As a consequence the frame pointer will be used for dynamicalloc 5802 // and restoring the callers stack pointer in this functions epilog. This is 5803 // done because by tail calling the called function might overwrite the value 5804 // in this function's (MF) stack pointer stack slot 0(SP). 5805 if (getTargetMachine().Options.GuaranteedTailCallOpt && 5806 CallConv == CallingConv::Fast) 5807 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 5808 5809 assert(!(CallConv == CallingConv::Fast && isVarArg) && 5810 "fastcc not supported on varargs functions"); 5811 5812 // Count how many bytes are to be pushed on the stack, including the linkage 5813 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes 5814 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage 5815 // area is 32 bytes reserved space for [SP][CR][LR][TOC]. 5816 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 5817 unsigned NumBytes = LinkageSize; 5818 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 5819 unsigned &QFPR_idx = FPR_idx; 5820 5821 static const MCPhysReg GPR[] = { 5822 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 5823 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 5824 }; 5825 static const MCPhysReg VR[] = { 5826 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 5827 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 5828 }; 5829 5830 const unsigned NumGPRs = array_lengthof(GPR); 5831 const unsigned NumFPRs = useSoftFloat() ? 0 : 13; 5832 const unsigned NumVRs = array_lengthof(VR); 5833 const unsigned NumQFPRs = NumFPRs; 5834 5835 // On ELFv2, we can avoid allocating the parameter area if all the arguments 5836 // can be passed to the callee in registers. 5837 // For the fast calling convention, there is another check below. 5838 // Note: We should keep consistent with LowerFormalArguments_64SVR4() 5839 bool HasParameterArea = !isELFv2ABI || isVarArg || CallConv == CallingConv::Fast; 5840 if (!HasParameterArea) { 5841 unsigned ParamAreaSize = NumGPRs * PtrByteSize; 5842 unsigned AvailableFPRs = NumFPRs; 5843 unsigned AvailableVRs = NumVRs; 5844 unsigned NumBytesTmp = NumBytes; 5845 for (unsigned i = 0; i != NumOps; ++i) { 5846 if (Outs[i].Flags.isNest()) continue; 5847 if (CalculateStackSlotUsed(Outs[i].VT, Outs[i].ArgVT, Outs[i].Flags, 5848 PtrByteSize, LinkageSize, ParamAreaSize, 5849 NumBytesTmp, AvailableFPRs, AvailableVRs, 5850 Subtarget.hasQPX())) 5851 HasParameterArea = true; 5852 } 5853 } 5854 5855 // When using the fast calling convention, we don't provide backing for 5856 // arguments that will be in registers. 5857 unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0; 5858 5859 // Avoid allocating parameter area for fastcc functions if all the arguments 5860 // can be passed in the registers. 5861 if (CallConv == CallingConv::Fast) 5862 HasParameterArea = false; 5863 5864 // Add up all the space actually used. 5865 for (unsigned i = 0; i != NumOps; ++i) { 5866 ISD::ArgFlagsTy Flags = Outs[i].Flags; 5867 EVT ArgVT = Outs[i].VT; 5868 EVT OrigVT = Outs[i].ArgVT; 5869 5870 if (Flags.isNest()) 5871 continue; 5872 5873 if (CallConv == CallingConv::Fast) { 5874 if (Flags.isByVal()) { 5875 NumGPRsUsed += (Flags.getByValSize()+7)/8; 5876 if (NumGPRsUsed > NumGPRs) 5877 HasParameterArea = true; 5878 } else { 5879 switch (ArgVT.getSimpleVT().SimpleTy) { 5880 default: llvm_unreachable("Unexpected ValueType for argument!"); 5881 case MVT::i1: 5882 case MVT::i32: 5883 case MVT::i64: 5884 if (++NumGPRsUsed <= NumGPRs) 5885 continue; 5886 break; 5887 case MVT::v4i32: 5888 case MVT::v8i16: 5889 case MVT::v16i8: 5890 case MVT::v2f64: 5891 case MVT::v2i64: 5892 case MVT::v1i128: 5893 case MVT::f128: 5894 if (++NumVRsUsed <= NumVRs) 5895 continue; 5896 break; 5897 case MVT::v4f32: 5898 // When using QPX, this is handled like a FP register, otherwise, it 5899 // is an Altivec register. 5900 if (Subtarget.hasQPX()) { 5901 if (++NumFPRsUsed <= NumFPRs) 5902 continue; 5903 } else { 5904 if (++NumVRsUsed <= NumVRs) 5905 continue; 5906 } 5907 break; 5908 case MVT::f32: 5909 case MVT::f64: 5910 case MVT::v4f64: // QPX 5911 case MVT::v4i1: // QPX 5912 if (++NumFPRsUsed <= NumFPRs) 5913 continue; 5914 break; 5915 } 5916 HasParameterArea = true; 5917 } 5918 } 5919 5920 /* Respect alignment of argument on the stack. */ 5921 unsigned Align = 5922 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 5923 NumBytes = ((NumBytes + Align - 1) / Align) * Align; 5924 5925 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 5926 if (Flags.isInConsecutiveRegsLast()) 5927 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 5928 } 5929 5930 unsigned NumBytesActuallyUsed = NumBytes; 5931 5932 // In the old ELFv1 ABI, 5933 // the prolog code of the callee may store up to 8 GPR argument registers to 5934 // the stack, allowing va_start to index over them in memory if its varargs. 5935 // Because we cannot tell if this is needed on the caller side, we have to 5936 // conservatively assume that it is needed. As such, make sure we have at 5937 // least enough stack space for the caller to store the 8 GPRs. 5938 // In the ELFv2 ABI, we allocate the parameter area iff a callee 5939 // really requires memory operands, e.g. a vararg function. 5940 if (HasParameterArea) 5941 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize); 5942 else 5943 NumBytes = LinkageSize; 5944 5945 // Tail call needs the stack to be aligned. 5946 if (getTargetMachine().Options.GuaranteedTailCallOpt && 5947 CallConv == CallingConv::Fast) 5948 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes); 5949 5950 int SPDiff = 0; 5951 5952 // Calculate by how many bytes the stack has to be adjusted in case of tail 5953 // call optimization. 5954 if (!IsSibCall) 5955 SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 5956 5957 // To protect arguments on the stack from being clobbered in a tail call, 5958 // force all the loads to happen before doing any other lowering. 5959 if (isTailCall) 5960 Chain = DAG.getStackArgumentTokenFactor(Chain); 5961 5962 // Adjust the stack pointer for the new arguments... 5963 // These operations are automatically eliminated by the prolog/epilog pass 5964 if (!IsSibCall) 5965 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); 5966 SDValue CallSeqStart = Chain; 5967 5968 // Load the return address and frame pointer so it can be move somewhere else 5969 // later. 5970 SDValue LROp, FPOp; 5971 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, dl); 5972 5973 // Set up a copy of the stack pointer for use loading and storing any 5974 // arguments that may not fit in the registers available for argument 5975 // passing. 5976 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 5977 5978 // Figure out which arguments are going to go in registers, and which in 5979 // memory. Also, if this is a vararg function, floating point operations 5980 // must be stored to our stack, and loaded into integer regs as well, if 5981 // any integer regs are available for argument passing. 5982 unsigned ArgOffset = LinkageSize; 5983 5984 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 5985 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 5986 5987 SmallVector<SDValue, 8> MemOpChains; 5988 for (unsigned i = 0; i != NumOps; ++i) { 5989 SDValue Arg = OutVals[i]; 5990 ISD::ArgFlagsTy Flags = Outs[i].Flags; 5991 EVT ArgVT = Outs[i].VT; 5992 EVT OrigVT = Outs[i].ArgVT; 5993 5994 // PtrOff will be used to store the current argument to the stack if a 5995 // register cannot be found for it. 5996 SDValue PtrOff; 5997 5998 // We re-align the argument offset for each argument, except when using the 5999 // fast calling convention, when we need to make sure we do that only when 6000 // we'll actually use a stack slot. 6001 auto ComputePtrOff = [&]() { 6002 /* Respect alignment of argument on the stack. */ 6003 unsigned Align = 6004 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 6005 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 6006 6007 PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType()); 6008 6009 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 6010 }; 6011 6012 if (CallConv != CallingConv::Fast) { 6013 ComputePtrOff(); 6014 6015 /* Compute GPR index associated with argument offset. */ 6016 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 6017 GPR_idx = std::min(GPR_idx, NumGPRs); 6018 } 6019 6020 // Promote integers to 64-bit values. 6021 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) { 6022 // FIXME: Should this use ANY_EXTEND if neither sext nor zext? 6023 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 6024 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg); 6025 } 6026 6027 // FIXME memcpy is used way more than necessary. Correctness first. 6028 // Note: "by value" is code for passing a structure by value, not 6029 // basic types. 6030 if (Flags.isByVal()) { 6031 // Note: Size includes alignment padding, so 6032 // struct x { short a; char b; } 6033 // will have Size = 4. With #pragma pack(1), it will have Size = 3. 6034 // These are the proper values we need for right-justifying the 6035 // aggregate in a parameter register. 6036 unsigned Size = Flags.getByValSize(); 6037 6038 // An empty aggregate parameter takes up no storage and no 6039 // registers. 6040 if (Size == 0) 6041 continue; 6042 6043 if (CallConv == CallingConv::Fast) 6044 ComputePtrOff(); 6045 6046 // All aggregates smaller than 8 bytes must be passed right-justified. 6047 if (Size==1 || Size==2 || Size==4) { 6048 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32); 6049 if (GPR_idx != NumGPRs) { 6050 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg, 6051 MachinePointerInfo(), VT); 6052 MemOpChains.push_back(Load.getValue(1)); 6053 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6054 6055 ArgOffset += PtrByteSize; 6056 continue; 6057 } 6058 } 6059 6060 if (GPR_idx == NumGPRs && Size < 8) { 6061 SDValue AddPtr = PtrOff; 6062 if (!isLittleEndian) { 6063 SDValue Const = DAG.getConstant(PtrByteSize - Size, dl, 6064 PtrOff.getValueType()); 6065 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 6066 } 6067 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 6068 CallSeqStart, 6069 Flags, DAG, dl); 6070 ArgOffset += PtrByteSize; 6071 continue; 6072 } 6073 // Copy entire object into memory. There are cases where gcc-generated 6074 // code assumes it is there, even if it could be put entirely into 6075 // registers. (This is not what the doc says.) 6076 6077 // FIXME: The above statement is likely due to a misunderstanding of the 6078 // documents. All arguments must be copied into the parameter area BY 6079 // THE CALLEE in the event that the callee takes the address of any 6080 // formal argument. That has not yet been implemented. However, it is 6081 // reasonable to use the stack area as a staging area for the register 6082 // load. 6083 6084 // Skip this for small aggregates, as we will use the same slot for a 6085 // right-justified copy, below. 6086 if (Size >= 8) 6087 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff, 6088 CallSeqStart, 6089 Flags, DAG, dl); 6090 6091 // When a register is available, pass a small aggregate right-justified. 6092 if (Size < 8 && GPR_idx != NumGPRs) { 6093 // The easiest way to get this right-justified in a register 6094 // is to copy the structure into the rightmost portion of a 6095 // local variable slot, then load the whole slot into the 6096 // register. 6097 // FIXME: The memcpy seems to produce pretty awful code for 6098 // small aggregates, particularly for packed ones. 6099 // FIXME: It would be preferable to use the slot in the 6100 // parameter save area instead of a new local variable. 6101 SDValue AddPtr = PtrOff; 6102 if (!isLittleEndian) { 6103 SDValue Const = DAG.getConstant(8 - Size, dl, PtrOff.getValueType()); 6104 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 6105 } 6106 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 6107 CallSeqStart, 6108 Flags, DAG, dl); 6109 6110 // Load the slot into the register. 6111 SDValue Load = 6112 DAG.getLoad(PtrVT, dl, Chain, PtrOff, MachinePointerInfo()); 6113 MemOpChains.push_back(Load.getValue(1)); 6114 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6115 6116 // Done with this argument. 6117 ArgOffset += PtrByteSize; 6118 continue; 6119 } 6120 6121 // For aggregates larger than PtrByteSize, copy the pieces of the 6122 // object that fit into registers from the parameter save area. 6123 for (unsigned j=0; j<Size; j+=PtrByteSize) { 6124 SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType()); 6125 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 6126 if (GPR_idx != NumGPRs) { 6127 SDValue Load = 6128 DAG.getLoad(PtrVT, dl, Chain, AddArg, MachinePointerInfo()); 6129 MemOpChains.push_back(Load.getValue(1)); 6130 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6131 ArgOffset += PtrByteSize; 6132 } else { 6133 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize; 6134 break; 6135 } 6136 } 6137 continue; 6138 } 6139 6140 switch (Arg.getSimpleValueType().SimpleTy) { 6141 default: llvm_unreachable("Unexpected ValueType for argument!"); 6142 case MVT::i1: 6143 case MVT::i32: 6144 case MVT::i64: 6145 if (Flags.isNest()) { 6146 // The 'nest' parameter, if any, is passed in R11. 6147 RegsToPass.push_back(std::make_pair(PPC::X11, Arg)); 6148 hasNest = true; 6149 break; 6150 } 6151 6152 // These can be scalar arguments or elements of an integer array type 6153 // passed directly. Clang may use those instead of "byval" aggregate 6154 // types to avoid forcing arguments to memory unnecessarily. 6155 if (GPR_idx != NumGPRs) { 6156 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg)); 6157 } else { 6158 if (CallConv == CallingConv::Fast) 6159 ComputePtrOff(); 6160 6161 assert(HasParameterArea && 6162 "Parameter area must exist to pass an argument in memory."); 6163 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6164 true, isTailCall, false, MemOpChains, 6165 TailCallArguments, dl); 6166 if (CallConv == CallingConv::Fast) 6167 ArgOffset += PtrByteSize; 6168 } 6169 if (CallConv != CallingConv::Fast) 6170 ArgOffset += PtrByteSize; 6171 break; 6172 case MVT::f32: 6173 case MVT::f64: { 6174 // These can be scalar arguments or elements of a float array type 6175 // passed directly. The latter are used to implement ELFv2 homogenous 6176 // float aggregates. 6177 6178 // Named arguments go into FPRs first, and once they overflow, the 6179 // remaining arguments go into GPRs and then the parameter save area. 6180 // Unnamed arguments for vararg functions always go to GPRs and 6181 // then the parameter save area. For now, put all arguments to vararg 6182 // routines always in both locations (FPR *and* GPR or stack slot). 6183 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs; 6184 bool NeededLoad = false; 6185 6186 // First load the argument into the next available FPR. 6187 if (FPR_idx != NumFPRs) 6188 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg)); 6189 6190 // Next, load the argument into GPR or stack slot if needed. 6191 if (!NeedGPROrStack) 6192 ; 6193 else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) { 6194 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8 6195 // once we support fp <-> gpr moves. 6196 6197 // In the non-vararg case, this can only ever happen in the 6198 // presence of f32 array types, since otherwise we never run 6199 // out of FPRs before running out of GPRs. 6200 SDValue ArgVal; 6201 6202 // Double values are always passed in a single GPR. 6203 if (Arg.getValueType() != MVT::f32) { 6204 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg); 6205 6206 // Non-array float values are extended and passed in a GPR. 6207 } else if (!Flags.isInConsecutiveRegs()) { 6208 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 6209 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal); 6210 6211 // If we have an array of floats, we collect every odd element 6212 // together with its predecessor into one GPR. 6213 } else if (ArgOffset % PtrByteSize != 0) { 6214 SDValue Lo, Hi; 6215 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]); 6216 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 6217 if (!isLittleEndian) 6218 std::swap(Lo, Hi); 6219 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi); 6220 6221 // The final element, if even, goes into the first half of a GPR. 6222 } else if (Flags.isInConsecutiveRegsLast()) { 6223 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 6224 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal); 6225 if (!isLittleEndian) 6226 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal, 6227 DAG.getConstant(32, dl, MVT::i32)); 6228 6229 // Non-final even elements are skipped; they will be handled 6230 // together the with subsequent argument on the next go-around. 6231 } else 6232 ArgVal = SDValue(); 6233 6234 if (ArgVal.getNode()) 6235 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal)); 6236 } else { 6237 if (CallConv == CallingConv::Fast) 6238 ComputePtrOff(); 6239 6240 // Single-precision floating-point values are mapped to the 6241 // second (rightmost) word of the stack doubleword. 6242 if (Arg.getValueType() == MVT::f32 && 6243 !isLittleEndian && !Flags.isInConsecutiveRegs()) { 6244 SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType()); 6245 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour); 6246 } 6247 6248 assert(HasParameterArea && 6249 "Parameter area must exist to pass an argument in memory."); 6250 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6251 true, isTailCall, false, MemOpChains, 6252 TailCallArguments, dl); 6253 6254 NeededLoad = true; 6255 } 6256 // When passing an array of floats, the array occupies consecutive 6257 // space in the argument area; only round up to the next doubleword 6258 // at the end of the array. Otherwise, each float takes 8 bytes. 6259 if (CallConv != CallingConv::Fast || NeededLoad) { 6260 ArgOffset += (Arg.getValueType() == MVT::f32 && 6261 Flags.isInConsecutiveRegs()) ? 4 : 8; 6262 if (Flags.isInConsecutiveRegsLast()) 6263 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 6264 } 6265 break; 6266 } 6267 case MVT::v4f32: 6268 case MVT::v4i32: 6269 case MVT::v8i16: 6270 case MVT::v16i8: 6271 case MVT::v2f64: 6272 case MVT::v2i64: 6273 case MVT::v1i128: 6274 case MVT::f128: 6275 if (!Subtarget.hasQPX()) { 6276 // These can be scalar arguments or elements of a vector array type 6277 // passed directly. The latter are used to implement ELFv2 homogenous 6278 // vector aggregates. 6279 6280 // For a varargs call, named arguments go into VRs or on the stack as 6281 // usual; unnamed arguments always go to the stack or the corresponding 6282 // GPRs when within range. For now, we always put the value in both 6283 // locations (or even all three). 6284 if (isVarArg) { 6285 assert(HasParameterArea && 6286 "Parameter area must exist if we have a varargs call."); 6287 // We could elide this store in the case where the object fits 6288 // entirely in R registers. Maybe later. 6289 SDValue Store = 6290 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); 6291 MemOpChains.push_back(Store); 6292 if (VR_idx != NumVRs) { 6293 SDValue Load = 6294 DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, MachinePointerInfo()); 6295 MemOpChains.push_back(Load.getValue(1)); 6296 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load)); 6297 } 6298 ArgOffset += 16; 6299 for (unsigned i=0; i<16; i+=PtrByteSize) { 6300 if (GPR_idx == NumGPRs) 6301 break; 6302 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, 6303 DAG.getConstant(i, dl, PtrVT)); 6304 SDValue Load = 6305 DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo()); 6306 MemOpChains.push_back(Load.getValue(1)); 6307 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6308 } 6309 break; 6310 } 6311 6312 // Non-varargs Altivec params go into VRs or on the stack. 6313 if (VR_idx != NumVRs) { 6314 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg)); 6315 } else { 6316 if (CallConv == CallingConv::Fast) 6317 ComputePtrOff(); 6318 6319 assert(HasParameterArea && 6320 "Parameter area must exist to pass an argument in memory."); 6321 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6322 true, isTailCall, true, MemOpChains, 6323 TailCallArguments, dl); 6324 if (CallConv == CallingConv::Fast) 6325 ArgOffset += 16; 6326 } 6327 6328 if (CallConv != CallingConv::Fast) 6329 ArgOffset += 16; 6330 break; 6331 } // not QPX 6332 6333 assert(Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32 && 6334 "Invalid QPX parameter type"); 6335 6336 LLVM_FALLTHROUGH; 6337 case MVT::v4f64: 6338 case MVT::v4i1: { 6339 bool IsF32 = Arg.getValueType().getSimpleVT().SimpleTy == MVT::v4f32; 6340 if (isVarArg) { 6341 assert(HasParameterArea && 6342 "Parameter area must exist if we have a varargs call."); 6343 // We could elide this store in the case where the object fits 6344 // entirely in R registers. Maybe later. 6345 SDValue Store = 6346 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); 6347 MemOpChains.push_back(Store); 6348 if (QFPR_idx != NumQFPRs) { 6349 SDValue Load = DAG.getLoad(IsF32 ? MVT::v4f32 : MVT::v4f64, dl, Store, 6350 PtrOff, MachinePointerInfo()); 6351 MemOpChains.push_back(Load.getValue(1)); 6352 RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Load)); 6353 } 6354 ArgOffset += (IsF32 ? 16 : 32); 6355 for (unsigned i = 0; i < (IsF32 ? 16U : 32U); i += PtrByteSize) { 6356 if (GPR_idx == NumGPRs) 6357 break; 6358 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, 6359 DAG.getConstant(i, dl, PtrVT)); 6360 SDValue Load = 6361 DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo()); 6362 MemOpChains.push_back(Load.getValue(1)); 6363 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6364 } 6365 break; 6366 } 6367 6368 // Non-varargs QPX params go into registers or on the stack. 6369 if (QFPR_idx != NumQFPRs) { 6370 RegsToPass.push_back(std::make_pair(QFPR[QFPR_idx++], Arg)); 6371 } else { 6372 if (CallConv == CallingConv::Fast) 6373 ComputePtrOff(); 6374 6375 assert(HasParameterArea && 6376 "Parameter area must exist to pass an argument in memory."); 6377 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6378 true, isTailCall, true, MemOpChains, 6379 TailCallArguments, dl); 6380 if (CallConv == CallingConv::Fast) 6381 ArgOffset += (IsF32 ? 16 : 32); 6382 } 6383 6384 if (CallConv != CallingConv::Fast) 6385 ArgOffset += (IsF32 ? 16 : 32); 6386 break; 6387 } 6388 } 6389 } 6390 6391 assert((!HasParameterArea || NumBytesActuallyUsed == ArgOffset) && 6392 "mismatch in size of parameter area"); 6393 (void)NumBytesActuallyUsed; 6394 6395 if (!MemOpChains.empty()) 6396 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 6397 6398 // Check if this is an indirect call (MTCTR/BCTRL). 6399 // See prepareDescriptorIndirectCall and buildCallOperands for more 6400 // information about calls through function pointers in the 64-bit SVR4 ABI. 6401 if (!isTailCall && !isPatchPoint && 6402 !isFunctionGlobalAddress(Callee) && 6403 !isa<ExternalSymbolSDNode>(Callee)) { 6404 // Load r2 into a virtual register and store it to the TOC save area. 6405 setUsesTOCBasePtr(DAG); 6406 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64); 6407 // TOC save area offset. 6408 unsigned TOCSaveOffset = Subtarget.getFrameLowering()->getTOCSaveOffset(); 6409 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset, dl); 6410 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 6411 Chain = DAG.getStore( 6412 Val.getValue(1), dl, Val, AddPtr, 6413 MachinePointerInfo::getStack(DAG.getMachineFunction(), TOCSaveOffset)); 6414 // In the ELFv2 ABI, R12 must contain the address of an indirect callee. 6415 // This does not mean the MTCTR instruction must use R12; it's easier 6416 // to model this as an extra parameter, so do that. 6417 if (isELFv2ABI && !isPatchPoint) 6418 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee)); 6419 } 6420 6421 // Build a sequence of copy-to-reg nodes chained together with token chain 6422 // and flag operands which copy the outgoing args into the appropriate regs. 6423 SDValue InFlag; 6424 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 6425 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 6426 RegsToPass[i].second, InFlag); 6427 InFlag = Chain.getValue(1); 6428 } 6429 6430 if (isTailCall && !IsSibCall) 6431 PrepareTailCall(DAG, InFlag, Chain, dl, SPDiff, NumBytes, LROp, FPOp, 6432 TailCallArguments); 6433 6434 return FinishCall(CallConv, dl, isTailCall, isVarArg, isPatchPoint, hasNest, 6435 DAG, RegsToPass, InFlag, Chain, CallSeqStart, Callee, 6436 SPDiff, NumBytes, Ins, InVals, CS); 6437 } 6438 6439 SDValue PPCTargetLowering::LowerCall_Darwin( 6440 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, 6441 bool isTailCall, bool isPatchPoint, 6442 const SmallVectorImpl<ISD::OutputArg> &Outs, 6443 const SmallVectorImpl<SDValue> &OutVals, 6444 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 6445 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, 6446 ImmutableCallSite CS) const { 6447 unsigned NumOps = Outs.size(); 6448 6449 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 6450 bool isPPC64 = PtrVT == MVT::i64; 6451 unsigned PtrByteSize = isPPC64 ? 8 : 4; 6452 6453 MachineFunction &MF = DAG.getMachineFunction(); 6454 6455 // Mark this function as potentially containing a function that contains a 6456 // tail call. As a consequence the frame pointer will be used for dynamicalloc 6457 // and restoring the callers stack pointer in this functions epilog. This is 6458 // done because by tail calling the called function might overwrite the value 6459 // in this function's (MF) stack pointer stack slot 0(SP). 6460 if (getTargetMachine().Options.GuaranteedTailCallOpt && 6461 CallConv == CallingConv::Fast) 6462 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 6463 6464 // Count how many bytes are to be pushed on the stack, including the linkage 6465 // area, and parameter passing area. We start with 24/48 bytes, which is 6466 // prereserved space for [SP][CR][LR][3 x unused]. 6467 unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 6468 unsigned NumBytes = LinkageSize; 6469 6470 // Add up all the space actually used. 6471 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually 6472 // they all go in registers, but we must reserve stack space for them for 6473 // possible use by the caller. In varargs or 64-bit calls, parameters are 6474 // assigned stack space in order, with padding so Altivec parameters are 6475 // 16-byte aligned. 6476 unsigned nAltivecParamsAtEnd = 0; 6477 for (unsigned i = 0; i != NumOps; ++i) { 6478 ISD::ArgFlagsTy Flags = Outs[i].Flags; 6479 EVT ArgVT = Outs[i].VT; 6480 // Varargs Altivec parameters are padded to a 16 byte boundary. 6481 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 6482 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 6483 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) { 6484 if (!isVarArg && !isPPC64) { 6485 // Non-varargs Altivec parameters go after all the non-Altivec 6486 // parameters; handle those later so we know how much padding we need. 6487 nAltivecParamsAtEnd++; 6488 continue; 6489 } 6490 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary. 6491 NumBytes = ((NumBytes+15)/16)*16; 6492 } 6493 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 6494 } 6495 6496 // Allow for Altivec parameters at the end, if needed. 6497 if (nAltivecParamsAtEnd) { 6498 NumBytes = ((NumBytes+15)/16)*16; 6499 NumBytes += 16*nAltivecParamsAtEnd; 6500 } 6501 6502 // The prolog code of the callee may store up to 8 GPR argument registers to 6503 // the stack, allowing va_start to index over them in memory if its varargs. 6504 // Because we cannot tell if this is needed on the caller side, we have to 6505 // conservatively assume that it is needed. As such, make sure we have at 6506 // least enough stack space for the caller to store the 8 GPRs. 6507 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize); 6508 6509 // Tail call needs the stack to be aligned. 6510 if (getTargetMachine().Options.GuaranteedTailCallOpt && 6511 CallConv == CallingConv::Fast) 6512 NumBytes = EnsureStackAlignment(Subtarget.getFrameLowering(), NumBytes); 6513 6514 // Calculate by how many bytes the stack has to be adjusted in case of tail 6515 // call optimization. 6516 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 6517 6518 // To protect arguments on the stack from being clobbered in a tail call, 6519 // force all the loads to happen before doing any other lowering. 6520 if (isTailCall) 6521 Chain = DAG.getStackArgumentTokenFactor(Chain); 6522 6523 // Adjust the stack pointer for the new arguments... 6524 // These operations are automatically eliminated by the prolog/epilog pass 6525 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); 6526 SDValue CallSeqStart = Chain; 6527 6528 // Load the return address and frame pointer so it can be move somewhere else 6529 // later. 6530 SDValue LROp, FPOp; 6531 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, dl); 6532 6533 // Set up a copy of the stack pointer for use loading and storing any 6534 // arguments that may not fit in the registers available for argument 6535 // passing. 6536 SDValue StackPtr; 6537 if (isPPC64) 6538 StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 6539 else 6540 StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 6541 6542 // Figure out which arguments are going to go in registers, and which in 6543 // memory. Also, if this is a vararg function, floating point operations 6544 // must be stored to our stack, and loaded into integer regs as well, if 6545 // any integer regs are available for argument passing. 6546 unsigned ArgOffset = LinkageSize; 6547 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 6548 6549 static const MCPhysReg GPR_32[] = { // 32-bit registers. 6550 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 6551 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 6552 }; 6553 static const MCPhysReg GPR_64[] = { // 64-bit registers. 6554 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 6555 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 6556 }; 6557 static const MCPhysReg VR[] = { 6558 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 6559 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 6560 }; 6561 const unsigned NumGPRs = array_lengthof(GPR_32); 6562 const unsigned NumFPRs = 13; 6563 const unsigned NumVRs = array_lengthof(VR); 6564 6565 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32; 6566 6567 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 6568 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 6569 6570 SmallVector<SDValue, 8> MemOpChains; 6571 for (unsigned i = 0; i != NumOps; ++i) { 6572 SDValue Arg = OutVals[i]; 6573 ISD::ArgFlagsTy Flags = Outs[i].Flags; 6574 6575 // PtrOff will be used to store the current argument to the stack if a 6576 // register cannot be found for it. 6577 SDValue PtrOff; 6578 6579 PtrOff = DAG.getConstant(ArgOffset, dl, StackPtr.getValueType()); 6580 6581 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 6582 6583 // On PPC64, promote integers to 64-bit values. 6584 if (isPPC64 && Arg.getValueType() == MVT::i32) { 6585 // FIXME: Should this use ANY_EXTEND if neither sext nor zext? 6586 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 6587 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg); 6588 } 6589 6590 // FIXME memcpy is used way more than necessary. Correctness first. 6591 // Note: "by value" is code for passing a structure by value, not 6592 // basic types. 6593 if (Flags.isByVal()) { 6594 unsigned Size = Flags.getByValSize(); 6595 // Very small objects are passed right-justified. Everything else is 6596 // passed left-justified. 6597 if (Size==1 || Size==2) { 6598 EVT VT = (Size==1) ? MVT::i8 : MVT::i16; 6599 if (GPR_idx != NumGPRs) { 6600 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg, 6601 MachinePointerInfo(), VT); 6602 MemOpChains.push_back(Load.getValue(1)); 6603 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6604 6605 ArgOffset += PtrByteSize; 6606 } else { 6607 SDValue Const = DAG.getConstant(PtrByteSize - Size, dl, 6608 PtrOff.getValueType()); 6609 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 6610 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 6611 CallSeqStart, 6612 Flags, DAG, dl); 6613 ArgOffset += PtrByteSize; 6614 } 6615 continue; 6616 } 6617 // Copy entire object into memory. There are cases where gcc-generated 6618 // code assumes it is there, even if it could be put entirely into 6619 // registers. (This is not what the doc says.) 6620 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff, 6621 CallSeqStart, 6622 Flags, DAG, dl); 6623 6624 // For small aggregates (Darwin only) and aggregates >= PtrByteSize, 6625 // copy the pieces of the object that fit into registers from the 6626 // parameter save area. 6627 for (unsigned j=0; j<Size; j+=PtrByteSize) { 6628 SDValue Const = DAG.getConstant(j, dl, PtrOff.getValueType()); 6629 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 6630 if (GPR_idx != NumGPRs) { 6631 SDValue Load = 6632 DAG.getLoad(PtrVT, dl, Chain, AddArg, MachinePointerInfo()); 6633 MemOpChains.push_back(Load.getValue(1)); 6634 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6635 ArgOffset += PtrByteSize; 6636 } else { 6637 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize; 6638 break; 6639 } 6640 } 6641 continue; 6642 } 6643 6644 switch (Arg.getSimpleValueType().SimpleTy) { 6645 default: llvm_unreachable("Unexpected ValueType for argument!"); 6646 case MVT::i1: 6647 case MVT::i32: 6648 case MVT::i64: 6649 if (GPR_idx != NumGPRs) { 6650 if (Arg.getValueType() == MVT::i1) 6651 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg); 6652 6653 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg)); 6654 } else { 6655 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6656 isPPC64, isTailCall, false, MemOpChains, 6657 TailCallArguments, dl); 6658 } 6659 ArgOffset += PtrByteSize; 6660 break; 6661 case MVT::f32: 6662 case MVT::f64: 6663 if (FPR_idx != NumFPRs) { 6664 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg)); 6665 6666 if (isVarArg) { 6667 SDValue Store = 6668 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); 6669 MemOpChains.push_back(Store); 6670 6671 // Float varargs are always shadowed in available integer registers 6672 if (GPR_idx != NumGPRs) { 6673 SDValue Load = 6674 DAG.getLoad(PtrVT, dl, Store, PtrOff, MachinePointerInfo()); 6675 MemOpChains.push_back(Load.getValue(1)); 6676 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6677 } 6678 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){ 6679 SDValue ConstFour = DAG.getConstant(4, dl, PtrOff.getValueType()); 6680 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour); 6681 SDValue Load = 6682 DAG.getLoad(PtrVT, dl, Store, PtrOff, MachinePointerInfo()); 6683 MemOpChains.push_back(Load.getValue(1)); 6684 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6685 } 6686 } else { 6687 // If we have any FPRs remaining, we may also have GPRs remaining. 6688 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available 6689 // GPRs. 6690 if (GPR_idx != NumGPRs) 6691 ++GPR_idx; 6692 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && 6693 !isPPC64) // PPC64 has 64-bit GPR's obviously :) 6694 ++GPR_idx; 6695 } 6696 } else 6697 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6698 isPPC64, isTailCall, false, MemOpChains, 6699 TailCallArguments, dl); 6700 if (isPPC64) 6701 ArgOffset += 8; 6702 else 6703 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8; 6704 break; 6705 case MVT::v4f32: 6706 case MVT::v4i32: 6707 case MVT::v8i16: 6708 case MVT::v16i8: 6709 if (isVarArg) { 6710 // These go aligned on the stack, or in the corresponding R registers 6711 // when within range. The Darwin PPC ABI doc claims they also go in 6712 // V registers; in fact gcc does this only for arguments that are 6713 // prototyped, not for those that match the ... We do it for all 6714 // arguments, seems to work. 6715 while (ArgOffset % 16 !=0) { 6716 ArgOffset += PtrByteSize; 6717 if (GPR_idx != NumGPRs) 6718 GPR_idx++; 6719 } 6720 // We could elide this store in the case where the object fits 6721 // entirely in R registers. Maybe later. 6722 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, 6723 DAG.getConstant(ArgOffset, dl, PtrVT)); 6724 SDValue Store = 6725 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); 6726 MemOpChains.push_back(Store); 6727 if (VR_idx != NumVRs) { 6728 SDValue Load = 6729 DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, MachinePointerInfo()); 6730 MemOpChains.push_back(Load.getValue(1)); 6731 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load)); 6732 } 6733 ArgOffset += 16; 6734 for (unsigned i=0; i<16; i+=PtrByteSize) { 6735 if (GPR_idx == NumGPRs) 6736 break; 6737 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, 6738 DAG.getConstant(i, dl, PtrVT)); 6739 SDValue Load = 6740 DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo()); 6741 MemOpChains.push_back(Load.getValue(1)); 6742 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 6743 } 6744 break; 6745 } 6746 6747 // Non-varargs Altivec params generally go in registers, but have 6748 // stack space allocated at the end. 6749 if (VR_idx != NumVRs) { 6750 // Doesn't have GPR space allocated. 6751 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg)); 6752 } else if (nAltivecParamsAtEnd==0) { 6753 // We are emitting Altivec params in order. 6754 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6755 isPPC64, isTailCall, true, MemOpChains, 6756 TailCallArguments, dl); 6757 ArgOffset += 16; 6758 } 6759 break; 6760 } 6761 } 6762 // If all Altivec parameters fit in registers, as they usually do, 6763 // they get stack space following the non-Altivec parameters. We 6764 // don't track this here because nobody below needs it. 6765 // If there are more Altivec parameters than fit in registers emit 6766 // the stores here. 6767 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) { 6768 unsigned j = 0; 6769 // Offset is aligned; skip 1st 12 params which go in V registers. 6770 ArgOffset = ((ArgOffset+15)/16)*16; 6771 ArgOffset += 12*16; 6772 for (unsigned i = 0; i != NumOps; ++i) { 6773 SDValue Arg = OutVals[i]; 6774 EVT ArgType = Outs[i].VT; 6775 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 || 6776 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) { 6777 if (++j > NumVRs) { 6778 SDValue PtrOff; 6779 // We are emitting Altivec params in order. 6780 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 6781 isPPC64, isTailCall, true, MemOpChains, 6782 TailCallArguments, dl); 6783 ArgOffset += 16; 6784 } 6785 } 6786 } 6787 } 6788 6789 if (!MemOpChains.empty()) 6790 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 6791 6792 // On Darwin, R12 must contain the address of an indirect callee. This does 6793 // not mean the MTCTR instruction must use R12; it's easier to model this as 6794 // an extra parameter, so do that. 6795 if (!isTailCall && 6796 !isFunctionGlobalAddress(Callee) && 6797 !isa<ExternalSymbolSDNode>(Callee) && 6798 !isBLACompatibleAddress(Callee, DAG)) 6799 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 : 6800 PPC::R12), Callee)); 6801 6802 // Build a sequence of copy-to-reg nodes chained together with token chain 6803 // and flag operands which copy the outgoing args into the appropriate regs. 6804 SDValue InFlag; 6805 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 6806 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 6807 RegsToPass[i].second, InFlag); 6808 InFlag = Chain.getValue(1); 6809 } 6810 6811 if (isTailCall) 6812 PrepareTailCall(DAG, InFlag, Chain, dl, SPDiff, NumBytes, LROp, FPOp, 6813 TailCallArguments); 6814 6815 return FinishCall(CallConv, dl, isTailCall, isVarArg, isPatchPoint, 6816 /* unused except on PPC64 ELFv1 */ false, DAG, 6817 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff, 6818 NumBytes, Ins, InVals, CS); 6819 } 6820 6821 static bool CC_AIX(unsigned ValNo, MVT ValVT, MVT LocVT, 6822 CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, 6823 CCState &State) { 6824 6825 if (ValVT == MVT::f128) 6826 report_fatal_error("f128 is unimplemented on AIX."); 6827 6828 if (ArgFlags.isByVal()) 6829 report_fatal_error("Passing structure by value is unimplemented."); 6830 6831 if (ArgFlags.isNest()) 6832 report_fatal_error("Nest arguments are unimplemented."); 6833 6834 const PPCSubtarget &Subtarget = static_cast<const PPCSubtarget &>( 6835 State.getMachineFunction().getSubtarget()); 6836 const bool IsPPC64 = Subtarget.isPPC64(); 6837 const unsigned PtrByteSize = IsPPC64 ? 8 : 4; 6838 6839 static const MCPhysReg GPR_32[] = {// 32-bit registers. 6840 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 6841 PPC::R7, PPC::R8, PPC::R9, PPC::R10}; 6842 static const MCPhysReg GPR_64[] = {// 64-bit registers. 6843 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 6844 PPC::X7, PPC::X8, PPC::X9, PPC::X10}; 6845 6846 // Arguments always reserve parameter save area. 6847 switch (ValVT.SimpleTy) { 6848 default: 6849 report_fatal_error("Unhandled value type for argument."); 6850 case MVT::i64: 6851 // i64 arguments should have been split to i32 for PPC32. 6852 assert(IsPPC64 && "PPC32 should have split i64 values."); 6853 LLVM_FALLTHROUGH; 6854 case MVT::i1: 6855 case MVT::i32: 6856 State.AllocateStack(PtrByteSize, PtrByteSize); 6857 if (unsigned Reg = State.AllocateReg(IsPPC64 ? GPR_64 : GPR_32)) { 6858 MVT RegVT = IsPPC64 ? MVT::i64 : MVT::i32; 6859 // Promote integers if needed. 6860 if (ValVT.getSizeInBits() < RegVT.getSizeInBits()) 6861 LocInfo = ArgFlags.isSExt() ? CCValAssign::LocInfo::SExt 6862 : CCValAssign::LocInfo::ZExt; 6863 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, RegVT, LocInfo)); 6864 } 6865 else 6866 report_fatal_error("Handling of placing parameters on the stack is " 6867 "unimplemented!"); 6868 return false; 6869 6870 case MVT::f32: 6871 case MVT::f64: { 6872 // Parameter save area (PSA) is reserved even if the float passes in fpr. 6873 const unsigned StoreSize = LocVT.getStoreSize(); 6874 // Floats are always 4-byte aligned in the PSA on AIX. 6875 // This includes f64 in 64-bit mode for ABI compatibility. 6876 State.AllocateStack(IsPPC64 ? 8 : StoreSize, 4); 6877 if (unsigned Reg = State.AllocateReg(FPR)) 6878 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, MVT::f64, LocInfo)); 6879 else 6880 report_fatal_error("Handling of placing parameters on the stack is " 6881 "unimplemented!"); 6882 6883 // f32 reserves 1 GPR in both PPC32 and PPC64. 6884 // f64 reserves 2 GPRs in PPC32 and 1 GPR in PPC64. 6885 for (unsigned i = 0; i < StoreSize; i += PtrByteSize) 6886 State.AllocateReg(IsPPC64 ? GPR_64 : GPR_32); 6887 return false; 6888 } 6889 } 6890 } 6891 6892 static const TargetRegisterClass *getRegClassForSVT(MVT::SimpleValueType SVT, 6893 bool IsPPC64) { 6894 assert((IsPPC64 || SVT != MVT::i64) && 6895 "i64 should have been split for 32-bit codegen."); 6896 6897 switch (SVT) { 6898 default: 6899 report_fatal_error("Unexpected value type for formal argument"); 6900 case MVT::i1: 6901 case MVT::i32: 6902 case MVT::i64: 6903 return IsPPC64 ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; 6904 case MVT::f32: 6905 return &PPC::F4RCRegClass; 6906 case MVT::f64: 6907 return &PPC::F8RCRegClass; 6908 } 6909 } 6910 6911 static SDValue truncateScalarIntegerArg(ISD::ArgFlagsTy Flags, EVT ValVT, 6912 SelectionDAG &DAG, SDValue ArgValue, 6913 MVT LocVT, const SDLoc &dl) { 6914 assert(ValVT.isScalarInteger() && LocVT.isScalarInteger()); 6915 assert(ValVT.getSizeInBits() < LocVT.getSizeInBits()); 6916 6917 if (Flags.isSExt()) 6918 ArgValue = DAG.getNode(ISD::AssertSext, dl, LocVT, ArgValue, 6919 DAG.getValueType(ValVT)); 6920 else if (Flags.isZExt()) 6921 ArgValue = DAG.getNode(ISD::AssertZext, dl, LocVT, ArgValue, 6922 DAG.getValueType(ValVT)); 6923 6924 return DAG.getNode(ISD::TRUNCATE, dl, ValVT, ArgValue); 6925 } 6926 6927 SDValue PPCTargetLowering::LowerFormalArguments_AIX( 6928 SDValue Chain, CallingConv::ID CallConv, bool isVarArg, 6929 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 6930 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const { 6931 6932 assert((CallConv == CallingConv::C || CallConv == CallingConv::Cold || 6933 CallConv == CallingConv::Fast) && 6934 "Unexpected calling convention!"); 6935 6936 if (isVarArg) 6937 report_fatal_error("This call type is unimplemented on AIX."); 6938 6939 if (getTargetMachine().Options.GuaranteedTailCallOpt) 6940 report_fatal_error("Tail call support is unimplemented on AIX."); 6941 6942 if (useSoftFloat()) 6943 report_fatal_error("Soft float support is unimplemented on AIX."); 6944 6945 const PPCSubtarget &Subtarget = 6946 static_cast<const PPCSubtarget &>(DAG.getSubtarget()); 6947 if (Subtarget.hasQPX()) 6948 report_fatal_error("QPX support is not supported on AIX."); 6949 6950 const bool IsPPC64 = Subtarget.isPPC64(); 6951 const unsigned PtrByteSize = IsPPC64 ? 8 : 4; 6952 6953 // Assign locations to all of the incoming arguments. 6954 SmallVector<CCValAssign, 16> ArgLocs; 6955 MachineFunction &MF = DAG.getMachineFunction(); 6956 CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext()); 6957 6958 // Reserve space for the linkage area on the stack. 6959 const unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 6960 // On AIX a minimum of 8 words is saved to the parameter save area. 6961 const unsigned MinParameterSaveArea = 8 * PtrByteSize; 6962 CCInfo.AllocateStack(LinkageSize + MinParameterSaveArea, PtrByteSize); 6963 CCInfo.AnalyzeFormalArguments(Ins, CC_AIX); 6964 6965 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 6966 CCValAssign &VA = ArgLocs[i]; 6967 SDValue ArgValue; 6968 ISD::ArgFlagsTy Flags = Ins[i].Flags; 6969 if (VA.isRegLoc()) { 6970 EVT ValVT = VA.getValVT(); 6971 MVT LocVT = VA.getLocVT(); 6972 MVT::SimpleValueType SVT = ValVT.getSimpleVT().SimpleTy; 6973 unsigned VReg = 6974 MF.addLiveIn(VA.getLocReg(), getRegClassForSVT(SVT, IsPPC64)); 6975 ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, LocVT); 6976 if (ValVT.isScalarInteger() && 6977 (ValVT.getSizeInBits() < LocVT.getSizeInBits())) { 6978 ArgValue = 6979 truncateScalarIntegerArg(Flags, ValVT, DAG, ArgValue, LocVT, dl); 6980 } 6981 InVals.push_back(ArgValue); 6982 } else { 6983 report_fatal_error("Handling of formal arguments on the stack is " 6984 "unimplemented!"); 6985 } 6986 } 6987 6988 // Area that is at least reserved in the caller of this function. 6989 unsigned MinReservedArea = CCInfo.getNextStackOffset(); 6990 6991 // Set the size that is at least reserved in caller of this function. Tail 6992 // call optimized function's reserved stack space needs to be aligned so 6993 // that taking the difference between two stack areas will result in an 6994 // aligned stack. 6995 MinReservedArea = 6996 EnsureStackAlignment(Subtarget.getFrameLowering(), MinReservedArea); 6997 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 6998 FuncInfo->setMinReservedArea(MinReservedArea); 6999 7000 return Chain; 7001 } 7002 7003 SDValue PPCTargetLowering::LowerCall_AIX( 7004 SDValue Chain, SDValue Callee, CallingConv::ID CallConv, bool isVarArg, 7005 bool isTailCall, bool isPatchPoint, 7006 const SmallVectorImpl<ISD::OutputArg> &Outs, 7007 const SmallVectorImpl<SDValue> &OutVals, 7008 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl, 7009 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals, 7010 ImmutableCallSite CS) const { 7011 7012 assert((CallConv == CallingConv::C || 7013 CallConv == CallingConv::Cold || 7014 CallConv == CallingConv::Fast) && "Unexpected calling convention!"); 7015 7016 if (isVarArg || isPatchPoint) 7017 report_fatal_error("This call type is unimplemented on AIX."); 7018 7019 const PPCSubtarget& Subtarget = 7020 static_cast<const PPCSubtarget&>(DAG.getSubtarget()); 7021 if (Subtarget.hasQPX()) 7022 report_fatal_error("QPX is not supported on AIX."); 7023 if (Subtarget.hasAltivec()) 7024 report_fatal_error("Altivec support is unimplemented on AIX."); 7025 7026 MachineFunction &MF = DAG.getMachineFunction(); 7027 SmallVector<CCValAssign, 16> ArgLocs; 7028 CCState CCInfo(CallConv, isVarArg, MF, ArgLocs, *DAG.getContext()); 7029 7030 // Reserve space for the linkage save area (LSA) on the stack. 7031 // In both PPC32 and PPC64 there are 6 reserved slots in the LSA: 7032 // [SP][CR][LR][2 x reserved][TOC]. 7033 // The LSA is 24 bytes (6x4) in PPC32 and 48 bytes (6x8) in PPC64. 7034 const unsigned LinkageSize = Subtarget.getFrameLowering()->getLinkageSize(); 7035 const unsigned PtrByteSize = Subtarget.isPPC64() ? 8 : 4; 7036 CCInfo.AllocateStack(LinkageSize, PtrByteSize); 7037 CCInfo.AnalyzeCallOperands(Outs, CC_AIX); 7038 7039 // The prolog code of the callee may store up to 8 GPR argument registers to 7040 // the stack, allowing va_start to index over them in memory if the callee 7041 // is variadic. 7042 // Because we cannot tell if this is needed on the caller side, we have to 7043 // conservatively assume that it is needed. As such, make sure we have at 7044 // least enough stack space for the caller to store the 8 GPRs. 7045 const unsigned MinParameterSaveAreaSize = 8 * PtrByteSize; 7046 const unsigned NumBytes = LinkageSize + MinParameterSaveAreaSize; 7047 7048 // Adjust the stack pointer for the new arguments... 7049 // These operations are automatically eliminated by the prolog/epilog pass. 7050 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); 7051 SDValue CallSeqStart = Chain; 7052 7053 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 7054 7055 for (CCValAssign &VA : ArgLocs) { 7056 SDValue Arg = OutVals[VA.getValNo()]; 7057 7058 switch (VA.getLocInfo()) { 7059 default: report_fatal_error("Unexpected argument extension type."); 7060 case CCValAssign::Full: break; 7061 case CCValAssign::ZExt: 7062 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); 7063 break; 7064 case CCValAssign::SExt: 7065 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); 7066 break; 7067 } 7068 7069 if (VA.isRegLoc()) 7070 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); 7071 7072 if (VA.isMemLoc()) 7073 report_fatal_error("Handling of placing parameters on the stack is " 7074 "unimplemented!"); 7075 } 7076 7077 // For indirect calls, we need to save the TOC base to the stack for 7078 // restoration after the call. 7079 if (!isTailCall && !isPatchPoint && 7080 !isFunctionGlobalAddress(Callee) && !isa<ExternalSymbolSDNode>(Callee)) { 7081 const MCRegister TOCBaseReg = Subtarget.getTOCPointerRegister(); 7082 const MCRegister StackPtrReg = Subtarget.getStackPointerRegister(); 7083 const MVT PtrVT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32; 7084 const unsigned TOCSaveOffset = 7085 Subtarget.getFrameLowering()->getTOCSaveOffset(); 7086 7087 setUsesTOCBasePtr(DAG); 7088 SDValue Val = DAG.getCopyFromReg(Chain, dl, TOCBaseReg, PtrVT); 7089 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset, dl); 7090 SDValue StackPtr = DAG.getRegister(StackPtrReg, PtrVT); 7091 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 7092 Chain = DAG.getStore( 7093 Val.getValue(1), dl, Val, AddPtr, 7094 MachinePointerInfo::getStack(DAG.getMachineFunction(), TOCSaveOffset)); 7095 } 7096 7097 // Build a sequence of copy-to-reg nodes chained together with token chain 7098 // and flag operands which copy the outgoing args into the appropriate regs. 7099 SDValue InFlag; 7100 for (auto Reg : RegsToPass) { 7101 Chain = DAG.getCopyToReg(Chain, dl, Reg.first, Reg.second, InFlag); 7102 InFlag = Chain.getValue(1); 7103 } 7104 7105 const int SPDiff = 0; 7106 return FinishCall(CallConv, dl, isTailCall, isVarArg, isPatchPoint, 7107 /* unused except on PPC64 ELFv1 */ false, DAG, RegsToPass, 7108 InFlag, Chain, CallSeqStart, Callee, SPDiff, NumBytes, Ins, 7109 InVals, CS); 7110 } 7111 7112 bool 7113 PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv, 7114 MachineFunction &MF, bool isVarArg, 7115 const SmallVectorImpl<ISD::OutputArg> &Outs, 7116 LLVMContext &Context) const { 7117 SmallVector<CCValAssign, 16> RVLocs; 7118 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context); 7119 return CCInfo.CheckReturn( 7120 Outs, (Subtarget.isSVR4ABI() && CallConv == CallingConv::Cold) 7121 ? RetCC_PPC_Cold 7122 : RetCC_PPC); 7123 } 7124 7125 SDValue 7126 PPCTargetLowering::LowerReturn(SDValue Chain, CallingConv::ID CallConv, 7127 bool isVarArg, 7128 const SmallVectorImpl<ISD::OutputArg> &Outs, 7129 const SmallVectorImpl<SDValue> &OutVals, 7130 const SDLoc &dl, SelectionDAG &DAG) const { 7131 SmallVector<CCValAssign, 16> RVLocs; 7132 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 7133 *DAG.getContext()); 7134 CCInfo.AnalyzeReturn(Outs, 7135 (Subtarget.isSVR4ABI() && CallConv == CallingConv::Cold) 7136 ? RetCC_PPC_Cold 7137 : RetCC_PPC); 7138 7139 SDValue Flag; 7140 SmallVector<SDValue, 4> RetOps(1, Chain); 7141 7142 // Copy the result values into the output registers. 7143 for (unsigned i = 0, RealResIdx = 0; i != RVLocs.size(); ++i, ++RealResIdx) { 7144 CCValAssign &VA = RVLocs[i]; 7145 assert(VA.isRegLoc() && "Can only return in registers!"); 7146 7147 SDValue Arg = OutVals[RealResIdx]; 7148 7149 switch (VA.getLocInfo()) { 7150 default: llvm_unreachable("Unknown loc info!"); 7151 case CCValAssign::Full: break; 7152 case CCValAssign::AExt: 7153 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg); 7154 break; 7155 case CCValAssign::ZExt: 7156 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); 7157 break; 7158 case CCValAssign::SExt: 7159 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); 7160 break; 7161 } 7162 if (Subtarget.hasSPE() && VA.getLocVT() == MVT::f64) { 7163 bool isLittleEndian = Subtarget.isLittleEndian(); 7164 // Legalize ret f64 -> ret 2 x i32. 7165 SDValue SVal = 7166 DAG.getNode(PPCISD::EXTRACT_SPE, dl, MVT::i32, Arg, 7167 DAG.getIntPtrConstant(isLittleEndian ? 0 : 1, dl)); 7168 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), SVal, Flag); 7169 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 7170 SVal = DAG.getNode(PPCISD::EXTRACT_SPE, dl, MVT::i32, Arg, 7171 DAG.getIntPtrConstant(isLittleEndian ? 1 : 0, dl)); 7172 Flag = Chain.getValue(1); 7173 VA = RVLocs[++i]; // skip ahead to next loc 7174 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), SVal, Flag); 7175 } else 7176 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag); 7177 Flag = Chain.getValue(1); 7178 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 7179 } 7180 7181 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo(); 7182 const MCPhysReg *I = 7183 TRI->getCalleeSavedRegsViaCopy(&DAG.getMachineFunction()); 7184 if (I) { 7185 for (; *I; ++I) { 7186 7187 if (PPC::G8RCRegClass.contains(*I)) 7188 RetOps.push_back(DAG.getRegister(*I, MVT::i64)); 7189 else if (PPC::F8RCRegClass.contains(*I)) 7190 RetOps.push_back(DAG.getRegister(*I, MVT::getFloatingPointVT(64))); 7191 else if (PPC::CRRCRegClass.contains(*I)) 7192 RetOps.push_back(DAG.getRegister(*I, MVT::i1)); 7193 else if (PPC::VRRCRegClass.contains(*I)) 7194 RetOps.push_back(DAG.getRegister(*I, MVT::Other)); 7195 else 7196 llvm_unreachable("Unexpected register class in CSRsViaCopy!"); 7197 } 7198 } 7199 7200 RetOps[0] = Chain; // Update chain. 7201 7202 // Add the flag if we have it. 7203 if (Flag.getNode()) 7204 RetOps.push_back(Flag); 7205 7206 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps); 7207 } 7208 7209 SDValue 7210 PPCTargetLowering::LowerGET_DYNAMIC_AREA_OFFSET(SDValue Op, 7211 SelectionDAG &DAG) const { 7212 SDLoc dl(Op); 7213 7214 // Get the correct type for integers. 7215 EVT IntVT = Op.getValueType(); 7216 7217 // Get the inputs. 7218 SDValue Chain = Op.getOperand(0); 7219 SDValue FPSIdx = getFramePointerFrameIndex(DAG); 7220 // Build a DYNAREAOFFSET node. 7221 SDValue Ops[2] = {Chain, FPSIdx}; 7222 SDVTList VTs = DAG.getVTList(IntVT); 7223 return DAG.getNode(PPCISD::DYNAREAOFFSET, dl, VTs, Ops); 7224 } 7225 7226 SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, 7227 SelectionDAG &DAG) const { 7228 // When we pop the dynamic allocation we need to restore the SP link. 7229 SDLoc dl(Op); 7230 7231 // Get the correct type for pointers. 7232 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 7233 7234 // Construct the stack pointer operand. 7235 bool isPPC64 = Subtarget.isPPC64(); 7236 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1; 7237 SDValue StackPtr = DAG.getRegister(SP, PtrVT); 7238 7239 // Get the operands for the STACKRESTORE. 7240 SDValue Chain = Op.getOperand(0); 7241 SDValue SaveSP = Op.getOperand(1); 7242 7243 // Load the old link SP. 7244 SDValue LoadLinkSP = 7245 DAG.getLoad(PtrVT, dl, Chain, StackPtr, MachinePointerInfo()); 7246 7247 // Restore the stack pointer. 7248 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP); 7249 7250 // Store the old link SP. 7251 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo()); 7252 } 7253 7254 SDValue PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG &DAG) const { 7255 MachineFunction &MF = DAG.getMachineFunction(); 7256 bool isPPC64 = Subtarget.isPPC64(); 7257 EVT PtrVT = getPointerTy(MF.getDataLayout()); 7258 7259 // Get current frame pointer save index. The users of this index will be 7260 // primarily DYNALLOC instructions. 7261 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 7262 int RASI = FI->getReturnAddrSaveIndex(); 7263 7264 // If the frame pointer save index hasn't been defined yet. 7265 if (!RASI) { 7266 // Find out what the fix offset of the frame pointer save area. 7267 int LROffset = Subtarget.getFrameLowering()->getReturnSaveOffset(); 7268 // Allocate the frame index for frame pointer save area. 7269 RASI = MF.getFrameInfo().CreateFixedObject(isPPC64? 8 : 4, LROffset, false); 7270 // Save the result. 7271 FI->setReturnAddrSaveIndex(RASI); 7272 } 7273 return DAG.getFrameIndex(RASI, PtrVT); 7274 } 7275 7276 SDValue 7277 PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const { 7278 MachineFunction &MF = DAG.getMachineFunction(); 7279 bool isPPC64 = Subtarget.isPPC64(); 7280 EVT PtrVT = getPointerTy(MF.getDataLayout()); 7281 7282 // Get current frame pointer save index. The users of this index will be 7283 // primarily DYNALLOC instructions. 7284 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 7285 int FPSI = FI->getFramePointerSaveIndex(); 7286 7287 // If the frame pointer save index hasn't been defined yet. 7288 if (!FPSI) { 7289 // Find out what the fix offset of the frame pointer save area. 7290 int FPOffset = Subtarget.getFrameLowering()->getFramePointerSaveOffset(); 7291 // Allocate the frame index for frame pointer save area. 7292 FPSI = MF.getFrameInfo().CreateFixedObject(isPPC64? 8 : 4, FPOffset, true); 7293 // Save the result. 7294 FI->setFramePointerSaveIndex(FPSI); 7295 } 7296 return DAG.getFrameIndex(FPSI, PtrVT); 7297 } 7298 7299 SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, 7300 SelectionDAG &DAG) const { 7301 // Get the inputs. 7302 SDValue Chain = Op.getOperand(0); 7303 SDValue Size = Op.getOperand(1); 7304 SDLoc dl(Op); 7305 7306 // Get the correct type for pointers. 7307 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 7308 // Negate the size. 7309 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT, 7310 DAG.getConstant(0, dl, PtrVT), Size); 7311 // Construct a node for the frame pointer save index. 7312 SDValue FPSIdx = getFramePointerFrameIndex(DAG); 7313 // Build a DYNALLOC node. 7314 SDValue Ops[3] = { Chain, NegSize, FPSIdx }; 7315 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other); 7316 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops); 7317 } 7318 7319 SDValue PPCTargetLowering::LowerEH_DWARF_CFA(SDValue Op, 7320 SelectionDAG &DAG) const { 7321 MachineFunction &MF = DAG.getMachineFunction(); 7322 7323 bool isPPC64 = Subtarget.isPPC64(); 7324 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 7325 7326 int FI = MF.getFrameInfo().CreateFixedObject(isPPC64 ? 8 : 4, 0, false); 7327 return DAG.getFrameIndex(FI, PtrVT); 7328 } 7329 7330 SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op, 7331 SelectionDAG &DAG) const { 7332 SDLoc DL(Op); 7333 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL, 7334 DAG.getVTList(MVT::i32, MVT::Other), 7335 Op.getOperand(0), Op.getOperand(1)); 7336 } 7337 7338 SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op, 7339 SelectionDAG &DAG) const { 7340 SDLoc DL(Op); 7341 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other, 7342 Op.getOperand(0), Op.getOperand(1)); 7343 } 7344 7345 SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const { 7346 if (Op.getValueType().isVector()) 7347 return LowerVectorLoad(Op, DAG); 7348 7349 assert(Op.getValueType() == MVT::i1 && 7350 "Custom lowering only for i1 loads"); 7351 7352 // First, load 8 bits into 32 bits, then truncate to 1 bit. 7353 7354 SDLoc dl(Op); 7355 LoadSDNode *LD = cast<LoadSDNode>(Op); 7356 7357 SDValue Chain = LD->getChain(); 7358 SDValue BasePtr = LD->getBasePtr(); 7359 MachineMemOperand *MMO = LD->getMemOperand(); 7360 7361 SDValue NewLD = 7362 DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(DAG.getDataLayout()), Chain, 7363 BasePtr, MVT::i8, MMO); 7364 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD); 7365 7366 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) }; 7367 return DAG.getMergeValues(Ops, dl); 7368 } 7369 7370 SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const { 7371 if (Op.getOperand(1).getValueType().isVector()) 7372 return LowerVectorStore(Op, DAG); 7373 7374 assert(Op.getOperand(1).getValueType() == MVT::i1 && 7375 "Custom lowering only for i1 stores"); 7376 7377 // First, zero extend to 32 bits, then use a truncating store to 8 bits. 7378 7379 SDLoc dl(Op); 7380 StoreSDNode *ST = cast<StoreSDNode>(Op); 7381 7382 SDValue Chain = ST->getChain(); 7383 SDValue BasePtr = ST->getBasePtr(); 7384 SDValue Value = ST->getValue(); 7385 MachineMemOperand *MMO = ST->getMemOperand(); 7386 7387 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(DAG.getDataLayout()), 7388 Value); 7389 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO); 7390 } 7391 7392 // FIXME: Remove this once the ANDI glue bug is fixed: 7393 SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const { 7394 assert(Op.getValueType() == MVT::i1 && 7395 "Custom lowering only for i1 results"); 7396 7397 SDLoc DL(Op); 7398 return DAG.getNode(PPCISD::ANDI_rec_1_GT_BIT, DL, MVT::i1, Op.getOperand(0)); 7399 } 7400 7401 SDValue PPCTargetLowering::LowerTRUNCATEVector(SDValue Op, 7402 SelectionDAG &DAG) const { 7403 7404 // Implements a vector truncate that fits in a vector register as a shuffle. 7405 // We want to legalize vector truncates down to where the source fits in 7406 // a vector register (and target is therefore smaller than vector register 7407 // size). At that point legalization will try to custom lower the sub-legal 7408 // result and get here - where we can contain the truncate as a single target 7409 // operation. 7410 7411 // For example a trunc <2 x i16> to <2 x i8> could be visualized as follows: 7412 // <MSB1|LSB1, MSB2|LSB2> to <LSB1, LSB2> 7413 // 7414 // We will implement it for big-endian ordering as this (where x denotes 7415 // undefined): 7416 // < MSB1|LSB1, MSB2|LSB2, uu, uu, uu, uu, uu, uu> to 7417 // < LSB1, LSB2, u, u, u, u, u, u, u, u, u, u, u, u, u, u> 7418 // 7419 // The same operation in little-endian ordering will be: 7420 // <uu, uu, uu, uu, uu, uu, LSB2|MSB2, LSB1|MSB1> to 7421 // <u, u, u, u, u, u, u, u, u, u, u, u, u, u, LSB2, LSB1> 7422 7423 assert(Op.getValueType().isVector() && "Vector type expected."); 7424 7425 SDLoc DL(Op); 7426 SDValue N1 = Op.getOperand(0); 7427 unsigned SrcSize = N1.getValueType().getSizeInBits(); 7428 assert(SrcSize <= 128 && "Source must fit in an Altivec/VSX vector"); 7429 SDValue WideSrc = SrcSize == 128 ? N1 : widenVec(DAG, N1, DL); 7430 7431 EVT TrgVT = Op.getValueType(); 7432 unsigned TrgNumElts = TrgVT.getVectorNumElements(); 7433 EVT EltVT = TrgVT.getVectorElementType(); 7434 unsigned WideNumElts = 128 / EltVT.getSizeInBits(); 7435 EVT WideVT = EVT::getVectorVT(*DAG.getContext(), EltVT, WideNumElts); 7436 7437 // First list the elements we want to keep. 7438 unsigned SizeMult = SrcSize / TrgVT.getSizeInBits(); 7439 SmallVector<int, 16> ShuffV; 7440 if (Subtarget.isLittleEndian()) 7441 for (unsigned i = 0; i < TrgNumElts; ++i) 7442 ShuffV.push_back(i * SizeMult); 7443 else 7444 for (unsigned i = 1; i <= TrgNumElts; ++i) 7445 ShuffV.push_back(i * SizeMult - 1); 7446 7447 // Populate the remaining elements with undefs. 7448 for (unsigned i = TrgNumElts; i < WideNumElts; ++i) 7449 // ShuffV.push_back(i + WideNumElts); 7450 ShuffV.push_back(WideNumElts + 1); 7451 7452 SDValue Conv = DAG.getNode(ISD::BITCAST, DL, WideVT, WideSrc); 7453 return DAG.getVectorShuffle(WideVT, DL, Conv, DAG.getUNDEF(WideVT), ShuffV); 7454 } 7455 7456 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when 7457 /// possible. 7458 SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { 7459 // Not FP? Not a fsel. 7460 if (!Op.getOperand(0).getValueType().isFloatingPoint() || 7461 !Op.getOperand(2).getValueType().isFloatingPoint()) 7462 return Op; 7463 7464 bool HasNoInfs = DAG.getTarget().Options.NoInfsFPMath; 7465 bool HasNoNaNs = DAG.getTarget().Options.NoNaNsFPMath; 7466 // We might be able to do better than this under some circumstances, but in 7467 // general, fsel-based lowering of select is a finite-math-only optimization. 7468 // For more information, see section F.3 of the 2.06 ISA specification. 7469 // With ISA 3.0, we have xsmaxcdp/xsmincdp which are OK to emit even in the 7470 // presence of infinities. 7471 if (!Subtarget.hasP9Vector() && (!HasNoInfs || !HasNoNaNs)) 7472 return Op; 7473 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); 7474 7475 EVT ResVT = Op.getValueType(); 7476 EVT CmpVT = Op.getOperand(0).getValueType(); 7477 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 7478 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3); 7479 SDLoc dl(Op); 7480 7481 if (Subtarget.hasP9Vector() && LHS == TV && RHS == FV) { 7482 switch (CC) { 7483 default: 7484 // Not a min/max but with finite math, we may still be able to use fsel. 7485 if (HasNoInfs && HasNoNaNs) 7486 break; 7487 return Op; 7488 case ISD::SETOGT: 7489 case ISD::SETGT: 7490 return DAG.getNode(PPCISD::XSMAXCDP, dl, Op.getValueType(), LHS, RHS); 7491 case ISD::SETOLT: 7492 case ISD::SETLT: 7493 return DAG.getNode(PPCISD::XSMINCDP, dl, Op.getValueType(), LHS, RHS); 7494 } 7495 } 7496 7497 // TODO: Propagate flags from the select rather than global settings. 7498 SDNodeFlags Flags; 7499 Flags.setNoInfs(true); 7500 Flags.setNoNaNs(true); 7501 7502 // If the RHS of the comparison is a 0.0, we don't need to do the 7503 // subtraction at all. 7504 SDValue Sel1; 7505 if (isFloatingPointZero(RHS)) 7506 switch (CC) { 7507 default: break; // SETUO etc aren't handled by fsel. 7508 case ISD::SETNE: 7509 std::swap(TV, FV); 7510 LLVM_FALLTHROUGH; 7511 case ISD::SETEQ: 7512 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 7513 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 7514 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); 7515 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits 7516 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1); 7517 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 7518 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV); 7519 case ISD::SETULT: 7520 case ISD::SETLT: 7521 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt 7522 LLVM_FALLTHROUGH; 7523 case ISD::SETOGE: 7524 case ISD::SETGE: 7525 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 7526 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 7527 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); 7528 case ISD::SETUGT: 7529 case ISD::SETGT: 7530 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt 7531 LLVM_FALLTHROUGH; 7532 case ISD::SETOLE: 7533 case ISD::SETLE: 7534 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 7535 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 7536 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 7537 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV); 7538 } 7539 7540 SDValue Cmp; 7541 switch (CC) { 7542 default: break; // SETUO etc aren't handled by fsel. 7543 case ISD::SETNE: 7544 std::swap(TV, FV); 7545 LLVM_FALLTHROUGH; 7546 case ISD::SETEQ: 7547 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, Flags); 7548 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 7549 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 7550 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 7551 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits 7552 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1); 7553 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 7554 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV); 7555 case ISD::SETULT: 7556 case ISD::SETLT: 7557 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, Flags); 7558 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 7559 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 7560 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV); 7561 case ISD::SETOGE: 7562 case ISD::SETGE: 7563 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS, Flags); 7564 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 7565 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 7566 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 7567 case ISD::SETUGT: 7568 case ISD::SETGT: 7569 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, Flags); 7570 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 7571 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 7572 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV); 7573 case ISD::SETOLE: 7574 case ISD::SETLE: 7575 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS, Flags); 7576 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 7577 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 7578 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 7579 } 7580 return Op; 7581 } 7582 7583 void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI, 7584 SelectionDAG &DAG, 7585 const SDLoc &dl) const { 7586 assert(Op.getOperand(0).getValueType().isFloatingPoint()); 7587 SDValue Src = Op.getOperand(0); 7588 if (Src.getValueType() == MVT::f32) 7589 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src); 7590 7591 SDValue Tmp; 7592 switch (Op.getSimpleValueType().SimpleTy) { 7593 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!"); 7594 case MVT::i32: 7595 Tmp = DAG.getNode( 7596 Op.getOpcode() == ISD::FP_TO_SINT 7597 ? PPCISD::FCTIWZ 7598 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ), 7599 dl, MVT::f64, Src); 7600 break; 7601 case MVT::i64: 7602 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) && 7603 "i64 FP_TO_UINT is supported only with FPCVT"); 7604 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ : 7605 PPCISD::FCTIDUZ, 7606 dl, MVT::f64, Src); 7607 break; 7608 } 7609 7610 // Convert the FP value to an int value through memory. 7611 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() && 7612 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()); 7613 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64); 7614 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex(); 7615 MachinePointerInfo MPI = 7616 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI); 7617 7618 // Emit a store to the stack slot. 7619 SDValue Chain; 7620 if (i32Stack) { 7621 MachineFunction &MF = DAG.getMachineFunction(); 7622 MachineMemOperand *MMO = 7623 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4); 7624 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr }; 7625 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl, 7626 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO); 7627 } else 7628 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr, MPI); 7629 7630 // Result is a load from the stack slot. If loading 4 bytes, make sure to 7631 // add in a bias on big endian. 7632 if (Op.getValueType() == MVT::i32 && !i32Stack) { 7633 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, 7634 DAG.getConstant(4, dl, FIPtr.getValueType())); 7635 MPI = MPI.getWithOffset(Subtarget.isLittleEndian() ? 0 : 4); 7636 } 7637 7638 RLI.Chain = Chain; 7639 RLI.Ptr = FIPtr; 7640 RLI.MPI = MPI; 7641 } 7642 7643 /// Custom lowers floating point to integer conversions to use 7644 /// the direct move instructions available in ISA 2.07 to avoid the 7645 /// need for load/store combinations. 7646 SDValue PPCTargetLowering::LowerFP_TO_INTDirectMove(SDValue Op, 7647 SelectionDAG &DAG, 7648 const SDLoc &dl) const { 7649 assert(Op.getOperand(0).getValueType().isFloatingPoint()); 7650 SDValue Src = Op.getOperand(0); 7651 7652 if (Src.getValueType() == MVT::f32) 7653 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src); 7654 7655 SDValue Tmp; 7656 switch (Op.getSimpleValueType().SimpleTy) { 7657 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!"); 7658 case MVT::i32: 7659 Tmp = DAG.getNode( 7660 Op.getOpcode() == ISD::FP_TO_SINT 7661 ? PPCISD::FCTIWZ 7662 : (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : PPCISD::FCTIDZ), 7663 dl, MVT::f64, Src); 7664 Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i32, Tmp); 7665 break; 7666 case MVT::i64: 7667 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) && 7668 "i64 FP_TO_UINT is supported only with FPCVT"); 7669 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ : 7670 PPCISD::FCTIDUZ, 7671 dl, MVT::f64, Src); 7672 Tmp = DAG.getNode(PPCISD::MFVSR, dl, MVT::i64, Tmp); 7673 break; 7674 } 7675 return Tmp; 7676 } 7677 7678 SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG, 7679 const SDLoc &dl) const { 7680 7681 // FP to INT conversions are legal for f128. 7682 if (EnableQuadPrecision && (Op->getOperand(0).getValueType() == MVT::f128)) 7683 return Op; 7684 7685 // Expand ppcf128 to i32 by hand for the benefit of llvm-gcc bootstrap on 7686 // PPC (the libcall is not available). 7687 if (Op.getOperand(0).getValueType() == MVT::ppcf128) { 7688 if (Op.getValueType() == MVT::i32) { 7689 if (Op.getOpcode() == ISD::FP_TO_SINT) { 7690 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, 7691 MVT::f64, Op.getOperand(0), 7692 DAG.getIntPtrConstant(0, dl)); 7693 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, 7694 MVT::f64, Op.getOperand(0), 7695 DAG.getIntPtrConstant(1, dl)); 7696 7697 // Add the two halves of the long double in round-to-zero mode. 7698 SDValue Res = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi); 7699 7700 // Now use a smaller FP_TO_SINT. 7701 return DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Res); 7702 } 7703 if (Op.getOpcode() == ISD::FP_TO_UINT) { 7704 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0}; 7705 APFloat APF = APFloat(APFloat::PPCDoubleDouble(), APInt(128, TwoE31)); 7706 SDValue Tmp = DAG.getConstantFP(APF, dl, MVT::ppcf128); 7707 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X 7708 // FIXME: generated code sucks. 7709 // TODO: Are there fast-math-flags to propagate to this FSUB? 7710 SDValue True = DAG.getNode(ISD::FSUB, dl, MVT::ppcf128, 7711 Op.getOperand(0), Tmp); 7712 True = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, True); 7713 True = DAG.getNode(ISD::ADD, dl, MVT::i32, True, 7714 DAG.getConstant(0x80000000, dl, MVT::i32)); 7715 SDValue False = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, 7716 Op.getOperand(0)); 7717 return DAG.getSelectCC(dl, Op.getOperand(0), Tmp, True, False, 7718 ISD::SETGE); 7719 } 7720 } 7721 7722 return SDValue(); 7723 } 7724 7725 if (Subtarget.hasDirectMove() && Subtarget.isPPC64()) 7726 return LowerFP_TO_INTDirectMove(Op, DAG, dl); 7727 7728 ReuseLoadInfo RLI; 7729 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl); 7730 7731 return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, 7732 RLI.Alignment, RLI.MMOFlags(), RLI.AAInfo, RLI.Ranges); 7733 } 7734 7735 // We're trying to insert a regular store, S, and then a load, L. If the 7736 // incoming value, O, is a load, we might just be able to have our load use the 7737 // address used by O. However, we don't know if anything else will store to 7738 // that address before we can load from it. To prevent this situation, we need 7739 // to insert our load, L, into the chain as a peer of O. To do this, we give L 7740 // the same chain operand as O, we create a token factor from the chain results 7741 // of O and L, and we replace all uses of O's chain result with that token 7742 // factor (see spliceIntoChain below for this last part). 7743 bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT, 7744 ReuseLoadInfo &RLI, 7745 SelectionDAG &DAG, 7746 ISD::LoadExtType ET) const { 7747 SDLoc dl(Op); 7748 if (ET == ISD::NON_EXTLOAD && 7749 (Op.getOpcode() == ISD::FP_TO_UINT || 7750 Op.getOpcode() == ISD::FP_TO_SINT) && 7751 isOperationLegalOrCustom(Op.getOpcode(), 7752 Op.getOperand(0).getValueType())) { 7753 7754 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl); 7755 return true; 7756 } 7757 7758 LoadSDNode *LD = dyn_cast<LoadSDNode>(Op); 7759 if (!LD || LD->getExtensionType() != ET || LD->isVolatile() || 7760 LD->isNonTemporal()) 7761 return false; 7762 if (LD->getMemoryVT() != MemVT) 7763 return false; 7764 7765 RLI.Ptr = LD->getBasePtr(); 7766 if (LD->isIndexed() && !LD->getOffset().isUndef()) { 7767 assert(LD->getAddressingMode() == ISD::PRE_INC && 7768 "Non-pre-inc AM on PPC?"); 7769 RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr, 7770 LD->getOffset()); 7771 } 7772 7773 RLI.Chain = LD->getChain(); 7774 RLI.MPI = LD->getPointerInfo(); 7775 RLI.IsDereferenceable = LD->isDereferenceable(); 7776 RLI.IsInvariant = LD->isInvariant(); 7777 RLI.Alignment = LD->getAlignment(); 7778 RLI.AAInfo = LD->getAAInfo(); 7779 RLI.Ranges = LD->getRanges(); 7780 7781 RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1); 7782 return true; 7783 } 7784 7785 // Given the head of the old chain, ResChain, insert a token factor containing 7786 // it and NewResChain, and make users of ResChain now be users of that token 7787 // factor. 7788 // TODO: Remove and use DAG::makeEquivalentMemoryOrdering() instead. 7789 void PPCTargetLowering::spliceIntoChain(SDValue ResChain, 7790 SDValue NewResChain, 7791 SelectionDAG &DAG) const { 7792 if (!ResChain) 7793 return; 7794 7795 SDLoc dl(NewResChain); 7796 7797 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 7798 NewResChain, DAG.getUNDEF(MVT::Other)); 7799 assert(TF.getNode() != NewResChain.getNode() && 7800 "A new TF really is required here"); 7801 7802 DAG.ReplaceAllUsesOfValueWith(ResChain, TF); 7803 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain); 7804 } 7805 7806 /// Analyze profitability of direct move 7807 /// prefer float load to int load plus direct move 7808 /// when there is no integer use of int load 7809 bool PPCTargetLowering::directMoveIsProfitable(const SDValue &Op) const { 7810 SDNode *Origin = Op.getOperand(0).getNode(); 7811 if (Origin->getOpcode() != ISD::LOAD) 7812 return true; 7813 7814 // If there is no LXSIBZX/LXSIHZX, like Power8, 7815 // prefer direct move if the memory size is 1 or 2 bytes. 7816 MachineMemOperand *MMO = cast<LoadSDNode>(Origin)->getMemOperand(); 7817 if (!Subtarget.hasP9Vector() && MMO->getSize() <= 2) 7818 return true; 7819 7820 for (SDNode::use_iterator UI = Origin->use_begin(), 7821 UE = Origin->use_end(); 7822 UI != UE; ++UI) { 7823 7824 // Only look at the users of the loaded value. 7825 if (UI.getUse().get().getResNo() != 0) 7826 continue; 7827 7828 if (UI->getOpcode() != ISD::SINT_TO_FP && 7829 UI->getOpcode() != ISD::UINT_TO_FP) 7830 return true; 7831 } 7832 7833 return false; 7834 } 7835 7836 /// Custom lowers integer to floating point conversions to use 7837 /// the direct move instructions available in ISA 2.07 to avoid the 7838 /// need for load/store combinations. 7839 SDValue PPCTargetLowering::LowerINT_TO_FPDirectMove(SDValue Op, 7840 SelectionDAG &DAG, 7841 const SDLoc &dl) const { 7842 assert((Op.getValueType() == MVT::f32 || 7843 Op.getValueType() == MVT::f64) && 7844 "Invalid floating point type as target of conversion"); 7845 assert(Subtarget.hasFPCVT() && 7846 "Int to FP conversions with direct moves require FPCVT"); 7847 SDValue FP; 7848 SDValue Src = Op.getOperand(0); 7849 bool SinglePrec = Op.getValueType() == MVT::f32; 7850 bool WordInt = Src.getSimpleValueType().SimpleTy == MVT::i32; 7851 bool Signed = Op.getOpcode() == ISD::SINT_TO_FP; 7852 unsigned ConvOp = Signed ? (SinglePrec ? PPCISD::FCFIDS : PPCISD::FCFID) : 7853 (SinglePrec ? PPCISD::FCFIDUS : PPCISD::FCFIDU); 7854 7855 if (WordInt) { 7856 FP = DAG.getNode(Signed ? PPCISD::MTVSRA : PPCISD::MTVSRZ, 7857 dl, MVT::f64, Src); 7858 FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP); 7859 } 7860 else { 7861 FP = DAG.getNode(PPCISD::MTVSRA, dl, MVT::f64, Src); 7862 FP = DAG.getNode(ConvOp, dl, SinglePrec ? MVT::f32 : MVT::f64, FP); 7863 } 7864 7865 return FP; 7866 } 7867 7868 static SDValue widenVec(SelectionDAG &DAG, SDValue Vec, const SDLoc &dl) { 7869 7870 EVT VecVT = Vec.getValueType(); 7871 assert(VecVT.isVector() && "Expected a vector type."); 7872 assert(VecVT.getSizeInBits() < 128 && "Vector is already full width."); 7873 7874 EVT EltVT = VecVT.getVectorElementType(); 7875 unsigned WideNumElts = 128 / EltVT.getSizeInBits(); 7876 EVT WideVT = EVT::getVectorVT(*DAG.getContext(), EltVT, WideNumElts); 7877 7878 unsigned NumConcat = WideNumElts / VecVT.getVectorNumElements(); 7879 SmallVector<SDValue, 16> Ops(NumConcat); 7880 Ops[0] = Vec; 7881 SDValue UndefVec = DAG.getUNDEF(VecVT); 7882 for (unsigned i = 1; i < NumConcat; ++i) 7883 Ops[i] = UndefVec; 7884 7885 return DAG.getNode(ISD::CONCAT_VECTORS, dl, WideVT, Ops); 7886 } 7887 7888 SDValue PPCTargetLowering::LowerINT_TO_FPVector(SDValue Op, SelectionDAG &DAG, 7889 const SDLoc &dl) const { 7890 7891 unsigned Opc = Op.getOpcode(); 7892 assert((Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP) && 7893 "Unexpected conversion type"); 7894 assert((Op.getValueType() == MVT::v2f64 || Op.getValueType() == MVT::v4f32) && 7895 "Supports conversions to v2f64/v4f32 only."); 7896 7897 bool SignedConv = Opc == ISD::SINT_TO_FP; 7898 bool FourEltRes = Op.getValueType() == MVT::v4f32; 7899 7900 SDValue Wide = widenVec(DAG, Op.getOperand(0), dl); 7901 EVT WideVT = Wide.getValueType(); 7902 unsigned WideNumElts = WideVT.getVectorNumElements(); 7903 MVT IntermediateVT = FourEltRes ? MVT::v4i32 : MVT::v2i64; 7904 7905 SmallVector<int, 16> ShuffV; 7906 for (unsigned i = 0; i < WideNumElts; ++i) 7907 ShuffV.push_back(i + WideNumElts); 7908 7909 int Stride = FourEltRes ? WideNumElts / 4 : WideNumElts / 2; 7910 int SaveElts = FourEltRes ? 4 : 2; 7911 if (Subtarget.isLittleEndian()) 7912 for (int i = 0; i < SaveElts; i++) 7913 ShuffV[i * Stride] = i; 7914 else 7915 for (int i = 1; i <= SaveElts; i++) 7916 ShuffV[i * Stride - 1] = i - 1; 7917 7918 SDValue ShuffleSrc2 = 7919 SignedConv ? DAG.getUNDEF(WideVT) : DAG.getConstant(0, dl, WideVT); 7920 SDValue Arrange = DAG.getVectorShuffle(WideVT, dl, Wide, ShuffleSrc2, ShuffV); 7921 unsigned ExtendOp = 7922 SignedConv ? (unsigned)PPCISD::SExtVElems : (unsigned)ISD::BITCAST; 7923 7924 SDValue Extend; 7925 if (!Subtarget.hasP9Altivec() && SignedConv) { 7926 Arrange = DAG.getBitcast(IntermediateVT, Arrange); 7927 Extend = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, IntermediateVT, Arrange, 7928 DAG.getValueType(Op.getOperand(0).getValueType())); 7929 } else 7930 Extend = DAG.getNode(ExtendOp, dl, IntermediateVT, Arrange); 7931 7932 return DAG.getNode(Opc, dl, Op.getValueType(), Extend); 7933 } 7934 7935 SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op, 7936 SelectionDAG &DAG) const { 7937 SDLoc dl(Op); 7938 7939 EVT InVT = Op.getOperand(0).getValueType(); 7940 EVT OutVT = Op.getValueType(); 7941 if (OutVT.isVector() && OutVT.isFloatingPoint() && 7942 isOperationCustom(Op.getOpcode(), InVT)) 7943 return LowerINT_TO_FPVector(Op, DAG, dl); 7944 7945 // Conversions to f128 are legal. 7946 if (EnableQuadPrecision && (Op.getValueType() == MVT::f128)) 7947 return Op; 7948 7949 if (Subtarget.hasQPX() && Op.getOperand(0).getValueType() == MVT::v4i1) { 7950 if (Op.getValueType() != MVT::v4f32 && Op.getValueType() != MVT::v4f64) 7951 return SDValue(); 7952 7953 SDValue Value = Op.getOperand(0); 7954 // The values are now known to be -1 (false) or 1 (true). To convert this 7955 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5). 7956 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5 7957 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value); 7958 7959 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64); 7960 7961 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs); 7962 7963 if (Op.getValueType() != MVT::v4f64) 7964 Value = DAG.getNode(ISD::FP_ROUND, dl, 7965 Op.getValueType(), Value, 7966 DAG.getIntPtrConstant(1, dl)); 7967 return Value; 7968 } 7969 7970 // Don't handle ppc_fp128 here; let it be lowered to a libcall. 7971 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64) 7972 return SDValue(); 7973 7974 if (Op.getOperand(0).getValueType() == MVT::i1) 7975 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0), 7976 DAG.getConstantFP(1.0, dl, Op.getValueType()), 7977 DAG.getConstantFP(0.0, dl, Op.getValueType())); 7978 7979 // If we have direct moves, we can do all the conversion, skip the store/load 7980 // however, without FPCVT we can't do most conversions. 7981 if (Subtarget.hasDirectMove() && directMoveIsProfitable(Op) && 7982 Subtarget.isPPC64() && Subtarget.hasFPCVT()) 7983 return LowerINT_TO_FPDirectMove(Op, DAG, dl); 7984 7985 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) && 7986 "UINT_TO_FP is supported only with FPCVT"); 7987 7988 // If we have FCFIDS, then use it when converting to single-precision. 7989 // Otherwise, convert to double-precision and then round. 7990 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) 7991 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS 7992 : PPCISD::FCFIDS) 7993 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU 7994 : PPCISD::FCFID); 7995 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) 7996 ? MVT::f32 7997 : MVT::f64; 7998 7999 if (Op.getOperand(0).getValueType() == MVT::i64) { 8000 SDValue SINT = Op.getOperand(0); 8001 // When converting to single-precision, we actually need to convert 8002 // to double-precision first and then round to single-precision. 8003 // To avoid double-rounding effects during that operation, we have 8004 // to prepare the input operand. Bits that might be truncated when 8005 // converting to double-precision are replaced by a bit that won't 8006 // be lost at this stage, but is below the single-precision rounding 8007 // position. 8008 // 8009 // However, if -enable-unsafe-fp-math is in effect, accept double 8010 // rounding to avoid the extra overhead. 8011 if (Op.getValueType() == MVT::f32 && 8012 !Subtarget.hasFPCVT() && 8013 !DAG.getTarget().Options.UnsafeFPMath) { 8014 8015 // Twiddle input to make sure the low 11 bits are zero. (If this 8016 // is the case, we are guaranteed the value will fit into the 53 bit 8017 // mantissa of an IEEE double-precision value without rounding.) 8018 // If any of those low 11 bits were not zero originally, make sure 8019 // bit 12 (value 2048) is set instead, so that the final rounding 8020 // to single-precision gets the correct result. 8021 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64, 8022 SINT, DAG.getConstant(2047, dl, MVT::i64)); 8023 Round = DAG.getNode(ISD::ADD, dl, MVT::i64, 8024 Round, DAG.getConstant(2047, dl, MVT::i64)); 8025 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT); 8026 Round = DAG.getNode(ISD::AND, dl, MVT::i64, 8027 Round, DAG.getConstant(-2048, dl, MVT::i64)); 8028 8029 // However, we cannot use that value unconditionally: if the magnitude 8030 // of the input value is small, the bit-twiddling we did above might 8031 // end up visibly changing the output. Fortunately, in that case, we 8032 // don't need to twiddle bits since the original input will convert 8033 // exactly to double-precision floating-point already. Therefore, 8034 // construct a conditional to use the original value if the top 11 8035 // bits are all sign-bit copies, and use the rounded value computed 8036 // above otherwise. 8037 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64, 8038 SINT, DAG.getConstant(53, dl, MVT::i32)); 8039 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64, 8040 Cond, DAG.getConstant(1, dl, MVT::i64)); 8041 Cond = DAG.getSetCC(dl, MVT::i32, 8042 Cond, DAG.getConstant(1, dl, MVT::i64), ISD::SETUGT); 8043 8044 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT); 8045 } 8046 8047 ReuseLoadInfo RLI; 8048 SDValue Bits; 8049 8050 MachineFunction &MF = DAG.getMachineFunction(); 8051 if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) { 8052 Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, 8053 RLI.Alignment, RLI.MMOFlags(), RLI.AAInfo, RLI.Ranges); 8054 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 8055 } else if (Subtarget.hasLFIWAX() && 8056 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) { 8057 MachineMemOperand *MMO = 8058 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 8059 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 8060 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 8061 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl, 8062 DAG.getVTList(MVT::f64, MVT::Other), 8063 Ops, MVT::i32, MMO); 8064 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 8065 } else if (Subtarget.hasFPCVT() && 8066 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) { 8067 MachineMemOperand *MMO = 8068 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 8069 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 8070 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 8071 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl, 8072 DAG.getVTList(MVT::f64, MVT::Other), 8073 Ops, MVT::i32, MMO); 8074 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 8075 } else if (((Subtarget.hasLFIWAX() && 8076 SINT.getOpcode() == ISD::SIGN_EXTEND) || 8077 (Subtarget.hasFPCVT() && 8078 SINT.getOpcode() == ISD::ZERO_EXTEND)) && 8079 SINT.getOperand(0).getValueType() == MVT::i32) { 8080 MachineFrameInfo &MFI = MF.getFrameInfo(); 8081 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 8082 8083 int FrameIdx = MFI.CreateStackObject(4, 4, false); 8084 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 8085 8086 SDValue Store = 8087 DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx, 8088 MachinePointerInfo::getFixedStack( 8089 DAG.getMachineFunction(), FrameIdx)); 8090 8091 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 && 8092 "Expected an i32 store"); 8093 8094 RLI.Ptr = FIdx; 8095 RLI.Chain = Store; 8096 RLI.MPI = 8097 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx); 8098 RLI.Alignment = 4; 8099 8100 MachineMemOperand *MMO = 8101 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 8102 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 8103 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 8104 Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ? 8105 PPCISD::LFIWZX : PPCISD::LFIWAX, 8106 dl, DAG.getVTList(MVT::f64, MVT::Other), 8107 Ops, MVT::i32, MMO); 8108 } else 8109 Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT); 8110 8111 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits); 8112 8113 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) 8114 FP = DAG.getNode(ISD::FP_ROUND, dl, 8115 MVT::f32, FP, DAG.getIntPtrConstant(0, dl)); 8116 return FP; 8117 } 8118 8119 assert(Op.getOperand(0).getValueType() == MVT::i32 && 8120 "Unhandled INT_TO_FP type in custom expander!"); 8121 // Since we only generate this in 64-bit mode, we can take advantage of 8122 // 64-bit registers. In particular, sign extend the input value into the 8123 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack 8124 // then lfd it and fcfid it. 8125 MachineFunction &MF = DAG.getMachineFunction(); 8126 MachineFrameInfo &MFI = MF.getFrameInfo(); 8127 EVT PtrVT = getPointerTy(MF.getDataLayout()); 8128 8129 SDValue Ld; 8130 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) { 8131 ReuseLoadInfo RLI; 8132 bool ReusingLoad; 8133 if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI, 8134 DAG))) { 8135 int FrameIdx = MFI.CreateStackObject(4, 4, false); 8136 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 8137 8138 SDValue Store = 8139 DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx, 8140 MachinePointerInfo::getFixedStack( 8141 DAG.getMachineFunction(), FrameIdx)); 8142 8143 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 && 8144 "Expected an i32 store"); 8145 8146 RLI.Ptr = FIdx; 8147 RLI.Chain = Store; 8148 RLI.MPI = 8149 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx); 8150 RLI.Alignment = 4; 8151 } 8152 8153 MachineMemOperand *MMO = 8154 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 8155 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 8156 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 8157 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ? 8158 PPCISD::LFIWZX : PPCISD::LFIWAX, 8159 dl, DAG.getVTList(MVT::f64, MVT::Other), 8160 Ops, MVT::i32, MMO); 8161 if (ReusingLoad) 8162 spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG); 8163 } else { 8164 assert(Subtarget.isPPC64() && 8165 "i32->FP without LFIWAX supported only on PPC64"); 8166 8167 int FrameIdx = MFI.CreateStackObject(8, 8, false); 8168 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 8169 8170 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64, 8171 Op.getOperand(0)); 8172 8173 // STD the extended value into the stack slot. 8174 SDValue Store = DAG.getStore( 8175 DAG.getEntryNode(), dl, Ext64, FIdx, 8176 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx)); 8177 8178 // Load the value as a double. 8179 Ld = DAG.getLoad( 8180 MVT::f64, dl, Store, FIdx, 8181 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx)); 8182 } 8183 8184 // FCFID it and return it. 8185 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld); 8186 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) 8187 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, 8188 DAG.getIntPtrConstant(0, dl)); 8189 return FP; 8190 } 8191 8192 SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op, 8193 SelectionDAG &DAG) const { 8194 SDLoc dl(Op); 8195 /* 8196 The rounding mode is in bits 30:31 of FPSR, and has the following 8197 settings: 8198 00 Round to nearest 8199 01 Round to 0 8200 10 Round to +inf 8201 11 Round to -inf 8202 8203 FLT_ROUNDS, on the other hand, expects the following: 8204 -1 Undefined 8205 0 Round to 0 8206 1 Round to nearest 8207 2 Round to +inf 8208 3 Round to -inf 8209 8210 To perform the conversion, we do: 8211 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1)) 8212 */ 8213 8214 MachineFunction &MF = DAG.getMachineFunction(); 8215 EVT VT = Op.getValueType(); 8216 EVT PtrVT = getPointerTy(MF.getDataLayout()); 8217 8218 // Save FP Control Word to register 8219 EVT NodeTys[] = { 8220 MVT::f64, // return register 8221 MVT::Glue // unused in this context 8222 }; 8223 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None); 8224 8225 // Save FP register to stack slot 8226 int SSFI = MF.getFrameInfo().CreateStackObject(8, 8, false); 8227 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT); 8228 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain, StackSlot, 8229 MachinePointerInfo()); 8230 8231 // Load FP Control Word from low 32 bits of stack slot. 8232 SDValue Four = DAG.getConstant(4, dl, PtrVT); 8233 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four); 8234 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo()); 8235 8236 // Transform as necessary 8237 SDValue CWD1 = 8238 DAG.getNode(ISD::AND, dl, MVT::i32, 8239 CWD, DAG.getConstant(3, dl, MVT::i32)); 8240 SDValue CWD2 = 8241 DAG.getNode(ISD::SRL, dl, MVT::i32, 8242 DAG.getNode(ISD::AND, dl, MVT::i32, 8243 DAG.getNode(ISD::XOR, dl, MVT::i32, 8244 CWD, DAG.getConstant(3, dl, MVT::i32)), 8245 DAG.getConstant(3, dl, MVT::i32)), 8246 DAG.getConstant(1, dl, MVT::i32)); 8247 8248 SDValue RetVal = 8249 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2); 8250 8251 return DAG.getNode((VT.getSizeInBits() < 16 ? 8252 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal); 8253 } 8254 8255 SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const { 8256 EVT VT = Op.getValueType(); 8257 unsigned BitWidth = VT.getSizeInBits(); 8258 SDLoc dl(Op); 8259 assert(Op.getNumOperands() == 3 && 8260 VT == Op.getOperand(1).getValueType() && 8261 "Unexpected SHL!"); 8262 8263 // Expand into a bunch of logical ops. Note that these ops 8264 // depend on the PPC behavior for oversized shift amounts. 8265 SDValue Lo = Op.getOperand(0); 8266 SDValue Hi = Op.getOperand(1); 8267 SDValue Amt = Op.getOperand(2); 8268 EVT AmtVT = Amt.getValueType(); 8269 8270 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 8271 DAG.getConstant(BitWidth, dl, AmtVT), Amt); 8272 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt); 8273 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1); 8274 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3); 8275 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 8276 DAG.getConstant(-BitWidth, dl, AmtVT)); 8277 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5); 8278 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6); 8279 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt); 8280 SDValue OutOps[] = { OutLo, OutHi }; 8281 return DAG.getMergeValues(OutOps, dl); 8282 } 8283 8284 SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const { 8285 EVT VT = Op.getValueType(); 8286 SDLoc dl(Op); 8287 unsigned BitWidth = VT.getSizeInBits(); 8288 assert(Op.getNumOperands() == 3 && 8289 VT == Op.getOperand(1).getValueType() && 8290 "Unexpected SRL!"); 8291 8292 // Expand into a bunch of logical ops. Note that these ops 8293 // depend on the PPC behavior for oversized shift amounts. 8294 SDValue Lo = Op.getOperand(0); 8295 SDValue Hi = Op.getOperand(1); 8296 SDValue Amt = Op.getOperand(2); 8297 EVT AmtVT = Amt.getValueType(); 8298 8299 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 8300 DAG.getConstant(BitWidth, dl, AmtVT), Amt); 8301 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt); 8302 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1); 8303 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3); 8304 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 8305 DAG.getConstant(-BitWidth, dl, AmtVT)); 8306 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5); 8307 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6); 8308 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt); 8309 SDValue OutOps[] = { OutLo, OutHi }; 8310 return DAG.getMergeValues(OutOps, dl); 8311 } 8312 8313 SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const { 8314 SDLoc dl(Op); 8315 EVT VT = Op.getValueType(); 8316 unsigned BitWidth = VT.getSizeInBits(); 8317 assert(Op.getNumOperands() == 3 && 8318 VT == Op.getOperand(1).getValueType() && 8319 "Unexpected SRA!"); 8320 8321 // Expand into a bunch of logical ops, followed by a select_cc. 8322 SDValue Lo = Op.getOperand(0); 8323 SDValue Hi = Op.getOperand(1); 8324 SDValue Amt = Op.getOperand(2); 8325 EVT AmtVT = Amt.getValueType(); 8326 8327 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 8328 DAG.getConstant(BitWidth, dl, AmtVT), Amt); 8329 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt); 8330 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1); 8331 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3); 8332 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 8333 DAG.getConstant(-BitWidth, dl, AmtVT)); 8334 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5); 8335 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt); 8336 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, dl, AmtVT), 8337 Tmp4, Tmp6, ISD::SETLE); 8338 SDValue OutOps[] = { OutLo, OutHi }; 8339 return DAG.getMergeValues(OutOps, dl); 8340 } 8341 8342 //===----------------------------------------------------------------------===// 8343 // Vector related lowering. 8344 // 8345 8346 /// BuildSplatI - Build a canonical splati of Val with an element size of 8347 /// SplatSize. Cast the result to VT. 8348 static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT, 8349 SelectionDAG &DAG, const SDLoc &dl) { 8350 static const MVT VTys[] = { // canonical VT to use for each size. 8351 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32 8352 }; 8353 8354 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1]; 8355 8356 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize. 8357 if (Val == -1) 8358 SplatSize = 1; 8359 8360 EVT CanonicalVT = VTys[SplatSize-1]; 8361 8362 // Build a canonical splat for this value. 8363 return DAG.getBitcast(ReqVT, DAG.getConstant(Val, dl, CanonicalVT)); 8364 } 8365 8366 /// BuildIntrinsicOp - Return a unary operator intrinsic node with the 8367 /// specified intrinsic ID. 8368 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op, SelectionDAG &DAG, 8369 const SDLoc &dl, EVT DestVT = MVT::Other) { 8370 if (DestVT == MVT::Other) DestVT = Op.getValueType(); 8371 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 8372 DAG.getConstant(IID, dl, MVT::i32), Op); 8373 } 8374 8375 /// BuildIntrinsicOp - Return a binary operator intrinsic node with the 8376 /// specified intrinsic ID. 8377 static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS, 8378 SelectionDAG &DAG, const SDLoc &dl, 8379 EVT DestVT = MVT::Other) { 8380 if (DestVT == MVT::Other) DestVT = LHS.getValueType(); 8381 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 8382 DAG.getConstant(IID, dl, MVT::i32), LHS, RHS); 8383 } 8384 8385 /// BuildIntrinsicOp - Return a ternary operator intrinsic node with the 8386 /// specified intrinsic ID. 8387 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1, 8388 SDValue Op2, SelectionDAG &DAG, const SDLoc &dl, 8389 EVT DestVT = MVT::Other) { 8390 if (DestVT == MVT::Other) DestVT = Op0.getValueType(); 8391 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 8392 DAG.getConstant(IID, dl, MVT::i32), Op0, Op1, Op2); 8393 } 8394 8395 /// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified 8396 /// amount. The result has the specified value type. 8397 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt, EVT VT, 8398 SelectionDAG &DAG, const SDLoc &dl) { 8399 // Force LHS/RHS to be the right type. 8400 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS); 8401 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS); 8402 8403 int Ops[16]; 8404 for (unsigned i = 0; i != 16; ++i) 8405 Ops[i] = i + Amt; 8406 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops); 8407 return DAG.getNode(ISD::BITCAST, dl, VT, T); 8408 } 8409 8410 /// Do we have an efficient pattern in a .td file for this node? 8411 /// 8412 /// \param V - pointer to the BuildVectorSDNode being matched 8413 /// \param HasDirectMove - does this subtarget have VSR <-> GPR direct moves? 8414 /// 8415 /// There are some patterns where it is beneficial to keep a BUILD_VECTOR 8416 /// node as a BUILD_VECTOR node rather than expanding it. The patterns where 8417 /// the opposite is true (expansion is beneficial) are: 8418 /// - The node builds a vector out of integers that are not 32 or 64-bits 8419 /// - The node builds a vector out of constants 8420 /// - The node is a "load-and-splat" 8421 /// In all other cases, we will choose to keep the BUILD_VECTOR. 8422 static bool haveEfficientBuildVectorPattern(BuildVectorSDNode *V, 8423 bool HasDirectMove, 8424 bool HasP8Vector) { 8425 EVT VecVT = V->getValueType(0); 8426 bool RightType = VecVT == MVT::v2f64 || 8427 (HasP8Vector && VecVT == MVT::v4f32) || 8428 (HasDirectMove && (VecVT == MVT::v2i64 || VecVT == MVT::v4i32)); 8429 if (!RightType) 8430 return false; 8431 8432 bool IsSplat = true; 8433 bool IsLoad = false; 8434 SDValue Op0 = V->getOperand(0); 8435 8436 // This function is called in a block that confirms the node is not a constant 8437 // splat. So a constant BUILD_VECTOR here means the vector is built out of 8438 // different constants. 8439 if (V->isConstant()) 8440 return false; 8441 for (int i = 0, e = V->getNumOperands(); i < e; ++i) { 8442 if (V->getOperand(i).isUndef()) 8443 return false; 8444 // We want to expand nodes that represent load-and-splat even if the 8445 // loaded value is a floating point truncation or conversion to int. 8446 if (V->getOperand(i).getOpcode() == ISD::LOAD || 8447 (V->getOperand(i).getOpcode() == ISD::FP_ROUND && 8448 V->getOperand(i).getOperand(0).getOpcode() == ISD::LOAD) || 8449 (V->getOperand(i).getOpcode() == ISD::FP_TO_SINT && 8450 V->getOperand(i).getOperand(0).getOpcode() == ISD::LOAD) || 8451 (V->getOperand(i).getOpcode() == ISD::FP_TO_UINT && 8452 V->getOperand(i).getOperand(0).getOpcode() == ISD::LOAD)) 8453 IsLoad = true; 8454 // If the operands are different or the input is not a load and has more 8455 // uses than just this BV node, then it isn't a splat. 8456 if (V->getOperand(i) != Op0 || 8457 (!IsLoad && !V->isOnlyUserOf(V->getOperand(i).getNode()))) 8458 IsSplat = false; 8459 } 8460 return !(IsSplat && IsLoad); 8461 } 8462 8463 // Lower BITCAST(f128, (build_pair i64, i64)) to BUILD_FP128. 8464 SDValue PPCTargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const { 8465 8466 SDLoc dl(Op); 8467 SDValue Op0 = Op->getOperand(0); 8468 8469 if (!EnableQuadPrecision || 8470 (Op.getValueType() != MVT::f128 ) || 8471 (Op0.getOpcode() != ISD::BUILD_PAIR) || 8472 (Op0.getOperand(0).getValueType() != MVT::i64) || 8473 (Op0.getOperand(1).getValueType() != MVT::i64)) 8474 return SDValue(); 8475 8476 return DAG.getNode(PPCISD::BUILD_FP128, dl, MVT::f128, Op0.getOperand(0), 8477 Op0.getOperand(1)); 8478 } 8479 8480 static const SDValue *getNormalLoadInput(const SDValue &Op) { 8481 const SDValue *InputLoad = &Op; 8482 if (InputLoad->getOpcode() == ISD::BITCAST) 8483 InputLoad = &InputLoad->getOperand(0); 8484 if (InputLoad->getOpcode() == ISD::SCALAR_TO_VECTOR) 8485 InputLoad = &InputLoad->getOperand(0); 8486 if (InputLoad->getOpcode() != ISD::LOAD) 8487 return nullptr; 8488 LoadSDNode *LD = cast<LoadSDNode>(*InputLoad); 8489 return ISD::isNormalLoad(LD) ? InputLoad : nullptr; 8490 } 8491 8492 // If this is a case we can't handle, return null and let the default 8493 // expansion code take care of it. If we CAN select this case, and if it 8494 // selects to a single instruction, return Op. Otherwise, if we can codegen 8495 // this case more efficiently than a constant pool load, lower it to the 8496 // sequence of ops that should be used. 8497 SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op, 8498 SelectionDAG &DAG) const { 8499 SDLoc dl(Op); 8500 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode()); 8501 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR"); 8502 8503 if (Subtarget.hasQPX() && Op.getValueType() == MVT::v4i1) { 8504 // We first build an i32 vector, load it into a QPX register, 8505 // then convert it to a floating-point vector and compare it 8506 // to a zero vector to get the boolean result. 8507 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 8508 int FrameIdx = MFI.CreateStackObject(16, 16, false); 8509 MachinePointerInfo PtrInfo = 8510 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx); 8511 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 8512 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 8513 8514 assert(BVN->getNumOperands() == 4 && 8515 "BUILD_VECTOR for v4i1 does not have 4 operands"); 8516 8517 bool IsConst = true; 8518 for (unsigned i = 0; i < 4; ++i) { 8519 if (BVN->getOperand(i).isUndef()) continue; 8520 if (!isa<ConstantSDNode>(BVN->getOperand(i))) { 8521 IsConst = false; 8522 break; 8523 } 8524 } 8525 8526 if (IsConst) { 8527 Constant *One = 8528 ConstantFP::get(Type::getFloatTy(*DAG.getContext()), 1.0); 8529 Constant *NegOne = 8530 ConstantFP::get(Type::getFloatTy(*DAG.getContext()), -1.0); 8531 8532 Constant *CV[4]; 8533 for (unsigned i = 0; i < 4; ++i) { 8534 if (BVN->getOperand(i).isUndef()) 8535 CV[i] = UndefValue::get(Type::getFloatTy(*DAG.getContext())); 8536 else if (isNullConstant(BVN->getOperand(i))) 8537 CV[i] = NegOne; 8538 else 8539 CV[i] = One; 8540 } 8541 8542 Constant *CP = ConstantVector::get(CV); 8543 SDValue CPIdx = DAG.getConstantPool(CP, getPointerTy(DAG.getDataLayout()), 8544 16 /* alignment */); 8545 8546 SDValue Ops[] = {DAG.getEntryNode(), CPIdx}; 8547 SDVTList VTs = DAG.getVTList({MVT::v4i1, /*chain*/ MVT::Other}); 8548 return DAG.getMemIntrinsicNode( 8549 PPCISD::QVLFSb, dl, VTs, Ops, MVT::v4f32, 8550 MachinePointerInfo::getConstantPool(DAG.getMachineFunction())); 8551 } 8552 8553 SmallVector<SDValue, 4> Stores; 8554 for (unsigned i = 0; i < 4; ++i) { 8555 if (BVN->getOperand(i).isUndef()) continue; 8556 8557 unsigned Offset = 4*i; 8558 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType()); 8559 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx); 8560 8561 unsigned StoreSize = BVN->getOperand(i).getValueType().getStoreSize(); 8562 if (StoreSize > 4) { 8563 Stores.push_back( 8564 DAG.getTruncStore(DAG.getEntryNode(), dl, BVN->getOperand(i), Idx, 8565 PtrInfo.getWithOffset(Offset), MVT::i32)); 8566 } else { 8567 SDValue StoreValue = BVN->getOperand(i); 8568 if (StoreSize < 4) 8569 StoreValue = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, StoreValue); 8570 8571 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, StoreValue, Idx, 8572 PtrInfo.getWithOffset(Offset))); 8573 } 8574 } 8575 8576 SDValue StoreChain; 8577 if (!Stores.empty()) 8578 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 8579 else 8580 StoreChain = DAG.getEntryNode(); 8581 8582 // Now load from v4i32 into the QPX register; this will extend it to 8583 // v4i64 but not yet convert it to a floating point. Nevertheless, this 8584 // is typed as v4f64 because the QPX register integer states are not 8585 // explicitly represented. 8586 8587 SDValue Ops[] = {StoreChain, 8588 DAG.getConstant(Intrinsic::ppc_qpx_qvlfiwz, dl, MVT::i32), 8589 FIdx}; 8590 SDVTList VTs = DAG.getVTList({MVT::v4f64, /*chain*/ MVT::Other}); 8591 8592 SDValue LoadedVect = DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, 8593 dl, VTs, Ops, MVT::v4i32, PtrInfo); 8594 LoadedVect = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64, 8595 DAG.getConstant(Intrinsic::ppc_qpx_qvfcfidu, dl, MVT::i32), 8596 LoadedVect); 8597 8598 SDValue FPZeros = DAG.getConstantFP(0.0, dl, MVT::v4f64); 8599 8600 return DAG.getSetCC(dl, MVT::v4i1, LoadedVect, FPZeros, ISD::SETEQ); 8601 } 8602 8603 // All other QPX vectors are handled by generic code. 8604 if (Subtarget.hasQPX()) 8605 return SDValue(); 8606 8607 // Check if this is a splat of a constant value. 8608 APInt APSplatBits, APSplatUndef; 8609 unsigned SplatBitSize; 8610 bool HasAnyUndefs; 8611 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize, 8612 HasAnyUndefs, 0, !Subtarget.isLittleEndian()) || 8613 SplatBitSize > 32) { 8614 8615 const SDValue *InputLoad = getNormalLoadInput(Op.getOperand(0)); 8616 // Handle load-and-splat patterns as we have instructions that will do this 8617 // in one go. 8618 if (InputLoad && DAG.isSplatValue(Op, true)) { 8619 LoadSDNode *LD = cast<LoadSDNode>(*InputLoad); 8620 8621 // We have handling for 4 and 8 byte elements. 8622 unsigned ElementSize = LD->getMemoryVT().getScalarSizeInBits(); 8623 8624 // Checking for a single use of this load, we have to check for vector 8625 // width (128 bits) / ElementSize uses (since each operand of the 8626 // BUILD_VECTOR is a separate use of the value. 8627 if (InputLoad->getNode()->hasNUsesOfValue(128 / ElementSize, 0) && 8628 ((Subtarget.hasVSX() && ElementSize == 64) || 8629 (Subtarget.hasP9Vector() && ElementSize == 32))) { 8630 SDValue Ops[] = { 8631 LD->getChain(), // Chain 8632 LD->getBasePtr(), // Ptr 8633 DAG.getValueType(Op.getValueType()) // VT 8634 }; 8635 return 8636 DAG.getMemIntrinsicNode(PPCISD::LD_SPLAT, dl, 8637 DAG.getVTList(Op.getValueType(), MVT::Other), 8638 Ops, LD->getMemoryVT(), LD->getMemOperand()); 8639 } 8640 } 8641 8642 // BUILD_VECTOR nodes that are not constant splats of up to 32-bits can be 8643 // lowered to VSX instructions under certain conditions. 8644 // Without VSX, there is no pattern more efficient than expanding the node. 8645 if (Subtarget.hasVSX() && 8646 haveEfficientBuildVectorPattern(BVN, Subtarget.hasDirectMove(), 8647 Subtarget.hasP8Vector())) 8648 return Op; 8649 return SDValue(); 8650 } 8651 8652 unsigned SplatBits = APSplatBits.getZExtValue(); 8653 unsigned SplatUndef = APSplatUndef.getZExtValue(); 8654 unsigned SplatSize = SplatBitSize / 8; 8655 8656 // First, handle single instruction cases. 8657 8658 // All zeros? 8659 if (SplatBits == 0) { 8660 // Canonicalize all zero vectors to be v4i32. 8661 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) { 8662 SDValue Z = DAG.getConstant(0, dl, MVT::v4i32); 8663 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z); 8664 } 8665 return Op; 8666 } 8667 8668 // We have XXSPLTIB for constant splats one byte wide 8669 // FIXME: SplatBits is an unsigned int being cast to an int while passing it 8670 // as an argument to BuildSplatiI. Given SplatSize == 1 it is okay here. 8671 if (Subtarget.hasP9Vector() && SplatSize == 1) 8672 return BuildSplatI(SplatBits, SplatSize, Op.getValueType(), DAG, dl); 8673 8674 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw]. 8675 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >> 8676 (32-SplatBitSize)); 8677 if (SextVal >= -16 && SextVal <= 15) 8678 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl); 8679 8680 // Two instruction sequences. 8681 8682 // If this value is in the range [-32,30] and is even, use: 8683 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2) 8684 // If this value is in the range [17,31] and is odd, use: 8685 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16) 8686 // If this value is in the range [-31,-17] and is odd, use: 8687 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16) 8688 // Note the last two are three-instruction sequences. 8689 if (SextVal >= -32 && SextVal <= 31) { 8690 // To avoid having these optimizations undone by constant folding, 8691 // we convert to a pseudo that will be expanded later into one of 8692 // the above forms. 8693 SDValue Elt = DAG.getConstant(SextVal, dl, MVT::i32); 8694 EVT VT = (SplatSize == 1 ? MVT::v16i8 : 8695 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32)); 8696 SDValue EltSize = DAG.getConstant(SplatSize, dl, MVT::i32); 8697 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize); 8698 if (VT == Op.getValueType()) 8699 return RetVal; 8700 else 8701 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal); 8702 } 8703 8704 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is 8705 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important 8706 // for fneg/fabs. 8707 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) { 8708 // Make -1 and vspltisw -1: 8709 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl); 8710 8711 // Make the VSLW intrinsic, computing 0x8000_0000. 8712 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV, 8713 OnesV, DAG, dl); 8714 8715 // xor by OnesV to invert it. 8716 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV); 8717 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 8718 } 8719 8720 // Check to see if this is a wide variety of vsplti*, binop self cases. 8721 static const signed char SplatCsts[] = { 8722 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7, 8723 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16 8724 }; 8725 8726 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) { 8727 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for 8728 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1' 8729 int i = SplatCsts[idx]; 8730 8731 // Figure out what shift amount will be used by altivec if shifted by i in 8732 // this splat size. 8733 unsigned TypeShiftAmt = i & (SplatBitSize-1); 8734 8735 // vsplti + shl self. 8736 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) { 8737 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 8738 static const unsigned IIDs[] = { // Intrinsic to use for each size. 8739 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0, 8740 Intrinsic::ppc_altivec_vslw 8741 }; 8742 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 8743 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 8744 } 8745 8746 // vsplti + srl self. 8747 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) { 8748 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 8749 static const unsigned IIDs[] = { // Intrinsic to use for each size. 8750 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0, 8751 Intrinsic::ppc_altivec_vsrw 8752 }; 8753 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 8754 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 8755 } 8756 8757 // vsplti + sra self. 8758 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) { 8759 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 8760 static const unsigned IIDs[] = { // Intrinsic to use for each size. 8761 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0, 8762 Intrinsic::ppc_altivec_vsraw 8763 }; 8764 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 8765 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 8766 } 8767 8768 // vsplti + rol self. 8769 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) | 8770 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) { 8771 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 8772 static const unsigned IIDs[] = { // Intrinsic to use for each size. 8773 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0, 8774 Intrinsic::ppc_altivec_vrlw 8775 }; 8776 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 8777 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 8778 } 8779 8780 // t = vsplti c, result = vsldoi t, t, 1 8781 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) { 8782 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 8783 unsigned Amt = Subtarget.isLittleEndian() ? 15 : 1; 8784 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl); 8785 } 8786 // t = vsplti c, result = vsldoi t, t, 2 8787 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) { 8788 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 8789 unsigned Amt = Subtarget.isLittleEndian() ? 14 : 2; 8790 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl); 8791 } 8792 // t = vsplti c, result = vsldoi t, t, 3 8793 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) { 8794 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 8795 unsigned Amt = Subtarget.isLittleEndian() ? 13 : 3; 8796 return BuildVSLDOI(T, T, Amt, Op.getValueType(), DAG, dl); 8797 } 8798 } 8799 8800 return SDValue(); 8801 } 8802 8803 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit 8804 /// the specified operations to build the shuffle. 8805 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS, 8806 SDValue RHS, SelectionDAG &DAG, 8807 const SDLoc &dl) { 8808 unsigned OpNum = (PFEntry >> 26) & 0x0F; 8809 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1); 8810 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1); 8811 8812 enum { 8813 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3> 8814 OP_VMRGHW, 8815 OP_VMRGLW, 8816 OP_VSPLTISW0, 8817 OP_VSPLTISW1, 8818 OP_VSPLTISW2, 8819 OP_VSPLTISW3, 8820 OP_VSLDOI4, 8821 OP_VSLDOI8, 8822 OP_VSLDOI12 8823 }; 8824 8825 if (OpNum == OP_COPY) { 8826 if (LHSID == (1*9+2)*9+3) return LHS; 8827 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!"); 8828 return RHS; 8829 } 8830 8831 SDValue OpLHS, OpRHS; 8832 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl); 8833 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl); 8834 8835 int ShufIdxs[16]; 8836 switch (OpNum) { 8837 default: llvm_unreachable("Unknown i32 permute!"); 8838 case OP_VMRGHW: 8839 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3; 8840 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19; 8841 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7; 8842 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23; 8843 break; 8844 case OP_VMRGLW: 8845 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11; 8846 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27; 8847 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15; 8848 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31; 8849 break; 8850 case OP_VSPLTISW0: 8851 for (unsigned i = 0; i != 16; ++i) 8852 ShufIdxs[i] = (i&3)+0; 8853 break; 8854 case OP_VSPLTISW1: 8855 for (unsigned i = 0; i != 16; ++i) 8856 ShufIdxs[i] = (i&3)+4; 8857 break; 8858 case OP_VSPLTISW2: 8859 for (unsigned i = 0; i != 16; ++i) 8860 ShufIdxs[i] = (i&3)+8; 8861 break; 8862 case OP_VSPLTISW3: 8863 for (unsigned i = 0; i != 16; ++i) 8864 ShufIdxs[i] = (i&3)+12; 8865 break; 8866 case OP_VSLDOI4: 8867 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl); 8868 case OP_VSLDOI8: 8869 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl); 8870 case OP_VSLDOI12: 8871 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl); 8872 } 8873 EVT VT = OpLHS.getValueType(); 8874 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS); 8875 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS); 8876 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs); 8877 return DAG.getNode(ISD::BITCAST, dl, VT, T); 8878 } 8879 8880 /// lowerToVINSERTB - Return the SDValue if this VECTOR_SHUFFLE can be handled 8881 /// by the VINSERTB instruction introduced in ISA 3.0, else just return default 8882 /// SDValue. 8883 SDValue PPCTargetLowering::lowerToVINSERTB(ShuffleVectorSDNode *N, 8884 SelectionDAG &DAG) const { 8885 const unsigned BytesInVector = 16; 8886 bool IsLE = Subtarget.isLittleEndian(); 8887 SDLoc dl(N); 8888 SDValue V1 = N->getOperand(0); 8889 SDValue V2 = N->getOperand(1); 8890 unsigned ShiftElts = 0, InsertAtByte = 0; 8891 bool Swap = false; 8892 8893 // Shifts required to get the byte we want at element 7. 8894 unsigned LittleEndianShifts[] = {8, 7, 6, 5, 4, 3, 2, 1, 8895 0, 15, 14, 13, 12, 11, 10, 9}; 8896 unsigned BigEndianShifts[] = {9, 10, 11, 12, 13, 14, 15, 0, 8897 1, 2, 3, 4, 5, 6, 7, 8}; 8898 8899 ArrayRef<int> Mask = N->getMask(); 8900 int OriginalOrder[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; 8901 8902 // For each mask element, find out if we're just inserting something 8903 // from V2 into V1 or vice versa. 8904 // Possible permutations inserting an element from V2 into V1: 8905 // X, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 8906 // 0, X, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 8907 // ... 8908 // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, X 8909 // Inserting from V1 into V2 will be similar, except mask range will be 8910 // [16,31]. 8911 8912 bool FoundCandidate = false; 8913 // If both vector operands for the shuffle are the same vector, the mask 8914 // will contain only elements from the first one and the second one will be 8915 // undef. 8916 unsigned VINSERTBSrcElem = IsLE ? 8 : 7; 8917 // Go through the mask of half-words to find an element that's being moved 8918 // from one vector to the other. 8919 for (unsigned i = 0; i < BytesInVector; ++i) { 8920 unsigned CurrentElement = Mask[i]; 8921 // If 2nd operand is undefined, we should only look for element 7 in the 8922 // Mask. 8923 if (V2.isUndef() && CurrentElement != VINSERTBSrcElem) 8924 continue; 8925 8926 bool OtherElementsInOrder = true; 8927 // Examine the other elements in the Mask to see if they're in original 8928 // order. 8929 for (unsigned j = 0; j < BytesInVector; ++j) { 8930 if (j == i) 8931 continue; 8932 // If CurrentElement is from V1 [0,15], then we the rest of the Mask to be 8933 // from V2 [16,31] and vice versa. Unless the 2nd operand is undefined, 8934 // in which we always assume we're always picking from the 1st operand. 8935 int MaskOffset = 8936 (!V2.isUndef() && CurrentElement < BytesInVector) ? BytesInVector : 0; 8937 if (Mask[j] != OriginalOrder[j] + MaskOffset) { 8938 OtherElementsInOrder = false; 8939 break; 8940 } 8941 } 8942 // If other elements are in original order, we record the number of shifts 8943 // we need to get the element we want into element 7. Also record which byte 8944 // in the vector we should insert into. 8945 if (OtherElementsInOrder) { 8946 // If 2nd operand is undefined, we assume no shifts and no swapping. 8947 if (V2.isUndef()) { 8948 ShiftElts = 0; 8949 Swap = false; 8950 } else { 8951 // Only need the last 4-bits for shifts because operands will be swapped if CurrentElement is >= 2^4. 8952 ShiftElts = IsLE ? LittleEndianShifts[CurrentElement & 0xF] 8953 : BigEndianShifts[CurrentElement & 0xF]; 8954 Swap = CurrentElement < BytesInVector; 8955 } 8956 InsertAtByte = IsLE ? BytesInVector - (i + 1) : i; 8957 FoundCandidate = true; 8958 break; 8959 } 8960 } 8961 8962 if (!FoundCandidate) 8963 return SDValue(); 8964 8965 // Candidate found, construct the proper SDAG sequence with VINSERTB, 8966 // optionally with VECSHL if shift is required. 8967 if (Swap) 8968 std::swap(V1, V2); 8969 if (V2.isUndef()) 8970 V2 = V1; 8971 if (ShiftElts) { 8972 SDValue Shl = DAG.getNode(PPCISD::VECSHL, dl, MVT::v16i8, V2, V2, 8973 DAG.getConstant(ShiftElts, dl, MVT::i32)); 8974 return DAG.getNode(PPCISD::VECINSERT, dl, MVT::v16i8, V1, Shl, 8975 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 8976 } 8977 return DAG.getNode(PPCISD::VECINSERT, dl, MVT::v16i8, V1, V2, 8978 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 8979 } 8980 8981 /// lowerToVINSERTH - Return the SDValue if this VECTOR_SHUFFLE can be handled 8982 /// by the VINSERTH instruction introduced in ISA 3.0, else just return default 8983 /// SDValue. 8984 SDValue PPCTargetLowering::lowerToVINSERTH(ShuffleVectorSDNode *N, 8985 SelectionDAG &DAG) const { 8986 const unsigned NumHalfWords = 8; 8987 const unsigned BytesInVector = NumHalfWords * 2; 8988 // Check that the shuffle is on half-words. 8989 if (!isNByteElemShuffleMask(N, 2, 1)) 8990 return SDValue(); 8991 8992 bool IsLE = Subtarget.isLittleEndian(); 8993 SDLoc dl(N); 8994 SDValue V1 = N->getOperand(0); 8995 SDValue V2 = N->getOperand(1); 8996 unsigned ShiftElts = 0, InsertAtByte = 0; 8997 bool Swap = false; 8998 8999 // Shifts required to get the half-word we want at element 3. 9000 unsigned LittleEndianShifts[] = {4, 3, 2, 1, 0, 7, 6, 5}; 9001 unsigned BigEndianShifts[] = {5, 6, 7, 0, 1, 2, 3, 4}; 9002 9003 uint32_t Mask = 0; 9004 uint32_t OriginalOrderLow = 0x1234567; 9005 uint32_t OriginalOrderHigh = 0x89ABCDEF; 9006 // Now we look at mask elements 0,2,4,6,8,10,12,14. Pack the mask into a 9007 // 32-bit space, only need 4-bit nibbles per element. 9008 for (unsigned i = 0; i < NumHalfWords; ++i) { 9009 unsigned MaskShift = (NumHalfWords - 1 - i) * 4; 9010 Mask |= ((uint32_t)(N->getMaskElt(i * 2) / 2) << MaskShift); 9011 } 9012 9013 // For each mask element, find out if we're just inserting something 9014 // from V2 into V1 or vice versa. Possible permutations inserting an element 9015 // from V2 into V1: 9016 // X, 1, 2, 3, 4, 5, 6, 7 9017 // 0, X, 2, 3, 4, 5, 6, 7 9018 // 0, 1, X, 3, 4, 5, 6, 7 9019 // 0, 1, 2, X, 4, 5, 6, 7 9020 // 0, 1, 2, 3, X, 5, 6, 7 9021 // 0, 1, 2, 3, 4, X, 6, 7 9022 // 0, 1, 2, 3, 4, 5, X, 7 9023 // 0, 1, 2, 3, 4, 5, 6, X 9024 // Inserting from V1 into V2 will be similar, except mask range will be [8,15]. 9025 9026 bool FoundCandidate = false; 9027 // Go through the mask of half-words to find an element that's being moved 9028 // from one vector to the other. 9029 for (unsigned i = 0; i < NumHalfWords; ++i) { 9030 unsigned MaskShift = (NumHalfWords - 1 - i) * 4; 9031 uint32_t MaskOneElt = (Mask >> MaskShift) & 0xF; 9032 uint32_t MaskOtherElts = ~(0xF << MaskShift); 9033 uint32_t TargetOrder = 0x0; 9034 9035 // If both vector operands for the shuffle are the same vector, the mask 9036 // will contain only elements from the first one and the second one will be 9037 // undef. 9038 if (V2.isUndef()) { 9039 ShiftElts = 0; 9040 unsigned VINSERTHSrcElem = IsLE ? 4 : 3; 9041 TargetOrder = OriginalOrderLow; 9042 Swap = false; 9043 // Skip if not the correct element or mask of other elements don't equal 9044 // to our expected order. 9045 if (MaskOneElt == VINSERTHSrcElem && 9046 (Mask & MaskOtherElts) == (TargetOrder & MaskOtherElts)) { 9047 InsertAtByte = IsLE ? BytesInVector - (i + 1) * 2 : i * 2; 9048 FoundCandidate = true; 9049 break; 9050 } 9051 } else { // If both operands are defined. 9052 // Target order is [8,15] if the current mask is between [0,7]. 9053 TargetOrder = 9054 (MaskOneElt < NumHalfWords) ? OriginalOrderHigh : OriginalOrderLow; 9055 // Skip if mask of other elements don't equal our expected order. 9056 if ((Mask & MaskOtherElts) == (TargetOrder & MaskOtherElts)) { 9057 // We only need the last 3 bits for the number of shifts. 9058 ShiftElts = IsLE ? LittleEndianShifts[MaskOneElt & 0x7] 9059 : BigEndianShifts[MaskOneElt & 0x7]; 9060 InsertAtByte = IsLE ? BytesInVector - (i + 1) * 2 : i * 2; 9061 Swap = MaskOneElt < NumHalfWords; 9062 FoundCandidate = true; 9063 break; 9064 } 9065 } 9066 } 9067 9068 if (!FoundCandidate) 9069 return SDValue(); 9070 9071 // Candidate found, construct the proper SDAG sequence with VINSERTH, 9072 // optionally with VECSHL if shift is required. 9073 if (Swap) 9074 std::swap(V1, V2); 9075 if (V2.isUndef()) 9076 V2 = V1; 9077 SDValue Conv1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1); 9078 if (ShiftElts) { 9079 // Double ShiftElts because we're left shifting on v16i8 type. 9080 SDValue Shl = DAG.getNode(PPCISD::VECSHL, dl, MVT::v16i8, V2, V2, 9081 DAG.getConstant(2 * ShiftElts, dl, MVT::i32)); 9082 SDValue Conv2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, Shl); 9083 SDValue Ins = DAG.getNode(PPCISD::VECINSERT, dl, MVT::v8i16, Conv1, Conv2, 9084 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 9085 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Ins); 9086 } 9087 SDValue Conv2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2); 9088 SDValue Ins = DAG.getNode(PPCISD::VECINSERT, dl, MVT::v8i16, Conv1, Conv2, 9089 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 9090 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Ins); 9091 } 9092 9093 /// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this 9094 /// is a shuffle we can handle in a single instruction, return it. Otherwise, 9095 /// return the code it can be lowered into. Worst case, it can always be 9096 /// lowered into a vperm. 9097 SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, 9098 SelectionDAG &DAG) const { 9099 SDLoc dl(Op); 9100 SDValue V1 = Op.getOperand(0); 9101 SDValue V2 = Op.getOperand(1); 9102 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); 9103 EVT VT = Op.getValueType(); 9104 bool isLittleEndian = Subtarget.isLittleEndian(); 9105 9106 unsigned ShiftElts, InsertAtByte; 9107 bool Swap = false; 9108 9109 // If this is a load-and-splat, we can do that with a single instruction 9110 // in some cases. However if the load has multiple uses, we don't want to 9111 // combine it because that will just produce multiple loads. 9112 const SDValue *InputLoad = getNormalLoadInput(V1); 9113 if (InputLoad && Subtarget.hasVSX() && V2.isUndef() && 9114 (PPC::isSplatShuffleMask(SVOp, 4) || PPC::isSplatShuffleMask(SVOp, 8)) && 9115 InputLoad->hasOneUse()) { 9116 bool IsFourByte = PPC::isSplatShuffleMask(SVOp, 4); 9117 int SplatIdx = 9118 PPC::getSplatIdxForPPCMnemonics(SVOp, IsFourByte ? 4 : 8, DAG); 9119 9120 LoadSDNode *LD = cast<LoadSDNode>(*InputLoad); 9121 // For 4-byte load-and-splat, we need Power9. 9122 if ((IsFourByte && Subtarget.hasP9Vector()) || !IsFourByte) { 9123 uint64_t Offset = 0; 9124 if (IsFourByte) 9125 Offset = isLittleEndian ? (3 - SplatIdx) * 4 : SplatIdx * 4; 9126 else 9127 Offset = isLittleEndian ? (1 - SplatIdx) * 8 : SplatIdx * 8; 9128 SDValue BasePtr = LD->getBasePtr(); 9129 if (Offset != 0) 9130 BasePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(DAG.getDataLayout()), 9131 BasePtr, DAG.getIntPtrConstant(Offset, dl)); 9132 SDValue Ops[] = { 9133 LD->getChain(), // Chain 9134 BasePtr, // BasePtr 9135 DAG.getValueType(Op.getValueType()) // VT 9136 }; 9137 SDVTList VTL = 9138 DAG.getVTList(IsFourByte ? MVT::v4i32 : MVT::v2i64, MVT::Other); 9139 SDValue LdSplt = 9140 DAG.getMemIntrinsicNode(PPCISD::LD_SPLAT, dl, VTL, 9141 Ops, LD->getMemoryVT(), LD->getMemOperand()); 9142 if (LdSplt.getValueType() != SVOp->getValueType(0)) 9143 LdSplt = DAG.getBitcast(SVOp->getValueType(0), LdSplt); 9144 return LdSplt; 9145 } 9146 } 9147 if (Subtarget.hasP9Vector() && 9148 PPC::isXXINSERTWMask(SVOp, ShiftElts, InsertAtByte, Swap, 9149 isLittleEndian)) { 9150 if (Swap) 9151 std::swap(V1, V2); 9152 SDValue Conv1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1); 9153 SDValue Conv2 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V2); 9154 if (ShiftElts) { 9155 SDValue Shl = DAG.getNode(PPCISD::VECSHL, dl, MVT::v4i32, Conv2, Conv2, 9156 DAG.getConstant(ShiftElts, dl, MVT::i32)); 9157 SDValue Ins = DAG.getNode(PPCISD::VECINSERT, dl, MVT::v4i32, Conv1, Shl, 9158 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 9159 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Ins); 9160 } 9161 SDValue Ins = DAG.getNode(PPCISD::VECINSERT, dl, MVT::v4i32, Conv1, Conv2, 9162 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 9163 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Ins); 9164 } 9165 9166 if (Subtarget.hasP9Altivec()) { 9167 SDValue NewISDNode; 9168 if ((NewISDNode = lowerToVINSERTH(SVOp, DAG))) 9169 return NewISDNode; 9170 9171 if ((NewISDNode = lowerToVINSERTB(SVOp, DAG))) 9172 return NewISDNode; 9173 } 9174 9175 if (Subtarget.hasVSX() && 9176 PPC::isXXSLDWIShuffleMask(SVOp, ShiftElts, Swap, isLittleEndian)) { 9177 if (Swap) 9178 std::swap(V1, V2); 9179 SDValue Conv1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1); 9180 SDValue Conv2 = 9181 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V2.isUndef() ? V1 : V2); 9182 9183 SDValue Shl = DAG.getNode(PPCISD::VECSHL, dl, MVT::v4i32, Conv1, Conv2, 9184 DAG.getConstant(ShiftElts, dl, MVT::i32)); 9185 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Shl); 9186 } 9187 9188 if (Subtarget.hasVSX() && 9189 PPC::isXXPERMDIShuffleMask(SVOp, ShiftElts, Swap, isLittleEndian)) { 9190 if (Swap) 9191 std::swap(V1, V2); 9192 SDValue Conv1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1); 9193 SDValue Conv2 = 9194 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2.isUndef() ? V1 : V2); 9195 9196 SDValue PermDI = DAG.getNode(PPCISD::XXPERMDI, dl, MVT::v2i64, Conv1, Conv2, 9197 DAG.getConstant(ShiftElts, dl, MVT::i32)); 9198 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, PermDI); 9199 } 9200 9201 if (Subtarget.hasP9Vector()) { 9202 if (PPC::isXXBRHShuffleMask(SVOp)) { 9203 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1); 9204 SDValue ReveHWord = DAG.getNode(ISD::BSWAP, dl, MVT::v8i16, Conv); 9205 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, ReveHWord); 9206 } else if (PPC::isXXBRWShuffleMask(SVOp)) { 9207 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1); 9208 SDValue ReveWord = DAG.getNode(ISD::BSWAP, dl, MVT::v4i32, Conv); 9209 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, ReveWord); 9210 } else if (PPC::isXXBRDShuffleMask(SVOp)) { 9211 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1); 9212 SDValue ReveDWord = DAG.getNode(ISD::BSWAP, dl, MVT::v2i64, Conv); 9213 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, ReveDWord); 9214 } else if (PPC::isXXBRQShuffleMask(SVOp)) { 9215 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v1i128, V1); 9216 SDValue ReveQWord = DAG.getNode(ISD::BSWAP, dl, MVT::v1i128, Conv); 9217 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, ReveQWord); 9218 } 9219 } 9220 9221 if (Subtarget.hasVSX()) { 9222 if (V2.isUndef() && PPC::isSplatShuffleMask(SVOp, 4)) { 9223 int SplatIdx = PPC::getSplatIdxForPPCMnemonics(SVOp, 4, DAG); 9224 9225 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1); 9226 SDValue Splat = DAG.getNode(PPCISD::XXSPLT, dl, MVT::v4i32, Conv, 9227 DAG.getConstant(SplatIdx, dl, MVT::i32)); 9228 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Splat); 9229 } 9230 9231 // Left shifts of 8 bytes are actually swaps. Convert accordingly. 9232 if (V2.isUndef() && PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) == 8) { 9233 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1); 9234 SDValue Swap = DAG.getNode(PPCISD::SWAP_NO_CHAIN, dl, MVT::v2f64, Conv); 9235 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, Swap); 9236 } 9237 } 9238 9239 if (Subtarget.hasQPX()) { 9240 if (VT.getVectorNumElements() != 4) 9241 return SDValue(); 9242 9243 if (V2.isUndef()) V2 = V1; 9244 9245 int AlignIdx = PPC::isQVALIGNIShuffleMask(SVOp); 9246 if (AlignIdx != -1) { 9247 return DAG.getNode(PPCISD::QVALIGNI, dl, VT, V1, V2, 9248 DAG.getConstant(AlignIdx, dl, MVT::i32)); 9249 } else if (SVOp->isSplat()) { 9250 int SplatIdx = SVOp->getSplatIndex(); 9251 if (SplatIdx >= 4) { 9252 std::swap(V1, V2); 9253 SplatIdx -= 4; 9254 } 9255 9256 return DAG.getNode(PPCISD::QVESPLATI, dl, VT, V1, 9257 DAG.getConstant(SplatIdx, dl, MVT::i32)); 9258 } 9259 9260 // Lower this into a qvgpci/qvfperm pair. 9261 9262 // Compute the qvgpci literal 9263 unsigned idx = 0; 9264 for (unsigned i = 0; i < 4; ++i) { 9265 int m = SVOp->getMaskElt(i); 9266 unsigned mm = m >= 0 ? (unsigned) m : i; 9267 idx |= mm << (3-i)*3; 9268 } 9269 9270 SDValue V3 = DAG.getNode(PPCISD::QVGPCI, dl, MVT::v4f64, 9271 DAG.getConstant(idx, dl, MVT::i32)); 9272 return DAG.getNode(PPCISD::QVFPERM, dl, VT, V1, V2, V3); 9273 } 9274 9275 // Cases that are handled by instructions that take permute immediates 9276 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be 9277 // selected by the instruction selector. 9278 if (V2.isUndef()) { 9279 if (PPC::isSplatShuffleMask(SVOp, 1) || 9280 PPC::isSplatShuffleMask(SVOp, 2) || 9281 PPC::isSplatShuffleMask(SVOp, 4) || 9282 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) || 9283 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) || 9284 PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 || 9285 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) || 9286 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) || 9287 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) || 9288 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) || 9289 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) || 9290 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG) || 9291 (Subtarget.hasP8Altivec() && ( 9292 PPC::isVPKUDUMShuffleMask(SVOp, 1, DAG) || 9293 PPC::isVMRGEOShuffleMask(SVOp, true, 1, DAG) || 9294 PPC::isVMRGEOShuffleMask(SVOp, false, 1, DAG)))) { 9295 return Op; 9296 } 9297 } 9298 9299 // Altivec has a variety of "shuffle immediates" that take two vector inputs 9300 // and produce a fixed permutation. If any of these match, do not lower to 9301 // VPERM. 9302 unsigned int ShuffleKind = isLittleEndian ? 2 : 0; 9303 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) || 9304 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) || 9305 PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 || 9306 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) || 9307 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) || 9308 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) || 9309 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) || 9310 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) || 9311 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG) || 9312 (Subtarget.hasP8Altivec() && ( 9313 PPC::isVPKUDUMShuffleMask(SVOp, ShuffleKind, DAG) || 9314 PPC::isVMRGEOShuffleMask(SVOp, true, ShuffleKind, DAG) || 9315 PPC::isVMRGEOShuffleMask(SVOp, false, ShuffleKind, DAG)))) 9316 return Op; 9317 9318 // Check to see if this is a shuffle of 4-byte values. If so, we can use our 9319 // perfect shuffle table to emit an optimal matching sequence. 9320 ArrayRef<int> PermMask = SVOp->getMask(); 9321 9322 unsigned PFIndexes[4]; 9323 bool isFourElementShuffle = true; 9324 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number 9325 unsigned EltNo = 8; // Start out undef. 9326 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte. 9327 if (PermMask[i*4+j] < 0) 9328 continue; // Undef, ignore it. 9329 9330 unsigned ByteSource = PermMask[i*4+j]; 9331 if ((ByteSource & 3) != j) { 9332 isFourElementShuffle = false; 9333 break; 9334 } 9335 9336 if (EltNo == 8) { 9337 EltNo = ByteSource/4; 9338 } else if (EltNo != ByteSource/4) { 9339 isFourElementShuffle = false; 9340 break; 9341 } 9342 } 9343 PFIndexes[i] = EltNo; 9344 } 9345 9346 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the 9347 // perfect shuffle vector to determine if it is cost effective to do this as 9348 // discrete instructions, or whether we should use a vperm. 9349 // For now, we skip this for little endian until such time as we have a 9350 // little-endian perfect shuffle table. 9351 if (isFourElementShuffle && !isLittleEndian) { 9352 // Compute the index in the perfect shuffle table. 9353 unsigned PFTableIndex = 9354 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 9355 9356 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 9357 unsigned Cost = (PFEntry >> 30); 9358 9359 // Determining when to avoid vperm is tricky. Many things affect the cost 9360 // of vperm, particularly how many times the perm mask needs to be computed. 9361 // For example, if the perm mask can be hoisted out of a loop or is already 9362 // used (perhaps because there are multiple permutes with the same shuffle 9363 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of 9364 // the loop requires an extra register. 9365 // 9366 // As a compromise, we only emit discrete instructions if the shuffle can be 9367 // generated in 3 or fewer operations. When we have loop information 9368 // available, if this block is within a loop, we should avoid using vperm 9369 // for 3-operation perms and use a constant pool load instead. 9370 if (Cost < 3) 9371 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl); 9372 } 9373 9374 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant 9375 // vector that will get spilled to the constant pool. 9376 if (V2.isUndef()) V2 = V1; 9377 9378 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except 9379 // that it is in input element units, not in bytes. Convert now. 9380 9381 // For little endian, the order of the input vectors is reversed, and 9382 // the permutation mask is complemented with respect to 31. This is 9383 // necessary to produce proper semantics with the big-endian-biased vperm 9384 // instruction. 9385 EVT EltVT = V1.getValueType().getVectorElementType(); 9386 unsigned BytesPerElement = EltVT.getSizeInBits()/8; 9387 9388 SmallVector<SDValue, 16> ResultMask; 9389 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) { 9390 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i]; 9391 9392 for (unsigned j = 0; j != BytesPerElement; ++j) 9393 if (isLittleEndian) 9394 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement + j), 9395 dl, MVT::i32)); 9396 else 9397 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement + j, dl, 9398 MVT::i32)); 9399 } 9400 9401 SDValue VPermMask = DAG.getBuildVector(MVT::v16i8, dl, ResultMask); 9402 if (isLittleEndian) 9403 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), 9404 V2, V1, VPermMask); 9405 else 9406 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), 9407 V1, V2, VPermMask); 9408 } 9409 9410 /// getVectorCompareInfo - Given an intrinsic, return false if it is not a 9411 /// vector comparison. If it is, return true and fill in Opc/isDot with 9412 /// information about the intrinsic. 9413 static bool getVectorCompareInfo(SDValue Intrin, int &CompareOpc, 9414 bool &isDot, const PPCSubtarget &Subtarget) { 9415 unsigned IntrinsicID = 9416 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue(); 9417 CompareOpc = -1; 9418 isDot = false; 9419 switch (IntrinsicID) { 9420 default: 9421 return false; 9422 // Comparison predicates. 9423 case Intrinsic::ppc_altivec_vcmpbfp_p: 9424 CompareOpc = 966; 9425 isDot = true; 9426 break; 9427 case Intrinsic::ppc_altivec_vcmpeqfp_p: 9428 CompareOpc = 198; 9429 isDot = true; 9430 break; 9431 case Intrinsic::ppc_altivec_vcmpequb_p: 9432 CompareOpc = 6; 9433 isDot = true; 9434 break; 9435 case Intrinsic::ppc_altivec_vcmpequh_p: 9436 CompareOpc = 70; 9437 isDot = true; 9438 break; 9439 case Intrinsic::ppc_altivec_vcmpequw_p: 9440 CompareOpc = 134; 9441 isDot = true; 9442 break; 9443 case Intrinsic::ppc_altivec_vcmpequd_p: 9444 if (Subtarget.hasP8Altivec()) { 9445 CompareOpc = 199; 9446 isDot = true; 9447 } else 9448 return false; 9449 break; 9450 case Intrinsic::ppc_altivec_vcmpneb_p: 9451 case Intrinsic::ppc_altivec_vcmpneh_p: 9452 case Intrinsic::ppc_altivec_vcmpnew_p: 9453 case Intrinsic::ppc_altivec_vcmpnezb_p: 9454 case Intrinsic::ppc_altivec_vcmpnezh_p: 9455 case Intrinsic::ppc_altivec_vcmpnezw_p: 9456 if (Subtarget.hasP9Altivec()) { 9457 switch (IntrinsicID) { 9458 default: 9459 llvm_unreachable("Unknown comparison intrinsic."); 9460 case Intrinsic::ppc_altivec_vcmpneb_p: 9461 CompareOpc = 7; 9462 break; 9463 case Intrinsic::ppc_altivec_vcmpneh_p: 9464 CompareOpc = 71; 9465 break; 9466 case Intrinsic::ppc_altivec_vcmpnew_p: 9467 CompareOpc = 135; 9468 break; 9469 case Intrinsic::ppc_altivec_vcmpnezb_p: 9470 CompareOpc = 263; 9471 break; 9472 case Intrinsic::ppc_altivec_vcmpnezh_p: 9473 CompareOpc = 327; 9474 break; 9475 case Intrinsic::ppc_altivec_vcmpnezw_p: 9476 CompareOpc = 391; 9477 break; 9478 } 9479 isDot = true; 9480 } else 9481 return false; 9482 break; 9483 case Intrinsic::ppc_altivec_vcmpgefp_p: 9484 CompareOpc = 454; 9485 isDot = true; 9486 break; 9487 case Intrinsic::ppc_altivec_vcmpgtfp_p: 9488 CompareOpc = 710; 9489 isDot = true; 9490 break; 9491 case Intrinsic::ppc_altivec_vcmpgtsb_p: 9492 CompareOpc = 774; 9493 isDot = true; 9494 break; 9495 case Intrinsic::ppc_altivec_vcmpgtsh_p: 9496 CompareOpc = 838; 9497 isDot = true; 9498 break; 9499 case Intrinsic::ppc_altivec_vcmpgtsw_p: 9500 CompareOpc = 902; 9501 isDot = true; 9502 break; 9503 case Intrinsic::ppc_altivec_vcmpgtsd_p: 9504 if (Subtarget.hasP8Altivec()) { 9505 CompareOpc = 967; 9506 isDot = true; 9507 } else 9508 return false; 9509 break; 9510 case Intrinsic::ppc_altivec_vcmpgtub_p: 9511 CompareOpc = 518; 9512 isDot = true; 9513 break; 9514 case Intrinsic::ppc_altivec_vcmpgtuh_p: 9515 CompareOpc = 582; 9516 isDot = true; 9517 break; 9518 case Intrinsic::ppc_altivec_vcmpgtuw_p: 9519 CompareOpc = 646; 9520 isDot = true; 9521 break; 9522 case Intrinsic::ppc_altivec_vcmpgtud_p: 9523 if (Subtarget.hasP8Altivec()) { 9524 CompareOpc = 711; 9525 isDot = true; 9526 } else 9527 return false; 9528 break; 9529 9530 // VSX predicate comparisons use the same infrastructure 9531 case Intrinsic::ppc_vsx_xvcmpeqdp_p: 9532 case Intrinsic::ppc_vsx_xvcmpgedp_p: 9533 case Intrinsic::ppc_vsx_xvcmpgtdp_p: 9534 case Intrinsic::ppc_vsx_xvcmpeqsp_p: 9535 case Intrinsic::ppc_vsx_xvcmpgesp_p: 9536 case Intrinsic::ppc_vsx_xvcmpgtsp_p: 9537 if (Subtarget.hasVSX()) { 9538 switch (IntrinsicID) { 9539 case Intrinsic::ppc_vsx_xvcmpeqdp_p: 9540 CompareOpc = 99; 9541 break; 9542 case Intrinsic::ppc_vsx_xvcmpgedp_p: 9543 CompareOpc = 115; 9544 break; 9545 case Intrinsic::ppc_vsx_xvcmpgtdp_p: 9546 CompareOpc = 107; 9547 break; 9548 case Intrinsic::ppc_vsx_xvcmpeqsp_p: 9549 CompareOpc = 67; 9550 break; 9551 case Intrinsic::ppc_vsx_xvcmpgesp_p: 9552 CompareOpc = 83; 9553 break; 9554 case Intrinsic::ppc_vsx_xvcmpgtsp_p: 9555 CompareOpc = 75; 9556 break; 9557 } 9558 isDot = true; 9559 } else 9560 return false; 9561 break; 9562 9563 // Normal Comparisons. 9564 case Intrinsic::ppc_altivec_vcmpbfp: 9565 CompareOpc = 966; 9566 break; 9567 case Intrinsic::ppc_altivec_vcmpeqfp: 9568 CompareOpc = 198; 9569 break; 9570 case Intrinsic::ppc_altivec_vcmpequb: 9571 CompareOpc = 6; 9572 break; 9573 case Intrinsic::ppc_altivec_vcmpequh: 9574 CompareOpc = 70; 9575 break; 9576 case Intrinsic::ppc_altivec_vcmpequw: 9577 CompareOpc = 134; 9578 break; 9579 case Intrinsic::ppc_altivec_vcmpequd: 9580 if (Subtarget.hasP8Altivec()) 9581 CompareOpc = 199; 9582 else 9583 return false; 9584 break; 9585 case Intrinsic::ppc_altivec_vcmpneb: 9586 case Intrinsic::ppc_altivec_vcmpneh: 9587 case Intrinsic::ppc_altivec_vcmpnew: 9588 case Intrinsic::ppc_altivec_vcmpnezb: 9589 case Intrinsic::ppc_altivec_vcmpnezh: 9590 case Intrinsic::ppc_altivec_vcmpnezw: 9591 if (Subtarget.hasP9Altivec()) 9592 switch (IntrinsicID) { 9593 default: 9594 llvm_unreachable("Unknown comparison intrinsic."); 9595 case Intrinsic::ppc_altivec_vcmpneb: 9596 CompareOpc = 7; 9597 break; 9598 case Intrinsic::ppc_altivec_vcmpneh: 9599 CompareOpc = 71; 9600 break; 9601 case Intrinsic::ppc_altivec_vcmpnew: 9602 CompareOpc = 135; 9603 break; 9604 case Intrinsic::ppc_altivec_vcmpnezb: 9605 CompareOpc = 263; 9606 break; 9607 case Intrinsic::ppc_altivec_vcmpnezh: 9608 CompareOpc = 327; 9609 break; 9610 case Intrinsic::ppc_altivec_vcmpnezw: 9611 CompareOpc = 391; 9612 break; 9613 } 9614 else 9615 return false; 9616 break; 9617 case Intrinsic::ppc_altivec_vcmpgefp: 9618 CompareOpc = 454; 9619 break; 9620 case Intrinsic::ppc_altivec_vcmpgtfp: 9621 CompareOpc = 710; 9622 break; 9623 case Intrinsic::ppc_altivec_vcmpgtsb: 9624 CompareOpc = 774; 9625 break; 9626 case Intrinsic::ppc_altivec_vcmpgtsh: 9627 CompareOpc = 838; 9628 break; 9629 case Intrinsic::ppc_altivec_vcmpgtsw: 9630 CompareOpc = 902; 9631 break; 9632 case Intrinsic::ppc_altivec_vcmpgtsd: 9633 if (Subtarget.hasP8Altivec()) 9634 CompareOpc = 967; 9635 else 9636 return false; 9637 break; 9638 case Intrinsic::ppc_altivec_vcmpgtub: 9639 CompareOpc = 518; 9640 break; 9641 case Intrinsic::ppc_altivec_vcmpgtuh: 9642 CompareOpc = 582; 9643 break; 9644 case Intrinsic::ppc_altivec_vcmpgtuw: 9645 CompareOpc = 646; 9646 break; 9647 case Intrinsic::ppc_altivec_vcmpgtud: 9648 if (Subtarget.hasP8Altivec()) 9649 CompareOpc = 711; 9650 else 9651 return false; 9652 break; 9653 } 9654 return true; 9655 } 9656 9657 /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom 9658 /// lower, do it, otherwise return null. 9659 SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, 9660 SelectionDAG &DAG) const { 9661 unsigned IntrinsicID = 9662 cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 9663 9664 SDLoc dl(Op); 9665 9666 if (IntrinsicID == Intrinsic::thread_pointer) { 9667 // Reads the thread pointer register, used for __builtin_thread_pointer. 9668 if (Subtarget.isPPC64()) 9669 return DAG.getRegister(PPC::X13, MVT::i64); 9670 return DAG.getRegister(PPC::R2, MVT::i32); 9671 } 9672 9673 // If this is a lowered altivec predicate compare, CompareOpc is set to the 9674 // opcode number of the comparison. 9675 int CompareOpc; 9676 bool isDot; 9677 if (!getVectorCompareInfo(Op, CompareOpc, isDot, Subtarget)) 9678 return SDValue(); // Don't custom lower most intrinsics. 9679 9680 // If this is a non-dot comparison, make the VCMP node and we are done. 9681 if (!isDot) { 9682 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(), 9683 Op.getOperand(1), Op.getOperand(2), 9684 DAG.getConstant(CompareOpc, dl, MVT::i32)); 9685 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp); 9686 } 9687 9688 // Create the PPCISD altivec 'dot' comparison node. 9689 SDValue Ops[] = { 9690 Op.getOperand(2), // LHS 9691 Op.getOperand(3), // RHS 9692 DAG.getConstant(CompareOpc, dl, MVT::i32) 9693 }; 9694 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue }; 9695 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops); 9696 9697 // Now that we have the comparison, emit a copy from the CR to a GPR. 9698 // This is flagged to the above dot comparison. 9699 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32, 9700 DAG.getRegister(PPC::CR6, MVT::i32), 9701 CompNode.getValue(1)); 9702 9703 // Unpack the result based on how the target uses it. 9704 unsigned BitNo; // Bit # of CR6. 9705 bool InvertBit; // Invert result? 9706 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) { 9707 default: // Can't happen, don't crash on invalid number though. 9708 case 0: // Return the value of the EQ bit of CR6. 9709 BitNo = 0; InvertBit = false; 9710 break; 9711 case 1: // Return the inverted value of the EQ bit of CR6. 9712 BitNo = 0; InvertBit = true; 9713 break; 9714 case 2: // Return the value of the LT bit of CR6. 9715 BitNo = 2; InvertBit = false; 9716 break; 9717 case 3: // Return the inverted value of the LT bit of CR6. 9718 BitNo = 2; InvertBit = true; 9719 break; 9720 } 9721 9722 // Shift the bit into the low position. 9723 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags, 9724 DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32)); 9725 // Isolate the bit. 9726 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags, 9727 DAG.getConstant(1, dl, MVT::i32)); 9728 9729 // If we are supposed to, toggle the bit. 9730 if (InvertBit) 9731 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags, 9732 DAG.getConstant(1, dl, MVT::i32)); 9733 return Flags; 9734 } 9735 9736 SDValue PPCTargetLowering::LowerINTRINSIC_VOID(SDValue Op, 9737 SelectionDAG &DAG) const { 9738 // SelectionDAGBuilder::visitTargetIntrinsic may insert one extra chain to 9739 // the beginning of the argument list. 9740 int ArgStart = isa<ConstantSDNode>(Op.getOperand(0)) ? 0 : 1; 9741 SDLoc DL(Op); 9742 switch (cast<ConstantSDNode>(Op.getOperand(ArgStart))->getZExtValue()) { 9743 case Intrinsic::ppc_cfence: { 9744 assert(ArgStart == 1 && "llvm.ppc.cfence must carry a chain argument."); 9745 assert(Subtarget.isPPC64() && "Only 64-bit is supported for now."); 9746 return SDValue(DAG.getMachineNode(PPC::CFENCE8, DL, MVT::Other, 9747 DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i64, 9748 Op.getOperand(ArgStart + 1)), 9749 Op.getOperand(0)), 9750 0); 9751 } 9752 default: 9753 break; 9754 } 9755 return SDValue(); 9756 } 9757 9758 SDValue PPCTargetLowering::LowerREM(SDValue Op, SelectionDAG &DAG) const { 9759 // Check for a DIV with the same operands as this REM. 9760 for (auto UI : Op.getOperand(1)->uses()) { 9761 if ((Op.getOpcode() == ISD::SREM && UI->getOpcode() == ISD::SDIV) || 9762 (Op.getOpcode() == ISD::UREM && UI->getOpcode() == ISD::UDIV)) 9763 if (UI->getOperand(0) == Op.getOperand(0) && 9764 UI->getOperand(1) == Op.getOperand(1)) 9765 return SDValue(); 9766 } 9767 return Op; 9768 } 9769 9770 // Lower scalar BSWAP64 to xxbrd. 9771 SDValue PPCTargetLowering::LowerBSWAP(SDValue Op, SelectionDAG &DAG) const { 9772 SDLoc dl(Op); 9773 // MTVSRDD 9774 Op = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64, Op.getOperand(0), 9775 Op.getOperand(0)); 9776 // XXBRD 9777 Op = DAG.getNode(ISD::BSWAP, dl, MVT::v2i64, Op); 9778 // MFVSRD 9779 int VectorIndex = 0; 9780 if (Subtarget.isLittleEndian()) 9781 VectorIndex = 1; 9782 Op = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Op, 9783 DAG.getTargetConstant(VectorIndex, dl, MVT::i32)); 9784 return Op; 9785 } 9786 9787 // ATOMIC_CMP_SWAP for i8/i16 needs to zero-extend its input since it will be 9788 // compared to a value that is atomically loaded (atomic loads zero-extend). 9789 SDValue PPCTargetLowering::LowerATOMIC_CMP_SWAP(SDValue Op, 9790 SelectionDAG &DAG) const { 9791 assert(Op.getOpcode() == ISD::ATOMIC_CMP_SWAP && 9792 "Expecting an atomic compare-and-swap here."); 9793 SDLoc dl(Op); 9794 auto *AtomicNode = cast<AtomicSDNode>(Op.getNode()); 9795 EVT MemVT = AtomicNode->getMemoryVT(); 9796 if (MemVT.getSizeInBits() >= 32) 9797 return Op; 9798 9799 SDValue CmpOp = Op.getOperand(2); 9800 // If this is already correctly zero-extended, leave it alone. 9801 auto HighBits = APInt::getHighBitsSet(32, 32 - MemVT.getSizeInBits()); 9802 if (DAG.MaskedValueIsZero(CmpOp, HighBits)) 9803 return Op; 9804 9805 // Clear the high bits of the compare operand. 9806 unsigned MaskVal = (1 << MemVT.getSizeInBits()) - 1; 9807 SDValue NewCmpOp = 9808 DAG.getNode(ISD::AND, dl, MVT::i32, CmpOp, 9809 DAG.getConstant(MaskVal, dl, MVT::i32)); 9810 9811 // Replace the existing compare operand with the properly zero-extended one. 9812 SmallVector<SDValue, 4> Ops; 9813 for (int i = 0, e = AtomicNode->getNumOperands(); i < e; i++) 9814 Ops.push_back(AtomicNode->getOperand(i)); 9815 Ops[2] = NewCmpOp; 9816 MachineMemOperand *MMO = AtomicNode->getMemOperand(); 9817 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::Other); 9818 auto NodeTy = 9819 (MemVT == MVT::i8) ? PPCISD::ATOMIC_CMP_SWAP_8 : PPCISD::ATOMIC_CMP_SWAP_16; 9820 return DAG.getMemIntrinsicNode(NodeTy, dl, Tys, Ops, MemVT, MMO); 9821 } 9822 9823 SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, 9824 SelectionDAG &DAG) const { 9825 SDLoc dl(Op); 9826 // Create a stack slot that is 16-byte aligned. 9827 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 9828 int FrameIdx = MFI.CreateStackObject(16, 16, false); 9829 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 9830 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 9831 9832 // Store the input value into Value#0 of the stack slot. 9833 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx, 9834 MachinePointerInfo()); 9835 // Load it out. 9836 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo()); 9837 } 9838 9839 SDValue PPCTargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, 9840 SelectionDAG &DAG) const { 9841 assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && 9842 "Should only be called for ISD::INSERT_VECTOR_ELT"); 9843 9844 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(2)); 9845 // We have legal lowering for constant indices but not for variable ones. 9846 if (!C) 9847 return SDValue(); 9848 9849 EVT VT = Op.getValueType(); 9850 SDLoc dl(Op); 9851 SDValue V1 = Op.getOperand(0); 9852 SDValue V2 = Op.getOperand(1); 9853 // We can use MTVSRZ + VECINSERT for v8i16 and v16i8 types. 9854 if (VT == MVT::v8i16 || VT == MVT::v16i8) { 9855 SDValue Mtvsrz = DAG.getNode(PPCISD::MTVSRZ, dl, VT, V2); 9856 unsigned BytesInEachElement = VT.getVectorElementType().getSizeInBits() / 8; 9857 unsigned InsertAtElement = C->getZExtValue(); 9858 unsigned InsertAtByte = InsertAtElement * BytesInEachElement; 9859 if (Subtarget.isLittleEndian()) { 9860 InsertAtByte = (16 - BytesInEachElement) - InsertAtByte; 9861 } 9862 return DAG.getNode(PPCISD::VECINSERT, dl, VT, V1, Mtvsrz, 9863 DAG.getConstant(InsertAtByte, dl, MVT::i32)); 9864 } 9865 return Op; 9866 } 9867 9868 SDValue PPCTargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, 9869 SelectionDAG &DAG) const { 9870 SDLoc dl(Op); 9871 SDNode *N = Op.getNode(); 9872 9873 assert(N->getOperand(0).getValueType() == MVT::v4i1 && 9874 "Unknown extract_vector_elt type"); 9875 9876 SDValue Value = N->getOperand(0); 9877 9878 // The first part of this is like the store lowering except that we don't 9879 // need to track the chain. 9880 9881 // The values are now known to be -1 (false) or 1 (true). To convert this 9882 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5). 9883 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5 9884 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value); 9885 9886 // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to 9887 // understand how to form the extending load. 9888 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64); 9889 9890 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs); 9891 9892 // Now convert to an integer and store. 9893 Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64, 9894 DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32), 9895 Value); 9896 9897 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 9898 int FrameIdx = MFI.CreateStackObject(16, 16, false); 9899 MachinePointerInfo PtrInfo = 9900 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx); 9901 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 9902 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 9903 9904 SDValue StoreChain = DAG.getEntryNode(); 9905 SDValue Ops[] = {StoreChain, 9906 DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32), 9907 Value, FIdx}; 9908 SDVTList VTs = DAG.getVTList(/*chain*/ MVT::Other); 9909 9910 StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID, 9911 dl, VTs, Ops, MVT::v4i32, PtrInfo); 9912 9913 // Extract the value requested. 9914 unsigned Offset = 4*cast<ConstantSDNode>(N->getOperand(1))->getZExtValue(); 9915 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType()); 9916 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx); 9917 9918 SDValue IntVal = 9919 DAG.getLoad(MVT::i32, dl, StoreChain, Idx, PtrInfo.getWithOffset(Offset)); 9920 9921 if (!Subtarget.useCRBits()) 9922 return IntVal; 9923 9924 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, IntVal); 9925 } 9926 9927 /// Lowering for QPX v4i1 loads 9928 SDValue PPCTargetLowering::LowerVectorLoad(SDValue Op, 9929 SelectionDAG &DAG) const { 9930 SDLoc dl(Op); 9931 LoadSDNode *LN = cast<LoadSDNode>(Op.getNode()); 9932 SDValue LoadChain = LN->getChain(); 9933 SDValue BasePtr = LN->getBasePtr(); 9934 9935 if (Op.getValueType() == MVT::v4f64 || 9936 Op.getValueType() == MVT::v4f32) { 9937 EVT MemVT = LN->getMemoryVT(); 9938 unsigned Alignment = LN->getAlignment(); 9939 9940 // If this load is properly aligned, then it is legal. 9941 if (Alignment >= MemVT.getStoreSize()) 9942 return Op; 9943 9944 EVT ScalarVT = Op.getValueType().getScalarType(), 9945 ScalarMemVT = MemVT.getScalarType(); 9946 unsigned Stride = ScalarMemVT.getStoreSize(); 9947 9948 SDValue Vals[4], LoadChains[4]; 9949 for (unsigned Idx = 0; Idx < 4; ++Idx) { 9950 SDValue Load; 9951 if (ScalarVT != ScalarMemVT) 9952 Load = DAG.getExtLoad(LN->getExtensionType(), dl, ScalarVT, LoadChain, 9953 BasePtr, 9954 LN->getPointerInfo().getWithOffset(Idx * Stride), 9955 ScalarMemVT, MinAlign(Alignment, Idx * Stride), 9956 LN->getMemOperand()->getFlags(), LN->getAAInfo()); 9957 else 9958 Load = DAG.getLoad(ScalarVT, dl, LoadChain, BasePtr, 9959 LN->getPointerInfo().getWithOffset(Idx * Stride), 9960 MinAlign(Alignment, Idx * Stride), 9961 LN->getMemOperand()->getFlags(), LN->getAAInfo()); 9962 9963 if (Idx == 0 && LN->isIndexed()) { 9964 assert(LN->getAddressingMode() == ISD::PRE_INC && 9965 "Unknown addressing mode on vector load"); 9966 Load = DAG.getIndexedLoad(Load, dl, BasePtr, LN->getOffset(), 9967 LN->getAddressingMode()); 9968 } 9969 9970 Vals[Idx] = Load; 9971 LoadChains[Idx] = Load.getValue(1); 9972 9973 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, 9974 DAG.getConstant(Stride, dl, 9975 BasePtr.getValueType())); 9976 } 9977 9978 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); 9979 SDValue Value = DAG.getBuildVector(Op.getValueType(), dl, Vals); 9980 9981 if (LN->isIndexed()) { 9982 SDValue RetOps[] = { Value, Vals[0].getValue(1), TF }; 9983 return DAG.getMergeValues(RetOps, dl); 9984 } 9985 9986 SDValue RetOps[] = { Value, TF }; 9987 return DAG.getMergeValues(RetOps, dl); 9988 } 9989 9990 assert(Op.getValueType() == MVT::v4i1 && "Unknown load to lower"); 9991 assert(LN->isUnindexed() && "Indexed v4i1 loads are not supported"); 9992 9993 // To lower v4i1 from a byte array, we load the byte elements of the 9994 // vector and then reuse the BUILD_VECTOR logic. 9995 9996 SDValue VectElmts[4], VectElmtChains[4]; 9997 for (unsigned i = 0; i < 4; ++i) { 9998 SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType()); 9999 Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx); 10000 10001 VectElmts[i] = DAG.getExtLoad( 10002 ISD::EXTLOAD, dl, MVT::i32, LoadChain, Idx, 10003 LN->getPointerInfo().getWithOffset(i), MVT::i8, 10004 /* Alignment = */ 1, LN->getMemOperand()->getFlags(), LN->getAAInfo()); 10005 VectElmtChains[i] = VectElmts[i].getValue(1); 10006 } 10007 10008 LoadChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, VectElmtChains); 10009 SDValue Value = DAG.getBuildVector(MVT::v4i1, dl, VectElmts); 10010 10011 SDValue RVals[] = { Value, LoadChain }; 10012 return DAG.getMergeValues(RVals, dl); 10013 } 10014 10015 /// Lowering for QPX v4i1 stores 10016 SDValue PPCTargetLowering::LowerVectorStore(SDValue Op, 10017 SelectionDAG &DAG) const { 10018 SDLoc dl(Op); 10019 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); 10020 SDValue StoreChain = SN->getChain(); 10021 SDValue BasePtr = SN->getBasePtr(); 10022 SDValue Value = SN->getValue(); 10023 10024 if (Value.getValueType() == MVT::v4f64 || 10025 Value.getValueType() == MVT::v4f32) { 10026 EVT MemVT = SN->getMemoryVT(); 10027 unsigned Alignment = SN->getAlignment(); 10028 10029 // If this store is properly aligned, then it is legal. 10030 if (Alignment >= MemVT.getStoreSize()) 10031 return Op; 10032 10033 EVT ScalarVT = Value.getValueType().getScalarType(), 10034 ScalarMemVT = MemVT.getScalarType(); 10035 unsigned Stride = ScalarMemVT.getStoreSize(); 10036 10037 SDValue Stores[4]; 10038 for (unsigned Idx = 0; Idx < 4; ++Idx) { 10039 SDValue Ex = DAG.getNode( 10040 ISD::EXTRACT_VECTOR_ELT, dl, ScalarVT, Value, 10041 DAG.getConstant(Idx, dl, getVectorIdxTy(DAG.getDataLayout()))); 10042 SDValue Store; 10043 if (ScalarVT != ScalarMemVT) 10044 Store = 10045 DAG.getTruncStore(StoreChain, dl, Ex, BasePtr, 10046 SN->getPointerInfo().getWithOffset(Idx * Stride), 10047 ScalarMemVT, MinAlign(Alignment, Idx * Stride), 10048 SN->getMemOperand()->getFlags(), SN->getAAInfo()); 10049 else 10050 Store = DAG.getStore(StoreChain, dl, Ex, BasePtr, 10051 SN->getPointerInfo().getWithOffset(Idx * Stride), 10052 MinAlign(Alignment, Idx * Stride), 10053 SN->getMemOperand()->getFlags(), SN->getAAInfo()); 10054 10055 if (Idx == 0 && SN->isIndexed()) { 10056 assert(SN->getAddressingMode() == ISD::PRE_INC && 10057 "Unknown addressing mode on vector store"); 10058 Store = DAG.getIndexedStore(Store, dl, BasePtr, SN->getOffset(), 10059 SN->getAddressingMode()); 10060 } 10061 10062 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, 10063 DAG.getConstant(Stride, dl, 10064 BasePtr.getValueType())); 10065 Stores[Idx] = Store; 10066 } 10067 10068 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 10069 10070 if (SN->isIndexed()) { 10071 SDValue RetOps[] = { TF, Stores[0].getValue(1) }; 10072 return DAG.getMergeValues(RetOps, dl); 10073 } 10074 10075 return TF; 10076 } 10077 10078 assert(SN->isUnindexed() && "Indexed v4i1 stores are not supported"); 10079 assert(Value.getValueType() == MVT::v4i1 && "Unknown store to lower"); 10080 10081 // The values are now known to be -1 (false) or 1 (true). To convert this 10082 // into 0 (false) and 1 (true), add 1 and then divide by 2 (multiply by 0.5). 10083 // This can be done with an fma and the 0.5 constant: (V+1.0)*0.5 = 0.5*V+0.5 10084 Value = DAG.getNode(PPCISD::QBFLT, dl, MVT::v4f64, Value); 10085 10086 // FIXME: We can make this an f32 vector, but the BUILD_VECTOR code needs to 10087 // understand how to form the extending load. 10088 SDValue FPHalfs = DAG.getConstantFP(0.5, dl, MVT::v4f64); 10089 10090 Value = DAG.getNode(ISD::FMA, dl, MVT::v4f64, Value, FPHalfs, FPHalfs); 10091 10092 // Now convert to an integer and store. 10093 Value = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, MVT::v4f64, 10094 DAG.getConstant(Intrinsic::ppc_qpx_qvfctiwu, dl, MVT::i32), 10095 Value); 10096 10097 MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 10098 int FrameIdx = MFI.CreateStackObject(16, 16, false); 10099 MachinePointerInfo PtrInfo = 10100 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FrameIdx); 10101 EVT PtrVT = getPointerTy(DAG.getDataLayout()); 10102 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 10103 10104 SDValue Ops[] = {StoreChain, 10105 DAG.getConstant(Intrinsic::ppc_qpx_qvstfiw, dl, MVT::i32), 10106 Value, FIdx}; 10107 SDVTList VTs = DAG.getVTList(/*chain*/ MVT::Other); 10108 10109 StoreChain = DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID, 10110 dl, VTs, Ops, MVT::v4i32, PtrInfo); 10111 10112 // Move data into the byte array. 10113 SDValue Loads[4], LoadChains[4]; 10114 for (unsigned i = 0; i < 4; ++i) { 10115 unsigned Offset = 4*i; 10116 SDValue Idx = DAG.getConstant(Offset, dl, FIdx.getValueType()); 10117 Idx = DAG.getNode(ISD::ADD, dl, FIdx.getValueType(), FIdx, Idx); 10118 10119 Loads[i] = DAG.getLoad(MVT::i32, dl, StoreChain, Idx, 10120 PtrInfo.getWithOffset(Offset)); 10121 LoadChains[i] = Loads[i].getValue(1); 10122 } 10123 10124 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains); 10125 10126 SDValue Stores[4]; 10127 for (unsigned i = 0; i < 4; ++i) { 10128 SDValue Idx = DAG.getConstant(i, dl, BasePtr.getValueType()); 10129 Idx = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, Idx); 10130 10131 Stores[i] = DAG.getTruncStore( 10132 StoreChain, dl, Loads[i], Idx, SN->getPointerInfo().getWithOffset(i), 10133 MVT::i8, /* Alignment = */ 1, SN->getMemOperand()->getFlags(), 10134 SN->getAAInfo()); 10135 } 10136 10137 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 10138 10139 return StoreChain; 10140 } 10141 10142 SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const { 10143 SDLoc dl(Op); 10144 if (Op.getValueType() == MVT::v4i32) { 10145 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 10146 10147 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl); 10148 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt. 10149 10150 SDValue RHSSwap = // = vrlw RHS, 16 10151 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl); 10152 10153 // Shrinkify inputs to v8i16. 10154 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS); 10155 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS); 10156 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap); 10157 10158 // Low parts multiplied together, generating 32-bit results (we ignore the 10159 // top parts). 10160 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh, 10161 LHS, RHS, DAG, dl, MVT::v4i32); 10162 10163 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm, 10164 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32); 10165 // Shift the high parts up 16 bits. 10166 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd, 10167 Neg16, DAG, dl); 10168 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd); 10169 } else if (Op.getValueType() == MVT::v8i16) { 10170 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 10171 10172 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl); 10173 10174 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm, 10175 LHS, RHS, Zero, DAG, dl); 10176 } else if (Op.getValueType() == MVT::v16i8) { 10177 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 10178 bool isLittleEndian = Subtarget.isLittleEndian(); 10179 10180 // Multiply the even 8-bit parts, producing 16-bit sums. 10181 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub, 10182 LHS, RHS, DAG, dl, MVT::v8i16); 10183 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts); 10184 10185 // Multiply the odd 8-bit parts, producing 16-bit sums. 10186 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub, 10187 LHS, RHS, DAG, dl, MVT::v8i16); 10188 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts); 10189 10190 // Merge the results together. Because vmuleub and vmuloub are 10191 // instructions with a big-endian bias, we must reverse the 10192 // element numbering and reverse the meaning of "odd" and "even" 10193 // when generating little endian code. 10194 int Ops[16]; 10195 for (unsigned i = 0; i != 8; ++i) { 10196 if (isLittleEndian) { 10197 Ops[i*2 ] = 2*i; 10198 Ops[i*2+1] = 2*i+16; 10199 } else { 10200 Ops[i*2 ] = 2*i+1; 10201 Ops[i*2+1] = 2*i+1+16; 10202 } 10203 } 10204 if (isLittleEndian) 10205 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops); 10206 else 10207 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops); 10208 } else { 10209 llvm_unreachable("Unknown mul to lower!"); 10210 } 10211 } 10212 10213 SDValue PPCTargetLowering::LowerABS(SDValue Op, SelectionDAG &DAG) const { 10214 10215 assert(Op.getOpcode() == ISD::ABS && "Should only be called for ISD::ABS"); 10216 10217 EVT VT = Op.getValueType(); 10218 assert(VT.isVector() && 10219 "Only set vector abs as custom, scalar abs shouldn't reach here!"); 10220 assert((VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 || 10221 VT == MVT::v16i8) && 10222 "Unexpected vector element type!"); 10223 assert((VT != MVT::v2i64 || Subtarget.hasP8Altivec()) && 10224 "Current subtarget doesn't support smax v2i64!"); 10225 10226 // For vector abs, it can be lowered to: 10227 // abs x 10228 // ==> 10229 // y = -x 10230 // smax(x, y) 10231 10232 SDLoc dl(Op); 10233 SDValue X = Op.getOperand(0); 10234 SDValue Zero = DAG.getConstant(0, dl, VT); 10235 SDValue Y = DAG.getNode(ISD::SUB, dl, VT, Zero, X); 10236 10237 // SMAX patch https://reviews.llvm.org/D47332 10238 // hasn't landed yet, so use intrinsic first here. 10239 // TODO: Should use SMAX directly once SMAX patch landed 10240 Intrinsic::ID BifID = Intrinsic::ppc_altivec_vmaxsw; 10241 if (VT == MVT::v2i64) 10242 BifID = Intrinsic::ppc_altivec_vmaxsd; 10243 else if (VT == MVT::v8i16) 10244 BifID = Intrinsic::ppc_altivec_vmaxsh; 10245 else if (VT == MVT::v16i8) 10246 BifID = Intrinsic::ppc_altivec_vmaxsb; 10247 10248 return BuildIntrinsicOp(BifID, X, Y, DAG, dl, VT); 10249 } 10250 10251 // Custom lowering for fpext vf32 to v2f64 10252 SDValue PPCTargetLowering::LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) const { 10253 10254 assert(Op.getOpcode() == ISD::FP_EXTEND && 10255 "Should only be called for ISD::FP_EXTEND"); 10256 10257 // We only want to custom lower an extend from v2f32 to v2f64. 10258 if (Op.getValueType() != MVT::v2f64 || 10259 Op.getOperand(0).getValueType() != MVT::v2f32) 10260 return SDValue(); 10261 10262 SDLoc dl(Op); 10263 SDValue Op0 = Op.getOperand(0); 10264 10265 switch (Op0.getOpcode()) { 10266 default: 10267 return SDValue(); 10268 case ISD::EXTRACT_SUBVECTOR: { 10269 assert(Op0.getNumOperands() == 2 && 10270 isa<ConstantSDNode>(Op0->getOperand(1)) && 10271 "Node should have 2 operands with second one being a constant!"); 10272 10273 if (Op0.getOperand(0).getValueType() != MVT::v4f32) 10274 return SDValue(); 10275 10276 // Custom lower is only done for high or low doubleword. 10277 int Idx = cast<ConstantSDNode>(Op0.getOperand(1))->getZExtValue(); 10278 if (Idx % 2 != 0) 10279 return SDValue(); 10280 10281 // Since input is v4f32, at this point Idx is either 0 or 2. 10282 // Shift to get the doubleword position we want. 10283 int DWord = Idx >> 1; 10284 10285 // High and low word positions are different on little endian. 10286 if (Subtarget.isLittleEndian()) 10287 DWord ^= 0x1; 10288 10289 return DAG.getNode(PPCISD::FP_EXTEND_HALF, dl, MVT::v2f64, 10290 Op0.getOperand(0), DAG.getConstant(DWord, dl, MVT::i32)); 10291 } 10292 case ISD::FADD: 10293 case ISD::FMUL: 10294 case ISD::FSUB: { 10295 SDValue NewLoad[2]; 10296 for (unsigned i = 0, ie = Op0.getNumOperands(); i != ie; ++i) { 10297 // Ensure both input are loads. 10298 SDValue LdOp = Op0.getOperand(i); 10299 if (LdOp.getOpcode() != ISD::LOAD) 10300 return SDValue(); 10301 // Generate new load node. 10302 LoadSDNode *LD = cast<LoadSDNode>(LdOp); 10303 SDValue LoadOps[] = {LD->getChain(), LD->getBasePtr()}; 10304 NewLoad[i] = DAG.getMemIntrinsicNode( 10305 PPCISD::LD_VSX_LH, dl, DAG.getVTList(MVT::v4f32, MVT::Other), LoadOps, 10306 LD->getMemoryVT(), LD->getMemOperand()); 10307 } 10308 SDValue NewOp = 10309 DAG.getNode(Op0.getOpcode(), SDLoc(Op0), MVT::v4f32, NewLoad[0], 10310 NewLoad[1], Op0.getNode()->getFlags()); 10311 return DAG.getNode(PPCISD::FP_EXTEND_HALF, dl, MVT::v2f64, NewOp, 10312 DAG.getConstant(0, dl, MVT::i32)); 10313 } 10314 case ISD::LOAD: { 10315 LoadSDNode *LD = cast<LoadSDNode>(Op0); 10316 SDValue LoadOps[] = {LD->getChain(), LD->getBasePtr()}; 10317 SDValue NewLd = DAG.getMemIntrinsicNode( 10318 PPCISD::LD_VSX_LH, dl, DAG.getVTList(MVT::v4f32, MVT::Other), LoadOps, 10319 LD->getMemoryVT(), LD->getMemOperand()); 10320 return DAG.getNode(PPCISD::FP_EXTEND_HALF, dl, MVT::v2f64, NewLd, 10321 DAG.getConstant(0, dl, MVT::i32)); 10322 } 10323 } 10324 llvm_unreachable("ERROR:Should return for all cases within swtich."); 10325 } 10326 10327 /// LowerOperation - Provide custom lowering hooks for some operations. 10328 /// 10329 SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 10330 switch (Op.getOpcode()) { 10331 default: llvm_unreachable("Wasn't expecting to be able to lower this!"); 10332 case ISD::ConstantPool: return LowerConstantPool(Op, DAG); 10333 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); 10334 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); 10335 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); 10336 case ISD::JumpTable: return LowerJumpTable(Op, DAG); 10337 case ISD::SETCC: return LowerSETCC(Op, DAG); 10338 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG); 10339 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG); 10340 10341 // Variable argument lowering. 10342 case ISD::VASTART: return LowerVASTART(Op, DAG); 10343 case ISD::VAARG: return LowerVAARG(Op, DAG); 10344 case ISD::VACOPY: return LowerVACOPY(Op, DAG); 10345 10346 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG); 10347 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG); 10348 case ISD::GET_DYNAMIC_AREA_OFFSET: 10349 return LowerGET_DYNAMIC_AREA_OFFSET(Op, DAG); 10350 10351 // Exception handling lowering. 10352 case ISD::EH_DWARF_CFA: return LowerEH_DWARF_CFA(Op, DAG); 10353 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG); 10354 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG); 10355 10356 case ISD::LOAD: return LowerLOAD(Op, DAG); 10357 case ISD::STORE: return LowerSTORE(Op, DAG); 10358 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG); 10359 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); 10360 case ISD::FP_TO_UINT: 10361 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG, SDLoc(Op)); 10362 case ISD::UINT_TO_FP: 10363 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG); 10364 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); 10365 10366 // Lower 64-bit shifts. 10367 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG); 10368 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG); 10369 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG); 10370 10371 // Vector-related lowering. 10372 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG); 10373 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); 10374 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); 10375 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG); 10376 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG); 10377 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG); 10378 case ISD::MUL: return LowerMUL(Op, DAG); 10379 case ISD::ABS: return LowerABS(Op, DAG); 10380 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG); 10381 10382 // For counter-based loop handling. 10383 case ISD::INTRINSIC_W_CHAIN: return SDValue(); 10384 10385 case ISD::BITCAST: return LowerBITCAST(Op, DAG); 10386 10387 // Frame & Return address. 10388 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); 10389 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); 10390 10391 case ISD::INTRINSIC_VOID: 10392 return LowerINTRINSIC_VOID(Op, DAG); 10393 case ISD::SREM: 10394 case ISD::UREM: 10395 return LowerREM(Op, DAG); 10396 case ISD::BSWAP: 10397 return LowerBSWAP(Op, DAG); 10398 case ISD::ATOMIC_CMP_SWAP: 10399 return LowerATOMIC_CMP_SWAP(Op, DAG); 10400 } 10401 } 10402 10403 void PPCTargetLowering::ReplaceNodeResults(SDNode *N, 10404 SmallVectorImpl<SDValue>&Results, 10405 SelectionDAG &DAG) const { 10406 SDLoc dl(N); 10407 switch (N->getOpcode()) { 10408 default: 10409 llvm_unreachable("Do not know how to custom type legalize this operation!"); 10410 case ISD::READCYCLECOUNTER: { 10411 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); 10412 SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0)); 10413 10414 Results.push_back(RTB); 10415 Results.push_back(RTB.getValue(1)); 10416 Results.push_back(RTB.getValue(2)); 10417 break; 10418 } 10419 case ISD::INTRINSIC_W_CHAIN: { 10420 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 10421 Intrinsic::loop_decrement) 10422 break; 10423 10424 assert(N->getValueType(0) == MVT::i1 && 10425 "Unexpected result type for CTR decrement intrinsic"); 10426 EVT SVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), 10427 N->getValueType(0)); 10428 SDVTList VTs = DAG.getVTList(SVT, MVT::Other); 10429 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0), 10430 N->getOperand(1)); 10431 10432 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewInt)); 10433 Results.push_back(NewInt.getValue(1)); 10434 break; 10435 } 10436 case ISD::VAARG: { 10437 if (!Subtarget.isSVR4ABI() || Subtarget.isPPC64()) 10438 return; 10439 10440 EVT VT = N->getValueType(0); 10441 10442 if (VT == MVT::i64) { 10443 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG); 10444 10445 Results.push_back(NewNode); 10446 Results.push_back(NewNode.getValue(1)); 10447 } 10448 return; 10449 } 10450 case ISD::FP_TO_SINT: 10451 case ISD::FP_TO_UINT: 10452 // LowerFP_TO_INT() can only handle f32 and f64. 10453 if (N->getOperand(0).getValueType() == MVT::ppcf128) 10454 return; 10455 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl)); 10456 return; 10457 case ISD::TRUNCATE: { 10458 EVT TrgVT = N->getValueType(0); 10459 EVT OpVT = N->getOperand(0).getValueType(); 10460 if (TrgVT.isVector() && 10461 isOperationCustom(N->getOpcode(), TrgVT) && 10462 OpVT.getSizeInBits() <= 128 && 10463 isPowerOf2_32(OpVT.getVectorElementType().getSizeInBits())) 10464 Results.push_back(LowerTRUNCATEVector(SDValue(N, 0), DAG)); 10465 return; 10466 } 10467 case ISD::BITCAST: 10468 // Don't handle bitcast here. 10469 return; 10470 } 10471 } 10472 10473 //===----------------------------------------------------------------------===// 10474 // Other Lowering Code 10475 //===----------------------------------------------------------------------===// 10476 10477 static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) { 10478 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 10479 Function *Func = Intrinsic::getDeclaration(M, Id); 10480 return Builder.CreateCall(Func, {}); 10481 } 10482 10483 // The mappings for emitLeading/TrailingFence is taken from 10484 // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html 10485 Instruction *PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder, 10486 Instruction *Inst, 10487 AtomicOrdering Ord) const { 10488 if (Ord == AtomicOrdering::SequentiallyConsistent) 10489 return callIntrinsic(Builder, Intrinsic::ppc_sync); 10490 if (isReleaseOrStronger(Ord)) 10491 return callIntrinsic(Builder, Intrinsic::ppc_lwsync); 10492 return nullptr; 10493 } 10494 10495 Instruction *PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder, 10496 Instruction *Inst, 10497 AtomicOrdering Ord) const { 10498 if (Inst->hasAtomicLoad() && isAcquireOrStronger(Ord)) { 10499 // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and 10500 // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html 10501 // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification. 10502 if (isa<LoadInst>(Inst) && Subtarget.isPPC64()) 10503 return Builder.CreateCall( 10504 Intrinsic::getDeclaration( 10505 Builder.GetInsertBlock()->getParent()->getParent(), 10506 Intrinsic::ppc_cfence, {Inst->getType()}), 10507 {Inst}); 10508 // FIXME: Can use isync for rmw operation. 10509 return callIntrinsic(Builder, Intrinsic::ppc_lwsync); 10510 } 10511 return nullptr; 10512 } 10513 10514 MachineBasicBlock * 10515 PPCTargetLowering::EmitAtomicBinary(MachineInstr &MI, MachineBasicBlock *BB, 10516 unsigned AtomicSize, 10517 unsigned BinOpcode, 10518 unsigned CmpOpcode, 10519 unsigned CmpPred) const { 10520 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0. 10521 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 10522 10523 auto LoadMnemonic = PPC::LDARX; 10524 auto StoreMnemonic = PPC::STDCX; 10525 switch (AtomicSize) { 10526 default: 10527 llvm_unreachable("Unexpected size of atomic entity"); 10528 case 1: 10529 LoadMnemonic = PPC::LBARX; 10530 StoreMnemonic = PPC::STBCX; 10531 assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4"); 10532 break; 10533 case 2: 10534 LoadMnemonic = PPC::LHARX; 10535 StoreMnemonic = PPC::STHCX; 10536 assert(Subtarget.hasPartwordAtomics() && "Call this only with size >=4"); 10537 break; 10538 case 4: 10539 LoadMnemonic = PPC::LWARX; 10540 StoreMnemonic = PPC::STWCX; 10541 break; 10542 case 8: 10543 LoadMnemonic = PPC::LDARX; 10544 StoreMnemonic = PPC::STDCX; 10545 break; 10546 } 10547 10548 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 10549 MachineFunction *F = BB->getParent(); 10550 MachineFunction::iterator It = ++BB->getIterator(); 10551 10552 Register dest = MI.getOperand(0).getReg(); 10553 Register ptrA = MI.getOperand(1).getReg(); 10554 Register ptrB = MI.getOperand(2).getReg(); 10555 Register incr = MI.getOperand(3).getReg(); 10556 DebugLoc dl = MI.getDebugLoc(); 10557 10558 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB); 10559 MachineBasicBlock *loop2MBB = 10560 CmpOpcode ? F->CreateMachineBasicBlock(LLVM_BB) : nullptr; 10561 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 10562 F->insert(It, loopMBB); 10563 if (CmpOpcode) 10564 F->insert(It, loop2MBB); 10565 F->insert(It, exitMBB); 10566 exitMBB->splice(exitMBB->begin(), BB, 10567 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 10568 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 10569 10570 MachineRegisterInfo &RegInfo = F->getRegInfo(); 10571 Register TmpReg = (!BinOpcode) ? incr : 10572 RegInfo.createVirtualRegister( AtomicSize == 8 ? &PPC::G8RCRegClass 10573 : &PPC::GPRCRegClass); 10574 10575 // thisMBB: 10576 // ... 10577 // fallthrough --> loopMBB 10578 BB->addSuccessor(loopMBB); 10579 10580 // loopMBB: 10581 // l[wd]arx dest, ptr 10582 // add r0, dest, incr 10583 // st[wd]cx. r0, ptr 10584 // bne- loopMBB 10585 // fallthrough --> exitMBB 10586 10587 // For max/min... 10588 // loopMBB: 10589 // l[wd]arx dest, ptr 10590 // cmpl?[wd] incr, dest 10591 // bgt exitMBB 10592 // loop2MBB: 10593 // st[wd]cx. dest, ptr 10594 // bne- loopMBB 10595 // fallthrough --> exitMBB 10596 10597 BB = loopMBB; 10598 BuildMI(BB, dl, TII->get(LoadMnemonic), dest) 10599 .addReg(ptrA).addReg(ptrB); 10600 if (BinOpcode) 10601 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest); 10602 if (CmpOpcode) { 10603 // Signed comparisons of byte or halfword values must be sign-extended. 10604 if (CmpOpcode == PPC::CMPW && AtomicSize < 4) { 10605 Register ExtReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass); 10606 BuildMI(BB, dl, TII->get(AtomicSize == 1 ? PPC::EXTSB : PPC::EXTSH), 10607 ExtReg).addReg(dest); 10608 BuildMI(BB, dl, TII->get(CmpOpcode), PPC::CR0) 10609 .addReg(incr).addReg(ExtReg); 10610 } else 10611 BuildMI(BB, dl, TII->get(CmpOpcode), PPC::CR0) 10612 .addReg(incr).addReg(dest); 10613 10614 BuildMI(BB, dl, TII->get(PPC::BCC)) 10615 .addImm(CmpPred).addReg(PPC::CR0).addMBB(exitMBB); 10616 BB->addSuccessor(loop2MBB); 10617 BB->addSuccessor(exitMBB); 10618 BB = loop2MBB; 10619 } 10620 BuildMI(BB, dl, TII->get(StoreMnemonic)) 10621 .addReg(TmpReg).addReg(ptrA).addReg(ptrB); 10622 BuildMI(BB, dl, TII->get(PPC::BCC)) 10623 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB); 10624 BB->addSuccessor(loopMBB); 10625 BB->addSuccessor(exitMBB); 10626 10627 // exitMBB: 10628 // ... 10629 BB = exitMBB; 10630 return BB; 10631 } 10632 10633 MachineBasicBlock *PPCTargetLowering::EmitPartwordAtomicBinary( 10634 MachineInstr &MI, MachineBasicBlock *BB, 10635 bool is8bit, // operation 10636 unsigned BinOpcode, unsigned CmpOpcode, unsigned CmpPred) const { 10637 // If we support part-word atomic mnemonics, just use them 10638 if (Subtarget.hasPartwordAtomics()) 10639 return EmitAtomicBinary(MI, BB, is8bit ? 1 : 2, BinOpcode, CmpOpcode, 10640 CmpPred); 10641 10642 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0. 10643 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 10644 // In 64 bit mode we have to use 64 bits for addresses, even though the 10645 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address 10646 // registers without caring whether they're 32 or 64, but here we're 10647 // doing actual arithmetic on the addresses. 10648 bool is64bit = Subtarget.isPPC64(); 10649 bool isLittleEndian = Subtarget.isLittleEndian(); 10650 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO; 10651 10652 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 10653 MachineFunction *F = BB->getParent(); 10654 MachineFunction::iterator It = ++BB->getIterator(); 10655 10656 Register dest = MI.getOperand(0).getReg(); 10657 Register ptrA = MI.getOperand(1).getReg(); 10658 Register ptrB = MI.getOperand(2).getReg(); 10659 Register incr = MI.getOperand(3).getReg(); 10660 DebugLoc dl = MI.getDebugLoc(); 10661 10662 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB); 10663 MachineBasicBlock *loop2MBB = 10664 CmpOpcode ? F->CreateMachineBasicBlock(LLVM_BB) : nullptr; 10665 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 10666 F->insert(It, loopMBB); 10667 if (CmpOpcode) 10668 F->insert(It, loop2MBB); 10669 F->insert(It, exitMBB); 10670 exitMBB->splice(exitMBB->begin(), BB, 10671 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 10672 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 10673 10674 MachineRegisterInfo &RegInfo = F->getRegInfo(); 10675 const TargetRegisterClass *RC = 10676 is64bit ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; 10677 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 10678 10679 Register PtrReg = RegInfo.createVirtualRegister(RC); 10680 Register Shift1Reg = RegInfo.createVirtualRegister(GPRC); 10681 Register ShiftReg = 10682 isLittleEndian ? Shift1Reg : RegInfo.createVirtualRegister(GPRC); 10683 Register Incr2Reg = RegInfo.createVirtualRegister(GPRC); 10684 Register MaskReg = RegInfo.createVirtualRegister(GPRC); 10685 Register Mask2Reg = RegInfo.createVirtualRegister(GPRC); 10686 Register Mask3Reg = RegInfo.createVirtualRegister(GPRC); 10687 Register Tmp2Reg = RegInfo.createVirtualRegister(GPRC); 10688 Register Tmp3Reg = RegInfo.createVirtualRegister(GPRC); 10689 Register Tmp4Reg = RegInfo.createVirtualRegister(GPRC); 10690 Register TmpDestReg = RegInfo.createVirtualRegister(GPRC); 10691 Register Ptr1Reg; 10692 Register TmpReg = 10693 (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(GPRC); 10694 10695 // thisMBB: 10696 // ... 10697 // fallthrough --> loopMBB 10698 BB->addSuccessor(loopMBB); 10699 10700 // The 4-byte load must be aligned, while a char or short may be 10701 // anywhere in the word. Hence all this nasty bookkeeping code. 10702 // add ptr1, ptrA, ptrB [copy if ptrA==0] 10703 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27] 10704 // xori shift, shift1, 24 [16] 10705 // rlwinm ptr, ptr1, 0, 0, 29 10706 // slw incr2, incr, shift 10707 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535] 10708 // slw mask, mask2, shift 10709 // loopMBB: 10710 // lwarx tmpDest, ptr 10711 // add tmp, tmpDest, incr2 10712 // andc tmp2, tmpDest, mask 10713 // and tmp3, tmp, mask 10714 // or tmp4, tmp3, tmp2 10715 // stwcx. tmp4, ptr 10716 // bne- loopMBB 10717 // fallthrough --> exitMBB 10718 // srw dest, tmpDest, shift 10719 if (ptrA != ZeroReg) { 10720 Ptr1Reg = RegInfo.createVirtualRegister(RC); 10721 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg) 10722 .addReg(ptrA) 10723 .addReg(ptrB); 10724 } else { 10725 Ptr1Reg = ptrB; 10726 } 10727 // We need use 32-bit subregister to avoid mismatch register class in 64-bit 10728 // mode. 10729 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg) 10730 .addReg(Ptr1Reg, 0, is64bit ? PPC::sub_32 : 0) 10731 .addImm(3) 10732 .addImm(27) 10733 .addImm(is8bit ? 28 : 27); 10734 if (!isLittleEndian) 10735 BuildMI(BB, dl, TII->get(PPC::XORI), ShiftReg) 10736 .addReg(Shift1Reg) 10737 .addImm(is8bit ? 24 : 16); 10738 if (is64bit) 10739 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg) 10740 .addReg(Ptr1Reg) 10741 .addImm(0) 10742 .addImm(61); 10743 else 10744 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg) 10745 .addReg(Ptr1Reg) 10746 .addImm(0) 10747 .addImm(0) 10748 .addImm(29); 10749 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg).addReg(incr).addReg(ShiftReg); 10750 if (is8bit) 10751 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255); 10752 else { 10753 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0); 10754 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg) 10755 .addReg(Mask3Reg) 10756 .addImm(65535); 10757 } 10758 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg) 10759 .addReg(Mask2Reg) 10760 .addReg(ShiftReg); 10761 10762 BB = loopMBB; 10763 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg) 10764 .addReg(ZeroReg) 10765 .addReg(PtrReg); 10766 if (BinOpcode) 10767 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg) 10768 .addReg(Incr2Reg) 10769 .addReg(TmpDestReg); 10770 BuildMI(BB, dl, TII->get(PPC::ANDC), Tmp2Reg) 10771 .addReg(TmpDestReg) 10772 .addReg(MaskReg); 10773 BuildMI(BB, dl, TII->get(PPC::AND), Tmp3Reg).addReg(TmpReg).addReg(MaskReg); 10774 if (CmpOpcode) { 10775 // For unsigned comparisons, we can directly compare the shifted values. 10776 // For signed comparisons we shift and sign extend. 10777 Register SReg = RegInfo.createVirtualRegister(GPRC); 10778 BuildMI(BB, dl, TII->get(PPC::AND), SReg) 10779 .addReg(TmpDestReg) 10780 .addReg(MaskReg); 10781 unsigned ValueReg = SReg; 10782 unsigned CmpReg = Incr2Reg; 10783 if (CmpOpcode == PPC::CMPW) { 10784 ValueReg = RegInfo.createVirtualRegister(GPRC); 10785 BuildMI(BB, dl, TII->get(PPC::SRW), ValueReg) 10786 .addReg(SReg) 10787 .addReg(ShiftReg); 10788 Register ValueSReg = RegInfo.createVirtualRegister(GPRC); 10789 BuildMI(BB, dl, TII->get(is8bit ? PPC::EXTSB : PPC::EXTSH), ValueSReg) 10790 .addReg(ValueReg); 10791 ValueReg = ValueSReg; 10792 CmpReg = incr; 10793 } 10794 BuildMI(BB, dl, TII->get(CmpOpcode), PPC::CR0) 10795 .addReg(CmpReg) 10796 .addReg(ValueReg); 10797 BuildMI(BB, dl, TII->get(PPC::BCC)) 10798 .addImm(CmpPred) 10799 .addReg(PPC::CR0) 10800 .addMBB(exitMBB); 10801 BB->addSuccessor(loop2MBB); 10802 BB->addSuccessor(exitMBB); 10803 BB = loop2MBB; 10804 } 10805 BuildMI(BB, dl, TII->get(PPC::OR), Tmp4Reg).addReg(Tmp3Reg).addReg(Tmp2Reg); 10806 BuildMI(BB, dl, TII->get(PPC::STWCX)) 10807 .addReg(Tmp4Reg) 10808 .addReg(ZeroReg) 10809 .addReg(PtrReg); 10810 BuildMI(BB, dl, TII->get(PPC::BCC)) 10811 .addImm(PPC::PRED_NE) 10812 .addReg(PPC::CR0) 10813 .addMBB(loopMBB); 10814 BB->addSuccessor(loopMBB); 10815 BB->addSuccessor(exitMBB); 10816 10817 // exitMBB: 10818 // ... 10819 BB = exitMBB; 10820 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest) 10821 .addReg(TmpDestReg) 10822 .addReg(ShiftReg); 10823 return BB; 10824 } 10825 10826 llvm::MachineBasicBlock * 10827 PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr &MI, 10828 MachineBasicBlock *MBB) const { 10829 DebugLoc DL = MI.getDebugLoc(); 10830 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 10831 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo(); 10832 10833 MachineFunction *MF = MBB->getParent(); 10834 MachineRegisterInfo &MRI = MF->getRegInfo(); 10835 10836 const BasicBlock *BB = MBB->getBasicBlock(); 10837 MachineFunction::iterator I = ++MBB->getIterator(); 10838 10839 Register DstReg = MI.getOperand(0).getReg(); 10840 const TargetRegisterClass *RC = MRI.getRegClass(DstReg); 10841 assert(TRI->isTypeLegalForClass(*RC, MVT::i32) && "Invalid destination!"); 10842 Register mainDstReg = MRI.createVirtualRegister(RC); 10843 Register restoreDstReg = MRI.createVirtualRegister(RC); 10844 10845 MVT PVT = getPointerTy(MF->getDataLayout()); 10846 assert((PVT == MVT::i64 || PVT == MVT::i32) && 10847 "Invalid Pointer Size!"); 10848 // For v = setjmp(buf), we generate 10849 // 10850 // thisMBB: 10851 // SjLjSetup mainMBB 10852 // bl mainMBB 10853 // v_restore = 1 10854 // b sinkMBB 10855 // 10856 // mainMBB: 10857 // buf[LabelOffset] = LR 10858 // v_main = 0 10859 // 10860 // sinkMBB: 10861 // v = phi(main, restore) 10862 // 10863 10864 MachineBasicBlock *thisMBB = MBB; 10865 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB); 10866 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB); 10867 MF->insert(I, mainMBB); 10868 MF->insert(I, sinkMBB); 10869 10870 MachineInstrBuilder MIB; 10871 10872 // Transfer the remainder of BB and its successor edges to sinkMBB. 10873 sinkMBB->splice(sinkMBB->begin(), MBB, 10874 std::next(MachineBasicBlock::iterator(MI)), MBB->end()); 10875 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB); 10876 10877 // Note that the structure of the jmp_buf used here is not compatible 10878 // with that used by libc, and is not designed to be. Specifically, it 10879 // stores only those 'reserved' registers that LLVM does not otherwise 10880 // understand how to spill. Also, by convention, by the time this 10881 // intrinsic is called, Clang has already stored the frame address in the 10882 // first slot of the buffer and stack address in the third. Following the 10883 // X86 target code, we'll store the jump address in the second slot. We also 10884 // need to save the TOC pointer (R2) to handle jumps between shared 10885 // libraries, and that will be stored in the fourth slot. The thread 10886 // identifier (R13) is not affected. 10887 10888 // thisMBB: 10889 const int64_t LabelOffset = 1 * PVT.getStoreSize(); 10890 const int64_t TOCOffset = 3 * PVT.getStoreSize(); 10891 const int64_t BPOffset = 4 * PVT.getStoreSize(); 10892 10893 // Prepare IP either in reg. 10894 const TargetRegisterClass *PtrRC = getRegClassFor(PVT); 10895 Register LabelReg = MRI.createVirtualRegister(PtrRC); 10896 Register BufReg = MI.getOperand(1).getReg(); 10897 10898 if (Subtarget.is64BitELFABI()) { 10899 setUsesTOCBasePtr(*MBB->getParent()); 10900 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD)) 10901 .addReg(PPC::X2) 10902 .addImm(TOCOffset) 10903 .addReg(BufReg) 10904 .cloneMemRefs(MI); 10905 } 10906 10907 // Naked functions never have a base pointer, and so we use r1. For all 10908 // other functions, this decision must be delayed until during PEI. 10909 unsigned BaseReg; 10910 if (MF->getFunction().hasFnAttribute(Attribute::Naked)) 10911 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1; 10912 else 10913 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP; 10914 10915 MIB = BuildMI(*thisMBB, MI, DL, 10916 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW)) 10917 .addReg(BaseReg) 10918 .addImm(BPOffset) 10919 .addReg(BufReg) 10920 .cloneMemRefs(MI); 10921 10922 // Setup 10923 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB); 10924 MIB.addRegMask(TRI->getNoPreservedMask()); 10925 10926 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1); 10927 10928 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup)) 10929 .addMBB(mainMBB); 10930 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB); 10931 10932 thisMBB->addSuccessor(mainMBB, BranchProbability::getZero()); 10933 thisMBB->addSuccessor(sinkMBB, BranchProbability::getOne()); 10934 10935 // mainMBB: 10936 // mainDstReg = 0 10937 MIB = 10938 BuildMI(mainMBB, DL, 10939 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg); 10940 10941 // Store IP 10942 if (Subtarget.isPPC64()) { 10943 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD)) 10944 .addReg(LabelReg) 10945 .addImm(LabelOffset) 10946 .addReg(BufReg); 10947 } else { 10948 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW)) 10949 .addReg(LabelReg) 10950 .addImm(LabelOffset) 10951 .addReg(BufReg); 10952 } 10953 MIB.cloneMemRefs(MI); 10954 10955 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0); 10956 mainMBB->addSuccessor(sinkMBB); 10957 10958 // sinkMBB: 10959 BuildMI(*sinkMBB, sinkMBB->begin(), DL, 10960 TII->get(PPC::PHI), DstReg) 10961 .addReg(mainDstReg).addMBB(mainMBB) 10962 .addReg(restoreDstReg).addMBB(thisMBB); 10963 10964 MI.eraseFromParent(); 10965 return sinkMBB; 10966 } 10967 10968 MachineBasicBlock * 10969 PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr &MI, 10970 MachineBasicBlock *MBB) const { 10971 DebugLoc DL = MI.getDebugLoc(); 10972 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 10973 10974 MachineFunction *MF = MBB->getParent(); 10975 MachineRegisterInfo &MRI = MF->getRegInfo(); 10976 10977 MVT PVT = getPointerTy(MF->getDataLayout()); 10978 assert((PVT == MVT::i64 || PVT == MVT::i32) && 10979 "Invalid Pointer Size!"); 10980 10981 const TargetRegisterClass *RC = 10982 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; 10983 Register Tmp = MRI.createVirtualRegister(RC); 10984 // Since FP is only updated here but NOT referenced, it's treated as GPR. 10985 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31; 10986 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1; 10987 unsigned BP = 10988 (PVT == MVT::i64) 10989 ? PPC::X30 10990 : (Subtarget.isSVR4ABI() && isPositionIndependent() ? PPC::R29 10991 : PPC::R30); 10992 10993 MachineInstrBuilder MIB; 10994 10995 const int64_t LabelOffset = 1 * PVT.getStoreSize(); 10996 const int64_t SPOffset = 2 * PVT.getStoreSize(); 10997 const int64_t TOCOffset = 3 * PVT.getStoreSize(); 10998 const int64_t BPOffset = 4 * PVT.getStoreSize(); 10999 11000 Register BufReg = MI.getOperand(0).getReg(); 11001 11002 // Reload FP (the jumped-to function may not have had a 11003 // frame pointer, and if so, then its r31 will be restored 11004 // as necessary). 11005 if (PVT == MVT::i64) { 11006 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP) 11007 .addImm(0) 11008 .addReg(BufReg); 11009 } else { 11010 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP) 11011 .addImm(0) 11012 .addReg(BufReg); 11013 } 11014 MIB.cloneMemRefs(MI); 11015 11016 // Reload IP 11017 if (PVT == MVT::i64) { 11018 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp) 11019 .addImm(LabelOffset) 11020 .addReg(BufReg); 11021 } else { 11022 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp) 11023 .addImm(LabelOffset) 11024 .addReg(BufReg); 11025 } 11026 MIB.cloneMemRefs(MI); 11027 11028 // Reload SP 11029 if (PVT == MVT::i64) { 11030 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP) 11031 .addImm(SPOffset) 11032 .addReg(BufReg); 11033 } else { 11034 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP) 11035 .addImm(SPOffset) 11036 .addReg(BufReg); 11037 } 11038 MIB.cloneMemRefs(MI); 11039 11040 // Reload BP 11041 if (PVT == MVT::i64) { 11042 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP) 11043 .addImm(BPOffset) 11044 .addReg(BufReg); 11045 } else { 11046 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP) 11047 .addImm(BPOffset) 11048 .addReg(BufReg); 11049 } 11050 MIB.cloneMemRefs(MI); 11051 11052 // Reload TOC 11053 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) { 11054 setUsesTOCBasePtr(*MBB->getParent()); 11055 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2) 11056 .addImm(TOCOffset) 11057 .addReg(BufReg) 11058 .cloneMemRefs(MI); 11059 } 11060 11061 // Jump 11062 BuildMI(*MBB, MI, DL, 11063 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp); 11064 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR)); 11065 11066 MI.eraseFromParent(); 11067 return MBB; 11068 } 11069 11070 MachineBasicBlock * 11071 PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr &MI, 11072 MachineBasicBlock *BB) const { 11073 if (MI.getOpcode() == TargetOpcode::STACKMAP || 11074 MI.getOpcode() == TargetOpcode::PATCHPOINT) { 11075 if (Subtarget.is64BitELFABI() && 11076 MI.getOpcode() == TargetOpcode::PATCHPOINT) { 11077 // Call lowering should have added an r2 operand to indicate a dependence 11078 // on the TOC base pointer value. It can't however, because there is no 11079 // way to mark the dependence as implicit there, and so the stackmap code 11080 // will confuse it with a regular operand. Instead, add the dependence 11081 // here. 11082 MI.addOperand(MachineOperand::CreateReg(PPC::X2, false, true)); 11083 } 11084 11085 return emitPatchPoint(MI, BB); 11086 } 11087 11088 if (MI.getOpcode() == PPC::EH_SjLj_SetJmp32 || 11089 MI.getOpcode() == PPC::EH_SjLj_SetJmp64) { 11090 return emitEHSjLjSetJmp(MI, BB); 11091 } else if (MI.getOpcode() == PPC::EH_SjLj_LongJmp32 || 11092 MI.getOpcode() == PPC::EH_SjLj_LongJmp64) { 11093 return emitEHSjLjLongJmp(MI, BB); 11094 } 11095 11096 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 11097 11098 // To "insert" these instructions we actually have to insert their 11099 // control-flow patterns. 11100 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 11101 MachineFunction::iterator It = ++BB->getIterator(); 11102 11103 MachineFunction *F = BB->getParent(); 11104 11105 if (MI.getOpcode() == PPC::SELECT_CC_I4 || 11106 MI.getOpcode() == PPC::SELECT_CC_I8 || MI.getOpcode() == PPC::SELECT_I4 || 11107 MI.getOpcode() == PPC::SELECT_I8) { 11108 SmallVector<MachineOperand, 2> Cond; 11109 if (MI.getOpcode() == PPC::SELECT_CC_I4 || 11110 MI.getOpcode() == PPC::SELECT_CC_I8) 11111 Cond.push_back(MI.getOperand(4)); 11112 else 11113 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET)); 11114 Cond.push_back(MI.getOperand(1)); 11115 11116 DebugLoc dl = MI.getDebugLoc(); 11117 TII->insertSelect(*BB, MI, dl, MI.getOperand(0).getReg(), Cond, 11118 MI.getOperand(2).getReg(), MI.getOperand(3).getReg()); 11119 } else if (MI.getOpcode() == PPC::SELECT_CC_F4 || 11120 MI.getOpcode() == PPC::SELECT_CC_F8 || 11121 MI.getOpcode() == PPC::SELECT_CC_F16 || 11122 MI.getOpcode() == PPC::SELECT_CC_QFRC || 11123 MI.getOpcode() == PPC::SELECT_CC_QSRC || 11124 MI.getOpcode() == PPC::SELECT_CC_QBRC || 11125 MI.getOpcode() == PPC::SELECT_CC_VRRC || 11126 MI.getOpcode() == PPC::SELECT_CC_VSFRC || 11127 MI.getOpcode() == PPC::SELECT_CC_VSSRC || 11128 MI.getOpcode() == PPC::SELECT_CC_VSRC || 11129 MI.getOpcode() == PPC::SELECT_CC_SPE4 || 11130 MI.getOpcode() == PPC::SELECT_CC_SPE || 11131 MI.getOpcode() == PPC::SELECT_F4 || 11132 MI.getOpcode() == PPC::SELECT_F8 || 11133 MI.getOpcode() == PPC::SELECT_F16 || 11134 MI.getOpcode() == PPC::SELECT_QFRC || 11135 MI.getOpcode() == PPC::SELECT_QSRC || 11136 MI.getOpcode() == PPC::SELECT_QBRC || 11137 MI.getOpcode() == PPC::SELECT_SPE || 11138 MI.getOpcode() == PPC::SELECT_SPE4 || 11139 MI.getOpcode() == PPC::SELECT_VRRC || 11140 MI.getOpcode() == PPC::SELECT_VSFRC || 11141 MI.getOpcode() == PPC::SELECT_VSSRC || 11142 MI.getOpcode() == PPC::SELECT_VSRC) { 11143 // The incoming instruction knows the destination vreg to set, the 11144 // condition code register to branch on, the true/false values to 11145 // select between, and a branch opcode to use. 11146 11147 // thisMBB: 11148 // ... 11149 // TrueVal = ... 11150 // cmpTY ccX, r1, r2 11151 // bCC copy1MBB 11152 // fallthrough --> copy0MBB 11153 MachineBasicBlock *thisMBB = BB; 11154 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); 11155 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 11156 DebugLoc dl = MI.getDebugLoc(); 11157 F->insert(It, copy0MBB); 11158 F->insert(It, sinkMBB); 11159 11160 // Transfer the remainder of BB and its successor edges to sinkMBB. 11161 sinkMBB->splice(sinkMBB->begin(), BB, 11162 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 11163 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 11164 11165 // Next, add the true and fallthrough blocks as its successors. 11166 BB->addSuccessor(copy0MBB); 11167 BB->addSuccessor(sinkMBB); 11168 11169 if (MI.getOpcode() == PPC::SELECT_I4 || MI.getOpcode() == PPC::SELECT_I8 || 11170 MI.getOpcode() == PPC::SELECT_F4 || MI.getOpcode() == PPC::SELECT_F8 || 11171 MI.getOpcode() == PPC::SELECT_F16 || 11172 MI.getOpcode() == PPC::SELECT_SPE4 || 11173 MI.getOpcode() == PPC::SELECT_SPE || 11174 MI.getOpcode() == PPC::SELECT_QFRC || 11175 MI.getOpcode() == PPC::SELECT_QSRC || 11176 MI.getOpcode() == PPC::SELECT_QBRC || 11177 MI.getOpcode() == PPC::SELECT_VRRC || 11178 MI.getOpcode() == PPC::SELECT_VSFRC || 11179 MI.getOpcode() == PPC::SELECT_VSSRC || 11180 MI.getOpcode() == PPC::SELECT_VSRC) { 11181 BuildMI(BB, dl, TII->get(PPC::BC)) 11182 .addReg(MI.getOperand(1).getReg()) 11183 .addMBB(sinkMBB); 11184 } else { 11185 unsigned SelectPred = MI.getOperand(4).getImm(); 11186 BuildMI(BB, dl, TII->get(PPC::BCC)) 11187 .addImm(SelectPred) 11188 .addReg(MI.getOperand(1).getReg()) 11189 .addMBB(sinkMBB); 11190 } 11191 11192 // copy0MBB: 11193 // %FalseValue = ... 11194 // # fallthrough to sinkMBB 11195 BB = copy0MBB; 11196 11197 // Update machine-CFG edges 11198 BB->addSuccessor(sinkMBB); 11199 11200 // sinkMBB: 11201 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] 11202 // ... 11203 BB = sinkMBB; 11204 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::PHI), MI.getOperand(0).getReg()) 11205 .addReg(MI.getOperand(3).getReg()) 11206 .addMBB(copy0MBB) 11207 .addReg(MI.getOperand(2).getReg()) 11208 .addMBB(thisMBB); 11209 } else if (MI.getOpcode() == PPC::ReadTB) { 11210 // To read the 64-bit time-base register on a 32-bit target, we read the 11211 // two halves. Should the counter have wrapped while it was being read, we 11212 // need to try again. 11213 // ... 11214 // readLoop: 11215 // mfspr Rx,TBU # load from TBU 11216 // mfspr Ry,TB # load from TB 11217 // mfspr Rz,TBU # load from TBU 11218 // cmpw crX,Rx,Rz # check if 'old'='new' 11219 // bne readLoop # branch if they're not equal 11220 // ... 11221 11222 MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB); 11223 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 11224 DebugLoc dl = MI.getDebugLoc(); 11225 F->insert(It, readMBB); 11226 F->insert(It, sinkMBB); 11227 11228 // Transfer the remainder of BB and its successor edges to sinkMBB. 11229 sinkMBB->splice(sinkMBB->begin(), BB, 11230 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 11231 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 11232 11233 BB->addSuccessor(readMBB); 11234 BB = readMBB; 11235 11236 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11237 Register ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass); 11238 Register LoReg = MI.getOperand(0).getReg(); 11239 Register HiReg = MI.getOperand(1).getReg(); 11240 11241 BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269); 11242 BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268); 11243 BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269); 11244 11245 Register CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass); 11246 11247 BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg) 11248 .addReg(HiReg) 11249 .addReg(ReadAgainReg); 11250 BuildMI(BB, dl, TII->get(PPC::BCC)) 11251 .addImm(PPC::PRED_NE) 11252 .addReg(CmpReg) 11253 .addMBB(readMBB); 11254 11255 BB->addSuccessor(readMBB); 11256 BB->addSuccessor(sinkMBB); 11257 } else if (MI.getOpcode() == PPC::ATOMIC_LOAD_ADD_I8) 11258 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4); 11259 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_ADD_I16) 11260 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4); 11261 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_ADD_I32) 11262 BB = EmitAtomicBinary(MI, BB, 4, PPC::ADD4); 11263 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_ADD_I64) 11264 BB = EmitAtomicBinary(MI, BB, 8, PPC::ADD8); 11265 11266 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_AND_I8) 11267 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND); 11268 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_AND_I16) 11269 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND); 11270 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_AND_I32) 11271 BB = EmitAtomicBinary(MI, BB, 4, PPC::AND); 11272 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_AND_I64) 11273 BB = EmitAtomicBinary(MI, BB, 8, PPC::AND8); 11274 11275 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_OR_I8) 11276 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR); 11277 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_OR_I16) 11278 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR); 11279 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_OR_I32) 11280 BB = EmitAtomicBinary(MI, BB, 4, PPC::OR); 11281 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_OR_I64) 11282 BB = EmitAtomicBinary(MI, BB, 8, PPC::OR8); 11283 11284 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_XOR_I8) 11285 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR); 11286 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_XOR_I16) 11287 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR); 11288 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_XOR_I32) 11289 BB = EmitAtomicBinary(MI, BB, 4, PPC::XOR); 11290 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_XOR_I64) 11291 BB = EmitAtomicBinary(MI, BB, 8, PPC::XOR8); 11292 11293 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_NAND_I8) 11294 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND); 11295 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_NAND_I16) 11296 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND); 11297 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_NAND_I32) 11298 BB = EmitAtomicBinary(MI, BB, 4, PPC::NAND); 11299 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_NAND_I64) 11300 BB = EmitAtomicBinary(MI, BB, 8, PPC::NAND8); 11301 11302 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_SUB_I8) 11303 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF); 11304 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_SUB_I16) 11305 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF); 11306 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_SUB_I32) 11307 BB = EmitAtomicBinary(MI, BB, 4, PPC::SUBF); 11308 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_SUB_I64) 11309 BB = EmitAtomicBinary(MI, BB, 8, PPC::SUBF8); 11310 11311 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MIN_I8) 11312 BB = EmitPartwordAtomicBinary(MI, BB, true, 0, PPC::CMPW, PPC::PRED_GE); 11313 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MIN_I16) 11314 BB = EmitPartwordAtomicBinary(MI, BB, false, 0, PPC::CMPW, PPC::PRED_GE); 11315 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MIN_I32) 11316 BB = EmitAtomicBinary(MI, BB, 4, 0, PPC::CMPW, PPC::PRED_GE); 11317 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MIN_I64) 11318 BB = EmitAtomicBinary(MI, BB, 8, 0, PPC::CMPD, PPC::PRED_GE); 11319 11320 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MAX_I8) 11321 BB = EmitPartwordAtomicBinary(MI, BB, true, 0, PPC::CMPW, PPC::PRED_LE); 11322 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MAX_I16) 11323 BB = EmitPartwordAtomicBinary(MI, BB, false, 0, PPC::CMPW, PPC::PRED_LE); 11324 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MAX_I32) 11325 BB = EmitAtomicBinary(MI, BB, 4, 0, PPC::CMPW, PPC::PRED_LE); 11326 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_MAX_I64) 11327 BB = EmitAtomicBinary(MI, BB, 8, 0, PPC::CMPD, PPC::PRED_LE); 11328 11329 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMIN_I8) 11330 BB = EmitPartwordAtomicBinary(MI, BB, true, 0, PPC::CMPLW, PPC::PRED_GE); 11331 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMIN_I16) 11332 BB = EmitPartwordAtomicBinary(MI, BB, false, 0, PPC::CMPLW, PPC::PRED_GE); 11333 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMIN_I32) 11334 BB = EmitAtomicBinary(MI, BB, 4, 0, PPC::CMPLW, PPC::PRED_GE); 11335 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMIN_I64) 11336 BB = EmitAtomicBinary(MI, BB, 8, 0, PPC::CMPLD, PPC::PRED_GE); 11337 11338 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMAX_I8) 11339 BB = EmitPartwordAtomicBinary(MI, BB, true, 0, PPC::CMPLW, PPC::PRED_LE); 11340 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMAX_I16) 11341 BB = EmitPartwordAtomicBinary(MI, BB, false, 0, PPC::CMPLW, PPC::PRED_LE); 11342 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMAX_I32) 11343 BB = EmitAtomicBinary(MI, BB, 4, 0, PPC::CMPLW, PPC::PRED_LE); 11344 else if (MI.getOpcode() == PPC::ATOMIC_LOAD_UMAX_I64) 11345 BB = EmitAtomicBinary(MI, BB, 8, 0, PPC::CMPLD, PPC::PRED_LE); 11346 11347 else if (MI.getOpcode() == PPC::ATOMIC_SWAP_I8) 11348 BB = EmitPartwordAtomicBinary(MI, BB, true, 0); 11349 else if (MI.getOpcode() == PPC::ATOMIC_SWAP_I16) 11350 BB = EmitPartwordAtomicBinary(MI, BB, false, 0); 11351 else if (MI.getOpcode() == PPC::ATOMIC_SWAP_I32) 11352 BB = EmitAtomicBinary(MI, BB, 4, 0); 11353 else if (MI.getOpcode() == PPC::ATOMIC_SWAP_I64) 11354 BB = EmitAtomicBinary(MI, BB, 8, 0); 11355 else if (MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 || 11356 MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I64 || 11357 (Subtarget.hasPartwordAtomics() && 11358 MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I8) || 11359 (Subtarget.hasPartwordAtomics() && 11360 MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I16)) { 11361 bool is64bit = MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I64; 11362 11363 auto LoadMnemonic = PPC::LDARX; 11364 auto StoreMnemonic = PPC::STDCX; 11365 switch (MI.getOpcode()) { 11366 default: 11367 llvm_unreachable("Compare and swap of unknown size"); 11368 case PPC::ATOMIC_CMP_SWAP_I8: 11369 LoadMnemonic = PPC::LBARX; 11370 StoreMnemonic = PPC::STBCX; 11371 assert(Subtarget.hasPartwordAtomics() && "No support partword atomics."); 11372 break; 11373 case PPC::ATOMIC_CMP_SWAP_I16: 11374 LoadMnemonic = PPC::LHARX; 11375 StoreMnemonic = PPC::STHCX; 11376 assert(Subtarget.hasPartwordAtomics() && "No support partword atomics."); 11377 break; 11378 case PPC::ATOMIC_CMP_SWAP_I32: 11379 LoadMnemonic = PPC::LWARX; 11380 StoreMnemonic = PPC::STWCX; 11381 break; 11382 case PPC::ATOMIC_CMP_SWAP_I64: 11383 LoadMnemonic = PPC::LDARX; 11384 StoreMnemonic = PPC::STDCX; 11385 break; 11386 } 11387 Register dest = MI.getOperand(0).getReg(); 11388 Register ptrA = MI.getOperand(1).getReg(); 11389 Register ptrB = MI.getOperand(2).getReg(); 11390 Register oldval = MI.getOperand(3).getReg(); 11391 Register newval = MI.getOperand(4).getReg(); 11392 DebugLoc dl = MI.getDebugLoc(); 11393 11394 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB); 11395 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB); 11396 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB); 11397 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 11398 F->insert(It, loop1MBB); 11399 F->insert(It, loop2MBB); 11400 F->insert(It, midMBB); 11401 F->insert(It, exitMBB); 11402 exitMBB->splice(exitMBB->begin(), BB, 11403 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 11404 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 11405 11406 // thisMBB: 11407 // ... 11408 // fallthrough --> loopMBB 11409 BB->addSuccessor(loop1MBB); 11410 11411 // loop1MBB: 11412 // l[bhwd]arx dest, ptr 11413 // cmp[wd] dest, oldval 11414 // bne- midMBB 11415 // loop2MBB: 11416 // st[bhwd]cx. newval, ptr 11417 // bne- loopMBB 11418 // b exitBB 11419 // midMBB: 11420 // st[bhwd]cx. dest, ptr 11421 // exitBB: 11422 BB = loop1MBB; 11423 BuildMI(BB, dl, TII->get(LoadMnemonic), dest).addReg(ptrA).addReg(ptrB); 11424 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0) 11425 .addReg(oldval) 11426 .addReg(dest); 11427 BuildMI(BB, dl, TII->get(PPC::BCC)) 11428 .addImm(PPC::PRED_NE) 11429 .addReg(PPC::CR0) 11430 .addMBB(midMBB); 11431 BB->addSuccessor(loop2MBB); 11432 BB->addSuccessor(midMBB); 11433 11434 BB = loop2MBB; 11435 BuildMI(BB, dl, TII->get(StoreMnemonic)) 11436 .addReg(newval) 11437 .addReg(ptrA) 11438 .addReg(ptrB); 11439 BuildMI(BB, dl, TII->get(PPC::BCC)) 11440 .addImm(PPC::PRED_NE) 11441 .addReg(PPC::CR0) 11442 .addMBB(loop1MBB); 11443 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB); 11444 BB->addSuccessor(loop1MBB); 11445 BB->addSuccessor(exitMBB); 11446 11447 BB = midMBB; 11448 BuildMI(BB, dl, TII->get(StoreMnemonic)) 11449 .addReg(dest) 11450 .addReg(ptrA) 11451 .addReg(ptrB); 11452 BB->addSuccessor(exitMBB); 11453 11454 // exitMBB: 11455 // ... 11456 BB = exitMBB; 11457 } else if (MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 || 11458 MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) { 11459 // We must use 64-bit registers for addresses when targeting 64-bit, 11460 // since we're actually doing arithmetic on them. Other registers 11461 // can be 32-bit. 11462 bool is64bit = Subtarget.isPPC64(); 11463 bool isLittleEndian = Subtarget.isLittleEndian(); 11464 bool is8bit = MI.getOpcode() == PPC::ATOMIC_CMP_SWAP_I8; 11465 11466 Register dest = MI.getOperand(0).getReg(); 11467 Register ptrA = MI.getOperand(1).getReg(); 11468 Register ptrB = MI.getOperand(2).getReg(); 11469 Register oldval = MI.getOperand(3).getReg(); 11470 Register newval = MI.getOperand(4).getReg(); 11471 DebugLoc dl = MI.getDebugLoc(); 11472 11473 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB); 11474 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB); 11475 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB); 11476 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 11477 F->insert(It, loop1MBB); 11478 F->insert(It, loop2MBB); 11479 F->insert(It, midMBB); 11480 F->insert(It, exitMBB); 11481 exitMBB->splice(exitMBB->begin(), BB, 11482 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 11483 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 11484 11485 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11486 const TargetRegisterClass *RC = 11487 is64bit ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; 11488 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 11489 11490 Register PtrReg = RegInfo.createVirtualRegister(RC); 11491 Register Shift1Reg = RegInfo.createVirtualRegister(GPRC); 11492 Register ShiftReg = 11493 isLittleEndian ? Shift1Reg : RegInfo.createVirtualRegister(GPRC); 11494 Register NewVal2Reg = RegInfo.createVirtualRegister(GPRC); 11495 Register NewVal3Reg = RegInfo.createVirtualRegister(GPRC); 11496 Register OldVal2Reg = RegInfo.createVirtualRegister(GPRC); 11497 Register OldVal3Reg = RegInfo.createVirtualRegister(GPRC); 11498 Register MaskReg = RegInfo.createVirtualRegister(GPRC); 11499 Register Mask2Reg = RegInfo.createVirtualRegister(GPRC); 11500 Register Mask3Reg = RegInfo.createVirtualRegister(GPRC); 11501 Register Tmp2Reg = RegInfo.createVirtualRegister(GPRC); 11502 Register Tmp4Reg = RegInfo.createVirtualRegister(GPRC); 11503 Register TmpDestReg = RegInfo.createVirtualRegister(GPRC); 11504 Register Ptr1Reg; 11505 Register TmpReg = RegInfo.createVirtualRegister(GPRC); 11506 Register ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO; 11507 // thisMBB: 11508 // ... 11509 // fallthrough --> loopMBB 11510 BB->addSuccessor(loop1MBB); 11511 11512 // The 4-byte load must be aligned, while a char or short may be 11513 // anywhere in the word. Hence all this nasty bookkeeping code. 11514 // add ptr1, ptrA, ptrB [copy if ptrA==0] 11515 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27] 11516 // xori shift, shift1, 24 [16] 11517 // rlwinm ptr, ptr1, 0, 0, 29 11518 // slw newval2, newval, shift 11519 // slw oldval2, oldval,shift 11520 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535] 11521 // slw mask, mask2, shift 11522 // and newval3, newval2, mask 11523 // and oldval3, oldval2, mask 11524 // loop1MBB: 11525 // lwarx tmpDest, ptr 11526 // and tmp, tmpDest, mask 11527 // cmpw tmp, oldval3 11528 // bne- midMBB 11529 // loop2MBB: 11530 // andc tmp2, tmpDest, mask 11531 // or tmp4, tmp2, newval3 11532 // stwcx. tmp4, ptr 11533 // bne- loop1MBB 11534 // b exitBB 11535 // midMBB: 11536 // stwcx. tmpDest, ptr 11537 // exitBB: 11538 // srw dest, tmpDest, shift 11539 if (ptrA != ZeroReg) { 11540 Ptr1Reg = RegInfo.createVirtualRegister(RC); 11541 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg) 11542 .addReg(ptrA) 11543 .addReg(ptrB); 11544 } else { 11545 Ptr1Reg = ptrB; 11546 } 11547 11548 // We need use 32-bit subregister to avoid mismatch register class in 64-bit 11549 // mode. 11550 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg) 11551 .addReg(Ptr1Reg, 0, is64bit ? PPC::sub_32 : 0) 11552 .addImm(3) 11553 .addImm(27) 11554 .addImm(is8bit ? 28 : 27); 11555 if (!isLittleEndian) 11556 BuildMI(BB, dl, TII->get(PPC::XORI), ShiftReg) 11557 .addReg(Shift1Reg) 11558 .addImm(is8bit ? 24 : 16); 11559 if (is64bit) 11560 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg) 11561 .addReg(Ptr1Reg) 11562 .addImm(0) 11563 .addImm(61); 11564 else 11565 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg) 11566 .addReg(Ptr1Reg) 11567 .addImm(0) 11568 .addImm(0) 11569 .addImm(29); 11570 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg) 11571 .addReg(newval) 11572 .addReg(ShiftReg); 11573 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg) 11574 .addReg(oldval) 11575 .addReg(ShiftReg); 11576 if (is8bit) 11577 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255); 11578 else { 11579 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0); 11580 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg) 11581 .addReg(Mask3Reg) 11582 .addImm(65535); 11583 } 11584 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg) 11585 .addReg(Mask2Reg) 11586 .addReg(ShiftReg); 11587 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg) 11588 .addReg(NewVal2Reg) 11589 .addReg(MaskReg); 11590 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg) 11591 .addReg(OldVal2Reg) 11592 .addReg(MaskReg); 11593 11594 BB = loop1MBB; 11595 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg) 11596 .addReg(ZeroReg) 11597 .addReg(PtrReg); 11598 BuildMI(BB, dl, TII->get(PPC::AND), TmpReg) 11599 .addReg(TmpDestReg) 11600 .addReg(MaskReg); 11601 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0) 11602 .addReg(TmpReg) 11603 .addReg(OldVal3Reg); 11604 BuildMI(BB, dl, TII->get(PPC::BCC)) 11605 .addImm(PPC::PRED_NE) 11606 .addReg(PPC::CR0) 11607 .addMBB(midMBB); 11608 BB->addSuccessor(loop2MBB); 11609 BB->addSuccessor(midMBB); 11610 11611 BB = loop2MBB; 11612 BuildMI(BB, dl, TII->get(PPC::ANDC), Tmp2Reg) 11613 .addReg(TmpDestReg) 11614 .addReg(MaskReg); 11615 BuildMI(BB, dl, TII->get(PPC::OR), Tmp4Reg) 11616 .addReg(Tmp2Reg) 11617 .addReg(NewVal3Reg); 11618 BuildMI(BB, dl, TII->get(PPC::STWCX)) 11619 .addReg(Tmp4Reg) 11620 .addReg(ZeroReg) 11621 .addReg(PtrReg); 11622 BuildMI(BB, dl, TII->get(PPC::BCC)) 11623 .addImm(PPC::PRED_NE) 11624 .addReg(PPC::CR0) 11625 .addMBB(loop1MBB); 11626 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB); 11627 BB->addSuccessor(loop1MBB); 11628 BB->addSuccessor(exitMBB); 11629 11630 BB = midMBB; 11631 BuildMI(BB, dl, TII->get(PPC::STWCX)) 11632 .addReg(TmpDestReg) 11633 .addReg(ZeroReg) 11634 .addReg(PtrReg); 11635 BB->addSuccessor(exitMBB); 11636 11637 // exitMBB: 11638 // ... 11639 BB = exitMBB; 11640 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest) 11641 .addReg(TmpReg) 11642 .addReg(ShiftReg); 11643 } else if (MI.getOpcode() == PPC::FADDrtz) { 11644 // This pseudo performs an FADD with rounding mode temporarily forced 11645 // to round-to-zero. We emit this via custom inserter since the FPSCR 11646 // is not modeled at the SelectionDAG level. 11647 Register Dest = MI.getOperand(0).getReg(); 11648 Register Src1 = MI.getOperand(1).getReg(); 11649 Register Src2 = MI.getOperand(2).getReg(); 11650 DebugLoc dl = MI.getDebugLoc(); 11651 11652 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11653 Register MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass); 11654 11655 // Save FPSCR value. 11656 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg); 11657 11658 // Set rounding mode to round-to-zero. 11659 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31); 11660 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30); 11661 11662 // Perform addition. 11663 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2); 11664 11665 // Restore FPSCR value. 11666 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg); 11667 } else if (MI.getOpcode() == PPC::ANDI_rec_1_EQ_BIT || 11668 MI.getOpcode() == PPC::ANDI_rec_1_GT_BIT || 11669 MI.getOpcode() == PPC::ANDI_rec_1_EQ_BIT8 || 11670 MI.getOpcode() == PPC::ANDI_rec_1_GT_BIT8) { 11671 unsigned Opcode = (MI.getOpcode() == PPC::ANDI_rec_1_EQ_BIT8 || 11672 MI.getOpcode() == PPC::ANDI_rec_1_GT_BIT8) 11673 ? PPC::ANDI8_rec 11674 : PPC::ANDI_rec; 11675 bool IsEQ = (MI.getOpcode() == PPC::ANDI_rec_1_EQ_BIT || 11676 MI.getOpcode() == PPC::ANDI_rec_1_EQ_BIT8); 11677 11678 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11679 Register Dest = RegInfo.createVirtualRegister( 11680 Opcode == PPC::ANDI_rec ? &PPC::GPRCRegClass : &PPC::G8RCRegClass); 11681 11682 DebugLoc Dl = MI.getDebugLoc(); 11683 BuildMI(*BB, MI, Dl, TII->get(Opcode), Dest) 11684 .addReg(MI.getOperand(1).getReg()) 11685 .addImm(1); 11686 BuildMI(*BB, MI, Dl, TII->get(TargetOpcode::COPY), 11687 MI.getOperand(0).getReg()) 11688 .addReg(IsEQ ? PPC::CR0EQ : PPC::CR0GT); 11689 } else if (MI.getOpcode() == PPC::TCHECK_RET) { 11690 DebugLoc Dl = MI.getDebugLoc(); 11691 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11692 Register CRReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass); 11693 BuildMI(*BB, MI, Dl, TII->get(PPC::TCHECK), CRReg); 11694 BuildMI(*BB, MI, Dl, TII->get(TargetOpcode::COPY), 11695 MI.getOperand(0).getReg()) 11696 .addReg(CRReg); 11697 } else if (MI.getOpcode() == PPC::TBEGIN_RET) { 11698 DebugLoc Dl = MI.getDebugLoc(); 11699 unsigned Imm = MI.getOperand(1).getImm(); 11700 BuildMI(*BB, MI, Dl, TII->get(PPC::TBEGIN)).addImm(Imm); 11701 BuildMI(*BB, MI, Dl, TII->get(TargetOpcode::COPY), 11702 MI.getOperand(0).getReg()) 11703 .addReg(PPC::CR0EQ); 11704 } else if (MI.getOpcode() == PPC::SETRNDi) { 11705 DebugLoc dl = MI.getDebugLoc(); 11706 Register OldFPSCRReg = MI.getOperand(0).getReg(); 11707 11708 // Save FPSCR value. 11709 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), OldFPSCRReg); 11710 11711 // The floating point rounding mode is in the bits 62:63 of FPCSR, and has 11712 // the following settings: 11713 // 00 Round to nearest 11714 // 01 Round to 0 11715 // 10 Round to +inf 11716 // 11 Round to -inf 11717 11718 // When the operand is immediate, using the two least significant bits of 11719 // the immediate to set the bits 62:63 of FPSCR. 11720 unsigned Mode = MI.getOperand(1).getImm(); 11721 BuildMI(*BB, MI, dl, TII->get((Mode & 1) ? PPC::MTFSB1 : PPC::MTFSB0)) 11722 .addImm(31); 11723 11724 BuildMI(*BB, MI, dl, TII->get((Mode & 2) ? PPC::MTFSB1 : PPC::MTFSB0)) 11725 .addImm(30); 11726 } else if (MI.getOpcode() == PPC::SETRND) { 11727 DebugLoc dl = MI.getDebugLoc(); 11728 11729 // Copy register from F8RCRegClass::SrcReg to G8RCRegClass::DestReg 11730 // or copy register from G8RCRegClass::SrcReg to F8RCRegClass::DestReg. 11731 // If the target doesn't have DirectMove, we should use stack to do the 11732 // conversion, because the target doesn't have the instructions like mtvsrd 11733 // or mfvsrd to do this conversion directly. 11734 auto copyRegFromG8RCOrF8RC = [&] (unsigned DestReg, unsigned SrcReg) { 11735 if (Subtarget.hasDirectMove()) { 11736 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), DestReg) 11737 .addReg(SrcReg); 11738 } else { 11739 // Use stack to do the register copy. 11740 unsigned StoreOp = PPC::STD, LoadOp = PPC::LFD; 11741 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11742 const TargetRegisterClass *RC = RegInfo.getRegClass(SrcReg); 11743 if (RC == &PPC::F8RCRegClass) { 11744 // Copy register from F8RCRegClass to G8RCRegclass. 11745 assert((RegInfo.getRegClass(DestReg) == &PPC::G8RCRegClass) && 11746 "Unsupported RegClass."); 11747 11748 StoreOp = PPC::STFD; 11749 LoadOp = PPC::LD; 11750 } else { 11751 // Copy register from G8RCRegClass to F8RCRegclass. 11752 assert((RegInfo.getRegClass(SrcReg) == &PPC::G8RCRegClass) && 11753 (RegInfo.getRegClass(DestReg) == &PPC::F8RCRegClass) && 11754 "Unsupported RegClass."); 11755 } 11756 11757 MachineFrameInfo &MFI = F->getFrameInfo(); 11758 int FrameIdx = MFI.CreateStackObject(8, 8, false); 11759 11760 MachineMemOperand *MMOStore = F->getMachineMemOperand( 11761 MachinePointerInfo::getFixedStack(*F, FrameIdx, 0), 11762 MachineMemOperand::MOStore, MFI.getObjectSize(FrameIdx), 11763 MFI.getObjectAlignment(FrameIdx)); 11764 11765 // Store the SrcReg into the stack. 11766 BuildMI(*BB, MI, dl, TII->get(StoreOp)) 11767 .addReg(SrcReg) 11768 .addImm(0) 11769 .addFrameIndex(FrameIdx) 11770 .addMemOperand(MMOStore); 11771 11772 MachineMemOperand *MMOLoad = F->getMachineMemOperand( 11773 MachinePointerInfo::getFixedStack(*F, FrameIdx, 0), 11774 MachineMemOperand::MOLoad, MFI.getObjectSize(FrameIdx), 11775 MFI.getObjectAlignment(FrameIdx)); 11776 11777 // Load from the stack where SrcReg is stored, and save to DestReg, 11778 // so we have done the RegClass conversion from RegClass::SrcReg to 11779 // RegClass::DestReg. 11780 BuildMI(*BB, MI, dl, TII->get(LoadOp), DestReg) 11781 .addImm(0) 11782 .addFrameIndex(FrameIdx) 11783 .addMemOperand(MMOLoad); 11784 } 11785 }; 11786 11787 Register OldFPSCRReg = MI.getOperand(0).getReg(); 11788 11789 // Save FPSCR value. 11790 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), OldFPSCRReg); 11791 11792 // When the operand is gprc register, use two least significant bits of the 11793 // register and mtfsf instruction to set the bits 62:63 of FPSCR. 11794 // 11795 // copy OldFPSCRTmpReg, OldFPSCRReg 11796 // (INSERT_SUBREG ExtSrcReg, (IMPLICIT_DEF ImDefReg), SrcOp, 1) 11797 // rldimi NewFPSCRTmpReg, ExtSrcReg, OldFPSCRReg, 0, 62 11798 // copy NewFPSCRReg, NewFPSCRTmpReg 11799 // mtfsf 255, NewFPSCRReg 11800 MachineOperand SrcOp = MI.getOperand(1); 11801 MachineRegisterInfo &RegInfo = F->getRegInfo(); 11802 Register OldFPSCRTmpReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass); 11803 11804 copyRegFromG8RCOrF8RC(OldFPSCRTmpReg, OldFPSCRReg); 11805 11806 Register ImDefReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass); 11807 Register ExtSrcReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass); 11808 11809 // The first operand of INSERT_SUBREG should be a register which has 11810 // subregisters, we only care about its RegClass, so we should use an 11811 // IMPLICIT_DEF register. 11812 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::IMPLICIT_DEF), ImDefReg); 11813 BuildMI(*BB, MI, dl, TII->get(PPC::INSERT_SUBREG), ExtSrcReg) 11814 .addReg(ImDefReg) 11815 .add(SrcOp) 11816 .addImm(1); 11817 11818 Register NewFPSCRTmpReg = RegInfo.createVirtualRegister(&PPC::G8RCRegClass); 11819 BuildMI(*BB, MI, dl, TII->get(PPC::RLDIMI), NewFPSCRTmpReg) 11820 .addReg(OldFPSCRTmpReg) 11821 .addReg(ExtSrcReg) 11822 .addImm(0) 11823 .addImm(62); 11824 11825 Register NewFPSCRReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass); 11826 copyRegFromG8RCOrF8RC(NewFPSCRReg, NewFPSCRTmpReg); 11827 11828 // The mask 255 means that put the 32:63 bits of NewFPSCRReg to the 32:63 11829 // bits of FPSCR. 11830 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSF)) 11831 .addImm(255) 11832 .addReg(NewFPSCRReg) 11833 .addImm(0) 11834 .addImm(0); 11835 } else { 11836 llvm_unreachable("Unexpected instr type to insert"); 11837 } 11838 11839 MI.eraseFromParent(); // The pseudo instruction is gone now. 11840 return BB; 11841 } 11842 11843 //===----------------------------------------------------------------------===// 11844 // Target Optimization Hooks 11845 //===----------------------------------------------------------------------===// 11846 11847 static int getEstimateRefinementSteps(EVT VT, const PPCSubtarget &Subtarget) { 11848 // For the estimates, convergence is quadratic, so we essentially double the 11849 // number of digits correct after every iteration. For both FRE and FRSQRTE, 11850 // the minimum architected relative accuracy is 2^-5. When hasRecipPrec(), 11851 // this is 2^-14. IEEE float has 23 digits and double has 52 digits. 11852 int RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3; 11853 if (VT.getScalarType() == MVT::f64) 11854 RefinementSteps++; 11855 return RefinementSteps; 11856 } 11857 11858 SDValue PPCTargetLowering::getSqrtEstimate(SDValue Operand, SelectionDAG &DAG, 11859 int Enabled, int &RefinementSteps, 11860 bool &UseOneConstNR, 11861 bool Reciprocal) const { 11862 EVT VT = Operand.getValueType(); 11863 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) || 11864 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) || 11865 (VT == MVT::v4f32 && Subtarget.hasAltivec()) || 11866 (VT == MVT::v2f64 && Subtarget.hasVSX()) || 11867 (VT == MVT::v4f32 && Subtarget.hasQPX()) || 11868 (VT == MVT::v4f64 && Subtarget.hasQPX())) { 11869 if (RefinementSteps == ReciprocalEstimate::Unspecified) 11870 RefinementSteps = getEstimateRefinementSteps(VT, Subtarget); 11871 11872 // The Newton-Raphson computation with a single constant does not provide 11873 // enough accuracy on some CPUs. 11874 UseOneConstNR = !Subtarget.needsTwoConstNR(); 11875 return DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand); 11876 } 11877 return SDValue(); 11878 } 11879 11880 SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand, SelectionDAG &DAG, 11881 int Enabled, 11882 int &RefinementSteps) const { 11883 EVT VT = Operand.getValueType(); 11884 if ((VT == MVT::f32 && Subtarget.hasFRES()) || 11885 (VT == MVT::f64 && Subtarget.hasFRE()) || 11886 (VT == MVT::v4f32 && Subtarget.hasAltivec()) || 11887 (VT == MVT::v2f64 && Subtarget.hasVSX()) || 11888 (VT == MVT::v4f32 && Subtarget.hasQPX()) || 11889 (VT == MVT::v4f64 && Subtarget.hasQPX())) { 11890 if (RefinementSteps == ReciprocalEstimate::Unspecified) 11891 RefinementSteps = getEstimateRefinementSteps(VT, Subtarget); 11892 return DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand); 11893 } 11894 return SDValue(); 11895 } 11896 11897 unsigned PPCTargetLowering::combineRepeatedFPDivisors() const { 11898 // Note: This functionality is used only when unsafe-fp-math is enabled, and 11899 // on cores with reciprocal estimates (which are used when unsafe-fp-math is 11900 // enabled for division), this functionality is redundant with the default 11901 // combiner logic (once the division -> reciprocal/multiply transformation 11902 // has taken place). As a result, this matters more for older cores than for 11903 // newer ones. 11904 11905 // Combine multiple FDIVs with the same divisor into multiple FMULs by the 11906 // reciprocal if there are two or more FDIVs (for embedded cores with only 11907 // one FP pipeline) for three or more FDIVs (for generic OOO cores). 11908 switch (Subtarget.getCPUDirective()) { 11909 default: 11910 return 3; 11911 case PPC::DIR_440: 11912 case PPC::DIR_A2: 11913 case PPC::DIR_E500: 11914 case PPC::DIR_E500mc: 11915 case PPC::DIR_E5500: 11916 return 2; 11917 } 11918 } 11919 11920 // isConsecutiveLSLoc needs to work even if all adds have not yet been 11921 // collapsed, and so we need to look through chains of them. 11922 static void getBaseWithConstantOffset(SDValue Loc, SDValue &Base, 11923 int64_t& Offset, SelectionDAG &DAG) { 11924 if (DAG.isBaseWithConstantOffset(Loc)) { 11925 Base = Loc.getOperand(0); 11926 Offset += cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue(); 11927 11928 // The base might itself be a base plus an offset, and if so, accumulate 11929 // that as well. 11930 getBaseWithConstantOffset(Loc.getOperand(0), Base, Offset, DAG); 11931 } 11932 } 11933 11934 static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base, 11935 unsigned Bytes, int Dist, 11936 SelectionDAG &DAG) { 11937 if (VT.getSizeInBits() / 8 != Bytes) 11938 return false; 11939 11940 SDValue BaseLoc = Base->getBasePtr(); 11941 if (Loc.getOpcode() == ISD::FrameIndex) { 11942 if (BaseLoc.getOpcode() != ISD::FrameIndex) 11943 return false; 11944 const MachineFrameInfo &MFI = DAG.getMachineFunction().getFrameInfo(); 11945 int FI = cast<FrameIndexSDNode>(Loc)->getIndex(); 11946 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex(); 11947 int FS = MFI.getObjectSize(FI); 11948 int BFS = MFI.getObjectSize(BFI); 11949 if (FS != BFS || FS != (int)Bytes) return false; 11950 return MFI.getObjectOffset(FI) == (MFI.getObjectOffset(BFI) + Dist*Bytes); 11951 } 11952 11953 SDValue Base1 = Loc, Base2 = BaseLoc; 11954 int64_t Offset1 = 0, Offset2 = 0; 11955 getBaseWithConstantOffset(Loc, Base1, Offset1, DAG); 11956 getBaseWithConstantOffset(BaseLoc, Base2, Offset2, DAG); 11957 if (Base1 == Base2 && Offset1 == (Offset2 + Dist * Bytes)) 11958 return true; 11959 11960 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 11961 const GlobalValue *GV1 = nullptr; 11962 const GlobalValue *GV2 = nullptr; 11963 Offset1 = 0; 11964 Offset2 = 0; 11965 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1); 11966 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); 11967 if (isGA1 && isGA2 && GV1 == GV2) 11968 return Offset1 == (Offset2 + Dist*Bytes); 11969 return false; 11970 } 11971 11972 // Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does 11973 // not enforce equality of the chain operands. 11974 static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base, 11975 unsigned Bytes, int Dist, 11976 SelectionDAG &DAG) { 11977 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) { 11978 EVT VT = LS->getMemoryVT(); 11979 SDValue Loc = LS->getBasePtr(); 11980 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG); 11981 } 11982 11983 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) { 11984 EVT VT; 11985 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 11986 default: return false; 11987 case Intrinsic::ppc_qpx_qvlfd: 11988 case Intrinsic::ppc_qpx_qvlfda: 11989 VT = MVT::v4f64; 11990 break; 11991 case Intrinsic::ppc_qpx_qvlfs: 11992 case Intrinsic::ppc_qpx_qvlfsa: 11993 VT = MVT::v4f32; 11994 break; 11995 case Intrinsic::ppc_qpx_qvlfcd: 11996 case Intrinsic::ppc_qpx_qvlfcda: 11997 VT = MVT::v2f64; 11998 break; 11999 case Intrinsic::ppc_qpx_qvlfcs: 12000 case Intrinsic::ppc_qpx_qvlfcsa: 12001 VT = MVT::v2f32; 12002 break; 12003 case Intrinsic::ppc_qpx_qvlfiwa: 12004 case Intrinsic::ppc_qpx_qvlfiwz: 12005 case Intrinsic::ppc_altivec_lvx: 12006 case Intrinsic::ppc_altivec_lvxl: 12007 case Intrinsic::ppc_vsx_lxvw4x: 12008 case Intrinsic::ppc_vsx_lxvw4x_be: 12009 VT = MVT::v4i32; 12010 break; 12011 case Intrinsic::ppc_vsx_lxvd2x: 12012 case Intrinsic::ppc_vsx_lxvd2x_be: 12013 VT = MVT::v2f64; 12014 break; 12015 case Intrinsic::ppc_altivec_lvebx: 12016 VT = MVT::i8; 12017 break; 12018 case Intrinsic::ppc_altivec_lvehx: 12019 VT = MVT::i16; 12020 break; 12021 case Intrinsic::ppc_altivec_lvewx: 12022 VT = MVT::i32; 12023 break; 12024 } 12025 12026 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG); 12027 } 12028 12029 if (N->getOpcode() == ISD::INTRINSIC_VOID) { 12030 EVT VT; 12031 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 12032 default: return false; 12033 case Intrinsic::ppc_qpx_qvstfd: 12034 case Intrinsic::ppc_qpx_qvstfda: 12035 VT = MVT::v4f64; 12036 break; 12037 case Intrinsic::ppc_qpx_qvstfs: 12038 case Intrinsic::ppc_qpx_qvstfsa: 12039 VT = MVT::v4f32; 12040 break; 12041 case Intrinsic::ppc_qpx_qvstfcd: 12042 case Intrinsic::ppc_qpx_qvstfcda: 12043 VT = MVT::v2f64; 12044 break; 12045 case Intrinsic::ppc_qpx_qvstfcs: 12046 case Intrinsic::ppc_qpx_qvstfcsa: 12047 VT = MVT::v2f32; 12048 break; 12049 case Intrinsic::ppc_qpx_qvstfiw: 12050 case Intrinsic::ppc_qpx_qvstfiwa: 12051 case Intrinsic::ppc_altivec_stvx: 12052 case Intrinsic::ppc_altivec_stvxl: 12053 case Intrinsic::ppc_vsx_stxvw4x: 12054 VT = MVT::v4i32; 12055 break; 12056 case Intrinsic::ppc_vsx_stxvd2x: 12057 VT = MVT::v2f64; 12058 break; 12059 case Intrinsic::ppc_vsx_stxvw4x_be: 12060 VT = MVT::v4i32; 12061 break; 12062 case Intrinsic::ppc_vsx_stxvd2x_be: 12063 VT = MVT::v2f64; 12064 break; 12065 case Intrinsic::ppc_altivec_stvebx: 12066 VT = MVT::i8; 12067 break; 12068 case Intrinsic::ppc_altivec_stvehx: 12069 VT = MVT::i16; 12070 break; 12071 case Intrinsic::ppc_altivec_stvewx: 12072 VT = MVT::i32; 12073 break; 12074 } 12075 12076 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG); 12077 } 12078 12079 return false; 12080 } 12081 12082 // Return true is there is a nearyby consecutive load to the one provided 12083 // (regardless of alignment). We search up and down the chain, looking though 12084 // token factors and other loads (but nothing else). As a result, a true result 12085 // indicates that it is safe to create a new consecutive load adjacent to the 12086 // load provided. 12087 static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) { 12088 SDValue Chain = LD->getChain(); 12089 EVT VT = LD->getMemoryVT(); 12090 12091 SmallSet<SDNode *, 16> LoadRoots; 12092 SmallVector<SDNode *, 8> Queue(1, Chain.getNode()); 12093 SmallSet<SDNode *, 16> Visited; 12094 12095 // First, search up the chain, branching to follow all token-factor operands. 12096 // If we find a consecutive load, then we're done, otherwise, record all 12097 // nodes just above the top-level loads and token factors. 12098 while (!Queue.empty()) { 12099 SDNode *ChainNext = Queue.pop_back_val(); 12100 if (!Visited.insert(ChainNext).second) 12101 continue; 12102 12103 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) { 12104 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG)) 12105 return true; 12106 12107 if (!Visited.count(ChainLD->getChain().getNode())) 12108 Queue.push_back(ChainLD->getChain().getNode()); 12109 } else if (ChainNext->getOpcode() == ISD::TokenFactor) { 12110 for (const SDUse &O : ChainNext->ops()) 12111 if (!Visited.count(O.getNode())) 12112 Queue.push_back(O.getNode()); 12113 } else 12114 LoadRoots.insert(ChainNext); 12115 } 12116 12117 // Second, search down the chain, starting from the top-level nodes recorded 12118 // in the first phase. These top-level nodes are the nodes just above all 12119 // loads and token factors. Starting with their uses, recursively look though 12120 // all loads (just the chain uses) and token factors to find a consecutive 12121 // load. 12122 Visited.clear(); 12123 Queue.clear(); 12124 12125 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(), 12126 IE = LoadRoots.end(); I != IE; ++I) { 12127 Queue.push_back(*I); 12128 12129 while (!Queue.empty()) { 12130 SDNode *LoadRoot = Queue.pop_back_val(); 12131 if (!Visited.insert(LoadRoot).second) 12132 continue; 12133 12134 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot)) 12135 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG)) 12136 return true; 12137 12138 for (SDNode::use_iterator UI = LoadRoot->use_begin(), 12139 UE = LoadRoot->use_end(); UI != UE; ++UI) 12140 if (((isa<MemSDNode>(*UI) && 12141 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) || 12142 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI)) 12143 Queue.push_back(*UI); 12144 } 12145 } 12146 12147 return false; 12148 } 12149 12150 /// This function is called when we have proved that a SETCC node can be replaced 12151 /// by subtraction (and other supporting instructions) so that the result of 12152 /// comparison is kept in a GPR instead of CR. This function is purely for 12153 /// codegen purposes and has some flags to guide the codegen process. 12154 static SDValue generateEquivalentSub(SDNode *N, int Size, bool Complement, 12155 bool Swap, SDLoc &DL, SelectionDAG &DAG) { 12156 assert(N->getOpcode() == ISD::SETCC && "ISD::SETCC Expected."); 12157 12158 // Zero extend the operands to the largest legal integer. Originally, they 12159 // must be of a strictly smaller size. 12160 auto Op0 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, N->getOperand(0), 12161 DAG.getConstant(Size, DL, MVT::i32)); 12162 auto Op1 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, N->getOperand(1), 12163 DAG.getConstant(Size, DL, MVT::i32)); 12164 12165 // Swap if needed. Depends on the condition code. 12166 if (Swap) 12167 std::swap(Op0, Op1); 12168 12169 // Subtract extended integers. 12170 auto SubNode = DAG.getNode(ISD::SUB, DL, MVT::i64, Op0, Op1); 12171 12172 // Move the sign bit to the least significant position and zero out the rest. 12173 // Now the least significant bit carries the result of original comparison. 12174 auto Shifted = DAG.getNode(ISD::SRL, DL, MVT::i64, SubNode, 12175 DAG.getConstant(Size - 1, DL, MVT::i32)); 12176 auto Final = Shifted; 12177 12178 // Complement the result if needed. Based on the condition code. 12179 if (Complement) 12180 Final = DAG.getNode(ISD::XOR, DL, MVT::i64, Shifted, 12181 DAG.getConstant(1, DL, MVT::i64)); 12182 12183 return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Final); 12184 } 12185 12186 SDValue PPCTargetLowering::ConvertSETCCToSubtract(SDNode *N, 12187 DAGCombinerInfo &DCI) const { 12188 assert(N->getOpcode() == ISD::SETCC && "ISD::SETCC Expected."); 12189 12190 SelectionDAG &DAG = DCI.DAG; 12191 SDLoc DL(N); 12192 12193 // Size of integers being compared has a critical role in the following 12194 // analysis, so we prefer to do this when all types are legal. 12195 if (!DCI.isAfterLegalizeDAG()) 12196 return SDValue(); 12197 12198 // If all users of SETCC extend its value to a legal integer type 12199 // then we replace SETCC with a subtraction 12200 for (SDNode::use_iterator UI = N->use_begin(), 12201 UE = N->use_end(); UI != UE; ++UI) { 12202 if (UI->getOpcode() != ISD::ZERO_EXTEND) 12203 return SDValue(); 12204 } 12205 12206 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get(); 12207 auto OpSize = N->getOperand(0).getValueSizeInBits(); 12208 12209 unsigned Size = DAG.getDataLayout().getLargestLegalIntTypeSizeInBits(); 12210 12211 if (OpSize < Size) { 12212 switch (CC) { 12213 default: break; 12214 case ISD::SETULT: 12215 return generateEquivalentSub(N, Size, false, false, DL, DAG); 12216 case ISD::SETULE: 12217 return generateEquivalentSub(N, Size, true, true, DL, DAG); 12218 case ISD::SETUGT: 12219 return generateEquivalentSub(N, Size, false, true, DL, DAG); 12220 case ISD::SETUGE: 12221 return generateEquivalentSub(N, Size, true, false, DL, DAG); 12222 } 12223 } 12224 12225 return SDValue(); 12226 } 12227 12228 SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N, 12229 DAGCombinerInfo &DCI) const { 12230 SelectionDAG &DAG = DCI.DAG; 12231 SDLoc dl(N); 12232 12233 assert(Subtarget.useCRBits() && "Expecting to be tracking CR bits"); 12234 // If we're tracking CR bits, we need to be careful that we don't have: 12235 // trunc(binary-ops(zext(x), zext(y))) 12236 // or 12237 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...) 12238 // such that we're unnecessarily moving things into GPRs when it would be 12239 // better to keep them in CR bits. 12240 12241 // Note that trunc here can be an actual i1 trunc, or can be the effective 12242 // truncation that comes from a setcc or select_cc. 12243 if (N->getOpcode() == ISD::TRUNCATE && 12244 N->getValueType(0) != MVT::i1) 12245 return SDValue(); 12246 12247 if (N->getOperand(0).getValueType() != MVT::i32 && 12248 N->getOperand(0).getValueType() != MVT::i64) 12249 return SDValue(); 12250 12251 if (N->getOpcode() == ISD::SETCC || 12252 N->getOpcode() == ISD::SELECT_CC) { 12253 // If we're looking at a comparison, then we need to make sure that the 12254 // high bits (all except for the first) don't matter the result. 12255 ISD::CondCode CC = 12256 cast<CondCodeSDNode>(N->getOperand( 12257 N->getOpcode() == ISD::SETCC ? 2 : 4))->get(); 12258 unsigned OpBits = N->getOperand(0).getValueSizeInBits(); 12259 12260 if (ISD::isSignedIntSetCC(CC)) { 12261 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits || 12262 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits) 12263 return SDValue(); 12264 } else if (ISD::isUnsignedIntSetCC(CC)) { 12265 if (!DAG.MaskedValueIsZero(N->getOperand(0), 12266 APInt::getHighBitsSet(OpBits, OpBits-1)) || 12267 !DAG.MaskedValueIsZero(N->getOperand(1), 12268 APInt::getHighBitsSet(OpBits, OpBits-1))) 12269 return (N->getOpcode() == ISD::SETCC ? ConvertSETCCToSubtract(N, DCI) 12270 : SDValue()); 12271 } else { 12272 // This is neither a signed nor an unsigned comparison, just make sure 12273 // that the high bits are equal. 12274 KnownBits Op1Known = DAG.computeKnownBits(N->getOperand(0)); 12275 KnownBits Op2Known = DAG.computeKnownBits(N->getOperand(1)); 12276 12277 // We don't really care about what is known about the first bit (if 12278 // anything), so clear it in all masks prior to comparing them. 12279 Op1Known.Zero.clearBit(0); Op1Known.One.clearBit(0); 12280 Op2Known.Zero.clearBit(0); Op2Known.One.clearBit(0); 12281 12282 if (Op1Known.Zero != Op2Known.Zero || Op1Known.One != Op2Known.One) 12283 return SDValue(); 12284 } 12285 } 12286 12287 // We now know that the higher-order bits are irrelevant, we just need to 12288 // make sure that all of the intermediate operations are bit operations, and 12289 // all inputs are extensions. 12290 if (N->getOperand(0).getOpcode() != ISD::AND && 12291 N->getOperand(0).getOpcode() != ISD::OR && 12292 N->getOperand(0).getOpcode() != ISD::XOR && 12293 N->getOperand(0).getOpcode() != ISD::SELECT && 12294 N->getOperand(0).getOpcode() != ISD::SELECT_CC && 12295 N->getOperand(0).getOpcode() != ISD::TRUNCATE && 12296 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND && 12297 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND && 12298 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND) 12299 return SDValue(); 12300 12301 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) && 12302 N->getOperand(1).getOpcode() != ISD::AND && 12303 N->getOperand(1).getOpcode() != ISD::OR && 12304 N->getOperand(1).getOpcode() != ISD::XOR && 12305 N->getOperand(1).getOpcode() != ISD::SELECT && 12306 N->getOperand(1).getOpcode() != ISD::SELECT_CC && 12307 N->getOperand(1).getOpcode() != ISD::TRUNCATE && 12308 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND && 12309 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND && 12310 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND) 12311 return SDValue(); 12312 12313 SmallVector<SDValue, 4> Inputs; 12314 SmallVector<SDValue, 8> BinOps, PromOps; 12315 SmallPtrSet<SDNode *, 16> Visited; 12316 12317 for (unsigned i = 0; i < 2; ++i) { 12318 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 12319 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 12320 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) && 12321 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) || 12322 isa<ConstantSDNode>(N->getOperand(i))) 12323 Inputs.push_back(N->getOperand(i)); 12324 else 12325 BinOps.push_back(N->getOperand(i)); 12326 12327 if (N->getOpcode() == ISD::TRUNCATE) 12328 break; 12329 } 12330 12331 // Visit all inputs, collect all binary operations (and, or, xor and 12332 // select) that are all fed by extensions. 12333 while (!BinOps.empty()) { 12334 SDValue BinOp = BinOps.back(); 12335 BinOps.pop_back(); 12336 12337 if (!Visited.insert(BinOp.getNode()).second) 12338 continue; 12339 12340 PromOps.push_back(BinOp); 12341 12342 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) { 12343 // The condition of the select is not promoted. 12344 if (BinOp.getOpcode() == ISD::SELECT && i == 0) 12345 continue; 12346 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3) 12347 continue; 12348 12349 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 12350 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 12351 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) && 12352 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) || 12353 isa<ConstantSDNode>(BinOp.getOperand(i))) { 12354 Inputs.push_back(BinOp.getOperand(i)); 12355 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND || 12356 BinOp.getOperand(i).getOpcode() == ISD::OR || 12357 BinOp.getOperand(i).getOpcode() == ISD::XOR || 12358 BinOp.getOperand(i).getOpcode() == ISD::SELECT || 12359 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC || 12360 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE || 12361 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 12362 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 12363 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) { 12364 BinOps.push_back(BinOp.getOperand(i)); 12365 } else { 12366 // We have an input that is not an extension or another binary 12367 // operation; we'll abort this transformation. 12368 return SDValue(); 12369 } 12370 } 12371 } 12372 12373 // Make sure that this is a self-contained cluster of operations (which 12374 // is not quite the same thing as saying that everything has only one 12375 // use). 12376 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 12377 if (isa<ConstantSDNode>(Inputs[i])) 12378 continue; 12379 12380 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(), 12381 UE = Inputs[i].getNode()->use_end(); 12382 UI != UE; ++UI) { 12383 SDNode *User = *UI; 12384 if (User != N && !Visited.count(User)) 12385 return SDValue(); 12386 12387 // Make sure that we're not going to promote the non-output-value 12388 // operand(s) or SELECT or SELECT_CC. 12389 // FIXME: Although we could sometimes handle this, and it does occur in 12390 // practice that one of the condition inputs to the select is also one of 12391 // the outputs, we currently can't deal with this. 12392 if (User->getOpcode() == ISD::SELECT) { 12393 if (User->getOperand(0) == Inputs[i]) 12394 return SDValue(); 12395 } else if (User->getOpcode() == ISD::SELECT_CC) { 12396 if (User->getOperand(0) == Inputs[i] || 12397 User->getOperand(1) == Inputs[i]) 12398 return SDValue(); 12399 } 12400 } 12401 } 12402 12403 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) { 12404 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(), 12405 UE = PromOps[i].getNode()->use_end(); 12406 UI != UE; ++UI) { 12407 SDNode *User = *UI; 12408 if (User != N && !Visited.count(User)) 12409 return SDValue(); 12410 12411 // Make sure that we're not going to promote the non-output-value 12412 // operand(s) or SELECT or SELECT_CC. 12413 // FIXME: Although we could sometimes handle this, and it does occur in 12414 // practice that one of the condition inputs to the select is also one of 12415 // the outputs, we currently can't deal with this. 12416 if (User->getOpcode() == ISD::SELECT) { 12417 if (User->getOperand(0) == PromOps[i]) 12418 return SDValue(); 12419 } else if (User->getOpcode() == ISD::SELECT_CC) { 12420 if (User->getOperand(0) == PromOps[i] || 12421 User->getOperand(1) == PromOps[i]) 12422 return SDValue(); 12423 } 12424 } 12425 } 12426 12427 // Replace all inputs with the extension operand. 12428 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 12429 // Constants may have users outside the cluster of to-be-promoted nodes, 12430 // and so we need to replace those as we do the promotions. 12431 if (isa<ConstantSDNode>(Inputs[i])) 12432 continue; 12433 else 12434 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0)); 12435 } 12436 12437 std::list<HandleSDNode> PromOpHandles; 12438 for (auto &PromOp : PromOps) 12439 PromOpHandles.emplace_back(PromOp); 12440 12441 // Replace all operations (these are all the same, but have a different 12442 // (i1) return type). DAG.getNode will validate that the types of 12443 // a binary operator match, so go through the list in reverse so that 12444 // we've likely promoted both operands first. Any intermediate truncations or 12445 // extensions disappear. 12446 while (!PromOpHandles.empty()) { 12447 SDValue PromOp = PromOpHandles.back().getValue(); 12448 PromOpHandles.pop_back(); 12449 12450 if (PromOp.getOpcode() == ISD::TRUNCATE || 12451 PromOp.getOpcode() == ISD::SIGN_EXTEND || 12452 PromOp.getOpcode() == ISD::ZERO_EXTEND || 12453 PromOp.getOpcode() == ISD::ANY_EXTEND) { 12454 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) && 12455 PromOp.getOperand(0).getValueType() != MVT::i1) { 12456 // The operand is not yet ready (see comment below). 12457 PromOpHandles.emplace_front(PromOp); 12458 continue; 12459 } 12460 12461 SDValue RepValue = PromOp.getOperand(0); 12462 if (isa<ConstantSDNode>(RepValue)) 12463 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue); 12464 12465 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue); 12466 continue; 12467 } 12468 12469 unsigned C; 12470 switch (PromOp.getOpcode()) { 12471 default: C = 0; break; 12472 case ISD::SELECT: C = 1; break; 12473 case ISD::SELECT_CC: C = 2; break; 12474 } 12475 12476 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) && 12477 PromOp.getOperand(C).getValueType() != MVT::i1) || 12478 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) && 12479 PromOp.getOperand(C+1).getValueType() != MVT::i1)) { 12480 // The to-be-promoted operands of this node have not yet been 12481 // promoted (this should be rare because we're going through the 12482 // list backward, but if one of the operands has several users in 12483 // this cluster of to-be-promoted nodes, it is possible). 12484 PromOpHandles.emplace_front(PromOp); 12485 continue; 12486 } 12487 12488 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(), 12489 PromOp.getNode()->op_end()); 12490 12491 // If there are any constant inputs, make sure they're replaced now. 12492 for (unsigned i = 0; i < 2; ++i) 12493 if (isa<ConstantSDNode>(Ops[C+i])) 12494 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]); 12495 12496 DAG.ReplaceAllUsesOfValueWith(PromOp, 12497 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops)); 12498 } 12499 12500 // Now we're left with the initial truncation itself. 12501 if (N->getOpcode() == ISD::TRUNCATE) 12502 return N->getOperand(0); 12503 12504 // Otherwise, this is a comparison. The operands to be compared have just 12505 // changed type (to i1), but everything else is the same. 12506 return SDValue(N, 0); 12507 } 12508 12509 SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N, 12510 DAGCombinerInfo &DCI) const { 12511 SelectionDAG &DAG = DCI.DAG; 12512 SDLoc dl(N); 12513 12514 // If we're tracking CR bits, we need to be careful that we don't have: 12515 // zext(binary-ops(trunc(x), trunc(y))) 12516 // or 12517 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...) 12518 // such that we're unnecessarily moving things into CR bits that can more 12519 // efficiently stay in GPRs. Note that if we're not certain that the high 12520 // bits are set as required by the final extension, we still may need to do 12521 // some masking to get the proper behavior. 12522 12523 // This same functionality is important on PPC64 when dealing with 12524 // 32-to-64-bit extensions; these occur often when 32-bit values are used as 12525 // the return values of functions. Because it is so similar, it is handled 12526 // here as well. 12527 12528 if (N->getValueType(0) != MVT::i32 && 12529 N->getValueType(0) != MVT::i64) 12530 return SDValue(); 12531 12532 if (!((N->getOperand(0).getValueType() == MVT::i1 && Subtarget.useCRBits()) || 12533 (N->getOperand(0).getValueType() == MVT::i32 && Subtarget.isPPC64()))) 12534 return SDValue(); 12535 12536 if (N->getOperand(0).getOpcode() != ISD::AND && 12537 N->getOperand(0).getOpcode() != ISD::OR && 12538 N->getOperand(0).getOpcode() != ISD::XOR && 12539 N->getOperand(0).getOpcode() != ISD::SELECT && 12540 N->getOperand(0).getOpcode() != ISD::SELECT_CC) 12541 return SDValue(); 12542 12543 SmallVector<SDValue, 4> Inputs; 12544 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps; 12545 SmallPtrSet<SDNode *, 16> Visited; 12546 12547 // Visit all inputs, collect all binary operations (and, or, xor and 12548 // select) that are all fed by truncations. 12549 while (!BinOps.empty()) { 12550 SDValue BinOp = BinOps.back(); 12551 BinOps.pop_back(); 12552 12553 if (!Visited.insert(BinOp.getNode()).second) 12554 continue; 12555 12556 PromOps.push_back(BinOp); 12557 12558 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) { 12559 // The condition of the select is not promoted. 12560 if (BinOp.getOpcode() == ISD::SELECT && i == 0) 12561 continue; 12562 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3) 12563 continue; 12564 12565 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE || 12566 isa<ConstantSDNode>(BinOp.getOperand(i))) { 12567 Inputs.push_back(BinOp.getOperand(i)); 12568 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND || 12569 BinOp.getOperand(i).getOpcode() == ISD::OR || 12570 BinOp.getOperand(i).getOpcode() == ISD::XOR || 12571 BinOp.getOperand(i).getOpcode() == ISD::SELECT || 12572 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) { 12573 BinOps.push_back(BinOp.getOperand(i)); 12574 } else { 12575 // We have an input that is not a truncation or another binary 12576 // operation; we'll abort this transformation. 12577 return SDValue(); 12578 } 12579 } 12580 } 12581 12582 // The operands of a select that must be truncated when the select is 12583 // promoted because the operand is actually part of the to-be-promoted set. 12584 DenseMap<SDNode *, EVT> SelectTruncOp[2]; 12585 12586 // Make sure that this is a self-contained cluster of operations (which 12587 // is not quite the same thing as saying that everything has only one 12588 // use). 12589 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 12590 if (isa<ConstantSDNode>(Inputs[i])) 12591 continue; 12592 12593 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(), 12594 UE = Inputs[i].getNode()->use_end(); 12595 UI != UE; ++UI) { 12596 SDNode *User = *UI; 12597 if (User != N && !Visited.count(User)) 12598 return SDValue(); 12599 12600 // If we're going to promote the non-output-value operand(s) or SELECT or 12601 // SELECT_CC, record them for truncation. 12602 if (User->getOpcode() == ISD::SELECT) { 12603 if (User->getOperand(0) == Inputs[i]) 12604 SelectTruncOp[0].insert(std::make_pair(User, 12605 User->getOperand(0).getValueType())); 12606 } else if (User->getOpcode() == ISD::SELECT_CC) { 12607 if (User->getOperand(0) == Inputs[i]) 12608 SelectTruncOp[0].insert(std::make_pair(User, 12609 User->getOperand(0).getValueType())); 12610 if (User->getOperand(1) == Inputs[i]) 12611 SelectTruncOp[1].insert(std::make_pair(User, 12612 User->getOperand(1).getValueType())); 12613 } 12614 } 12615 } 12616 12617 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) { 12618 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(), 12619 UE = PromOps[i].getNode()->use_end(); 12620 UI != UE; ++UI) { 12621 SDNode *User = *UI; 12622 if (User != N && !Visited.count(User)) 12623 return SDValue(); 12624 12625 // If we're going to promote the non-output-value operand(s) or SELECT or 12626 // SELECT_CC, record them for truncation. 12627 if (User->getOpcode() == ISD::SELECT) { 12628 if (User->getOperand(0) == PromOps[i]) 12629 SelectTruncOp[0].insert(std::make_pair(User, 12630 User->getOperand(0).getValueType())); 12631 } else if (User->getOpcode() == ISD::SELECT_CC) { 12632 if (User->getOperand(0) == PromOps[i]) 12633 SelectTruncOp[0].insert(std::make_pair(User, 12634 User->getOperand(0).getValueType())); 12635 if (User->getOperand(1) == PromOps[i]) 12636 SelectTruncOp[1].insert(std::make_pair(User, 12637 User->getOperand(1).getValueType())); 12638 } 12639 } 12640 } 12641 12642 unsigned PromBits = N->getOperand(0).getValueSizeInBits(); 12643 bool ReallyNeedsExt = false; 12644 if (N->getOpcode() != ISD::ANY_EXTEND) { 12645 // If all of the inputs are not already sign/zero extended, then 12646 // we'll still need to do that at the end. 12647 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 12648 if (isa<ConstantSDNode>(Inputs[i])) 12649 continue; 12650 12651 unsigned OpBits = 12652 Inputs[i].getOperand(0).getValueSizeInBits(); 12653 assert(PromBits < OpBits && "Truncation not to a smaller bit count?"); 12654 12655 if ((N->getOpcode() == ISD::ZERO_EXTEND && 12656 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0), 12657 APInt::getHighBitsSet(OpBits, 12658 OpBits-PromBits))) || 12659 (N->getOpcode() == ISD::SIGN_EXTEND && 12660 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) < 12661 (OpBits-(PromBits-1)))) { 12662 ReallyNeedsExt = true; 12663 break; 12664 } 12665 } 12666 } 12667 12668 // Replace all inputs, either with the truncation operand, or a 12669 // truncation or extension to the final output type. 12670 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 12671 // Constant inputs need to be replaced with the to-be-promoted nodes that 12672 // use them because they might have users outside of the cluster of 12673 // promoted nodes. 12674 if (isa<ConstantSDNode>(Inputs[i])) 12675 continue; 12676 12677 SDValue InSrc = Inputs[i].getOperand(0); 12678 if (Inputs[i].getValueType() == N->getValueType(0)) 12679 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc); 12680 else if (N->getOpcode() == ISD::SIGN_EXTEND) 12681 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 12682 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0))); 12683 else if (N->getOpcode() == ISD::ZERO_EXTEND) 12684 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 12685 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0))); 12686 else 12687 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 12688 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0))); 12689 } 12690 12691 std::list<HandleSDNode> PromOpHandles; 12692 for (auto &PromOp : PromOps) 12693 PromOpHandles.emplace_back(PromOp); 12694 12695 // Replace all operations (these are all the same, but have a different 12696 // (promoted) return type). DAG.getNode will validate that the types of 12697 // a binary operator match, so go through the list in reverse so that 12698 // we've likely promoted both operands first. 12699 while (!PromOpHandles.empty()) { 12700 SDValue PromOp = PromOpHandles.back().getValue(); 12701 PromOpHandles.pop_back(); 12702 12703 unsigned C; 12704 switch (PromOp.getOpcode()) { 12705 default: C = 0; break; 12706 case ISD::SELECT: C = 1; break; 12707 case ISD::SELECT_CC: C = 2; break; 12708 } 12709 12710 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) && 12711 PromOp.getOperand(C).getValueType() != N->getValueType(0)) || 12712 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) && 12713 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) { 12714 // The to-be-promoted operands of this node have not yet been 12715 // promoted (this should be rare because we're going through the 12716 // list backward, but if one of the operands has several users in 12717 // this cluster of to-be-promoted nodes, it is possible). 12718 PromOpHandles.emplace_front(PromOp); 12719 continue; 12720 } 12721 12722 // For SELECT and SELECT_CC nodes, we do a similar check for any 12723 // to-be-promoted comparison inputs. 12724 if (PromOp.getOpcode() == ISD::SELECT || 12725 PromOp.getOpcode() == ISD::SELECT_CC) { 12726 if ((SelectTruncOp[0].count(PromOp.getNode()) && 12727 PromOp.getOperand(0).getValueType() != N->getValueType(0)) || 12728 (SelectTruncOp[1].count(PromOp.getNode()) && 12729 PromOp.getOperand(1).getValueType() != N->getValueType(0))) { 12730 PromOpHandles.emplace_front(PromOp); 12731 continue; 12732 } 12733 } 12734 12735 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(), 12736 PromOp.getNode()->op_end()); 12737 12738 // If this node has constant inputs, then they'll need to be promoted here. 12739 for (unsigned i = 0; i < 2; ++i) { 12740 if (!isa<ConstantSDNode>(Ops[C+i])) 12741 continue; 12742 if (Ops[C+i].getValueType() == N->getValueType(0)) 12743 continue; 12744 12745 if (N->getOpcode() == ISD::SIGN_EXTEND) 12746 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 12747 else if (N->getOpcode() == ISD::ZERO_EXTEND) 12748 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 12749 else 12750 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 12751 } 12752 12753 // If we've promoted the comparison inputs of a SELECT or SELECT_CC, 12754 // truncate them again to the original value type. 12755 if (PromOp.getOpcode() == ISD::SELECT || 12756 PromOp.getOpcode() == ISD::SELECT_CC) { 12757 auto SI0 = SelectTruncOp[0].find(PromOp.getNode()); 12758 if (SI0 != SelectTruncOp[0].end()) 12759 Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]); 12760 auto SI1 = SelectTruncOp[1].find(PromOp.getNode()); 12761 if (SI1 != SelectTruncOp[1].end()) 12762 Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]); 12763 } 12764 12765 DAG.ReplaceAllUsesOfValueWith(PromOp, 12766 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops)); 12767 } 12768 12769 // Now we're left with the initial extension itself. 12770 if (!ReallyNeedsExt) 12771 return N->getOperand(0); 12772 12773 // To zero extend, just mask off everything except for the first bit (in the 12774 // i1 case). 12775 if (N->getOpcode() == ISD::ZERO_EXTEND) 12776 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0), 12777 DAG.getConstant(APInt::getLowBitsSet( 12778 N->getValueSizeInBits(0), PromBits), 12779 dl, N->getValueType(0))); 12780 12781 assert(N->getOpcode() == ISD::SIGN_EXTEND && 12782 "Invalid extension type"); 12783 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0), DAG.getDataLayout()); 12784 SDValue ShiftCst = 12785 DAG.getConstant(N->getValueSizeInBits(0) - PromBits, dl, ShiftAmountTy); 12786 return DAG.getNode( 12787 ISD::SRA, dl, N->getValueType(0), 12788 DAG.getNode(ISD::SHL, dl, N->getValueType(0), N->getOperand(0), ShiftCst), 12789 ShiftCst); 12790 } 12791 12792 SDValue PPCTargetLowering::combineSetCC(SDNode *N, 12793 DAGCombinerInfo &DCI) const { 12794 assert(N->getOpcode() == ISD::SETCC && 12795 "Should be called with a SETCC node"); 12796 12797 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get(); 12798 if (CC == ISD::SETNE || CC == ISD::SETEQ) { 12799 SDValue LHS = N->getOperand(0); 12800 SDValue RHS = N->getOperand(1); 12801 12802 // If there is a '0 - y' pattern, canonicalize the pattern to the RHS. 12803 if (LHS.getOpcode() == ISD::SUB && isNullConstant(LHS.getOperand(0)) && 12804 LHS.hasOneUse()) 12805 std::swap(LHS, RHS); 12806 12807 // x == 0-y --> x+y == 0 12808 // x != 0-y --> x+y != 0 12809 if (RHS.getOpcode() == ISD::SUB && isNullConstant(RHS.getOperand(0)) && 12810 RHS.hasOneUse()) { 12811 SDLoc DL(N); 12812 SelectionDAG &DAG = DCI.DAG; 12813 EVT VT = N->getValueType(0); 12814 EVT OpVT = LHS.getValueType(); 12815 SDValue Add = DAG.getNode(ISD::ADD, DL, OpVT, LHS, RHS.getOperand(1)); 12816 return DAG.getSetCC(DL, VT, Add, DAG.getConstant(0, DL, OpVT), CC); 12817 } 12818 } 12819 12820 return DAGCombineTruncBoolExt(N, DCI); 12821 } 12822 12823 // Is this an extending load from an f32 to an f64? 12824 static bool isFPExtLoad(SDValue Op) { 12825 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op.getNode())) 12826 return LD->getExtensionType() == ISD::EXTLOAD && 12827 Op.getValueType() == MVT::f64; 12828 return false; 12829 } 12830 12831 /// Reduces the number of fp-to-int conversion when building a vector. 12832 /// 12833 /// If this vector is built out of floating to integer conversions, 12834 /// transform it to a vector built out of floating point values followed by a 12835 /// single floating to integer conversion of the vector. 12836 /// Namely (build_vector (fptosi $A), (fptosi $B), ...) 12837 /// becomes (fptosi (build_vector ($A, $B, ...))) 12838 SDValue PPCTargetLowering:: 12839 combineElementTruncationToVectorTruncation(SDNode *N, 12840 DAGCombinerInfo &DCI) const { 12841 assert(N->getOpcode() == ISD::BUILD_VECTOR && 12842 "Should be called with a BUILD_VECTOR node"); 12843 12844 SelectionDAG &DAG = DCI.DAG; 12845 SDLoc dl(N); 12846 12847 SDValue FirstInput = N->getOperand(0); 12848 assert(FirstInput.getOpcode() == PPCISD::MFVSR && 12849 "The input operand must be an fp-to-int conversion."); 12850 12851 // This combine happens after legalization so the fp_to_[su]i nodes are 12852 // already converted to PPCSISD nodes. 12853 unsigned FirstConversion = FirstInput.getOperand(0).getOpcode(); 12854 if (FirstConversion == PPCISD::FCTIDZ || 12855 FirstConversion == PPCISD::FCTIDUZ || 12856 FirstConversion == PPCISD::FCTIWZ || 12857 FirstConversion == PPCISD::FCTIWUZ) { 12858 bool IsSplat = true; 12859 bool Is32Bit = FirstConversion == PPCISD::FCTIWZ || 12860 FirstConversion == PPCISD::FCTIWUZ; 12861 EVT SrcVT = FirstInput.getOperand(0).getValueType(); 12862 SmallVector<SDValue, 4> Ops; 12863 EVT TargetVT = N->getValueType(0); 12864 for (int i = 0, e = N->getNumOperands(); i < e; ++i) { 12865 SDValue NextOp = N->getOperand(i); 12866 if (NextOp.getOpcode() != PPCISD::MFVSR) 12867 return SDValue(); 12868 unsigned NextConversion = NextOp.getOperand(0).getOpcode(); 12869 if (NextConversion != FirstConversion) 12870 return SDValue(); 12871 // If we are converting to 32-bit integers, we need to add an FP_ROUND. 12872 // This is not valid if the input was originally double precision. It is 12873 // also not profitable to do unless this is an extending load in which 12874 // case doing this combine will allow us to combine consecutive loads. 12875 if (Is32Bit && !isFPExtLoad(NextOp.getOperand(0).getOperand(0))) 12876 return SDValue(); 12877 if (N->getOperand(i) != FirstInput) 12878 IsSplat = false; 12879 } 12880 12881 // If this is a splat, we leave it as-is since there will be only a single 12882 // fp-to-int conversion followed by a splat of the integer. This is better 12883 // for 32-bit and smaller ints and neutral for 64-bit ints. 12884 if (IsSplat) 12885 return SDValue(); 12886 12887 // Now that we know we have the right type of node, get its operands 12888 for (int i = 0, e = N->getNumOperands(); i < e; ++i) { 12889 SDValue In = N->getOperand(i).getOperand(0); 12890 if (Is32Bit) { 12891 // For 32-bit values, we need to add an FP_ROUND node (if we made it 12892 // here, we know that all inputs are extending loads so this is safe). 12893 if (In.isUndef()) 12894 Ops.push_back(DAG.getUNDEF(SrcVT)); 12895 else { 12896 SDValue Trunc = DAG.getNode(ISD::FP_ROUND, dl, 12897 MVT::f32, In.getOperand(0), 12898 DAG.getIntPtrConstant(1, dl)); 12899 Ops.push_back(Trunc); 12900 } 12901 } else 12902 Ops.push_back(In.isUndef() ? DAG.getUNDEF(SrcVT) : In.getOperand(0)); 12903 } 12904 12905 unsigned Opcode; 12906 if (FirstConversion == PPCISD::FCTIDZ || 12907 FirstConversion == PPCISD::FCTIWZ) 12908 Opcode = ISD::FP_TO_SINT; 12909 else 12910 Opcode = ISD::FP_TO_UINT; 12911 12912 EVT NewVT = TargetVT == MVT::v2i64 ? MVT::v2f64 : MVT::v4f32; 12913 SDValue BV = DAG.getBuildVector(NewVT, dl, Ops); 12914 return DAG.getNode(Opcode, dl, TargetVT, BV); 12915 } 12916 return SDValue(); 12917 } 12918 12919 /// Reduce the number of loads when building a vector. 12920 /// 12921 /// Building a vector out of multiple loads can be converted to a load 12922 /// of the vector type if the loads are consecutive. If the loads are 12923 /// consecutive but in descending order, a shuffle is added at the end 12924 /// to reorder the vector. 12925 static SDValue combineBVOfConsecutiveLoads(SDNode *N, SelectionDAG &DAG) { 12926 assert(N->getOpcode() == ISD::BUILD_VECTOR && 12927 "Should be called with a BUILD_VECTOR node"); 12928 12929 SDLoc dl(N); 12930 12931 // Return early for non byte-sized type, as they can't be consecutive. 12932 if (!N->getValueType(0).getVectorElementType().isByteSized()) 12933 return SDValue(); 12934 12935 bool InputsAreConsecutiveLoads = true; 12936 bool InputsAreReverseConsecutive = true; 12937 unsigned ElemSize = N->getValueType(0).getScalarType().getStoreSize(); 12938 SDValue FirstInput = N->getOperand(0); 12939 bool IsRoundOfExtLoad = false; 12940 12941 if (FirstInput.getOpcode() == ISD::FP_ROUND && 12942 FirstInput.getOperand(0).getOpcode() == ISD::LOAD) { 12943 LoadSDNode *LD = dyn_cast<LoadSDNode>(FirstInput.getOperand(0)); 12944 IsRoundOfExtLoad = LD->getExtensionType() == ISD::EXTLOAD; 12945 } 12946 // Not a build vector of (possibly fp_rounded) loads. 12947 if ((!IsRoundOfExtLoad && FirstInput.getOpcode() != ISD::LOAD) || 12948 N->getNumOperands() == 1) 12949 return SDValue(); 12950 12951 for (int i = 1, e = N->getNumOperands(); i < e; ++i) { 12952 // If any inputs are fp_round(extload), they all must be. 12953 if (IsRoundOfExtLoad && N->getOperand(i).getOpcode() != ISD::FP_ROUND) 12954 return SDValue(); 12955 12956 SDValue NextInput = IsRoundOfExtLoad ? N->getOperand(i).getOperand(0) : 12957 N->getOperand(i); 12958 if (NextInput.getOpcode() != ISD::LOAD) 12959 return SDValue(); 12960 12961 SDValue PreviousInput = 12962 IsRoundOfExtLoad ? N->getOperand(i-1).getOperand(0) : N->getOperand(i-1); 12963 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(PreviousInput); 12964 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(NextInput); 12965 12966 // If any inputs are fp_round(extload), they all must be. 12967 if (IsRoundOfExtLoad && LD2->getExtensionType() != ISD::EXTLOAD) 12968 return SDValue(); 12969 12970 if (!isConsecutiveLS(LD2, LD1, ElemSize, 1, DAG)) 12971 InputsAreConsecutiveLoads = false; 12972 if (!isConsecutiveLS(LD1, LD2, ElemSize, 1, DAG)) 12973 InputsAreReverseConsecutive = false; 12974 12975 // Exit early if the loads are neither consecutive nor reverse consecutive. 12976 if (!InputsAreConsecutiveLoads && !InputsAreReverseConsecutive) 12977 return SDValue(); 12978 } 12979 12980 assert(!(InputsAreConsecutiveLoads && InputsAreReverseConsecutive) && 12981 "The loads cannot be both consecutive and reverse consecutive."); 12982 12983 SDValue FirstLoadOp = 12984 IsRoundOfExtLoad ? FirstInput.getOperand(0) : FirstInput; 12985 SDValue LastLoadOp = 12986 IsRoundOfExtLoad ? N->getOperand(N->getNumOperands()-1).getOperand(0) : 12987 N->getOperand(N->getNumOperands()-1); 12988 12989 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(FirstLoadOp); 12990 LoadSDNode *LDL = dyn_cast<LoadSDNode>(LastLoadOp); 12991 if (InputsAreConsecutiveLoads) { 12992 assert(LD1 && "Input needs to be a LoadSDNode."); 12993 return DAG.getLoad(N->getValueType(0), dl, LD1->getChain(), 12994 LD1->getBasePtr(), LD1->getPointerInfo(), 12995 LD1->getAlignment()); 12996 } 12997 if (InputsAreReverseConsecutive) { 12998 assert(LDL && "Input needs to be a LoadSDNode."); 12999 SDValue Load = DAG.getLoad(N->getValueType(0), dl, LDL->getChain(), 13000 LDL->getBasePtr(), LDL->getPointerInfo(), 13001 LDL->getAlignment()); 13002 SmallVector<int, 16> Ops; 13003 for (int i = N->getNumOperands() - 1; i >= 0; i--) 13004 Ops.push_back(i); 13005 13006 return DAG.getVectorShuffle(N->getValueType(0), dl, Load, 13007 DAG.getUNDEF(N->getValueType(0)), Ops); 13008 } 13009 return SDValue(); 13010 } 13011 13012 // This function adds the required vector_shuffle needed to get 13013 // the elements of the vector extract in the correct position 13014 // as specified by the CorrectElems encoding. 13015 static SDValue addShuffleForVecExtend(SDNode *N, SelectionDAG &DAG, 13016 SDValue Input, uint64_t Elems, 13017 uint64_t CorrectElems) { 13018 SDLoc dl(N); 13019 13020 unsigned NumElems = Input.getValueType().getVectorNumElements(); 13021 SmallVector<int, 16> ShuffleMask(NumElems, -1); 13022 13023 // Knowing the element indices being extracted from the original 13024 // vector and the order in which they're being inserted, just put 13025 // them at element indices required for the instruction. 13026 for (unsigned i = 0; i < N->getNumOperands(); i++) { 13027 if (DAG.getDataLayout().isLittleEndian()) 13028 ShuffleMask[CorrectElems & 0xF] = Elems & 0xF; 13029 else 13030 ShuffleMask[(CorrectElems & 0xF0) >> 4] = (Elems & 0xF0) >> 4; 13031 CorrectElems = CorrectElems >> 8; 13032 Elems = Elems >> 8; 13033 } 13034 13035 SDValue Shuffle = 13036 DAG.getVectorShuffle(Input.getValueType(), dl, Input, 13037 DAG.getUNDEF(Input.getValueType()), ShuffleMask); 13038 13039 EVT Ty = N->getValueType(0); 13040 SDValue BV = DAG.getNode(PPCISD::SExtVElems, dl, Ty, Shuffle); 13041 return BV; 13042 } 13043 13044 // Look for build vector patterns where input operands come from sign 13045 // extended vector_extract elements of specific indices. If the correct indices 13046 // aren't used, add a vector shuffle to fix up the indices and create a new 13047 // PPCISD:SExtVElems node which selects the vector sign extend instructions 13048 // during instruction selection. 13049 static SDValue combineBVOfVecSExt(SDNode *N, SelectionDAG &DAG) { 13050 // This array encodes the indices that the vector sign extend instructions 13051 // extract from when extending from one type to another for both BE and LE. 13052 // The right nibble of each byte corresponds to the LE incides. 13053 // and the left nibble of each byte corresponds to the BE incides. 13054 // For example: 0x3074B8FC byte->word 13055 // For LE: the allowed indices are: 0x0,0x4,0x8,0xC 13056 // For BE: the allowed indices are: 0x3,0x7,0xB,0xF 13057 // For example: 0x000070F8 byte->double word 13058 // For LE: the allowed indices are: 0x0,0x8 13059 // For BE: the allowed indices are: 0x7,0xF 13060 uint64_t TargetElems[] = { 13061 0x3074B8FC, // b->w 13062 0x000070F8, // b->d 13063 0x10325476, // h->w 13064 0x00003074, // h->d 13065 0x00001032, // w->d 13066 }; 13067 13068 uint64_t Elems = 0; 13069 int Index; 13070 SDValue Input; 13071 13072 auto isSExtOfVecExtract = [&](SDValue Op) -> bool { 13073 if (!Op) 13074 return false; 13075 if (Op.getOpcode() != ISD::SIGN_EXTEND && 13076 Op.getOpcode() != ISD::SIGN_EXTEND_INREG) 13077 return false; 13078 13079 // A SIGN_EXTEND_INREG might be fed by an ANY_EXTEND to produce a value 13080 // of the right width. 13081 SDValue Extract = Op.getOperand(0); 13082 if (Extract.getOpcode() == ISD::ANY_EXTEND) 13083 Extract = Extract.getOperand(0); 13084 if (Extract.getOpcode() != ISD::EXTRACT_VECTOR_ELT) 13085 return false; 13086 13087 ConstantSDNode *ExtOp = dyn_cast<ConstantSDNode>(Extract.getOperand(1)); 13088 if (!ExtOp) 13089 return false; 13090 13091 Index = ExtOp->getZExtValue(); 13092 if (Input && Input != Extract.getOperand(0)) 13093 return false; 13094 13095 if (!Input) 13096 Input = Extract.getOperand(0); 13097 13098 Elems = Elems << 8; 13099 Index = DAG.getDataLayout().isLittleEndian() ? Index : Index << 4; 13100 Elems |= Index; 13101 13102 return true; 13103 }; 13104 13105 // If the build vector operands aren't sign extended vector extracts, 13106 // of the same input vector, then return. 13107 for (unsigned i = 0; i < N->getNumOperands(); i++) { 13108 if (!isSExtOfVecExtract(N->getOperand(i))) { 13109 return SDValue(); 13110 } 13111 } 13112 13113 // If the vector extract indicies are not correct, add the appropriate 13114 // vector_shuffle. 13115 int TgtElemArrayIdx; 13116 int InputSize = Input.getValueType().getScalarSizeInBits(); 13117 int OutputSize = N->getValueType(0).getScalarSizeInBits(); 13118 if (InputSize + OutputSize == 40) 13119 TgtElemArrayIdx = 0; 13120 else if (InputSize + OutputSize == 72) 13121 TgtElemArrayIdx = 1; 13122 else if (InputSize + OutputSize == 48) 13123 TgtElemArrayIdx = 2; 13124 else if (InputSize + OutputSize == 80) 13125 TgtElemArrayIdx = 3; 13126 else if (InputSize + OutputSize == 96) 13127 TgtElemArrayIdx = 4; 13128 else 13129 return SDValue(); 13130 13131 uint64_t CorrectElems = TargetElems[TgtElemArrayIdx]; 13132 CorrectElems = DAG.getDataLayout().isLittleEndian() 13133 ? CorrectElems & 0x0F0F0F0F0F0F0F0F 13134 : CorrectElems & 0xF0F0F0F0F0F0F0F0; 13135 if (Elems != CorrectElems) { 13136 return addShuffleForVecExtend(N, DAG, Input, Elems, CorrectElems); 13137 } 13138 13139 // Regular lowering will catch cases where a shuffle is not needed. 13140 return SDValue(); 13141 } 13142 13143 SDValue PPCTargetLowering::DAGCombineBuildVector(SDNode *N, 13144 DAGCombinerInfo &DCI) const { 13145 assert(N->getOpcode() == ISD::BUILD_VECTOR && 13146 "Should be called with a BUILD_VECTOR node"); 13147 13148 SelectionDAG &DAG = DCI.DAG; 13149 SDLoc dl(N); 13150 13151 if (!Subtarget.hasVSX()) 13152 return SDValue(); 13153 13154 // The target independent DAG combiner will leave a build_vector of 13155 // float-to-int conversions intact. We can generate MUCH better code for 13156 // a float-to-int conversion of a vector of floats. 13157 SDValue FirstInput = N->getOperand(0); 13158 if (FirstInput.getOpcode() == PPCISD::MFVSR) { 13159 SDValue Reduced = combineElementTruncationToVectorTruncation(N, DCI); 13160 if (Reduced) 13161 return Reduced; 13162 } 13163 13164 // If we're building a vector out of consecutive loads, just load that 13165 // vector type. 13166 SDValue Reduced = combineBVOfConsecutiveLoads(N, DAG); 13167 if (Reduced) 13168 return Reduced; 13169 13170 // If we're building a vector out of extended elements from another vector 13171 // we have P9 vector integer extend instructions. The code assumes legal 13172 // input types (i.e. it can't handle things like v4i16) so do not run before 13173 // legalization. 13174 if (Subtarget.hasP9Altivec() && !DCI.isBeforeLegalize()) { 13175 Reduced = combineBVOfVecSExt(N, DAG); 13176 if (Reduced) 13177 return Reduced; 13178 } 13179 13180 13181 if (N->getValueType(0) != MVT::v2f64) 13182 return SDValue(); 13183 13184 // Looking for: 13185 // (build_vector ([su]int_to_fp (extractelt 0)), [su]int_to_fp (extractelt 1)) 13186 if (FirstInput.getOpcode() != ISD::SINT_TO_FP && 13187 FirstInput.getOpcode() != ISD::UINT_TO_FP) 13188 return SDValue(); 13189 if (N->getOperand(1).getOpcode() != ISD::SINT_TO_FP && 13190 N->getOperand(1).getOpcode() != ISD::UINT_TO_FP) 13191 return SDValue(); 13192 if (FirstInput.getOpcode() != N->getOperand(1).getOpcode()) 13193 return SDValue(); 13194 13195 SDValue Ext1 = FirstInput.getOperand(0); 13196 SDValue Ext2 = N->getOperand(1).getOperand(0); 13197 if(Ext1.getOpcode() != ISD::EXTRACT_VECTOR_ELT || 13198 Ext2.getOpcode() != ISD::EXTRACT_VECTOR_ELT) 13199 return SDValue(); 13200 13201 ConstantSDNode *Ext1Op = dyn_cast<ConstantSDNode>(Ext1.getOperand(1)); 13202 ConstantSDNode *Ext2Op = dyn_cast<ConstantSDNode>(Ext2.getOperand(1)); 13203 if (!Ext1Op || !Ext2Op) 13204 return SDValue(); 13205 if (Ext1.getOperand(0).getValueType() != MVT::v4i32 || 13206 Ext1.getOperand(0) != Ext2.getOperand(0)) 13207 return SDValue(); 13208 13209 int FirstElem = Ext1Op->getZExtValue(); 13210 int SecondElem = Ext2Op->getZExtValue(); 13211 int SubvecIdx; 13212 if (FirstElem == 0 && SecondElem == 1) 13213 SubvecIdx = Subtarget.isLittleEndian() ? 1 : 0; 13214 else if (FirstElem == 2 && SecondElem == 3) 13215 SubvecIdx = Subtarget.isLittleEndian() ? 0 : 1; 13216 else 13217 return SDValue(); 13218 13219 SDValue SrcVec = Ext1.getOperand(0); 13220 auto NodeType = (N->getOperand(1).getOpcode() == ISD::SINT_TO_FP) ? 13221 PPCISD::SINT_VEC_TO_FP : PPCISD::UINT_VEC_TO_FP; 13222 return DAG.getNode(NodeType, dl, MVT::v2f64, 13223 SrcVec, DAG.getIntPtrConstant(SubvecIdx, dl)); 13224 } 13225 13226 SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N, 13227 DAGCombinerInfo &DCI) const { 13228 assert((N->getOpcode() == ISD::SINT_TO_FP || 13229 N->getOpcode() == ISD::UINT_TO_FP) && 13230 "Need an int -> FP conversion node here"); 13231 13232 if (useSoftFloat() || !Subtarget.has64BitSupport()) 13233 return SDValue(); 13234 13235 SelectionDAG &DAG = DCI.DAG; 13236 SDLoc dl(N); 13237 SDValue Op(N, 0); 13238 13239 // Don't handle ppc_fp128 here or conversions that are out-of-range capable 13240 // from the hardware. 13241 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64) 13242 return SDValue(); 13243 if (Op.getOperand(0).getValueType().getSimpleVT() <= MVT(MVT::i1) || 13244 Op.getOperand(0).getValueType().getSimpleVT() > MVT(MVT::i64)) 13245 return SDValue(); 13246 13247 SDValue FirstOperand(Op.getOperand(0)); 13248 bool SubWordLoad = FirstOperand.getOpcode() == ISD::LOAD && 13249 (FirstOperand.getValueType() == MVT::i8 || 13250 FirstOperand.getValueType() == MVT::i16); 13251 if (Subtarget.hasP9Vector() && Subtarget.hasP9Altivec() && SubWordLoad) { 13252 bool Signed = N->getOpcode() == ISD::SINT_TO_FP; 13253 bool DstDouble = Op.getValueType() == MVT::f64; 13254 unsigned ConvOp = Signed ? 13255 (DstDouble ? PPCISD::FCFID : PPCISD::FCFIDS) : 13256 (DstDouble ? PPCISD::FCFIDU : PPCISD::FCFIDUS); 13257 SDValue WidthConst = 13258 DAG.getIntPtrConstant(FirstOperand.getValueType() == MVT::i8 ? 1 : 2, 13259 dl, false); 13260 LoadSDNode *LDN = cast<LoadSDNode>(FirstOperand.getNode()); 13261 SDValue Ops[] = { LDN->getChain(), LDN->getBasePtr(), WidthConst }; 13262 SDValue Ld = DAG.getMemIntrinsicNode(PPCISD::LXSIZX, dl, 13263 DAG.getVTList(MVT::f64, MVT::Other), 13264 Ops, MVT::i8, LDN->getMemOperand()); 13265 13266 // For signed conversion, we need to sign-extend the value in the VSR 13267 if (Signed) { 13268 SDValue ExtOps[] = { Ld, WidthConst }; 13269 SDValue Ext = DAG.getNode(PPCISD::VEXTS, dl, MVT::f64, ExtOps); 13270 return DAG.getNode(ConvOp, dl, DstDouble ? MVT::f64 : MVT::f32, Ext); 13271 } else 13272 return DAG.getNode(ConvOp, dl, DstDouble ? MVT::f64 : MVT::f32, Ld); 13273 } 13274 13275 13276 // For i32 intermediate values, unfortunately, the conversion functions 13277 // leave the upper 32 bits of the value are undefined. Within the set of 13278 // scalar instructions, we have no method for zero- or sign-extending the 13279 // value. Thus, we cannot handle i32 intermediate values here. 13280 if (Op.getOperand(0).getValueType() == MVT::i32) 13281 return SDValue(); 13282 13283 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) && 13284 "UINT_TO_FP is supported only with FPCVT"); 13285 13286 // If we have FCFIDS, then use it when converting to single-precision. 13287 // Otherwise, convert to double-precision and then round. 13288 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) 13289 ? (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDUS 13290 : PPCISD::FCFIDS) 13291 : (Op.getOpcode() == ISD::UINT_TO_FP ? PPCISD::FCFIDU 13292 : PPCISD::FCFID); 13293 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) 13294 ? MVT::f32 13295 : MVT::f64; 13296 13297 // If we're converting from a float, to an int, and back to a float again, 13298 // then we don't need the store/load pair at all. 13299 if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT && 13300 Subtarget.hasFPCVT()) || 13301 (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) { 13302 SDValue Src = Op.getOperand(0).getOperand(0); 13303 if (Src.getValueType() == MVT::f32) { 13304 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src); 13305 DCI.AddToWorklist(Src.getNode()); 13306 } else if (Src.getValueType() != MVT::f64) { 13307 // Make sure that we don't pick up a ppc_fp128 source value. 13308 return SDValue(); 13309 } 13310 13311 unsigned FCTOp = 13312 Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ : 13313 PPCISD::FCTIDUZ; 13314 13315 SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src); 13316 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp); 13317 13318 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) { 13319 FP = DAG.getNode(ISD::FP_ROUND, dl, 13320 MVT::f32, FP, DAG.getIntPtrConstant(0, dl)); 13321 DCI.AddToWorklist(FP.getNode()); 13322 } 13323 13324 return FP; 13325 } 13326 13327 return SDValue(); 13328 } 13329 13330 // expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for 13331 // builtins) into loads with swaps. 13332 SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N, 13333 DAGCombinerInfo &DCI) const { 13334 SelectionDAG &DAG = DCI.DAG; 13335 SDLoc dl(N); 13336 SDValue Chain; 13337 SDValue Base; 13338 MachineMemOperand *MMO; 13339 13340 switch (N->getOpcode()) { 13341 default: 13342 llvm_unreachable("Unexpected opcode for little endian VSX load"); 13343 case ISD::LOAD: { 13344 LoadSDNode *LD = cast<LoadSDNode>(N); 13345 Chain = LD->getChain(); 13346 Base = LD->getBasePtr(); 13347 MMO = LD->getMemOperand(); 13348 // If the MMO suggests this isn't a load of a full vector, leave 13349 // things alone. For a built-in, we have to make the change for 13350 // correctness, so if there is a size problem that will be a bug. 13351 if (MMO->getSize() < 16) 13352 return SDValue(); 13353 break; 13354 } 13355 case ISD::INTRINSIC_W_CHAIN: { 13356 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N); 13357 Chain = Intrin->getChain(); 13358 // Similarly to the store case below, Intrin->getBasePtr() doesn't get 13359 // us what we want. Get operand 2 instead. 13360 Base = Intrin->getOperand(2); 13361 MMO = Intrin->getMemOperand(); 13362 break; 13363 } 13364 } 13365 13366 MVT VecTy = N->getValueType(0).getSimpleVT(); 13367 13368 // Do not expand to PPCISD::LXVD2X + PPCISD::XXSWAPD when the load is 13369 // aligned and the type is a vector with elements up to 4 bytes 13370 if (Subtarget.needsSwapsForVSXMemOps() && !(MMO->getAlignment()%16) 13371 && VecTy.getScalarSizeInBits() <= 32 ) { 13372 return SDValue(); 13373 } 13374 13375 SDValue LoadOps[] = { Chain, Base }; 13376 SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl, 13377 DAG.getVTList(MVT::v2f64, MVT::Other), 13378 LoadOps, MVT::v2f64, MMO); 13379 13380 DCI.AddToWorklist(Load.getNode()); 13381 Chain = Load.getValue(1); 13382 SDValue Swap = DAG.getNode( 13383 PPCISD::XXSWAPD, dl, DAG.getVTList(MVT::v2f64, MVT::Other), Chain, Load); 13384 DCI.AddToWorklist(Swap.getNode()); 13385 13386 // Add a bitcast if the resulting load type doesn't match v2f64. 13387 if (VecTy != MVT::v2f64) { 13388 SDValue N = DAG.getNode(ISD::BITCAST, dl, VecTy, Swap); 13389 DCI.AddToWorklist(N.getNode()); 13390 // Package {bitcast value, swap's chain} to match Load's shape. 13391 return DAG.getNode(ISD::MERGE_VALUES, dl, DAG.getVTList(VecTy, MVT::Other), 13392 N, Swap.getValue(1)); 13393 } 13394 13395 return Swap; 13396 } 13397 13398 // expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for 13399 // builtins) into stores with swaps. 13400 SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N, 13401 DAGCombinerInfo &DCI) const { 13402 SelectionDAG &DAG = DCI.DAG; 13403 SDLoc dl(N); 13404 SDValue Chain; 13405 SDValue Base; 13406 unsigned SrcOpnd; 13407 MachineMemOperand *MMO; 13408 13409 switch (N->getOpcode()) { 13410 default: 13411 llvm_unreachable("Unexpected opcode for little endian VSX store"); 13412 case ISD::STORE: { 13413 StoreSDNode *ST = cast<StoreSDNode>(N); 13414 Chain = ST->getChain(); 13415 Base = ST->getBasePtr(); 13416 MMO = ST->getMemOperand(); 13417 SrcOpnd = 1; 13418 // If the MMO suggests this isn't a store of a full vector, leave 13419 // things alone. For a built-in, we have to make the change for 13420 // correctness, so if there is a size problem that will be a bug. 13421 if (MMO->getSize() < 16) 13422 return SDValue(); 13423 break; 13424 } 13425 case ISD::INTRINSIC_VOID: { 13426 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N); 13427 Chain = Intrin->getChain(); 13428 // Intrin->getBasePtr() oddly does not get what we want. 13429 Base = Intrin->getOperand(3); 13430 MMO = Intrin->getMemOperand(); 13431 SrcOpnd = 2; 13432 break; 13433 } 13434 } 13435 13436 SDValue Src = N->getOperand(SrcOpnd); 13437 MVT VecTy = Src.getValueType().getSimpleVT(); 13438 13439 // Do not expand to PPCISD::XXSWAPD and PPCISD::STXVD2X when the load is 13440 // aligned and the type is a vector with elements up to 4 bytes 13441 if (Subtarget.needsSwapsForVSXMemOps() && !(MMO->getAlignment()%16) 13442 && VecTy.getScalarSizeInBits() <= 32 ) { 13443 return SDValue(); 13444 } 13445 13446 // All stores are done as v2f64 and possible bit cast. 13447 if (VecTy != MVT::v2f64) { 13448 Src = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Src); 13449 DCI.AddToWorklist(Src.getNode()); 13450 } 13451 13452 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl, 13453 DAG.getVTList(MVT::v2f64, MVT::Other), Chain, Src); 13454 DCI.AddToWorklist(Swap.getNode()); 13455 Chain = Swap.getValue(1); 13456 SDValue StoreOps[] = { Chain, Swap, Base }; 13457 SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl, 13458 DAG.getVTList(MVT::Other), 13459 StoreOps, VecTy, MMO); 13460 DCI.AddToWorklist(Store.getNode()); 13461 return Store; 13462 } 13463 13464 // Handle DAG combine for STORE (FP_TO_INT F). 13465 SDValue PPCTargetLowering::combineStoreFPToInt(SDNode *N, 13466 DAGCombinerInfo &DCI) const { 13467 13468 SelectionDAG &DAG = DCI.DAG; 13469 SDLoc dl(N); 13470 unsigned Opcode = N->getOperand(1).getOpcode(); 13471 13472 assert((Opcode == ISD::FP_TO_SINT || Opcode == ISD::FP_TO_UINT) 13473 && "Not a FP_TO_INT Instruction!"); 13474 13475 SDValue Val = N->getOperand(1).getOperand(0); 13476 EVT Op1VT = N->getOperand(1).getValueType(); 13477 EVT ResVT = Val.getValueType(); 13478 13479 // Floating point types smaller than 32 bits are not legal on Power. 13480 if (ResVT.getScalarSizeInBits() < 32) 13481 return SDValue(); 13482 13483 // Only perform combine for conversion to i64/i32 or power9 i16/i8. 13484 bool ValidTypeForStoreFltAsInt = 13485 (Op1VT == MVT::i32 || Op1VT == MVT::i64 || 13486 (Subtarget.hasP9Vector() && (Op1VT == MVT::i16 || Op1VT == MVT::i8))); 13487 13488 if (ResVT == MVT::ppcf128 || !Subtarget.hasP8Altivec() || 13489 cast<StoreSDNode>(N)->isTruncatingStore() || !ValidTypeForStoreFltAsInt) 13490 return SDValue(); 13491 13492 // Extend f32 values to f64 13493 if (ResVT.getScalarSizeInBits() == 32) { 13494 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val); 13495 DCI.AddToWorklist(Val.getNode()); 13496 } 13497 13498 // Set signed or unsigned conversion opcode. 13499 unsigned ConvOpcode = (Opcode == ISD::FP_TO_SINT) ? 13500 PPCISD::FP_TO_SINT_IN_VSR : 13501 PPCISD::FP_TO_UINT_IN_VSR; 13502 13503 Val = DAG.getNode(ConvOpcode, 13504 dl, ResVT == MVT::f128 ? MVT::f128 : MVT::f64, Val); 13505 DCI.AddToWorklist(Val.getNode()); 13506 13507 // Set number of bytes being converted. 13508 unsigned ByteSize = Op1VT.getScalarSizeInBits() / 8; 13509 SDValue Ops[] = { N->getOperand(0), Val, N->getOperand(2), 13510 DAG.getIntPtrConstant(ByteSize, dl, false), 13511 DAG.getValueType(Op1VT) }; 13512 13513 Val = DAG.getMemIntrinsicNode(PPCISD::ST_VSR_SCAL_INT, dl, 13514 DAG.getVTList(MVT::Other), Ops, 13515 cast<StoreSDNode>(N)->getMemoryVT(), 13516 cast<StoreSDNode>(N)->getMemOperand()); 13517 13518 DCI.AddToWorklist(Val.getNode()); 13519 return Val; 13520 } 13521 13522 SDValue PPCTargetLowering::combineVReverseMemOP(ShuffleVectorSDNode *SVN, 13523 LSBaseSDNode *LSBase, 13524 DAGCombinerInfo &DCI) const { 13525 assert((ISD::isNormalLoad(LSBase) || ISD::isNormalStore(LSBase)) && 13526 "Not a reverse memop pattern!"); 13527 13528 auto IsElementReverse = [](const ShuffleVectorSDNode *SVN) -> bool { 13529 auto Mask = SVN->getMask(); 13530 int i = 0; 13531 auto I = Mask.rbegin(); 13532 auto E = Mask.rend(); 13533 13534 for (; I != E; ++I) { 13535 if (*I != i) 13536 return false; 13537 i++; 13538 } 13539 return true; 13540 }; 13541 13542 SelectionDAG &DAG = DCI.DAG; 13543 EVT VT = SVN->getValueType(0); 13544 13545 if (!isTypeLegal(VT) || !Subtarget.isLittleEndian() || !Subtarget.hasVSX()) 13546 return SDValue(); 13547 13548 // Before P9, we have PPCVSXSwapRemoval pass to hack the element order. 13549 // See comment in PPCVSXSwapRemoval.cpp. 13550 // It is conflict with PPCVSXSwapRemoval opt. So we don't do it. 13551 if (!Subtarget.hasP9Vector()) 13552 return SDValue(); 13553 13554 if(!IsElementReverse(SVN)) 13555 return SDValue(); 13556 13557 if (LSBase->getOpcode() == ISD::LOAD) { 13558 SDLoc dl(SVN); 13559 SDValue LoadOps[] = {LSBase->getChain(), LSBase->getBasePtr()}; 13560 return DAG.getMemIntrinsicNode( 13561 PPCISD::LOAD_VEC_BE, dl, DAG.getVTList(VT, MVT::Other), LoadOps, 13562 LSBase->getMemoryVT(), LSBase->getMemOperand()); 13563 } 13564 13565 if (LSBase->getOpcode() == ISD::STORE) { 13566 SDLoc dl(LSBase); 13567 SDValue StoreOps[] = {LSBase->getChain(), SVN->getOperand(0), 13568 LSBase->getBasePtr()}; 13569 return DAG.getMemIntrinsicNode( 13570 PPCISD::STORE_VEC_BE, dl, DAG.getVTList(MVT::Other), StoreOps, 13571 LSBase->getMemoryVT(), LSBase->getMemOperand()); 13572 } 13573 13574 llvm_unreachable("Expected a load or store node here"); 13575 } 13576 13577 SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N, 13578 DAGCombinerInfo &DCI) const { 13579 SelectionDAG &DAG = DCI.DAG; 13580 SDLoc dl(N); 13581 switch (N->getOpcode()) { 13582 default: break; 13583 case ISD::ADD: 13584 return combineADD(N, DCI); 13585 case ISD::SHL: 13586 return combineSHL(N, DCI); 13587 case ISD::SRA: 13588 return combineSRA(N, DCI); 13589 case ISD::SRL: 13590 return combineSRL(N, DCI); 13591 case ISD::MUL: 13592 return combineMUL(N, DCI); 13593 case PPCISD::SHL: 13594 if (isNullConstant(N->getOperand(0))) // 0 << V -> 0. 13595 return N->getOperand(0); 13596 break; 13597 case PPCISD::SRL: 13598 if (isNullConstant(N->getOperand(0))) // 0 >>u V -> 0. 13599 return N->getOperand(0); 13600 break; 13601 case PPCISD::SRA: 13602 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 13603 if (C->isNullValue() || // 0 >>s V -> 0. 13604 C->isAllOnesValue()) // -1 >>s V -> -1. 13605 return N->getOperand(0); 13606 } 13607 break; 13608 case ISD::SIGN_EXTEND: 13609 case ISD::ZERO_EXTEND: 13610 case ISD::ANY_EXTEND: 13611 return DAGCombineExtBoolTrunc(N, DCI); 13612 case ISD::TRUNCATE: 13613 return combineTRUNCATE(N, DCI); 13614 case ISD::SETCC: 13615 if (SDValue CSCC = combineSetCC(N, DCI)) 13616 return CSCC; 13617 LLVM_FALLTHROUGH; 13618 case ISD::SELECT_CC: 13619 return DAGCombineTruncBoolExt(N, DCI); 13620 case ISD::SINT_TO_FP: 13621 case ISD::UINT_TO_FP: 13622 return combineFPToIntToFP(N, DCI); 13623 case ISD::VECTOR_SHUFFLE: 13624 if (ISD::isNormalLoad(N->getOperand(0).getNode())) { 13625 LSBaseSDNode* LSBase = cast<LSBaseSDNode>(N->getOperand(0)); 13626 return combineVReverseMemOP(cast<ShuffleVectorSDNode>(N), LSBase, DCI); 13627 } 13628 break; 13629 case ISD::STORE: { 13630 13631 EVT Op1VT = N->getOperand(1).getValueType(); 13632 unsigned Opcode = N->getOperand(1).getOpcode(); 13633 13634 if (Opcode == ISD::FP_TO_SINT || Opcode == ISD::FP_TO_UINT) { 13635 SDValue Val= combineStoreFPToInt(N, DCI); 13636 if (Val) 13637 return Val; 13638 } 13639 13640 if (Opcode == ISD::VECTOR_SHUFFLE && ISD::isNormalStore(N)) { 13641 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N->getOperand(1)); 13642 SDValue Val= combineVReverseMemOP(SVN, cast<LSBaseSDNode>(N), DCI); 13643 if (Val) 13644 return Val; 13645 } 13646 13647 // Turn STORE (BSWAP) -> sthbrx/stwbrx. 13648 if (cast<StoreSDNode>(N)->isUnindexed() && Opcode == ISD::BSWAP && 13649 N->getOperand(1).getNode()->hasOneUse() && 13650 (Op1VT == MVT::i32 || Op1VT == MVT::i16 || 13651 (Subtarget.hasLDBRX() && Subtarget.isPPC64() && Op1VT == MVT::i64))) { 13652 13653 // STBRX can only handle simple types and it makes no sense to store less 13654 // two bytes in byte-reversed order. 13655 EVT mVT = cast<StoreSDNode>(N)->getMemoryVT(); 13656 if (mVT.isExtended() || mVT.getSizeInBits() < 16) 13657 break; 13658 13659 SDValue BSwapOp = N->getOperand(1).getOperand(0); 13660 // Do an any-extend to 32-bits if this is a half-word input. 13661 if (BSwapOp.getValueType() == MVT::i16) 13662 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp); 13663 13664 // If the type of BSWAP operand is wider than stored memory width 13665 // it need to be shifted to the right side before STBRX. 13666 if (Op1VT.bitsGT(mVT)) { 13667 int Shift = Op1VT.getSizeInBits() - mVT.getSizeInBits(); 13668 BSwapOp = DAG.getNode(ISD::SRL, dl, Op1VT, BSwapOp, 13669 DAG.getConstant(Shift, dl, MVT::i32)); 13670 // Need to truncate if this is a bswap of i64 stored as i32/i16. 13671 if (Op1VT == MVT::i64) 13672 BSwapOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BSwapOp); 13673 } 13674 13675 SDValue Ops[] = { 13676 N->getOperand(0), BSwapOp, N->getOperand(2), DAG.getValueType(mVT) 13677 }; 13678 return 13679 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other), 13680 Ops, cast<StoreSDNode>(N)->getMemoryVT(), 13681 cast<StoreSDNode>(N)->getMemOperand()); 13682 } 13683 13684 // STORE Constant:i32<0> -> STORE<trunc to i32> Constant:i64<0> 13685 // So it can increase the chance of CSE constant construction. 13686 if (Subtarget.isPPC64() && !DCI.isBeforeLegalize() && 13687 isa<ConstantSDNode>(N->getOperand(1)) && Op1VT == MVT::i32) { 13688 // Need to sign-extended to 64-bits to handle negative values. 13689 EVT MemVT = cast<StoreSDNode>(N)->getMemoryVT(); 13690 uint64_t Val64 = SignExtend64(N->getConstantOperandVal(1), 13691 MemVT.getSizeInBits()); 13692 SDValue Const64 = DAG.getConstant(Val64, dl, MVT::i64); 13693 13694 // DAG.getTruncStore() can't be used here because it doesn't accept 13695 // the general (base + offset) addressing mode. 13696 // So we use UpdateNodeOperands and setTruncatingStore instead. 13697 DAG.UpdateNodeOperands(N, N->getOperand(0), Const64, N->getOperand(2), 13698 N->getOperand(3)); 13699 cast<StoreSDNode>(N)->setTruncatingStore(true); 13700 return SDValue(N, 0); 13701 } 13702 13703 // For little endian, VSX stores require generating xxswapd/lxvd2x. 13704 // Not needed on ISA 3.0 based CPUs since we have a non-permuting store. 13705 if (Op1VT.isSimple()) { 13706 MVT StoreVT = Op1VT.getSimpleVT(); 13707 if (Subtarget.needsSwapsForVSXMemOps() && 13708 (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 || 13709 StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32)) 13710 return expandVSXStoreForLE(N, DCI); 13711 } 13712 break; 13713 } 13714 case ISD::LOAD: { 13715 LoadSDNode *LD = cast<LoadSDNode>(N); 13716 EVT VT = LD->getValueType(0); 13717 13718 // For little endian, VSX loads require generating lxvd2x/xxswapd. 13719 // Not needed on ISA 3.0 based CPUs since we have a non-permuting load. 13720 if (VT.isSimple()) { 13721 MVT LoadVT = VT.getSimpleVT(); 13722 if (Subtarget.needsSwapsForVSXMemOps() && 13723 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 || 13724 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32)) 13725 return expandVSXLoadForLE(N, DCI); 13726 } 13727 13728 // We sometimes end up with a 64-bit integer load, from which we extract 13729 // two single-precision floating-point numbers. This happens with 13730 // std::complex<float>, and other similar structures, because of the way we 13731 // canonicalize structure copies. However, if we lack direct moves, 13732 // then the final bitcasts from the extracted integer values to the 13733 // floating-point numbers turn into store/load pairs. Even with direct moves, 13734 // just loading the two floating-point numbers is likely better. 13735 auto ReplaceTwoFloatLoad = [&]() { 13736 if (VT != MVT::i64) 13737 return false; 13738 13739 if (LD->getExtensionType() != ISD::NON_EXTLOAD || 13740 LD->isVolatile()) 13741 return false; 13742 13743 // We're looking for a sequence like this: 13744 // t13: i64,ch = load<LD8[%ref.tmp]> t0, t6, undef:i64 13745 // t16: i64 = srl t13, Constant:i32<32> 13746 // t17: i32 = truncate t16 13747 // t18: f32 = bitcast t17 13748 // t19: i32 = truncate t13 13749 // t20: f32 = bitcast t19 13750 13751 if (!LD->hasNUsesOfValue(2, 0)) 13752 return false; 13753 13754 auto UI = LD->use_begin(); 13755 while (UI.getUse().getResNo() != 0) ++UI; 13756 SDNode *Trunc = *UI++; 13757 while (UI.getUse().getResNo() != 0) ++UI; 13758 SDNode *RightShift = *UI; 13759 if (Trunc->getOpcode() != ISD::TRUNCATE) 13760 std::swap(Trunc, RightShift); 13761 13762 if (Trunc->getOpcode() != ISD::TRUNCATE || 13763 Trunc->getValueType(0) != MVT::i32 || 13764 !Trunc->hasOneUse()) 13765 return false; 13766 if (RightShift->getOpcode() != ISD::SRL || 13767 !isa<ConstantSDNode>(RightShift->getOperand(1)) || 13768 RightShift->getConstantOperandVal(1) != 32 || 13769 !RightShift->hasOneUse()) 13770 return false; 13771 13772 SDNode *Trunc2 = *RightShift->use_begin(); 13773 if (Trunc2->getOpcode() != ISD::TRUNCATE || 13774 Trunc2->getValueType(0) != MVT::i32 || 13775 !Trunc2->hasOneUse()) 13776 return false; 13777 13778 SDNode *Bitcast = *Trunc->use_begin(); 13779 SDNode *Bitcast2 = *Trunc2->use_begin(); 13780 13781 if (Bitcast->getOpcode() != ISD::BITCAST || 13782 Bitcast->getValueType(0) != MVT::f32) 13783 return false; 13784 if (Bitcast2->getOpcode() != ISD::BITCAST || 13785 Bitcast2->getValueType(0) != MVT::f32) 13786 return false; 13787 13788 if (Subtarget.isLittleEndian()) 13789 std::swap(Bitcast, Bitcast2); 13790 13791 // Bitcast has the second float (in memory-layout order) and Bitcast2 13792 // has the first one. 13793 13794 SDValue BasePtr = LD->getBasePtr(); 13795 if (LD->isIndexed()) { 13796 assert(LD->getAddressingMode() == ISD::PRE_INC && 13797 "Non-pre-inc AM on PPC?"); 13798 BasePtr = 13799 DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr, 13800 LD->getOffset()); 13801 } 13802 13803 auto MMOFlags = 13804 LD->getMemOperand()->getFlags() & ~MachineMemOperand::MOVolatile; 13805 SDValue FloatLoad = DAG.getLoad(MVT::f32, dl, LD->getChain(), BasePtr, 13806 LD->getPointerInfo(), LD->getAlignment(), 13807 MMOFlags, LD->getAAInfo()); 13808 SDValue AddPtr = 13809 DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), 13810 BasePtr, DAG.getIntPtrConstant(4, dl)); 13811 SDValue FloatLoad2 = DAG.getLoad( 13812 MVT::f32, dl, SDValue(FloatLoad.getNode(), 1), AddPtr, 13813 LD->getPointerInfo().getWithOffset(4), 13814 MinAlign(LD->getAlignment(), 4), MMOFlags, LD->getAAInfo()); 13815 13816 if (LD->isIndexed()) { 13817 // Note that DAGCombine should re-form any pre-increment load(s) from 13818 // what is produced here if that makes sense. 13819 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, 1), BasePtr); 13820 } 13821 13822 DCI.CombineTo(Bitcast2, FloatLoad); 13823 DCI.CombineTo(Bitcast, FloatLoad2); 13824 13825 DAG.ReplaceAllUsesOfValueWith(SDValue(LD, LD->isIndexed() ? 2 : 1), 13826 SDValue(FloatLoad2.getNode(), 1)); 13827 return true; 13828 }; 13829 13830 if (ReplaceTwoFloatLoad()) 13831 return SDValue(N, 0); 13832 13833 EVT MemVT = LD->getMemoryVT(); 13834 Type *Ty = MemVT.getTypeForEVT(*DAG.getContext()); 13835 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty); 13836 Type *STy = MemVT.getScalarType().getTypeForEVT(*DAG.getContext()); 13837 unsigned ScalarABIAlignment = DAG.getDataLayout().getABITypeAlignment(STy); 13838 if (LD->isUnindexed() && VT.isVector() && 13839 ((Subtarget.hasAltivec() && ISD::isNON_EXTLoad(N) && 13840 // P8 and later hardware should just use LOAD. 13841 !Subtarget.hasP8Vector() && (VT == MVT::v16i8 || VT == MVT::v8i16 || 13842 VT == MVT::v4i32 || VT == MVT::v4f32)) || 13843 (Subtarget.hasQPX() && (VT == MVT::v4f64 || VT == MVT::v4f32) && 13844 LD->getAlignment() >= ScalarABIAlignment)) && 13845 LD->getAlignment() < ABIAlignment) { 13846 // This is a type-legal unaligned Altivec or QPX load. 13847 SDValue Chain = LD->getChain(); 13848 SDValue Ptr = LD->getBasePtr(); 13849 bool isLittleEndian = Subtarget.isLittleEndian(); 13850 13851 // This implements the loading of unaligned vectors as described in 13852 // the venerable Apple Velocity Engine overview. Specifically: 13853 // https://developer.apple.com/hardwaredrivers/ve/alignment.html 13854 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html 13855 // 13856 // The general idea is to expand a sequence of one or more unaligned 13857 // loads into an alignment-based permutation-control instruction (lvsl 13858 // or lvsr), a series of regular vector loads (which always truncate 13859 // their input address to an aligned address), and a series of 13860 // permutations. The results of these permutations are the requested 13861 // loaded values. The trick is that the last "extra" load is not taken 13862 // from the address you might suspect (sizeof(vector) bytes after the 13863 // last requested load), but rather sizeof(vector) - 1 bytes after the 13864 // last requested vector. The point of this is to avoid a page fault if 13865 // the base address happened to be aligned. This works because if the 13866 // base address is aligned, then adding less than a full vector length 13867 // will cause the last vector in the sequence to be (re)loaded. 13868 // Otherwise, the next vector will be fetched as you might suspect was 13869 // necessary. 13870 13871 // We might be able to reuse the permutation generation from 13872 // a different base address offset from this one by an aligned amount. 13873 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this 13874 // optimization later. 13875 Intrinsic::ID Intr, IntrLD, IntrPerm; 13876 MVT PermCntlTy, PermTy, LDTy; 13877 if (Subtarget.hasAltivec()) { 13878 Intr = isLittleEndian ? Intrinsic::ppc_altivec_lvsr : 13879 Intrinsic::ppc_altivec_lvsl; 13880 IntrLD = Intrinsic::ppc_altivec_lvx; 13881 IntrPerm = Intrinsic::ppc_altivec_vperm; 13882 PermCntlTy = MVT::v16i8; 13883 PermTy = MVT::v4i32; 13884 LDTy = MVT::v4i32; 13885 } else { 13886 Intr = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlpcld : 13887 Intrinsic::ppc_qpx_qvlpcls; 13888 IntrLD = MemVT == MVT::v4f64 ? Intrinsic::ppc_qpx_qvlfd : 13889 Intrinsic::ppc_qpx_qvlfs; 13890 IntrPerm = Intrinsic::ppc_qpx_qvfperm; 13891 PermCntlTy = MVT::v4f64; 13892 PermTy = MVT::v4f64; 13893 LDTy = MemVT.getSimpleVT(); 13894 } 13895 13896 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, PermCntlTy); 13897 13898 // Create the new MMO for the new base load. It is like the original MMO, 13899 // but represents an area in memory almost twice the vector size centered 13900 // on the original address. If the address is unaligned, we might start 13901 // reading up to (sizeof(vector)-1) bytes below the address of the 13902 // original unaligned load. 13903 MachineFunction &MF = DAG.getMachineFunction(); 13904 MachineMemOperand *BaseMMO = 13905 MF.getMachineMemOperand(LD->getMemOperand(), 13906 -(long)MemVT.getStoreSize()+1, 13907 2*MemVT.getStoreSize()-1); 13908 13909 // Create the new base load. 13910 SDValue LDXIntID = 13911 DAG.getTargetConstant(IntrLD, dl, getPointerTy(MF.getDataLayout())); 13912 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr }; 13913 SDValue BaseLoad = 13914 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl, 13915 DAG.getVTList(PermTy, MVT::Other), 13916 BaseLoadOps, LDTy, BaseMMO); 13917 13918 // Note that the value of IncOffset (which is provided to the next 13919 // load's pointer info offset value, and thus used to calculate the 13920 // alignment), and the value of IncValue (which is actually used to 13921 // increment the pointer value) are different! This is because we 13922 // require the next load to appear to be aligned, even though it 13923 // is actually offset from the base pointer by a lesser amount. 13924 int IncOffset = VT.getSizeInBits() / 8; 13925 int IncValue = IncOffset; 13926 13927 // Walk (both up and down) the chain looking for another load at the real 13928 // (aligned) offset (the alignment of the other load does not matter in 13929 // this case). If found, then do not use the offset reduction trick, as 13930 // that will prevent the loads from being later combined (as they would 13931 // otherwise be duplicates). 13932 if (!findConsecutiveLoad(LD, DAG)) 13933 --IncValue; 13934 13935 SDValue Increment = 13936 DAG.getConstant(IncValue, dl, getPointerTy(MF.getDataLayout())); 13937 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); 13938 13939 MachineMemOperand *ExtraMMO = 13940 MF.getMachineMemOperand(LD->getMemOperand(), 13941 1, 2*MemVT.getStoreSize()-1); 13942 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr }; 13943 SDValue ExtraLoad = 13944 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl, 13945 DAG.getVTList(PermTy, MVT::Other), 13946 ExtraLoadOps, LDTy, ExtraMMO); 13947 13948 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 13949 BaseLoad.getValue(1), ExtraLoad.getValue(1)); 13950 13951 // Because vperm has a big-endian bias, we must reverse the order 13952 // of the input vectors and complement the permute control vector 13953 // when generating little endian code. We have already handled the 13954 // latter by using lvsr instead of lvsl, so just reverse BaseLoad 13955 // and ExtraLoad here. 13956 SDValue Perm; 13957 if (isLittleEndian) 13958 Perm = BuildIntrinsicOp(IntrPerm, 13959 ExtraLoad, BaseLoad, PermCntl, DAG, dl); 13960 else 13961 Perm = BuildIntrinsicOp(IntrPerm, 13962 BaseLoad, ExtraLoad, PermCntl, DAG, dl); 13963 13964 if (VT != PermTy) 13965 Perm = Subtarget.hasAltivec() ? 13966 DAG.getNode(ISD::BITCAST, dl, VT, Perm) : 13967 DAG.getNode(ISD::FP_ROUND, dl, VT, Perm, // QPX 13968 DAG.getTargetConstant(1, dl, MVT::i64)); 13969 // second argument is 1 because this rounding 13970 // is always exact. 13971 13972 // The output of the permutation is our loaded result, the TokenFactor is 13973 // our new chain. 13974 DCI.CombineTo(N, Perm, TF); 13975 return SDValue(N, 0); 13976 } 13977 } 13978 break; 13979 case ISD::INTRINSIC_WO_CHAIN: { 13980 bool isLittleEndian = Subtarget.isLittleEndian(); 13981 unsigned IID = cast<ConstantSDNode>(N->getOperand(0))->getZExtValue(); 13982 Intrinsic::ID Intr = (isLittleEndian ? Intrinsic::ppc_altivec_lvsr 13983 : Intrinsic::ppc_altivec_lvsl); 13984 if ((IID == Intr || 13985 IID == Intrinsic::ppc_qpx_qvlpcld || 13986 IID == Intrinsic::ppc_qpx_qvlpcls) && 13987 N->getOperand(1)->getOpcode() == ISD::ADD) { 13988 SDValue Add = N->getOperand(1); 13989 13990 int Bits = IID == Intrinsic::ppc_qpx_qvlpcld ? 13991 5 /* 32 byte alignment */ : 4 /* 16 byte alignment */; 13992 13993 if (DAG.MaskedValueIsZero(Add->getOperand(1), 13994 APInt::getAllOnesValue(Bits /* alignment */) 13995 .zext(Add.getScalarValueSizeInBits()))) { 13996 SDNode *BasePtr = Add->getOperand(0).getNode(); 13997 for (SDNode::use_iterator UI = BasePtr->use_begin(), 13998 UE = BasePtr->use_end(); 13999 UI != UE; ++UI) { 14000 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN && 14001 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() == IID) { 14002 // We've found another LVSL/LVSR, and this address is an aligned 14003 // multiple of that one. The results will be the same, so use the 14004 // one we've just found instead. 14005 14006 return SDValue(*UI, 0); 14007 } 14008 } 14009 } 14010 14011 if (isa<ConstantSDNode>(Add->getOperand(1))) { 14012 SDNode *BasePtr = Add->getOperand(0).getNode(); 14013 for (SDNode::use_iterator UI = BasePtr->use_begin(), 14014 UE = BasePtr->use_end(); UI != UE; ++UI) { 14015 if (UI->getOpcode() == ISD::ADD && 14016 isa<ConstantSDNode>(UI->getOperand(1)) && 14017 (cast<ConstantSDNode>(Add->getOperand(1))->getZExtValue() - 14018 cast<ConstantSDNode>(UI->getOperand(1))->getZExtValue()) % 14019 (1ULL << Bits) == 0) { 14020 SDNode *OtherAdd = *UI; 14021 for (SDNode::use_iterator VI = OtherAdd->use_begin(), 14022 VE = OtherAdd->use_end(); VI != VE; ++VI) { 14023 if (VI->getOpcode() == ISD::INTRINSIC_WO_CHAIN && 14024 cast<ConstantSDNode>(VI->getOperand(0))->getZExtValue() == IID) { 14025 return SDValue(*VI, 0); 14026 } 14027 } 14028 } 14029 } 14030 } 14031 } 14032 14033 // Combine vmaxsw/h/b(a, a's negation) to abs(a) 14034 // Expose the vabsduw/h/b opportunity for down stream 14035 if (!DCI.isAfterLegalizeDAG() && Subtarget.hasP9Altivec() && 14036 (IID == Intrinsic::ppc_altivec_vmaxsw || 14037 IID == Intrinsic::ppc_altivec_vmaxsh || 14038 IID == Intrinsic::ppc_altivec_vmaxsb)) { 14039 SDValue V1 = N->getOperand(1); 14040 SDValue V2 = N->getOperand(2); 14041 if ((V1.getSimpleValueType() == MVT::v4i32 || 14042 V1.getSimpleValueType() == MVT::v8i16 || 14043 V1.getSimpleValueType() == MVT::v16i8) && 14044 V1.getSimpleValueType() == V2.getSimpleValueType()) { 14045 // (0-a, a) 14046 if (V1.getOpcode() == ISD::SUB && 14047 ISD::isBuildVectorAllZeros(V1.getOperand(0).getNode()) && 14048 V1.getOperand(1) == V2) { 14049 return DAG.getNode(ISD::ABS, dl, V2.getValueType(), V2); 14050 } 14051 // (a, 0-a) 14052 if (V2.getOpcode() == ISD::SUB && 14053 ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()) && 14054 V2.getOperand(1) == V1) { 14055 return DAG.getNode(ISD::ABS, dl, V1.getValueType(), V1); 14056 } 14057 // (x-y, y-x) 14058 if (V1.getOpcode() == ISD::SUB && V2.getOpcode() == ISD::SUB && 14059 V1.getOperand(0) == V2.getOperand(1) && 14060 V1.getOperand(1) == V2.getOperand(0)) { 14061 return DAG.getNode(ISD::ABS, dl, V1.getValueType(), V1); 14062 } 14063 } 14064 } 14065 } 14066 14067 break; 14068 case ISD::INTRINSIC_W_CHAIN: 14069 // For little endian, VSX loads require generating lxvd2x/xxswapd. 14070 // Not needed on ISA 3.0 based CPUs since we have a non-permuting load. 14071 if (Subtarget.needsSwapsForVSXMemOps()) { 14072 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 14073 default: 14074 break; 14075 case Intrinsic::ppc_vsx_lxvw4x: 14076 case Intrinsic::ppc_vsx_lxvd2x: 14077 return expandVSXLoadForLE(N, DCI); 14078 } 14079 } 14080 break; 14081 case ISD::INTRINSIC_VOID: 14082 // For little endian, VSX stores require generating xxswapd/stxvd2x. 14083 // Not needed on ISA 3.0 based CPUs since we have a non-permuting store. 14084 if (Subtarget.needsSwapsForVSXMemOps()) { 14085 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 14086 default: 14087 break; 14088 case Intrinsic::ppc_vsx_stxvw4x: 14089 case Intrinsic::ppc_vsx_stxvd2x: 14090 return expandVSXStoreForLE(N, DCI); 14091 } 14092 } 14093 break; 14094 case ISD::BSWAP: 14095 // Turn BSWAP (LOAD) -> lhbrx/lwbrx. 14096 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) && 14097 N->getOperand(0).hasOneUse() && 14098 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 || 14099 (Subtarget.hasLDBRX() && Subtarget.isPPC64() && 14100 N->getValueType(0) == MVT::i64))) { 14101 SDValue Load = N->getOperand(0); 14102 LoadSDNode *LD = cast<LoadSDNode>(Load); 14103 // Create the byte-swapping load. 14104 SDValue Ops[] = { 14105 LD->getChain(), // Chain 14106 LD->getBasePtr(), // Ptr 14107 DAG.getValueType(N->getValueType(0)) // VT 14108 }; 14109 SDValue BSLoad = 14110 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl, 14111 DAG.getVTList(N->getValueType(0) == MVT::i64 ? 14112 MVT::i64 : MVT::i32, MVT::Other), 14113 Ops, LD->getMemoryVT(), LD->getMemOperand()); 14114 14115 // If this is an i16 load, insert the truncate. 14116 SDValue ResVal = BSLoad; 14117 if (N->getValueType(0) == MVT::i16) 14118 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad); 14119 14120 // First, combine the bswap away. This makes the value produced by the 14121 // load dead. 14122 DCI.CombineTo(N, ResVal); 14123 14124 // Next, combine the load away, we give it a bogus result value but a real 14125 // chain result. The result value is dead because the bswap is dead. 14126 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1)); 14127 14128 // Return N so it doesn't get rechecked! 14129 return SDValue(N, 0); 14130 } 14131 break; 14132 case PPCISD::VCMP: 14133 // If a VCMPo node already exists with exactly the same operands as this 14134 // node, use its result instead of this node (VCMPo computes both a CR6 and 14135 // a normal output). 14136 // 14137 if (!N->getOperand(0).hasOneUse() && 14138 !N->getOperand(1).hasOneUse() && 14139 !N->getOperand(2).hasOneUse()) { 14140 14141 // Scan all of the users of the LHS, looking for VCMPo's that match. 14142 SDNode *VCMPoNode = nullptr; 14143 14144 SDNode *LHSN = N->getOperand(0).getNode(); 14145 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end(); 14146 UI != E; ++UI) 14147 if (UI->getOpcode() == PPCISD::VCMPo && 14148 UI->getOperand(1) == N->getOperand(1) && 14149 UI->getOperand(2) == N->getOperand(2) && 14150 UI->getOperand(0) == N->getOperand(0)) { 14151 VCMPoNode = *UI; 14152 break; 14153 } 14154 14155 // If there is no VCMPo node, or if the flag value has a single use, don't 14156 // transform this. 14157 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1)) 14158 break; 14159 14160 // Look at the (necessarily single) use of the flag value. If it has a 14161 // chain, this transformation is more complex. Note that multiple things 14162 // could use the value result, which we should ignore. 14163 SDNode *FlagUser = nullptr; 14164 for (SDNode::use_iterator UI = VCMPoNode->use_begin(); 14165 FlagUser == nullptr; ++UI) { 14166 assert(UI != VCMPoNode->use_end() && "Didn't find user!"); 14167 SDNode *User = *UI; 14168 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { 14169 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) { 14170 FlagUser = User; 14171 break; 14172 } 14173 } 14174 } 14175 14176 // If the user is a MFOCRF instruction, we know this is safe. 14177 // Otherwise we give up for right now. 14178 if (FlagUser->getOpcode() == PPCISD::MFOCRF) 14179 return SDValue(VCMPoNode, 0); 14180 } 14181 break; 14182 case ISD::BRCOND: { 14183 SDValue Cond = N->getOperand(1); 14184 SDValue Target = N->getOperand(2); 14185 14186 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN && 14187 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() == 14188 Intrinsic::loop_decrement) { 14189 14190 // We now need to make the intrinsic dead (it cannot be instruction 14191 // selected). 14192 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0)); 14193 assert(Cond.getNode()->hasOneUse() && 14194 "Counter decrement has more than one use"); 14195 14196 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other, 14197 N->getOperand(0), Target); 14198 } 14199 } 14200 break; 14201 case ISD::BR_CC: { 14202 // If this is a branch on an altivec predicate comparison, lower this so 14203 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This 14204 // lowering is done pre-legalize, because the legalizer lowers the predicate 14205 // compare down to code that is difficult to reassemble. 14206 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get(); 14207 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3); 14208 14209 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero 14210 // value. If so, pass-through the AND to get to the intrinsic. 14211 if (LHS.getOpcode() == ISD::AND && 14212 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN && 14213 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() == 14214 Intrinsic::loop_decrement && 14215 isa<ConstantSDNode>(LHS.getOperand(1)) && 14216 !isNullConstant(LHS.getOperand(1))) 14217 LHS = LHS.getOperand(0); 14218 14219 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN && 14220 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() == 14221 Intrinsic::loop_decrement && 14222 isa<ConstantSDNode>(RHS)) { 14223 assert((CC == ISD::SETEQ || CC == ISD::SETNE) && 14224 "Counter decrement comparison is not EQ or NE"); 14225 14226 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue(); 14227 bool isBDNZ = (CC == ISD::SETEQ && Val) || 14228 (CC == ISD::SETNE && !Val); 14229 14230 // We now need to make the intrinsic dead (it cannot be instruction 14231 // selected). 14232 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0)); 14233 assert(LHS.getNode()->hasOneUse() && 14234 "Counter decrement has more than one use"); 14235 14236 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other, 14237 N->getOperand(0), N->getOperand(4)); 14238 } 14239 14240 int CompareOpc; 14241 bool isDot; 14242 14243 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN && 14244 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) && 14245 getVectorCompareInfo(LHS, CompareOpc, isDot, Subtarget)) { 14246 assert(isDot && "Can't compare against a vector result!"); 14247 14248 // If this is a comparison against something other than 0/1, then we know 14249 // that the condition is never/always true. 14250 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue(); 14251 if (Val != 0 && Val != 1) { 14252 if (CC == ISD::SETEQ) // Cond never true, remove branch. 14253 return N->getOperand(0); 14254 // Always !=, turn it into an unconditional branch. 14255 return DAG.getNode(ISD::BR, dl, MVT::Other, 14256 N->getOperand(0), N->getOperand(4)); 14257 } 14258 14259 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0); 14260 14261 // Create the PPCISD altivec 'dot' comparison node. 14262 SDValue Ops[] = { 14263 LHS.getOperand(2), // LHS of compare 14264 LHS.getOperand(3), // RHS of compare 14265 DAG.getConstant(CompareOpc, dl, MVT::i32) 14266 }; 14267 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue }; 14268 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops); 14269 14270 // Unpack the result based on how the target uses it. 14271 PPC::Predicate CompOpc; 14272 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) { 14273 default: // Can't happen, don't crash on invalid number though. 14274 case 0: // Branch on the value of the EQ bit of CR6. 14275 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE; 14276 break; 14277 case 1: // Branch on the inverted value of the EQ bit of CR6. 14278 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ; 14279 break; 14280 case 2: // Branch on the value of the LT bit of CR6. 14281 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE; 14282 break; 14283 case 3: // Branch on the inverted value of the LT bit of CR6. 14284 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT; 14285 break; 14286 } 14287 14288 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0), 14289 DAG.getConstant(CompOpc, dl, MVT::i32), 14290 DAG.getRegister(PPC::CR6, MVT::i32), 14291 N->getOperand(4), CompNode.getValue(1)); 14292 } 14293 break; 14294 } 14295 case ISD::BUILD_VECTOR: 14296 return DAGCombineBuildVector(N, DCI); 14297 case ISD::ABS: 14298 return combineABS(N, DCI); 14299 case ISD::VSELECT: 14300 return combineVSelect(N, DCI); 14301 } 14302 14303 return SDValue(); 14304 } 14305 14306 SDValue 14307 PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor, 14308 SelectionDAG &DAG, 14309 SmallVectorImpl<SDNode *> &Created) const { 14310 // fold (sdiv X, pow2) 14311 EVT VT = N->getValueType(0); 14312 if (VT == MVT::i64 && !Subtarget.isPPC64()) 14313 return SDValue(); 14314 if ((VT != MVT::i32 && VT != MVT::i64) || 14315 !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2())) 14316 return SDValue(); 14317 14318 SDLoc DL(N); 14319 SDValue N0 = N->getOperand(0); 14320 14321 bool IsNegPow2 = (-Divisor).isPowerOf2(); 14322 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros(); 14323 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT); 14324 14325 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt); 14326 Created.push_back(Op.getNode()); 14327 14328 if (IsNegPow2) { 14329 Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Op); 14330 Created.push_back(Op.getNode()); 14331 } 14332 14333 return Op; 14334 } 14335 14336 //===----------------------------------------------------------------------===// 14337 // Inline Assembly Support 14338 //===----------------------------------------------------------------------===// 14339 14340 void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op, 14341 KnownBits &Known, 14342 const APInt &DemandedElts, 14343 const SelectionDAG &DAG, 14344 unsigned Depth) const { 14345 Known.resetAll(); 14346 switch (Op.getOpcode()) { 14347 default: break; 14348 case PPCISD::LBRX: { 14349 // lhbrx is known to have the top bits cleared out. 14350 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16) 14351 Known.Zero = 0xFFFF0000; 14352 break; 14353 } 14354 case ISD::INTRINSIC_WO_CHAIN: { 14355 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) { 14356 default: break; 14357 case Intrinsic::ppc_altivec_vcmpbfp_p: 14358 case Intrinsic::ppc_altivec_vcmpeqfp_p: 14359 case Intrinsic::ppc_altivec_vcmpequb_p: 14360 case Intrinsic::ppc_altivec_vcmpequh_p: 14361 case Intrinsic::ppc_altivec_vcmpequw_p: 14362 case Intrinsic::ppc_altivec_vcmpequd_p: 14363 case Intrinsic::ppc_altivec_vcmpgefp_p: 14364 case Intrinsic::ppc_altivec_vcmpgtfp_p: 14365 case Intrinsic::ppc_altivec_vcmpgtsb_p: 14366 case Intrinsic::ppc_altivec_vcmpgtsh_p: 14367 case Intrinsic::ppc_altivec_vcmpgtsw_p: 14368 case Intrinsic::ppc_altivec_vcmpgtsd_p: 14369 case Intrinsic::ppc_altivec_vcmpgtub_p: 14370 case Intrinsic::ppc_altivec_vcmpgtuh_p: 14371 case Intrinsic::ppc_altivec_vcmpgtuw_p: 14372 case Intrinsic::ppc_altivec_vcmpgtud_p: 14373 Known.Zero = ~1U; // All bits but the low one are known to be zero. 14374 break; 14375 } 14376 } 14377 } 14378 } 14379 14380 Align PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const { 14381 switch (Subtarget.getCPUDirective()) { 14382 default: break; 14383 case PPC::DIR_970: 14384 case PPC::DIR_PWR4: 14385 case PPC::DIR_PWR5: 14386 case PPC::DIR_PWR5X: 14387 case PPC::DIR_PWR6: 14388 case PPC::DIR_PWR6X: 14389 case PPC::DIR_PWR7: 14390 case PPC::DIR_PWR8: 14391 case PPC::DIR_PWR9: 14392 case PPC::DIR_PWR_FUTURE: { 14393 if (!ML) 14394 break; 14395 14396 if (!DisableInnermostLoopAlign32) { 14397 // If the nested loop is an innermost loop, prefer to a 32-byte alignment, 14398 // so that we can decrease cache misses and branch-prediction misses. 14399 // Actual alignment of the loop will depend on the hotness check and other 14400 // logic in alignBlocks. 14401 if (ML->getLoopDepth() > 1 && ML->getSubLoops().empty()) 14402 return Align(32); 14403 } 14404 14405 const PPCInstrInfo *TII = Subtarget.getInstrInfo(); 14406 14407 // For small loops (between 5 and 8 instructions), align to a 32-byte 14408 // boundary so that the entire loop fits in one instruction-cache line. 14409 uint64_t LoopSize = 0; 14410 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I) 14411 for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J) { 14412 LoopSize += TII->getInstSizeInBytes(*J); 14413 if (LoopSize > 32) 14414 break; 14415 } 14416 14417 if (LoopSize > 16 && LoopSize <= 32) 14418 return Align(32); 14419 14420 break; 14421 } 14422 } 14423 14424 return TargetLowering::getPrefLoopAlignment(ML); 14425 } 14426 14427 /// getConstraintType - Given a constraint, return the type of 14428 /// constraint it is for this target. 14429 PPCTargetLowering::ConstraintType 14430 PPCTargetLowering::getConstraintType(StringRef Constraint) const { 14431 if (Constraint.size() == 1) { 14432 switch (Constraint[0]) { 14433 default: break; 14434 case 'b': 14435 case 'r': 14436 case 'f': 14437 case 'd': 14438 case 'v': 14439 case 'y': 14440 return C_RegisterClass; 14441 case 'Z': 14442 // FIXME: While Z does indicate a memory constraint, it specifically 14443 // indicates an r+r address (used in conjunction with the 'y' modifier 14444 // in the replacement string). Currently, we're forcing the base 14445 // register to be r0 in the asm printer (which is interpreted as zero) 14446 // and forming the complete address in the second register. This is 14447 // suboptimal. 14448 return C_Memory; 14449 } 14450 } else if (Constraint == "wc") { // individual CR bits. 14451 return C_RegisterClass; 14452 } else if (Constraint == "wa" || Constraint == "wd" || 14453 Constraint == "wf" || Constraint == "ws" || 14454 Constraint == "wi" || Constraint == "ww") { 14455 return C_RegisterClass; // VSX registers. 14456 } 14457 return TargetLowering::getConstraintType(Constraint); 14458 } 14459 14460 /// Examine constraint type and operand type and determine a weight value. 14461 /// This object must already have been set up with the operand type 14462 /// and the current alternative constraint selected. 14463 TargetLowering::ConstraintWeight 14464 PPCTargetLowering::getSingleConstraintMatchWeight( 14465 AsmOperandInfo &info, const char *constraint) const { 14466 ConstraintWeight weight = CW_Invalid; 14467 Value *CallOperandVal = info.CallOperandVal; 14468 // If we don't have a value, we can't do a match, 14469 // but allow it at the lowest weight. 14470 if (!CallOperandVal) 14471 return CW_Default; 14472 Type *type = CallOperandVal->getType(); 14473 14474 // Look at the constraint type. 14475 if (StringRef(constraint) == "wc" && type->isIntegerTy(1)) 14476 return CW_Register; // an individual CR bit. 14477 else if ((StringRef(constraint) == "wa" || 14478 StringRef(constraint) == "wd" || 14479 StringRef(constraint) == "wf") && 14480 type->isVectorTy()) 14481 return CW_Register; 14482 else if (StringRef(constraint) == "wi" && type->isIntegerTy(64)) 14483 return CW_Register; // just hold 64-bit integers data. 14484 else if (StringRef(constraint) == "ws" && type->isDoubleTy()) 14485 return CW_Register; 14486 else if (StringRef(constraint) == "ww" && type->isFloatTy()) 14487 return CW_Register; 14488 14489 switch (*constraint) { 14490 default: 14491 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); 14492 break; 14493 case 'b': 14494 if (type->isIntegerTy()) 14495 weight = CW_Register; 14496 break; 14497 case 'f': 14498 if (type->isFloatTy()) 14499 weight = CW_Register; 14500 break; 14501 case 'd': 14502 if (type->isDoubleTy()) 14503 weight = CW_Register; 14504 break; 14505 case 'v': 14506 if (type->isVectorTy()) 14507 weight = CW_Register; 14508 break; 14509 case 'y': 14510 weight = CW_Register; 14511 break; 14512 case 'Z': 14513 weight = CW_Memory; 14514 break; 14515 } 14516 return weight; 14517 } 14518 14519 std::pair<unsigned, const TargetRegisterClass *> 14520 PPCTargetLowering::getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, 14521 StringRef Constraint, 14522 MVT VT) const { 14523 if (Constraint.size() == 1) { 14524 // GCC RS6000 Constraint Letters 14525 switch (Constraint[0]) { 14526 case 'b': // R1-R31 14527 if (VT == MVT::i64 && Subtarget.isPPC64()) 14528 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass); 14529 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass); 14530 case 'r': // R0-R31 14531 if (VT == MVT::i64 && Subtarget.isPPC64()) 14532 return std::make_pair(0U, &PPC::G8RCRegClass); 14533 return std::make_pair(0U, &PPC::GPRCRegClass); 14534 // 'd' and 'f' constraints are both defined to be "the floating point 14535 // registers", where one is for 32-bit and the other for 64-bit. We don't 14536 // really care overly much here so just give them all the same reg classes. 14537 case 'd': 14538 case 'f': 14539 if (Subtarget.hasSPE()) { 14540 if (VT == MVT::f32 || VT == MVT::i32) 14541 return std::make_pair(0U, &PPC::GPRCRegClass); 14542 if (VT == MVT::f64 || VT == MVT::i64) 14543 return std::make_pair(0U, &PPC::SPERCRegClass); 14544 } else { 14545 if (VT == MVT::f32 || VT == MVT::i32) 14546 return std::make_pair(0U, &PPC::F4RCRegClass); 14547 if (VT == MVT::f64 || VT == MVT::i64) 14548 return std::make_pair(0U, &PPC::F8RCRegClass); 14549 if (VT == MVT::v4f64 && Subtarget.hasQPX()) 14550 return std::make_pair(0U, &PPC::QFRCRegClass); 14551 if (VT == MVT::v4f32 && Subtarget.hasQPX()) 14552 return std::make_pair(0U, &PPC::QSRCRegClass); 14553 } 14554 break; 14555 case 'v': 14556 if (VT == MVT::v4f64 && Subtarget.hasQPX()) 14557 return std::make_pair(0U, &PPC::QFRCRegClass); 14558 if (VT == MVT::v4f32 && Subtarget.hasQPX()) 14559 return std::make_pair(0U, &PPC::QSRCRegClass); 14560 if (Subtarget.hasAltivec()) 14561 return std::make_pair(0U, &PPC::VRRCRegClass); 14562 break; 14563 case 'y': // crrc 14564 return std::make_pair(0U, &PPC::CRRCRegClass); 14565 } 14566 } else if (Constraint == "wc" && Subtarget.useCRBits()) { 14567 // An individual CR bit. 14568 return std::make_pair(0U, &PPC::CRBITRCRegClass); 14569 } else if ((Constraint == "wa" || Constraint == "wd" || 14570 Constraint == "wf" || Constraint == "wi") && 14571 Subtarget.hasVSX()) { 14572 return std::make_pair(0U, &PPC::VSRCRegClass); 14573 } else if ((Constraint == "ws" || Constraint == "ww") && Subtarget.hasVSX()) { 14574 if (VT == MVT::f32 && Subtarget.hasP8Vector()) 14575 return std::make_pair(0U, &PPC::VSSRCRegClass); 14576 else 14577 return std::make_pair(0U, &PPC::VSFRCRegClass); 14578 } 14579 14580 // If we name a VSX register, we can't defer to the base class because it 14581 // will not recognize the correct register (their names will be VSL{0-31} 14582 // and V{0-31} so they won't match). So we match them here. 14583 if (Constraint.size() > 3 && Constraint[1] == 'v' && Constraint[2] == 's') { 14584 int VSNum = atoi(Constraint.data() + 3); 14585 assert(VSNum >= 0 && VSNum <= 63 && 14586 "Attempted to access a vsr out of range"); 14587 if (VSNum < 32) 14588 return std::make_pair(PPC::VSL0 + VSNum, &PPC::VSRCRegClass); 14589 return std::make_pair(PPC::V0 + VSNum - 32, &PPC::VSRCRegClass); 14590 } 14591 std::pair<unsigned, const TargetRegisterClass *> R = 14592 TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT); 14593 14594 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers 14595 // (which we call X[0-9]+). If a 64-bit value has been requested, and a 14596 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent 14597 // register. 14598 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use 14599 // the AsmName field from *RegisterInfo.td, then this would not be necessary. 14600 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() && 14601 PPC::GPRCRegClass.contains(R.first)) 14602 return std::make_pair(TRI->getMatchingSuperReg(R.first, 14603 PPC::sub_32, &PPC::G8RCRegClass), 14604 &PPC::G8RCRegClass); 14605 14606 // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same. 14607 if (!R.second && StringRef("{cc}").equals_lower(Constraint)) { 14608 R.first = PPC::CR0; 14609 R.second = &PPC::CRRCRegClass; 14610 } 14611 14612 return R; 14613 } 14614 14615 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops 14616 /// vector. If it is invalid, don't add anything to Ops. 14617 void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op, 14618 std::string &Constraint, 14619 std::vector<SDValue>&Ops, 14620 SelectionDAG &DAG) const { 14621 SDValue Result; 14622 14623 // Only support length 1 constraints. 14624 if (Constraint.length() > 1) return; 14625 14626 char Letter = Constraint[0]; 14627 switch (Letter) { 14628 default: break; 14629 case 'I': 14630 case 'J': 14631 case 'K': 14632 case 'L': 14633 case 'M': 14634 case 'N': 14635 case 'O': 14636 case 'P': { 14637 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op); 14638 if (!CST) return; // Must be an immediate to match. 14639 SDLoc dl(Op); 14640 int64_t Value = CST->getSExtValue(); 14641 EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative 14642 // numbers are printed as such. 14643 switch (Letter) { 14644 default: llvm_unreachable("Unknown constraint letter!"); 14645 case 'I': // "I" is a signed 16-bit constant. 14646 if (isInt<16>(Value)) 14647 Result = DAG.getTargetConstant(Value, dl, TCVT); 14648 break; 14649 case 'J': // "J" is a constant with only the high-order 16 bits nonzero. 14650 if (isShiftedUInt<16, 16>(Value)) 14651 Result = DAG.getTargetConstant(Value, dl, TCVT); 14652 break; 14653 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits. 14654 if (isShiftedInt<16, 16>(Value)) 14655 Result = DAG.getTargetConstant(Value, dl, TCVT); 14656 break; 14657 case 'K': // "K" is a constant with only the low-order 16 bits nonzero. 14658 if (isUInt<16>(Value)) 14659 Result = DAG.getTargetConstant(Value, dl, TCVT); 14660 break; 14661 case 'M': // "M" is a constant that is greater than 31. 14662 if (Value > 31) 14663 Result = DAG.getTargetConstant(Value, dl, TCVT); 14664 break; 14665 case 'N': // "N" is a positive constant that is an exact power of two. 14666 if (Value > 0 && isPowerOf2_64(Value)) 14667 Result = DAG.getTargetConstant(Value, dl, TCVT); 14668 break; 14669 case 'O': // "O" is the constant zero. 14670 if (Value == 0) 14671 Result = DAG.getTargetConstant(Value, dl, TCVT); 14672 break; 14673 case 'P': // "P" is a constant whose negation is a signed 16-bit constant. 14674 if (isInt<16>(-Value)) 14675 Result = DAG.getTargetConstant(Value, dl, TCVT); 14676 break; 14677 } 14678 break; 14679 } 14680 } 14681 14682 if (Result.getNode()) { 14683 Ops.push_back(Result); 14684 return; 14685 } 14686 14687 // Handle standard constraint letters. 14688 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); 14689 } 14690 14691 // isLegalAddressingMode - Return true if the addressing mode represented 14692 // by AM is legal for this target, for a load/store of the specified type. 14693 bool PPCTargetLowering::isLegalAddressingMode(const DataLayout &DL, 14694 const AddrMode &AM, Type *Ty, 14695 unsigned AS, Instruction *I) const { 14696 // PPC does not allow r+i addressing modes for vectors! 14697 if (Ty->isVectorTy() && AM.BaseOffs != 0) 14698 return false; 14699 14700 // PPC allows a sign-extended 16-bit immediate field. 14701 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1) 14702 return false; 14703 14704 // No global is ever allowed as a base. 14705 if (AM.BaseGV) 14706 return false; 14707 14708 // PPC only support r+r, 14709 switch (AM.Scale) { 14710 case 0: // "r+i" or just "i", depending on HasBaseReg. 14711 break; 14712 case 1: 14713 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed. 14714 return false; 14715 // Otherwise we have r+r or r+i. 14716 break; 14717 case 2: 14718 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed. 14719 return false; 14720 // Allow 2*r as r+r. 14721 break; 14722 default: 14723 // No other scales are supported. 14724 return false; 14725 } 14726 14727 return true; 14728 } 14729 14730 SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op, 14731 SelectionDAG &DAG) const { 14732 MachineFunction &MF = DAG.getMachineFunction(); 14733 MachineFrameInfo &MFI = MF.getFrameInfo(); 14734 MFI.setReturnAddressIsTaken(true); 14735 14736 if (verifyReturnAddressArgumentIsConstant(Op, DAG)) 14737 return SDValue(); 14738 14739 SDLoc dl(Op); 14740 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 14741 14742 // Make sure the function does not optimize away the store of the RA to 14743 // the stack. 14744 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 14745 FuncInfo->setLRStoreRequired(); 14746 bool isPPC64 = Subtarget.isPPC64(); 14747 auto PtrVT = getPointerTy(MF.getDataLayout()); 14748 14749 if (Depth > 0) { 14750 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); 14751 SDValue Offset = 14752 DAG.getConstant(Subtarget.getFrameLowering()->getReturnSaveOffset(), dl, 14753 isPPC64 ? MVT::i64 : MVT::i32); 14754 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), 14755 DAG.getNode(ISD::ADD, dl, PtrVT, FrameAddr, Offset), 14756 MachinePointerInfo()); 14757 } 14758 14759 // Just load the return address off the stack. 14760 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG); 14761 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), RetAddrFI, 14762 MachinePointerInfo()); 14763 } 14764 14765 SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op, 14766 SelectionDAG &DAG) const { 14767 SDLoc dl(Op); 14768 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 14769 14770 MachineFunction &MF = DAG.getMachineFunction(); 14771 MachineFrameInfo &MFI = MF.getFrameInfo(); 14772 MFI.setFrameAddressIsTaken(true); 14773 14774 EVT PtrVT = getPointerTy(MF.getDataLayout()); 14775 bool isPPC64 = PtrVT == MVT::i64; 14776 14777 // Naked functions never have a frame pointer, and so we use r1. For all 14778 // other functions, this decision must be delayed until during PEI. 14779 unsigned FrameReg; 14780 if (MF.getFunction().hasFnAttribute(Attribute::Naked)) 14781 FrameReg = isPPC64 ? PPC::X1 : PPC::R1; 14782 else 14783 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP; 14784 14785 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, 14786 PtrVT); 14787 while (Depth--) 14788 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(), 14789 FrameAddr, MachinePointerInfo()); 14790 return FrameAddr; 14791 } 14792 14793 // FIXME? Maybe this could be a TableGen attribute on some registers and 14794 // this table could be generated automatically from RegInfo. 14795 Register PPCTargetLowering::getRegisterByName(const char* RegName, LLT VT, 14796 const MachineFunction &MF) const { 14797 bool isPPC64 = Subtarget.isPPC64(); 14798 bool IsDarwinABI = Subtarget.isDarwinABI(); 14799 14800 bool is64Bit = isPPC64 && VT == LLT::scalar(64); 14801 if (!is64Bit && VT != LLT::scalar(32)) 14802 report_fatal_error("Invalid register global variable type"); 14803 14804 Register Reg = StringSwitch<Register>(RegName) 14805 .Case("r1", is64Bit ? PPC::X1 : PPC::R1) 14806 .Case("r2", (IsDarwinABI || isPPC64) ? Register() : PPC::R2) 14807 .Case("r13", (!isPPC64 && IsDarwinABI) ? Register() : 14808 (is64Bit ? PPC::X13 : PPC::R13)) 14809 .Default(Register()); 14810 14811 if (Reg) 14812 return Reg; 14813 report_fatal_error("Invalid register name global variable"); 14814 } 14815 14816 bool PPCTargetLowering::isAccessedAsGotIndirect(SDValue GA) const { 14817 // 32-bit SVR4 ABI access everything as got-indirect. 14818 if (Subtarget.is32BitELFABI()) 14819 return true; 14820 14821 // AIX accesses everything indirectly through the TOC, which is similar to 14822 // the GOT. 14823 if (Subtarget.isAIXABI()) 14824 return true; 14825 14826 CodeModel::Model CModel = getTargetMachine().getCodeModel(); 14827 // If it is small or large code model, module locals are accessed 14828 // indirectly by loading their address from .toc/.got. 14829 if (CModel == CodeModel::Small || CModel == CodeModel::Large) 14830 return true; 14831 14832 // JumpTable and BlockAddress are accessed as got-indirect. 14833 if (isa<JumpTableSDNode>(GA) || isa<BlockAddressSDNode>(GA)) 14834 return true; 14835 14836 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(GA)) 14837 return Subtarget.isGVIndirectSymbol(G->getGlobal()); 14838 14839 return false; 14840 } 14841 14842 bool 14843 PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 14844 // The PowerPC target isn't yet aware of offsets. 14845 return false; 14846 } 14847 14848 bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info, 14849 const CallInst &I, 14850 MachineFunction &MF, 14851 unsigned Intrinsic) const { 14852 switch (Intrinsic) { 14853 case Intrinsic::ppc_qpx_qvlfd: 14854 case Intrinsic::ppc_qpx_qvlfs: 14855 case Intrinsic::ppc_qpx_qvlfcd: 14856 case Intrinsic::ppc_qpx_qvlfcs: 14857 case Intrinsic::ppc_qpx_qvlfiwa: 14858 case Intrinsic::ppc_qpx_qvlfiwz: 14859 case Intrinsic::ppc_altivec_lvx: 14860 case Intrinsic::ppc_altivec_lvxl: 14861 case Intrinsic::ppc_altivec_lvebx: 14862 case Intrinsic::ppc_altivec_lvehx: 14863 case Intrinsic::ppc_altivec_lvewx: 14864 case Intrinsic::ppc_vsx_lxvd2x: 14865 case Intrinsic::ppc_vsx_lxvw4x: { 14866 EVT VT; 14867 switch (Intrinsic) { 14868 case Intrinsic::ppc_altivec_lvebx: 14869 VT = MVT::i8; 14870 break; 14871 case Intrinsic::ppc_altivec_lvehx: 14872 VT = MVT::i16; 14873 break; 14874 case Intrinsic::ppc_altivec_lvewx: 14875 VT = MVT::i32; 14876 break; 14877 case Intrinsic::ppc_vsx_lxvd2x: 14878 VT = MVT::v2f64; 14879 break; 14880 case Intrinsic::ppc_qpx_qvlfd: 14881 VT = MVT::v4f64; 14882 break; 14883 case Intrinsic::ppc_qpx_qvlfs: 14884 VT = MVT::v4f32; 14885 break; 14886 case Intrinsic::ppc_qpx_qvlfcd: 14887 VT = MVT::v2f64; 14888 break; 14889 case Intrinsic::ppc_qpx_qvlfcs: 14890 VT = MVT::v2f32; 14891 break; 14892 default: 14893 VT = MVT::v4i32; 14894 break; 14895 } 14896 14897 Info.opc = ISD::INTRINSIC_W_CHAIN; 14898 Info.memVT = VT; 14899 Info.ptrVal = I.getArgOperand(0); 14900 Info.offset = -VT.getStoreSize()+1; 14901 Info.size = 2*VT.getStoreSize()-1; 14902 Info.align = Align::None(); 14903 Info.flags = MachineMemOperand::MOLoad; 14904 return true; 14905 } 14906 case Intrinsic::ppc_qpx_qvlfda: 14907 case Intrinsic::ppc_qpx_qvlfsa: 14908 case Intrinsic::ppc_qpx_qvlfcda: 14909 case Intrinsic::ppc_qpx_qvlfcsa: 14910 case Intrinsic::ppc_qpx_qvlfiwaa: 14911 case Intrinsic::ppc_qpx_qvlfiwza: { 14912 EVT VT; 14913 switch (Intrinsic) { 14914 case Intrinsic::ppc_qpx_qvlfda: 14915 VT = MVT::v4f64; 14916 break; 14917 case Intrinsic::ppc_qpx_qvlfsa: 14918 VT = MVT::v4f32; 14919 break; 14920 case Intrinsic::ppc_qpx_qvlfcda: 14921 VT = MVT::v2f64; 14922 break; 14923 case Intrinsic::ppc_qpx_qvlfcsa: 14924 VT = MVT::v2f32; 14925 break; 14926 default: 14927 VT = MVT::v4i32; 14928 break; 14929 } 14930 14931 Info.opc = ISD::INTRINSIC_W_CHAIN; 14932 Info.memVT = VT; 14933 Info.ptrVal = I.getArgOperand(0); 14934 Info.offset = 0; 14935 Info.size = VT.getStoreSize(); 14936 Info.align = Align::None(); 14937 Info.flags = MachineMemOperand::MOLoad; 14938 return true; 14939 } 14940 case Intrinsic::ppc_qpx_qvstfd: 14941 case Intrinsic::ppc_qpx_qvstfs: 14942 case Intrinsic::ppc_qpx_qvstfcd: 14943 case Intrinsic::ppc_qpx_qvstfcs: 14944 case Intrinsic::ppc_qpx_qvstfiw: 14945 case Intrinsic::ppc_altivec_stvx: 14946 case Intrinsic::ppc_altivec_stvxl: 14947 case Intrinsic::ppc_altivec_stvebx: 14948 case Intrinsic::ppc_altivec_stvehx: 14949 case Intrinsic::ppc_altivec_stvewx: 14950 case Intrinsic::ppc_vsx_stxvd2x: 14951 case Intrinsic::ppc_vsx_stxvw4x: { 14952 EVT VT; 14953 switch (Intrinsic) { 14954 case Intrinsic::ppc_altivec_stvebx: 14955 VT = MVT::i8; 14956 break; 14957 case Intrinsic::ppc_altivec_stvehx: 14958 VT = MVT::i16; 14959 break; 14960 case Intrinsic::ppc_altivec_stvewx: 14961 VT = MVT::i32; 14962 break; 14963 case Intrinsic::ppc_vsx_stxvd2x: 14964 VT = MVT::v2f64; 14965 break; 14966 case Intrinsic::ppc_qpx_qvstfd: 14967 VT = MVT::v4f64; 14968 break; 14969 case Intrinsic::ppc_qpx_qvstfs: 14970 VT = MVT::v4f32; 14971 break; 14972 case Intrinsic::ppc_qpx_qvstfcd: 14973 VT = MVT::v2f64; 14974 break; 14975 case Intrinsic::ppc_qpx_qvstfcs: 14976 VT = MVT::v2f32; 14977 break; 14978 default: 14979 VT = MVT::v4i32; 14980 break; 14981 } 14982 14983 Info.opc = ISD::INTRINSIC_VOID; 14984 Info.memVT = VT; 14985 Info.ptrVal = I.getArgOperand(1); 14986 Info.offset = -VT.getStoreSize()+1; 14987 Info.size = 2*VT.getStoreSize()-1; 14988 Info.align = Align::None(); 14989 Info.flags = MachineMemOperand::MOStore; 14990 return true; 14991 } 14992 case Intrinsic::ppc_qpx_qvstfda: 14993 case Intrinsic::ppc_qpx_qvstfsa: 14994 case Intrinsic::ppc_qpx_qvstfcda: 14995 case Intrinsic::ppc_qpx_qvstfcsa: 14996 case Intrinsic::ppc_qpx_qvstfiwa: { 14997 EVT VT; 14998 switch (Intrinsic) { 14999 case Intrinsic::ppc_qpx_qvstfda: 15000 VT = MVT::v4f64; 15001 break; 15002 case Intrinsic::ppc_qpx_qvstfsa: 15003 VT = MVT::v4f32; 15004 break; 15005 case Intrinsic::ppc_qpx_qvstfcda: 15006 VT = MVT::v2f64; 15007 break; 15008 case Intrinsic::ppc_qpx_qvstfcsa: 15009 VT = MVT::v2f32; 15010 break; 15011 default: 15012 VT = MVT::v4i32; 15013 break; 15014 } 15015 15016 Info.opc = ISD::INTRINSIC_VOID; 15017 Info.memVT = VT; 15018 Info.ptrVal = I.getArgOperand(1); 15019 Info.offset = 0; 15020 Info.size = VT.getStoreSize(); 15021 Info.align = Align::None(); 15022 Info.flags = MachineMemOperand::MOStore; 15023 return true; 15024 } 15025 default: 15026 break; 15027 } 15028 15029 return false; 15030 } 15031 15032 /// getOptimalMemOpType - Returns the target specific optimal type for load 15033 /// and store operations as a result of memset, memcpy, and memmove 15034 /// lowering. If DstAlign is zero that means it's safe to destination 15035 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it 15036 /// means there isn't a need to check it against alignment requirement, 15037 /// probably because the source does not need to be loaded. If 'IsMemset' is 15038 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that 15039 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy 15040 /// source is constant so it does not need to be loaded. 15041 /// It returns EVT::Other if the type should be determined using generic 15042 /// target-independent logic. 15043 EVT PPCTargetLowering::getOptimalMemOpType( 15044 uint64_t Size, unsigned DstAlign, unsigned SrcAlign, bool IsMemset, 15045 bool ZeroMemset, bool MemcpyStrSrc, 15046 const AttributeList &FuncAttributes) const { 15047 if (getTargetMachine().getOptLevel() != CodeGenOpt::None) { 15048 // When expanding a memset, require at least two QPX instructions to cover 15049 // the cost of loading the value to be stored from the constant pool. 15050 if (Subtarget.hasQPX() && Size >= 32 && (!IsMemset || Size >= 64) && 15051 (!SrcAlign || SrcAlign >= 32) && (!DstAlign || DstAlign >= 32) && 15052 !FuncAttributes.hasFnAttribute(Attribute::NoImplicitFloat)) { 15053 return MVT::v4f64; 15054 } 15055 15056 // We should use Altivec/VSX loads and stores when available. For unaligned 15057 // addresses, unaligned VSX loads are only fast starting with the P8. 15058 if (Subtarget.hasAltivec() && Size >= 16 && 15059 (((!SrcAlign || SrcAlign >= 16) && (!DstAlign || DstAlign >= 16)) || 15060 ((IsMemset && Subtarget.hasVSX()) || Subtarget.hasP8Vector()))) 15061 return MVT::v4i32; 15062 } 15063 15064 if (Subtarget.isPPC64()) { 15065 return MVT::i64; 15066 } 15067 15068 return MVT::i32; 15069 } 15070 15071 /// Returns true if it is beneficial to convert a load of a constant 15072 /// to just the constant itself. 15073 bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm, 15074 Type *Ty) const { 15075 assert(Ty->isIntegerTy()); 15076 15077 unsigned BitSize = Ty->getPrimitiveSizeInBits(); 15078 return !(BitSize == 0 || BitSize > 64); 15079 } 15080 15081 bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const { 15082 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy()) 15083 return false; 15084 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits(); 15085 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits(); 15086 return NumBits1 == 64 && NumBits2 == 32; 15087 } 15088 15089 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { 15090 if (!VT1.isInteger() || !VT2.isInteger()) 15091 return false; 15092 unsigned NumBits1 = VT1.getSizeInBits(); 15093 unsigned NumBits2 = VT2.getSizeInBits(); 15094 return NumBits1 == 64 && NumBits2 == 32; 15095 } 15096 15097 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { 15098 // Generally speaking, zexts are not free, but they are free when they can be 15099 // folded with other operations. 15100 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) { 15101 EVT MemVT = LD->getMemoryVT(); 15102 if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 || 15103 (Subtarget.isPPC64() && MemVT == MVT::i32)) && 15104 (LD->getExtensionType() == ISD::NON_EXTLOAD || 15105 LD->getExtensionType() == ISD::ZEXTLOAD)) 15106 return true; 15107 } 15108 15109 // FIXME: Add other cases... 15110 // - 32-bit shifts with a zext to i64 15111 // - zext after ctlz, bswap, etc. 15112 // - zext after and by a constant mask 15113 15114 return TargetLowering::isZExtFree(Val, VT2); 15115 } 15116 15117 bool PPCTargetLowering::isFPExtFree(EVT DestVT, EVT SrcVT) const { 15118 assert(DestVT.isFloatingPoint() && SrcVT.isFloatingPoint() && 15119 "invalid fpext types"); 15120 // Extending to float128 is not free. 15121 if (DestVT == MVT::f128) 15122 return false; 15123 return true; 15124 } 15125 15126 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const { 15127 return isInt<16>(Imm) || isUInt<16>(Imm); 15128 } 15129 15130 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const { 15131 return isInt<16>(Imm) || isUInt<16>(Imm); 15132 } 15133 15134 bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT, 15135 unsigned, 15136 unsigned, 15137 MachineMemOperand::Flags, 15138 bool *Fast) const { 15139 if (DisablePPCUnaligned) 15140 return false; 15141 15142 // PowerPC supports unaligned memory access for simple non-vector types. 15143 // Although accessing unaligned addresses is not as efficient as accessing 15144 // aligned addresses, it is generally more efficient than manual expansion, 15145 // and generally only traps for software emulation when crossing page 15146 // boundaries. 15147 15148 if (!VT.isSimple()) 15149 return false; 15150 15151 if (VT.isFloatingPoint() && !Subtarget.allowsUnalignedFPAccess()) 15152 return false; 15153 15154 if (VT.getSimpleVT().isVector()) { 15155 if (Subtarget.hasVSX()) { 15156 if (VT != MVT::v2f64 && VT != MVT::v2i64 && 15157 VT != MVT::v4f32 && VT != MVT::v4i32) 15158 return false; 15159 } else { 15160 return false; 15161 } 15162 } 15163 15164 if (VT == MVT::ppcf128) 15165 return false; 15166 15167 if (Fast) 15168 *Fast = true; 15169 15170 return true; 15171 } 15172 15173 bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(const MachineFunction &MF, 15174 EVT VT) const { 15175 VT = VT.getScalarType(); 15176 15177 if (!VT.isSimple()) 15178 return false; 15179 15180 switch (VT.getSimpleVT().SimpleTy) { 15181 case MVT::f32: 15182 case MVT::f64: 15183 return true; 15184 case MVT::f128: 15185 return (EnableQuadPrecision && Subtarget.hasP9Vector()); 15186 default: 15187 break; 15188 } 15189 15190 return false; 15191 } 15192 15193 const MCPhysReg * 15194 PPCTargetLowering::getScratchRegisters(CallingConv::ID) const { 15195 // LR is a callee-save register, but we must treat it as clobbered by any call 15196 // site. Hence we include LR in the scratch registers, which are in turn added 15197 // as implicit-defs for stackmaps and patchpoints. The same reasoning applies 15198 // to CTR, which is used by any indirect call. 15199 static const MCPhysReg ScratchRegs[] = { 15200 PPC::X12, PPC::LR8, PPC::CTR8, 0 15201 }; 15202 15203 return ScratchRegs; 15204 } 15205 15206 unsigned PPCTargetLowering::getExceptionPointerRegister( 15207 const Constant *PersonalityFn) const { 15208 return Subtarget.isPPC64() ? PPC::X3 : PPC::R3; 15209 } 15210 15211 unsigned PPCTargetLowering::getExceptionSelectorRegister( 15212 const Constant *PersonalityFn) const { 15213 return Subtarget.isPPC64() ? PPC::X4 : PPC::R4; 15214 } 15215 15216 bool 15217 PPCTargetLowering::shouldExpandBuildVectorWithShuffles( 15218 EVT VT , unsigned DefinedValues) const { 15219 if (VT == MVT::v2i64) 15220 return Subtarget.hasDirectMove(); // Don't need stack ops with direct moves 15221 15222 if (Subtarget.hasVSX() || Subtarget.hasQPX()) 15223 return true; 15224 15225 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues); 15226 } 15227 15228 Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const { 15229 if (DisableILPPref || Subtarget.enableMachineScheduler()) 15230 return TargetLowering::getSchedulingPreference(N); 15231 15232 return Sched::ILP; 15233 } 15234 15235 // Create a fast isel object. 15236 FastISel * 15237 PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo, 15238 const TargetLibraryInfo *LibInfo) const { 15239 return PPC::createFastISel(FuncInfo, LibInfo); 15240 } 15241 15242 void PPCTargetLowering::initializeSplitCSR(MachineBasicBlock *Entry) const { 15243 if (Subtarget.isDarwinABI()) return; 15244 if (!Subtarget.isPPC64()) return; 15245 15246 // Update IsSplitCSR in PPCFunctionInfo 15247 PPCFunctionInfo *PFI = Entry->getParent()->getInfo<PPCFunctionInfo>(); 15248 PFI->setIsSplitCSR(true); 15249 } 15250 15251 void PPCTargetLowering::insertCopiesSplitCSR( 15252 MachineBasicBlock *Entry, 15253 const SmallVectorImpl<MachineBasicBlock *> &Exits) const { 15254 const PPCRegisterInfo *TRI = Subtarget.getRegisterInfo(); 15255 const MCPhysReg *IStart = TRI->getCalleeSavedRegsViaCopy(Entry->getParent()); 15256 if (!IStart) 15257 return; 15258 15259 const TargetInstrInfo *TII = Subtarget.getInstrInfo(); 15260 MachineRegisterInfo *MRI = &Entry->getParent()->getRegInfo(); 15261 MachineBasicBlock::iterator MBBI = Entry->begin(); 15262 for (const MCPhysReg *I = IStart; *I; ++I) { 15263 const TargetRegisterClass *RC = nullptr; 15264 if (PPC::G8RCRegClass.contains(*I)) 15265 RC = &PPC::G8RCRegClass; 15266 else if (PPC::F8RCRegClass.contains(*I)) 15267 RC = &PPC::F8RCRegClass; 15268 else if (PPC::CRRCRegClass.contains(*I)) 15269 RC = &PPC::CRRCRegClass; 15270 else if (PPC::VRRCRegClass.contains(*I)) 15271 RC = &PPC::VRRCRegClass; 15272 else 15273 llvm_unreachable("Unexpected register class in CSRsViaCopy!"); 15274 15275 Register NewVR = MRI->createVirtualRegister(RC); 15276 // Create copy from CSR to a virtual register. 15277 // FIXME: this currently does not emit CFI pseudo-instructions, it works 15278 // fine for CXX_FAST_TLS since the C++-style TLS access functions should be 15279 // nounwind. If we want to generalize this later, we may need to emit 15280 // CFI pseudo-instructions. 15281 assert(Entry->getParent()->getFunction().hasFnAttribute( 15282 Attribute::NoUnwind) && 15283 "Function should be nounwind in insertCopiesSplitCSR!"); 15284 Entry->addLiveIn(*I); 15285 BuildMI(*Entry, MBBI, DebugLoc(), TII->get(TargetOpcode::COPY), NewVR) 15286 .addReg(*I); 15287 15288 // Insert the copy-back instructions right before the terminator. 15289 for (auto *Exit : Exits) 15290 BuildMI(*Exit, Exit->getFirstTerminator(), DebugLoc(), 15291 TII->get(TargetOpcode::COPY), *I) 15292 .addReg(NewVR); 15293 } 15294 } 15295 15296 // Override to enable LOAD_STACK_GUARD lowering on Linux. 15297 bool PPCTargetLowering::useLoadStackGuardNode() const { 15298 if (!Subtarget.isTargetLinux()) 15299 return TargetLowering::useLoadStackGuardNode(); 15300 return true; 15301 } 15302 15303 // Override to disable global variable loading on Linux. 15304 void PPCTargetLowering::insertSSPDeclarations(Module &M) const { 15305 if (!Subtarget.isTargetLinux()) 15306 return TargetLowering::insertSSPDeclarations(M); 15307 } 15308 15309 bool PPCTargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT, 15310 bool ForCodeSize) const { 15311 if (!VT.isSimple() || !Subtarget.hasVSX()) 15312 return false; 15313 15314 switch(VT.getSimpleVT().SimpleTy) { 15315 default: 15316 // For FP types that are currently not supported by PPC backend, return 15317 // false. Examples: f16, f80. 15318 return false; 15319 case MVT::f32: 15320 case MVT::f64: 15321 case MVT::ppcf128: 15322 return Imm.isPosZero(); 15323 } 15324 } 15325 15326 // For vector shift operation op, fold 15327 // (op x, (and y, ((1 << numbits(x)) - 1))) -> (target op x, y) 15328 static SDValue stripModuloOnShift(const TargetLowering &TLI, SDNode *N, 15329 SelectionDAG &DAG) { 15330 SDValue N0 = N->getOperand(0); 15331 SDValue N1 = N->getOperand(1); 15332 EVT VT = N0.getValueType(); 15333 unsigned OpSizeInBits = VT.getScalarSizeInBits(); 15334 unsigned Opcode = N->getOpcode(); 15335 unsigned TargetOpcode; 15336 15337 switch (Opcode) { 15338 default: 15339 llvm_unreachable("Unexpected shift operation"); 15340 case ISD::SHL: 15341 TargetOpcode = PPCISD::SHL; 15342 break; 15343 case ISD::SRL: 15344 TargetOpcode = PPCISD::SRL; 15345 break; 15346 case ISD::SRA: 15347 TargetOpcode = PPCISD::SRA; 15348 break; 15349 } 15350 15351 if (VT.isVector() && TLI.isOperationLegal(Opcode, VT) && 15352 N1->getOpcode() == ISD::AND) 15353 if (ConstantSDNode *Mask = isConstOrConstSplat(N1->getOperand(1))) 15354 if (Mask->getZExtValue() == OpSizeInBits - 1) 15355 return DAG.getNode(TargetOpcode, SDLoc(N), VT, N0, N1->getOperand(0)); 15356 15357 return SDValue(); 15358 } 15359 15360 SDValue PPCTargetLowering::combineSHL(SDNode *N, DAGCombinerInfo &DCI) const { 15361 if (auto Value = stripModuloOnShift(*this, N, DCI.DAG)) 15362 return Value; 15363 15364 SDValue N0 = N->getOperand(0); 15365 ConstantSDNode *CN1 = dyn_cast<ConstantSDNode>(N->getOperand(1)); 15366 if (!Subtarget.isISA3_0() || 15367 N0.getOpcode() != ISD::SIGN_EXTEND || 15368 N0.getOperand(0).getValueType() != MVT::i32 || 15369 CN1 == nullptr || N->getValueType(0) != MVT::i64) 15370 return SDValue(); 15371 15372 // We can't save an operation here if the value is already extended, and 15373 // the existing shift is easier to combine. 15374 SDValue ExtsSrc = N0.getOperand(0); 15375 if (ExtsSrc.getOpcode() == ISD::TRUNCATE && 15376 ExtsSrc.getOperand(0).getOpcode() == ISD::AssertSext) 15377 return SDValue(); 15378 15379 SDLoc DL(N0); 15380 SDValue ShiftBy = SDValue(CN1, 0); 15381 // We want the shift amount to be i32 on the extswli, but the shift could 15382 // have an i64. 15383 if (ShiftBy.getValueType() == MVT::i64) 15384 ShiftBy = DCI.DAG.getConstant(CN1->getZExtValue(), DL, MVT::i32); 15385 15386 return DCI.DAG.getNode(PPCISD::EXTSWSLI, DL, MVT::i64, N0->getOperand(0), 15387 ShiftBy); 15388 } 15389 15390 SDValue PPCTargetLowering::combineSRA(SDNode *N, DAGCombinerInfo &DCI) const { 15391 if (auto Value = stripModuloOnShift(*this, N, DCI.DAG)) 15392 return Value; 15393 15394 return SDValue(); 15395 } 15396 15397 SDValue PPCTargetLowering::combineSRL(SDNode *N, DAGCombinerInfo &DCI) const { 15398 if (auto Value = stripModuloOnShift(*this, N, DCI.DAG)) 15399 return Value; 15400 15401 return SDValue(); 15402 } 15403 15404 // Transform (add X, (zext(setne Z, C))) -> (addze X, (addic (addi Z, -C), -1)) 15405 // Transform (add X, (zext(sete Z, C))) -> (addze X, (subfic (addi Z, -C), 0)) 15406 // When C is zero, the equation (addi Z, -C) can be simplified to Z 15407 // Requirement: -C in [-32768, 32767], X and Z are MVT::i64 types 15408 static SDValue combineADDToADDZE(SDNode *N, SelectionDAG &DAG, 15409 const PPCSubtarget &Subtarget) { 15410 if (!Subtarget.isPPC64()) 15411 return SDValue(); 15412 15413 SDValue LHS = N->getOperand(0); 15414 SDValue RHS = N->getOperand(1); 15415 15416 auto isZextOfCompareWithConstant = [](SDValue Op) { 15417 if (Op.getOpcode() != ISD::ZERO_EXTEND || !Op.hasOneUse() || 15418 Op.getValueType() != MVT::i64) 15419 return false; 15420 15421 SDValue Cmp = Op.getOperand(0); 15422 if (Cmp.getOpcode() != ISD::SETCC || !Cmp.hasOneUse() || 15423 Cmp.getOperand(0).getValueType() != MVT::i64) 15424 return false; 15425 15426 if (auto *Constant = dyn_cast<ConstantSDNode>(Cmp.getOperand(1))) { 15427 int64_t NegConstant = 0 - Constant->getSExtValue(); 15428 // Due to the limitations of the addi instruction, 15429 // -C is required to be [-32768, 32767]. 15430 return isInt<16>(NegConstant); 15431 } 15432 15433 return false; 15434 }; 15435 15436 bool LHSHasPattern = isZextOfCompareWithConstant(LHS); 15437 bool RHSHasPattern = isZextOfCompareWithConstant(RHS); 15438 15439 // If there is a pattern, canonicalize a zext operand to the RHS. 15440 if (LHSHasPattern && !RHSHasPattern) 15441 std::swap(LHS, RHS); 15442 else if (!LHSHasPattern && !RHSHasPattern) 15443 return SDValue(); 15444 15445 SDLoc DL(N); 15446 SDVTList VTs = DAG.getVTList(MVT::i64, MVT::Glue); 15447 SDValue Cmp = RHS.getOperand(0); 15448 SDValue Z = Cmp.getOperand(0); 15449 auto *Constant = dyn_cast<ConstantSDNode>(Cmp.getOperand(1)); 15450 15451 assert(Constant && "Constant Should not be a null pointer."); 15452 int64_t NegConstant = 0 - Constant->getSExtValue(); 15453 15454 switch(cast<CondCodeSDNode>(Cmp.getOperand(2))->get()) { 15455 default: break; 15456 case ISD::SETNE: { 15457 // when C == 0 15458 // --> addze X, (addic Z, -1).carry 15459 // / 15460 // add X, (zext(setne Z, C))-- 15461 // \ when -32768 <= -C <= 32767 && C != 0 15462 // --> addze X, (addic (addi Z, -C), -1).carry 15463 SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Z, 15464 DAG.getConstant(NegConstant, DL, MVT::i64)); 15465 SDValue AddOrZ = NegConstant != 0 ? Add : Z; 15466 SDValue Addc = DAG.getNode(ISD::ADDC, DL, DAG.getVTList(MVT::i64, MVT::Glue), 15467 AddOrZ, DAG.getConstant(-1ULL, DL, MVT::i64)); 15468 return DAG.getNode(ISD::ADDE, DL, VTs, LHS, DAG.getConstant(0, DL, MVT::i64), 15469 SDValue(Addc.getNode(), 1)); 15470 } 15471 case ISD::SETEQ: { 15472 // when C == 0 15473 // --> addze X, (subfic Z, 0).carry 15474 // / 15475 // add X, (zext(sete Z, C))-- 15476 // \ when -32768 <= -C <= 32767 && C != 0 15477 // --> addze X, (subfic (addi Z, -C), 0).carry 15478 SDValue Add = DAG.getNode(ISD::ADD, DL, MVT::i64, Z, 15479 DAG.getConstant(NegConstant, DL, MVT::i64)); 15480 SDValue AddOrZ = NegConstant != 0 ? Add : Z; 15481 SDValue Subc = DAG.getNode(ISD::SUBC, DL, DAG.getVTList(MVT::i64, MVT::Glue), 15482 DAG.getConstant(0, DL, MVT::i64), AddOrZ); 15483 return DAG.getNode(ISD::ADDE, DL, VTs, LHS, DAG.getConstant(0, DL, MVT::i64), 15484 SDValue(Subc.getNode(), 1)); 15485 } 15486 } 15487 15488 return SDValue(); 15489 } 15490 15491 SDValue PPCTargetLowering::combineADD(SDNode *N, DAGCombinerInfo &DCI) const { 15492 if (auto Value = combineADDToADDZE(N, DCI.DAG, Subtarget)) 15493 return Value; 15494 15495 return SDValue(); 15496 } 15497 15498 // Detect TRUNCATE operations on bitcasts of float128 values. 15499 // What we are looking for here is the situtation where we extract a subset 15500 // of bits from a 128 bit float. 15501 // This can be of two forms: 15502 // 1) BITCAST of f128 feeding TRUNCATE 15503 // 2) BITCAST of f128 feeding SRL (a shift) feeding TRUNCATE 15504 // The reason this is required is because we do not have a legal i128 type 15505 // and so we want to prevent having to store the f128 and then reload part 15506 // of it. 15507 SDValue PPCTargetLowering::combineTRUNCATE(SDNode *N, 15508 DAGCombinerInfo &DCI) const { 15509 // If we are using CRBits then try that first. 15510 if (Subtarget.useCRBits()) { 15511 // Check if CRBits did anything and return that if it did. 15512 if (SDValue CRTruncValue = DAGCombineTruncBoolExt(N, DCI)) 15513 return CRTruncValue; 15514 } 15515 15516 SDLoc dl(N); 15517 SDValue Op0 = N->getOperand(0); 15518 15519 // Looking for a truncate of i128 to i64. 15520 if (Op0.getValueType() != MVT::i128 || N->getValueType(0) != MVT::i64) 15521 return SDValue(); 15522 15523 int EltToExtract = DCI.DAG.getDataLayout().isBigEndian() ? 1 : 0; 15524 15525 // SRL feeding TRUNCATE. 15526 if (Op0.getOpcode() == ISD::SRL) { 15527 ConstantSDNode *ConstNode = dyn_cast<ConstantSDNode>(Op0.getOperand(1)); 15528 // The right shift has to be by 64 bits. 15529 if (!ConstNode || ConstNode->getZExtValue() != 64) 15530 return SDValue(); 15531 15532 // Switch the element number to extract. 15533 EltToExtract = EltToExtract ? 0 : 1; 15534 // Update Op0 past the SRL. 15535 Op0 = Op0.getOperand(0); 15536 } 15537 15538 // BITCAST feeding a TRUNCATE possibly via SRL. 15539 if (Op0.getOpcode() == ISD::BITCAST && 15540 Op0.getValueType() == MVT::i128 && 15541 Op0.getOperand(0).getValueType() == MVT::f128) { 15542 SDValue Bitcast = DCI.DAG.getBitcast(MVT::v2i64, Op0.getOperand(0)); 15543 return DCI.DAG.getNode( 15544 ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64, Bitcast, 15545 DCI.DAG.getTargetConstant(EltToExtract, dl, MVT::i32)); 15546 } 15547 return SDValue(); 15548 } 15549 15550 SDValue PPCTargetLowering::combineMUL(SDNode *N, DAGCombinerInfo &DCI) const { 15551 SelectionDAG &DAG = DCI.DAG; 15552 15553 ConstantSDNode *ConstOpOrElement = isConstOrConstSplat(N->getOperand(1)); 15554 if (!ConstOpOrElement) 15555 return SDValue(); 15556 15557 // An imul is usually smaller than the alternative sequence for legal type. 15558 if (DAG.getMachineFunction().getFunction().hasMinSize() && 15559 isOperationLegal(ISD::MUL, N->getValueType(0))) 15560 return SDValue(); 15561 15562 auto IsProfitable = [this](bool IsNeg, bool IsAddOne, EVT VT) -> bool { 15563 switch (this->Subtarget.getCPUDirective()) { 15564 default: 15565 // TODO: enhance the condition for subtarget before pwr8 15566 return false; 15567 case PPC::DIR_PWR8: 15568 // type mul add shl 15569 // scalar 4 1 1 15570 // vector 7 2 2 15571 return true; 15572 case PPC::DIR_PWR9: 15573 case PPC::DIR_PWR_FUTURE: 15574 // type mul add shl 15575 // scalar 5 2 2 15576 // vector 7 2 2 15577 15578 // The cycle RATIO of related operations are showed as a table above. 15579 // Because mul is 5(scalar)/7(vector), add/sub/shl are all 2 for both 15580 // scalar and vector type. For 2 instrs patterns, add/sub + shl 15581 // are 4, it is always profitable; but for 3 instrs patterns 15582 // (mul x, -(2^N + 1)) => -(add (shl x, N), x), sub + add + shl are 6. 15583 // So we should only do it for vector type. 15584 return IsAddOne && IsNeg ? VT.isVector() : true; 15585 } 15586 }; 15587 15588 EVT VT = N->getValueType(0); 15589 SDLoc DL(N); 15590 15591 const APInt &MulAmt = ConstOpOrElement->getAPIntValue(); 15592 bool IsNeg = MulAmt.isNegative(); 15593 APInt MulAmtAbs = MulAmt.abs(); 15594 15595 if ((MulAmtAbs - 1).isPowerOf2()) { 15596 // (mul x, 2^N + 1) => (add (shl x, N), x) 15597 // (mul x, -(2^N + 1)) => -(add (shl x, N), x) 15598 15599 if (!IsProfitable(IsNeg, true, VT)) 15600 return SDValue(); 15601 15602 SDValue Op0 = N->getOperand(0); 15603 SDValue Op1 = 15604 DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0), 15605 DAG.getConstant((MulAmtAbs - 1).logBase2(), DL, VT)); 15606 SDValue Res = DAG.getNode(ISD::ADD, DL, VT, Op0, Op1); 15607 15608 if (!IsNeg) 15609 return Res; 15610 15611 return DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, DL, VT), Res); 15612 } else if ((MulAmtAbs + 1).isPowerOf2()) { 15613 // (mul x, 2^N - 1) => (sub (shl x, N), x) 15614 // (mul x, -(2^N - 1)) => (sub x, (shl x, N)) 15615 15616 if (!IsProfitable(IsNeg, false, VT)) 15617 return SDValue(); 15618 15619 SDValue Op0 = N->getOperand(0); 15620 SDValue Op1 = 15621 DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0), 15622 DAG.getConstant((MulAmtAbs + 1).logBase2(), DL, VT)); 15623 15624 if (!IsNeg) 15625 return DAG.getNode(ISD::SUB, DL, VT, Op1, Op0); 15626 else 15627 return DAG.getNode(ISD::SUB, DL, VT, Op0, Op1); 15628 15629 } else { 15630 return SDValue(); 15631 } 15632 } 15633 15634 bool PPCTargetLowering::mayBeEmittedAsTailCall(const CallInst *CI) const { 15635 // Only duplicate to increase tail-calls for the 64bit SysV ABIs. 15636 if (!Subtarget.is64BitELFABI()) 15637 return false; 15638 15639 // If not a tail call then no need to proceed. 15640 if (!CI->isTailCall()) 15641 return false; 15642 15643 // If sibling calls have been disabled and tail-calls aren't guaranteed 15644 // there is no reason to duplicate. 15645 auto &TM = getTargetMachine(); 15646 if (!TM.Options.GuaranteedTailCallOpt && DisableSCO) 15647 return false; 15648 15649 // Can't tail call a function called indirectly, or if it has variadic args. 15650 const Function *Callee = CI->getCalledFunction(); 15651 if (!Callee || Callee->isVarArg()) 15652 return false; 15653 15654 // Make sure the callee and caller calling conventions are eligible for tco. 15655 const Function *Caller = CI->getParent()->getParent(); 15656 if (!areCallingConvEligibleForTCO_64SVR4(Caller->getCallingConv(), 15657 CI->getCallingConv())) 15658 return false; 15659 15660 // If the function is local then we have a good chance at tail-calling it 15661 return getTargetMachine().shouldAssumeDSOLocal(*Caller->getParent(), Callee); 15662 } 15663 15664 bool PPCTargetLowering::hasBitPreservingFPLogic(EVT VT) const { 15665 if (!Subtarget.hasVSX()) 15666 return false; 15667 if (Subtarget.hasP9Vector() && VT == MVT::f128) 15668 return true; 15669 return VT == MVT::f32 || VT == MVT::f64 || 15670 VT == MVT::v4f32 || VT == MVT::v2f64; 15671 } 15672 15673 bool PPCTargetLowering:: 15674 isMaskAndCmp0FoldingBeneficial(const Instruction &AndI) const { 15675 const Value *Mask = AndI.getOperand(1); 15676 // If the mask is suitable for andi. or andis. we should sink the and. 15677 if (const ConstantInt *CI = dyn_cast<ConstantInt>(Mask)) { 15678 // Can't handle constants wider than 64-bits. 15679 if (CI->getBitWidth() > 64) 15680 return false; 15681 int64_t ConstVal = CI->getZExtValue(); 15682 return isUInt<16>(ConstVal) || 15683 (isUInt<16>(ConstVal >> 16) && !(ConstVal & 0xFFFF)); 15684 } 15685 15686 // For non-constant masks, we can always use the record-form and. 15687 return true; 15688 } 15689 15690 // Transform (abs (sub (zext a), (zext b))) to (vabsd a b 0) 15691 // Transform (abs (sub (zext a), (zext_invec b))) to (vabsd a b 0) 15692 // Transform (abs (sub (zext_invec a), (zext_invec b))) to (vabsd a b 0) 15693 // Transform (abs (sub (zext_invec a), (zext b))) to (vabsd a b 0) 15694 // Transform (abs (sub a, b) to (vabsd a b 1)) if a & b of type v4i32 15695 SDValue PPCTargetLowering::combineABS(SDNode *N, DAGCombinerInfo &DCI) const { 15696 assert((N->getOpcode() == ISD::ABS) && "Need ABS node here"); 15697 assert(Subtarget.hasP9Altivec() && 15698 "Only combine this when P9 altivec supported!"); 15699 EVT VT = N->getValueType(0); 15700 if (VT != MVT::v4i32 && VT != MVT::v8i16 && VT != MVT::v16i8) 15701 return SDValue(); 15702 15703 SelectionDAG &DAG = DCI.DAG; 15704 SDLoc dl(N); 15705 if (N->getOperand(0).getOpcode() == ISD::SUB) { 15706 // Even for signed integers, if it's known to be positive (as signed 15707 // integer) due to zero-extended inputs. 15708 unsigned SubOpcd0 = N->getOperand(0)->getOperand(0).getOpcode(); 15709 unsigned SubOpcd1 = N->getOperand(0)->getOperand(1).getOpcode(); 15710 if ((SubOpcd0 == ISD::ZERO_EXTEND || 15711 SubOpcd0 == ISD::ZERO_EXTEND_VECTOR_INREG) && 15712 (SubOpcd1 == ISD::ZERO_EXTEND || 15713 SubOpcd1 == ISD::ZERO_EXTEND_VECTOR_INREG)) { 15714 return DAG.getNode(PPCISD::VABSD, dl, N->getOperand(0).getValueType(), 15715 N->getOperand(0)->getOperand(0), 15716 N->getOperand(0)->getOperand(1), 15717 DAG.getTargetConstant(0, dl, MVT::i32)); 15718 } 15719 15720 // For type v4i32, it can be optimized with xvnegsp + vabsduw 15721 if (N->getOperand(0).getValueType() == MVT::v4i32 && 15722 N->getOperand(0).hasOneUse()) { 15723 return DAG.getNode(PPCISD::VABSD, dl, N->getOperand(0).getValueType(), 15724 N->getOperand(0)->getOperand(0), 15725 N->getOperand(0)->getOperand(1), 15726 DAG.getTargetConstant(1, dl, MVT::i32)); 15727 } 15728 } 15729 15730 return SDValue(); 15731 } 15732 15733 // For type v4i32/v8ii16/v16i8, transform 15734 // from (vselect (setcc a, b, setugt), (sub a, b), (sub b, a)) to (vabsd a, b) 15735 // from (vselect (setcc a, b, setuge), (sub a, b), (sub b, a)) to (vabsd a, b) 15736 // from (vselect (setcc a, b, setult), (sub b, a), (sub a, b)) to (vabsd a, b) 15737 // from (vselect (setcc a, b, setule), (sub b, a), (sub a, b)) to (vabsd a, b) 15738 SDValue PPCTargetLowering::combineVSelect(SDNode *N, 15739 DAGCombinerInfo &DCI) const { 15740 assert((N->getOpcode() == ISD::VSELECT) && "Need VSELECT node here"); 15741 assert(Subtarget.hasP9Altivec() && 15742 "Only combine this when P9 altivec supported!"); 15743 15744 SelectionDAG &DAG = DCI.DAG; 15745 SDLoc dl(N); 15746 SDValue Cond = N->getOperand(0); 15747 SDValue TrueOpnd = N->getOperand(1); 15748 SDValue FalseOpnd = N->getOperand(2); 15749 EVT VT = N->getOperand(1).getValueType(); 15750 15751 if (Cond.getOpcode() != ISD::SETCC || TrueOpnd.getOpcode() != ISD::SUB || 15752 FalseOpnd.getOpcode() != ISD::SUB) 15753 return SDValue(); 15754 15755 // ABSD only available for type v4i32/v8i16/v16i8 15756 if (VT != MVT::v4i32 && VT != MVT::v8i16 && VT != MVT::v16i8) 15757 return SDValue(); 15758 15759 // At least to save one more dependent computation 15760 if (!(Cond.hasOneUse() || TrueOpnd.hasOneUse() || FalseOpnd.hasOneUse())) 15761 return SDValue(); 15762 15763 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get(); 15764 15765 // Can only handle unsigned comparison here 15766 switch (CC) { 15767 default: 15768 return SDValue(); 15769 case ISD::SETUGT: 15770 case ISD::SETUGE: 15771 break; 15772 case ISD::SETULT: 15773 case ISD::SETULE: 15774 std::swap(TrueOpnd, FalseOpnd); 15775 break; 15776 } 15777 15778 SDValue CmpOpnd1 = Cond.getOperand(0); 15779 SDValue CmpOpnd2 = Cond.getOperand(1); 15780 15781 // SETCC CmpOpnd1 CmpOpnd2 cond 15782 // TrueOpnd = CmpOpnd1 - CmpOpnd2 15783 // FalseOpnd = CmpOpnd2 - CmpOpnd1 15784 if (TrueOpnd.getOperand(0) == CmpOpnd1 && 15785 TrueOpnd.getOperand(1) == CmpOpnd2 && 15786 FalseOpnd.getOperand(0) == CmpOpnd2 && 15787 FalseOpnd.getOperand(1) == CmpOpnd1) { 15788 return DAG.getNode(PPCISD::VABSD, dl, N->getOperand(1).getValueType(), 15789 CmpOpnd1, CmpOpnd2, 15790 DAG.getTargetConstant(0, dl, MVT::i32)); 15791 } 15792 15793 return SDValue(); 15794 } 15795