1 //===-- PPCISelLowering.cpp - PPC DAG Lowering Implementation -------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the PPCISelLowering class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "PPCISelLowering.h" 15 #include "MCTargetDesc/PPCPredicates.h" 16 #include "PPCCallingConv.h" 17 #include "PPCMachineFunctionInfo.h" 18 #include "PPCPerfectShuffle.h" 19 #include "PPCTargetMachine.h" 20 #include "PPCTargetObjectFile.h" 21 #include "llvm/ADT/STLExtras.h" 22 #include "llvm/ADT/StringSwitch.h" 23 #include "llvm/ADT/Triple.h" 24 #include "llvm/CodeGen/CallingConvLower.h" 25 #include "llvm/CodeGen/MachineFrameInfo.h" 26 #include "llvm/CodeGen/MachineFunction.h" 27 #include "llvm/CodeGen/MachineInstrBuilder.h" 28 #include "llvm/CodeGen/MachineLoopInfo.h" 29 #include "llvm/CodeGen/MachineRegisterInfo.h" 30 #include "llvm/CodeGen/SelectionDAG.h" 31 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h" 32 #include "llvm/IR/CallingConv.h" 33 #include "llvm/IR/Constants.h" 34 #include "llvm/IR/DerivedTypes.h" 35 #include "llvm/IR/Function.h" 36 #include "llvm/IR/Intrinsics.h" 37 #include "llvm/Support/CommandLine.h" 38 #include "llvm/Support/ErrorHandling.h" 39 #include "llvm/Support/MathExtras.h" 40 #include "llvm/Support/raw_ostream.h" 41 #include "llvm/Target/TargetOptions.h" 42 using namespace llvm; 43 44 // FIXME: Remove this once soft-float is supported. 45 static cl::opt<bool> DisablePPCFloatInVariadic("disable-ppc-float-in-variadic", 46 cl::desc("disable saving float registers for va_start on PPC"), cl::Hidden); 47 48 static cl::opt<bool> DisablePPCPreinc("disable-ppc-preinc", 49 cl::desc("disable preincrement load/store generation on PPC"), cl::Hidden); 50 51 static cl::opt<bool> DisableILPPref("disable-ppc-ilp-pref", 52 cl::desc("disable setting the node scheduling preference to ILP on PPC"), cl::Hidden); 53 54 static cl::opt<bool> DisablePPCUnaligned("disable-ppc-unaligned", 55 cl::desc("disable unaligned load/store generation on PPC"), cl::Hidden); 56 57 // FIXME: Remove this once the bug has been fixed! 58 extern cl::opt<bool> ANDIGlueBug; 59 60 PPCTargetLowering::PPCTargetLowering(const PPCTargetMachine &TM) 61 : TargetLowering(TM), 62 Subtarget(*TM.getSubtargetImpl()) { 63 // Use _setjmp/_longjmp instead of setjmp/longjmp. 64 setUseUnderscoreSetJmp(true); 65 setUseUnderscoreLongJmp(true); 66 67 // On PPC32/64, arguments smaller than 4/8 bytes are extended, so all 68 // arguments are at least 4/8 bytes aligned. 69 bool isPPC64 = Subtarget.isPPC64(); 70 setMinStackArgumentAlignment(isPPC64 ? 8:4); 71 72 // Set up the register classes. 73 addRegisterClass(MVT::i32, &PPC::GPRCRegClass); 74 addRegisterClass(MVT::f32, &PPC::F4RCRegClass); 75 addRegisterClass(MVT::f64, &PPC::F8RCRegClass); 76 77 // PowerPC has an i16 but no i8 (or i1) SEXTLOAD 78 for (MVT VT : MVT::integer_valuetypes()) { 79 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 80 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i8, Expand); 81 } 82 83 setTruncStoreAction(MVT::f64, MVT::f32, Expand); 84 85 // PowerPC has pre-inc load and store's. 86 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal); 87 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal); 88 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal); 89 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal); 90 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal); 91 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal); 92 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal); 93 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal); 94 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal); 95 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal); 96 97 if (Subtarget.useCRBits()) { 98 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 99 100 if (isPPC64 || Subtarget.hasFPCVT()) { 101 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Promote); 102 AddPromotedToType (ISD::SINT_TO_FP, MVT::i1, 103 isPPC64 ? MVT::i64 : MVT::i32); 104 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Promote); 105 AddPromotedToType (ISD::UINT_TO_FP, MVT::i1, 106 isPPC64 ? MVT::i64 : MVT::i32); 107 } else { 108 setOperationAction(ISD::SINT_TO_FP, MVT::i1, Custom); 109 setOperationAction(ISD::UINT_TO_FP, MVT::i1, Custom); 110 } 111 112 // PowerPC does not support direct load / store of condition registers 113 setOperationAction(ISD::LOAD, MVT::i1, Custom); 114 setOperationAction(ISD::STORE, MVT::i1, Custom); 115 116 // FIXME: Remove this once the ANDI glue bug is fixed: 117 if (ANDIGlueBug) 118 setOperationAction(ISD::TRUNCATE, MVT::i1, Custom); 119 120 for (MVT VT : MVT::integer_valuetypes()) { 121 setLoadExtAction(ISD::SEXTLOAD, VT, MVT::i1, Promote); 122 setLoadExtAction(ISD::ZEXTLOAD, VT, MVT::i1, Promote); 123 setTruncStoreAction(VT, MVT::i1, Expand); 124 } 125 126 addRegisterClass(MVT::i1, &PPC::CRBITRCRegClass); 127 } 128 129 // This is used in the ppcf128->int sequence. Note it has different semantics 130 // from FP_ROUND: that rounds to nearest, this rounds to zero. 131 setOperationAction(ISD::FP_ROUND_INREG, MVT::ppcf128, Custom); 132 133 // We do not currently implement these libm ops for PowerPC. 134 setOperationAction(ISD::FFLOOR, MVT::ppcf128, Expand); 135 setOperationAction(ISD::FCEIL, MVT::ppcf128, Expand); 136 setOperationAction(ISD::FTRUNC, MVT::ppcf128, Expand); 137 setOperationAction(ISD::FRINT, MVT::ppcf128, Expand); 138 setOperationAction(ISD::FNEARBYINT, MVT::ppcf128, Expand); 139 setOperationAction(ISD::FREM, MVT::ppcf128, Expand); 140 141 // PowerPC has no SREM/UREM instructions 142 setOperationAction(ISD::SREM, MVT::i32, Expand); 143 setOperationAction(ISD::UREM, MVT::i32, Expand); 144 setOperationAction(ISD::SREM, MVT::i64, Expand); 145 setOperationAction(ISD::UREM, MVT::i64, Expand); 146 147 // Don't use SMUL_LOHI/UMUL_LOHI or SDIVREM/UDIVREM to lower SREM/UREM. 148 setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); 149 setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand); 150 setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand); 151 setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand); 152 setOperationAction(ISD::UDIVREM, MVT::i32, Expand); 153 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); 154 setOperationAction(ISD::UDIVREM, MVT::i64, Expand); 155 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); 156 157 // We don't support sin/cos/sqrt/fmod/pow 158 setOperationAction(ISD::FSIN , MVT::f64, Expand); 159 setOperationAction(ISD::FCOS , MVT::f64, Expand); 160 setOperationAction(ISD::FSINCOS, MVT::f64, Expand); 161 setOperationAction(ISD::FREM , MVT::f64, Expand); 162 setOperationAction(ISD::FPOW , MVT::f64, Expand); 163 setOperationAction(ISD::FMA , MVT::f64, Legal); 164 setOperationAction(ISD::FSIN , MVT::f32, Expand); 165 setOperationAction(ISD::FCOS , MVT::f32, Expand); 166 setOperationAction(ISD::FSINCOS, MVT::f32, Expand); 167 setOperationAction(ISD::FREM , MVT::f32, Expand); 168 setOperationAction(ISD::FPOW , MVT::f32, Expand); 169 setOperationAction(ISD::FMA , MVT::f32, Legal); 170 171 setOperationAction(ISD::FLT_ROUNDS_, MVT::i32, Custom); 172 173 // If we're enabling GP optimizations, use hardware square root 174 if (!Subtarget.hasFSQRT() && 175 !(TM.Options.UnsafeFPMath && 176 Subtarget.hasFRSQRTE() && Subtarget.hasFRE())) 177 setOperationAction(ISD::FSQRT, MVT::f64, Expand); 178 179 if (!Subtarget.hasFSQRT() && 180 !(TM.Options.UnsafeFPMath && 181 Subtarget.hasFRSQRTES() && Subtarget.hasFRES())) 182 setOperationAction(ISD::FSQRT, MVT::f32, Expand); 183 184 if (Subtarget.hasFCPSGN()) { 185 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Legal); 186 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Legal); 187 } else { 188 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); 189 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); 190 } 191 192 if (Subtarget.hasFPRND()) { 193 setOperationAction(ISD::FFLOOR, MVT::f64, Legal); 194 setOperationAction(ISD::FCEIL, MVT::f64, Legal); 195 setOperationAction(ISD::FTRUNC, MVT::f64, Legal); 196 setOperationAction(ISD::FROUND, MVT::f64, Legal); 197 198 setOperationAction(ISD::FFLOOR, MVT::f32, Legal); 199 setOperationAction(ISD::FCEIL, MVT::f32, Legal); 200 setOperationAction(ISD::FTRUNC, MVT::f32, Legal); 201 setOperationAction(ISD::FROUND, MVT::f32, Legal); 202 } 203 204 // PowerPC does not have BSWAP, CTPOP or CTTZ 205 setOperationAction(ISD::BSWAP, MVT::i32 , Expand); 206 setOperationAction(ISD::CTTZ , MVT::i32 , Expand); 207 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand); 208 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand); 209 setOperationAction(ISD::BSWAP, MVT::i64 , Expand); 210 setOperationAction(ISD::CTTZ , MVT::i64 , Expand); 211 setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand); 212 setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand); 213 214 if (Subtarget.hasPOPCNTD()) { 215 setOperationAction(ISD::CTPOP, MVT::i32 , Legal); 216 setOperationAction(ISD::CTPOP, MVT::i64 , Legal); 217 } else { 218 setOperationAction(ISD::CTPOP, MVT::i32 , Expand); 219 setOperationAction(ISD::CTPOP, MVT::i64 , Expand); 220 } 221 222 // PowerPC does not have ROTR 223 setOperationAction(ISD::ROTR, MVT::i32 , Expand); 224 setOperationAction(ISD::ROTR, MVT::i64 , Expand); 225 226 if (!Subtarget.useCRBits()) { 227 // PowerPC does not have Select 228 setOperationAction(ISD::SELECT, MVT::i32, Expand); 229 setOperationAction(ISD::SELECT, MVT::i64, Expand); 230 setOperationAction(ISD::SELECT, MVT::f32, Expand); 231 setOperationAction(ISD::SELECT, MVT::f64, Expand); 232 } 233 234 // PowerPC wants to turn select_cc of FP into fsel when possible. 235 setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); 236 setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); 237 238 // PowerPC wants to optimize integer setcc a bit 239 if (!Subtarget.useCRBits()) 240 setOperationAction(ISD::SETCC, MVT::i32, Custom); 241 242 // PowerPC does not have BRCOND which requires SetCC 243 if (!Subtarget.useCRBits()) 244 setOperationAction(ISD::BRCOND, MVT::Other, Expand); 245 246 setOperationAction(ISD::BR_JT, MVT::Other, Expand); 247 248 // PowerPC turns FP_TO_SINT into FCTIWZ and some load/stores. 249 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 250 251 // PowerPC does not have [U|S]INT_TO_FP 252 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Expand); 253 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand); 254 255 setOperationAction(ISD::BITCAST, MVT::f32, Expand); 256 setOperationAction(ISD::BITCAST, MVT::i32, Expand); 257 setOperationAction(ISD::BITCAST, MVT::i64, Expand); 258 setOperationAction(ISD::BITCAST, MVT::f64, Expand); 259 260 // We cannot sextinreg(i1). Expand to shifts. 261 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); 262 263 // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support 264 // SjLj exception handling but a light-weight setjmp/longjmp replacement to 265 // support continuation, user-level threading, and etc.. As a result, no 266 // other SjLj exception interfaces are implemented and please don't build 267 // your own exception handling based on them. 268 // LLVM/Clang supports zero-cost DWARF exception handling. 269 setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom); 270 setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom); 271 272 // We want to legalize GlobalAddress and ConstantPool nodes into the 273 // appropriate instructions to materialize the address. 274 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); 275 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); 276 setOperationAction(ISD::BlockAddress, MVT::i32, Custom); 277 setOperationAction(ISD::ConstantPool, MVT::i32, Custom); 278 setOperationAction(ISD::JumpTable, MVT::i32, Custom); 279 setOperationAction(ISD::GlobalAddress, MVT::i64, Custom); 280 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom); 281 setOperationAction(ISD::BlockAddress, MVT::i64, Custom); 282 setOperationAction(ISD::ConstantPool, MVT::i64, Custom); 283 setOperationAction(ISD::JumpTable, MVT::i64, Custom); 284 285 // TRAP is legal. 286 setOperationAction(ISD::TRAP, MVT::Other, Legal); 287 288 // TRAMPOLINE is custom lowered. 289 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom); 290 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom); 291 292 // VASTART needs to be custom lowered to use the VarArgsFrameIndex 293 setOperationAction(ISD::VASTART , MVT::Other, Custom); 294 295 if (Subtarget.isSVR4ABI()) { 296 if (isPPC64) { 297 // VAARG always uses double-word chunks, so promote anything smaller. 298 setOperationAction(ISD::VAARG, MVT::i1, Promote); 299 AddPromotedToType (ISD::VAARG, MVT::i1, MVT::i64); 300 setOperationAction(ISD::VAARG, MVT::i8, Promote); 301 AddPromotedToType (ISD::VAARG, MVT::i8, MVT::i64); 302 setOperationAction(ISD::VAARG, MVT::i16, Promote); 303 AddPromotedToType (ISD::VAARG, MVT::i16, MVT::i64); 304 setOperationAction(ISD::VAARG, MVT::i32, Promote); 305 AddPromotedToType (ISD::VAARG, MVT::i32, MVT::i64); 306 setOperationAction(ISD::VAARG, MVT::Other, Expand); 307 } else { 308 // VAARG is custom lowered with the 32-bit SVR4 ABI. 309 setOperationAction(ISD::VAARG, MVT::Other, Custom); 310 setOperationAction(ISD::VAARG, MVT::i64, Custom); 311 } 312 } else 313 setOperationAction(ISD::VAARG, MVT::Other, Expand); 314 315 if (Subtarget.isSVR4ABI() && !isPPC64) 316 // VACOPY is custom lowered with the 32-bit SVR4 ABI. 317 setOperationAction(ISD::VACOPY , MVT::Other, Custom); 318 else 319 setOperationAction(ISD::VACOPY , MVT::Other, Expand); 320 321 // Use the default implementation. 322 setOperationAction(ISD::VAEND , MVT::Other, Expand); 323 setOperationAction(ISD::STACKSAVE , MVT::Other, Expand); 324 setOperationAction(ISD::STACKRESTORE , MVT::Other, Custom); 325 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom); 326 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64 , Custom); 327 328 // We want to custom lower some of our intrinsics. 329 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 330 331 // To handle counter-based loop conditions. 332 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::i1, Custom); 333 334 // Comparisons that require checking two conditions. 335 setCondCodeAction(ISD::SETULT, MVT::f32, Expand); 336 setCondCodeAction(ISD::SETULT, MVT::f64, Expand); 337 setCondCodeAction(ISD::SETUGT, MVT::f32, Expand); 338 setCondCodeAction(ISD::SETUGT, MVT::f64, Expand); 339 setCondCodeAction(ISD::SETUEQ, MVT::f32, Expand); 340 setCondCodeAction(ISD::SETUEQ, MVT::f64, Expand); 341 setCondCodeAction(ISD::SETOGE, MVT::f32, Expand); 342 setCondCodeAction(ISD::SETOGE, MVT::f64, Expand); 343 setCondCodeAction(ISD::SETOLE, MVT::f32, Expand); 344 setCondCodeAction(ISD::SETOLE, MVT::f64, Expand); 345 setCondCodeAction(ISD::SETONE, MVT::f32, Expand); 346 setCondCodeAction(ISD::SETONE, MVT::f64, Expand); 347 348 if (Subtarget.has64BitSupport()) { 349 // They also have instructions for converting between i64 and fp. 350 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); 351 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Expand); 352 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); 353 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand); 354 // This is just the low 32 bits of a (signed) fp->i64 conversion. 355 // We cannot do this with Promote because i64 is not a legal type. 356 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 357 358 if (Subtarget.hasLFIWAX() || Subtarget.isPPC64()) 359 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 360 } else { 361 // PowerPC does not have FP_TO_UINT on 32-bit implementations. 362 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand); 363 } 364 365 // With the instructions enabled under FPCVT, we can do everything. 366 if (Subtarget.hasFPCVT()) { 367 if (Subtarget.has64BitSupport()) { 368 setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom); 369 setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom); 370 setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom); 371 setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom); 372 } 373 374 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); 375 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom); 376 setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); 377 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom); 378 } 379 380 if (Subtarget.use64BitRegs()) { 381 // 64-bit PowerPC implementations can support i64 types directly 382 addRegisterClass(MVT::i64, &PPC::G8RCRegClass); 383 // BUILD_PAIR can't be handled natively, and should be expanded to shl/or 384 setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand); 385 // 64-bit PowerPC wants to expand i128 shifts itself. 386 setOperationAction(ISD::SHL_PARTS, MVT::i64, Custom); 387 setOperationAction(ISD::SRA_PARTS, MVT::i64, Custom); 388 setOperationAction(ISD::SRL_PARTS, MVT::i64, Custom); 389 } else { 390 // 32-bit PowerPC wants to expand i64 shifts itself. 391 setOperationAction(ISD::SHL_PARTS, MVT::i32, Custom); 392 setOperationAction(ISD::SRA_PARTS, MVT::i32, Custom); 393 setOperationAction(ISD::SRL_PARTS, MVT::i32, Custom); 394 } 395 396 if (Subtarget.hasAltivec()) { 397 // First set operation action for all vector types to expand. Then we 398 // will selectively turn on ones that can be effectively codegen'd. 399 for (MVT VT : MVT::vector_valuetypes()) { 400 // add/sub are legal for all supported vector VT's. 401 setOperationAction(ISD::ADD , VT, Legal); 402 setOperationAction(ISD::SUB , VT, Legal); 403 404 // We promote all shuffles to v16i8. 405 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Promote); 406 AddPromotedToType (ISD::VECTOR_SHUFFLE, VT, MVT::v16i8); 407 408 // We promote all non-typed operations to v4i32. 409 setOperationAction(ISD::AND , VT, Promote); 410 AddPromotedToType (ISD::AND , VT, MVT::v4i32); 411 setOperationAction(ISD::OR , VT, Promote); 412 AddPromotedToType (ISD::OR , VT, MVT::v4i32); 413 setOperationAction(ISD::XOR , VT, Promote); 414 AddPromotedToType (ISD::XOR , VT, MVT::v4i32); 415 setOperationAction(ISD::LOAD , VT, Promote); 416 AddPromotedToType (ISD::LOAD , VT, MVT::v4i32); 417 setOperationAction(ISD::SELECT, VT, Promote); 418 AddPromotedToType (ISD::SELECT, VT, MVT::v4i32); 419 setOperationAction(ISD::STORE, VT, Promote); 420 AddPromotedToType (ISD::STORE, VT, MVT::v4i32); 421 422 // No other operations are legal. 423 setOperationAction(ISD::MUL , VT, Expand); 424 setOperationAction(ISD::SDIV, VT, Expand); 425 setOperationAction(ISD::SREM, VT, Expand); 426 setOperationAction(ISD::UDIV, VT, Expand); 427 setOperationAction(ISD::UREM, VT, Expand); 428 setOperationAction(ISD::FDIV, VT, Expand); 429 setOperationAction(ISD::FREM, VT, Expand); 430 setOperationAction(ISD::FNEG, VT, Expand); 431 setOperationAction(ISD::FSQRT, VT, Expand); 432 setOperationAction(ISD::FLOG, VT, Expand); 433 setOperationAction(ISD::FLOG10, VT, Expand); 434 setOperationAction(ISD::FLOG2, VT, Expand); 435 setOperationAction(ISD::FEXP, VT, Expand); 436 setOperationAction(ISD::FEXP2, VT, Expand); 437 setOperationAction(ISD::FSIN, VT, Expand); 438 setOperationAction(ISD::FCOS, VT, Expand); 439 setOperationAction(ISD::FABS, VT, Expand); 440 setOperationAction(ISD::FPOWI, VT, Expand); 441 setOperationAction(ISD::FFLOOR, VT, Expand); 442 setOperationAction(ISD::FCEIL, VT, Expand); 443 setOperationAction(ISD::FTRUNC, VT, Expand); 444 setOperationAction(ISD::FRINT, VT, Expand); 445 setOperationAction(ISD::FNEARBYINT, VT, Expand); 446 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Expand); 447 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand); 448 setOperationAction(ISD::BUILD_VECTOR, VT, Expand); 449 setOperationAction(ISD::MULHU, VT, Expand); 450 setOperationAction(ISD::MULHS, VT, Expand); 451 setOperationAction(ISD::UMUL_LOHI, VT, Expand); 452 setOperationAction(ISD::SMUL_LOHI, VT, Expand); 453 setOperationAction(ISD::UDIVREM, VT, Expand); 454 setOperationAction(ISD::SDIVREM, VT, Expand); 455 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Expand); 456 setOperationAction(ISD::FPOW, VT, Expand); 457 setOperationAction(ISD::BSWAP, VT, Expand); 458 setOperationAction(ISD::CTPOP, VT, Expand); 459 setOperationAction(ISD::CTLZ, VT, Expand); 460 setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand); 461 setOperationAction(ISD::CTTZ, VT, Expand); 462 setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand); 463 setOperationAction(ISD::VSELECT, VT, Expand); 464 setOperationAction(ISD::SIGN_EXTEND_INREG, VT, Expand); 465 466 for (MVT InnerVT : MVT::vector_valuetypes()) { 467 setTruncStoreAction(VT, InnerVT, Expand); 468 setLoadExtAction(ISD::SEXTLOAD, VT, InnerVT, Expand); 469 setLoadExtAction(ISD::ZEXTLOAD, VT, InnerVT, Expand); 470 setLoadExtAction(ISD::EXTLOAD, VT, InnerVT, Expand); 471 } 472 } 473 474 // We can custom expand all VECTOR_SHUFFLEs to VPERM, others we can handle 475 // with merges, splats, etc. 476 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v16i8, Custom); 477 478 setOperationAction(ISD::AND , MVT::v4i32, Legal); 479 setOperationAction(ISD::OR , MVT::v4i32, Legal); 480 setOperationAction(ISD::XOR , MVT::v4i32, Legal); 481 setOperationAction(ISD::LOAD , MVT::v4i32, Legal); 482 setOperationAction(ISD::SELECT, MVT::v4i32, 483 Subtarget.useCRBits() ? Legal : Expand); 484 setOperationAction(ISD::STORE , MVT::v4i32, Legal); 485 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal); 486 setOperationAction(ISD::FP_TO_UINT, MVT::v4i32, Legal); 487 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal); 488 setOperationAction(ISD::UINT_TO_FP, MVT::v4i32, Legal); 489 setOperationAction(ISD::FFLOOR, MVT::v4f32, Legal); 490 setOperationAction(ISD::FCEIL, MVT::v4f32, Legal); 491 setOperationAction(ISD::FTRUNC, MVT::v4f32, Legal); 492 setOperationAction(ISD::FNEARBYINT, MVT::v4f32, Legal); 493 494 addRegisterClass(MVT::v4f32, &PPC::VRRCRegClass); 495 addRegisterClass(MVT::v4i32, &PPC::VRRCRegClass); 496 addRegisterClass(MVT::v8i16, &PPC::VRRCRegClass); 497 addRegisterClass(MVT::v16i8, &PPC::VRRCRegClass); 498 499 setOperationAction(ISD::MUL, MVT::v4f32, Legal); 500 setOperationAction(ISD::FMA, MVT::v4f32, Legal); 501 502 if (TM.Options.UnsafeFPMath || Subtarget.hasVSX()) { 503 setOperationAction(ISD::FDIV, MVT::v4f32, Legal); 504 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal); 505 } 506 507 setOperationAction(ISD::MUL, MVT::v4i32, Custom); 508 setOperationAction(ISD::MUL, MVT::v8i16, Custom); 509 setOperationAction(ISD::MUL, MVT::v16i8, Custom); 510 511 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4f32, Custom); 512 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i32, Custom); 513 514 setOperationAction(ISD::BUILD_VECTOR, MVT::v16i8, Custom); 515 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i16, Custom); 516 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i32, Custom); 517 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom); 518 519 // Altivec does not contain unordered floating-point compare instructions 520 setCondCodeAction(ISD::SETUO, MVT::v4f32, Expand); 521 setCondCodeAction(ISD::SETUEQ, MVT::v4f32, Expand); 522 setCondCodeAction(ISD::SETO, MVT::v4f32, Expand); 523 setCondCodeAction(ISD::SETONE, MVT::v4f32, Expand); 524 525 if (Subtarget.hasVSX()) { 526 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f64, Legal); 527 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Legal); 528 529 setOperationAction(ISD::FFLOOR, MVT::v2f64, Legal); 530 setOperationAction(ISD::FCEIL, MVT::v2f64, Legal); 531 setOperationAction(ISD::FTRUNC, MVT::v2f64, Legal); 532 setOperationAction(ISD::FNEARBYINT, MVT::v2f64, Legal); 533 setOperationAction(ISD::FROUND, MVT::v2f64, Legal); 534 535 setOperationAction(ISD::FROUND, MVT::v4f32, Legal); 536 537 setOperationAction(ISD::MUL, MVT::v2f64, Legal); 538 setOperationAction(ISD::FMA, MVT::v2f64, Legal); 539 540 setOperationAction(ISD::FDIV, MVT::v2f64, Legal); 541 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal); 542 543 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal); 544 setOperationAction(ISD::VSELECT, MVT::v8i16, Legal); 545 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal); 546 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal); 547 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal); 548 549 // Share the Altivec comparison restrictions. 550 setCondCodeAction(ISD::SETUO, MVT::v2f64, Expand); 551 setCondCodeAction(ISD::SETUEQ, MVT::v2f64, Expand); 552 setCondCodeAction(ISD::SETO, MVT::v2f64, Expand); 553 setCondCodeAction(ISD::SETONE, MVT::v2f64, Expand); 554 555 setOperationAction(ISD::LOAD, MVT::v2f64, Legal); 556 setOperationAction(ISD::STORE, MVT::v2f64, Legal); 557 558 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Legal); 559 560 addRegisterClass(MVT::f64, &PPC::VSFRCRegClass); 561 562 addRegisterClass(MVT::v4f32, &PPC::VSRCRegClass); 563 addRegisterClass(MVT::v2f64, &PPC::VSRCRegClass); 564 565 // VSX v2i64 only supports non-arithmetic operations. 566 setOperationAction(ISD::ADD, MVT::v2i64, Expand); 567 setOperationAction(ISD::SUB, MVT::v2i64, Expand); 568 569 setOperationAction(ISD::SHL, MVT::v2i64, Expand); 570 setOperationAction(ISD::SRA, MVT::v2i64, Expand); 571 setOperationAction(ISD::SRL, MVT::v2i64, Expand); 572 573 setOperationAction(ISD::SETCC, MVT::v2i64, Custom); 574 575 setOperationAction(ISD::LOAD, MVT::v2i64, Promote); 576 AddPromotedToType (ISD::LOAD, MVT::v2i64, MVT::v2f64); 577 setOperationAction(ISD::STORE, MVT::v2i64, Promote); 578 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64); 579 580 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Legal); 581 582 setOperationAction(ISD::SINT_TO_FP, MVT::v2i64, Legal); 583 setOperationAction(ISD::UINT_TO_FP, MVT::v2i64, Legal); 584 setOperationAction(ISD::FP_TO_SINT, MVT::v2i64, Legal); 585 setOperationAction(ISD::FP_TO_UINT, MVT::v2i64, Legal); 586 587 // Vector operation legalization checks the result type of 588 // SIGN_EXTEND_INREG, overall legalization checks the inner type. 589 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i64, Legal); 590 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i32, Legal); 591 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i16, Custom); 592 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::v2i8, Custom); 593 594 addRegisterClass(MVT::v2i64, &PPC::VSRCRegClass); 595 } 596 } 597 598 if (Subtarget.has64BitSupport()) 599 setOperationAction(ISD::PREFETCH, MVT::Other, Legal); 600 601 setOperationAction(ISD::READCYCLECOUNTER, MVT::i64, isPPC64 ? Legal : Custom); 602 603 if (!isPPC64) { 604 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Expand); 605 setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Expand); 606 } 607 608 setBooleanContents(ZeroOrOneBooleanContent); 609 // Altivec instructions set fields to all zeros or all ones. 610 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent); 611 612 if (!isPPC64) { 613 // These libcalls are not available in 32-bit. 614 setLibcallName(RTLIB::SHL_I128, nullptr); 615 setLibcallName(RTLIB::SRL_I128, nullptr); 616 setLibcallName(RTLIB::SRA_I128, nullptr); 617 } 618 619 if (isPPC64) { 620 setStackPointerRegisterToSaveRestore(PPC::X1); 621 setExceptionPointerRegister(PPC::X3); 622 setExceptionSelectorRegister(PPC::X4); 623 } else { 624 setStackPointerRegisterToSaveRestore(PPC::R1); 625 setExceptionPointerRegister(PPC::R3); 626 setExceptionSelectorRegister(PPC::R4); 627 } 628 629 // We have target-specific dag combine patterns for the following nodes: 630 setTargetDAGCombine(ISD::SINT_TO_FP); 631 if (Subtarget.hasFPCVT()) 632 setTargetDAGCombine(ISD::UINT_TO_FP); 633 setTargetDAGCombine(ISD::LOAD); 634 setTargetDAGCombine(ISD::STORE); 635 setTargetDAGCombine(ISD::BR_CC); 636 if (Subtarget.useCRBits()) 637 setTargetDAGCombine(ISD::BRCOND); 638 setTargetDAGCombine(ISD::BSWAP); 639 setTargetDAGCombine(ISD::INTRINSIC_WO_CHAIN); 640 setTargetDAGCombine(ISD::INTRINSIC_W_CHAIN); 641 setTargetDAGCombine(ISD::INTRINSIC_VOID); 642 643 setTargetDAGCombine(ISD::SIGN_EXTEND); 644 setTargetDAGCombine(ISD::ZERO_EXTEND); 645 setTargetDAGCombine(ISD::ANY_EXTEND); 646 647 if (Subtarget.useCRBits()) { 648 setTargetDAGCombine(ISD::TRUNCATE); 649 setTargetDAGCombine(ISD::SETCC); 650 setTargetDAGCombine(ISD::SELECT_CC); 651 } 652 653 // Use reciprocal estimates. 654 if (TM.Options.UnsafeFPMath) { 655 setTargetDAGCombine(ISD::FDIV); 656 setTargetDAGCombine(ISD::FSQRT); 657 } 658 659 // Darwin long double math library functions have $LDBL128 appended. 660 if (Subtarget.isDarwin()) { 661 setLibcallName(RTLIB::COS_PPCF128, "cosl$LDBL128"); 662 setLibcallName(RTLIB::POW_PPCF128, "powl$LDBL128"); 663 setLibcallName(RTLIB::REM_PPCF128, "fmodl$LDBL128"); 664 setLibcallName(RTLIB::SIN_PPCF128, "sinl$LDBL128"); 665 setLibcallName(RTLIB::SQRT_PPCF128, "sqrtl$LDBL128"); 666 setLibcallName(RTLIB::LOG_PPCF128, "logl$LDBL128"); 667 setLibcallName(RTLIB::LOG2_PPCF128, "log2l$LDBL128"); 668 setLibcallName(RTLIB::LOG10_PPCF128, "log10l$LDBL128"); 669 setLibcallName(RTLIB::EXP_PPCF128, "expl$LDBL128"); 670 setLibcallName(RTLIB::EXP2_PPCF128, "exp2l$LDBL128"); 671 } 672 673 // With 32 condition bits, we don't need to sink (and duplicate) compares 674 // aggressively in CodeGenPrep. 675 if (Subtarget.useCRBits()) 676 setHasMultipleConditionRegisters(); 677 678 setMinFunctionAlignment(2); 679 if (Subtarget.isDarwin()) 680 setPrefFunctionAlignment(4); 681 682 switch (Subtarget.getDarwinDirective()) { 683 default: break; 684 case PPC::DIR_970: 685 case PPC::DIR_A2: 686 case PPC::DIR_E500mc: 687 case PPC::DIR_E5500: 688 case PPC::DIR_PWR4: 689 case PPC::DIR_PWR5: 690 case PPC::DIR_PWR5X: 691 case PPC::DIR_PWR6: 692 case PPC::DIR_PWR6X: 693 case PPC::DIR_PWR7: 694 case PPC::DIR_PWR8: 695 setPrefFunctionAlignment(4); 696 setPrefLoopAlignment(4); 697 break; 698 } 699 700 setInsertFencesForAtomic(true); 701 702 if (Subtarget.enableMachineScheduler()) 703 setSchedulingPreference(Sched::Source); 704 else 705 setSchedulingPreference(Sched::Hybrid); 706 707 computeRegisterProperties(); 708 709 // The Freescale cores do better with aggressive inlining of memcpy and 710 // friends. GCC uses same threshold of 128 bytes (= 32 word stores). 711 if (Subtarget.getDarwinDirective() == PPC::DIR_E500mc || 712 Subtarget.getDarwinDirective() == PPC::DIR_E5500) { 713 MaxStoresPerMemset = 32; 714 MaxStoresPerMemsetOptSize = 16; 715 MaxStoresPerMemcpy = 32; 716 MaxStoresPerMemcpyOptSize = 8; 717 MaxStoresPerMemmove = 32; 718 MaxStoresPerMemmoveOptSize = 8; 719 } 720 } 721 722 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine 723 /// the desired ByVal argument alignment. 724 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign, 725 unsigned MaxMaxAlign) { 726 if (MaxAlign == MaxMaxAlign) 727 return; 728 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) { 729 if (MaxMaxAlign >= 32 && VTy->getBitWidth() >= 256) 730 MaxAlign = 32; 731 else if (VTy->getBitWidth() >= 128 && MaxAlign < 16) 732 MaxAlign = 16; 733 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { 734 unsigned EltAlign = 0; 735 getMaxByValAlign(ATy->getElementType(), EltAlign, MaxMaxAlign); 736 if (EltAlign > MaxAlign) 737 MaxAlign = EltAlign; 738 } else if (StructType *STy = dyn_cast<StructType>(Ty)) { 739 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { 740 unsigned EltAlign = 0; 741 getMaxByValAlign(STy->getElementType(i), EltAlign, MaxMaxAlign); 742 if (EltAlign > MaxAlign) 743 MaxAlign = EltAlign; 744 if (MaxAlign == MaxMaxAlign) 745 break; 746 } 747 } 748 } 749 750 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate 751 /// function arguments in the caller parameter area. 752 unsigned PPCTargetLowering::getByValTypeAlignment(Type *Ty) const { 753 // Darwin passes everything on 4 byte boundary. 754 if (Subtarget.isDarwin()) 755 return 4; 756 757 // 16byte and wider vectors are passed on 16byte boundary. 758 // The rest is 8 on PPC64 and 4 on PPC32 boundary. 759 unsigned Align = Subtarget.isPPC64() ? 8 : 4; 760 if (Subtarget.hasAltivec() || Subtarget.hasQPX()) 761 getMaxByValAlign(Ty, Align, Subtarget.hasQPX() ? 32 : 16); 762 return Align; 763 } 764 765 const char *PPCTargetLowering::getTargetNodeName(unsigned Opcode) const { 766 switch (Opcode) { 767 default: return nullptr; 768 case PPCISD::FSEL: return "PPCISD::FSEL"; 769 case PPCISD::FCFID: return "PPCISD::FCFID"; 770 case PPCISD::FCFIDU: return "PPCISD::FCFIDU"; 771 case PPCISD::FCFIDS: return "PPCISD::FCFIDS"; 772 case PPCISD::FCFIDUS: return "PPCISD::FCFIDUS"; 773 case PPCISD::FCTIDZ: return "PPCISD::FCTIDZ"; 774 case PPCISD::FCTIWZ: return "PPCISD::FCTIWZ"; 775 case PPCISD::FCTIDUZ: return "PPCISD::FCTIDUZ"; 776 case PPCISD::FCTIWUZ: return "PPCISD::FCTIWUZ"; 777 case PPCISD::FRE: return "PPCISD::FRE"; 778 case PPCISD::FRSQRTE: return "PPCISD::FRSQRTE"; 779 case PPCISD::STFIWX: return "PPCISD::STFIWX"; 780 case PPCISD::VMADDFP: return "PPCISD::VMADDFP"; 781 case PPCISD::VNMSUBFP: return "PPCISD::VNMSUBFP"; 782 case PPCISD::VPERM: return "PPCISD::VPERM"; 783 case PPCISD::CMPB: return "PPCISD::CMPB"; 784 case PPCISD::Hi: return "PPCISD::Hi"; 785 case PPCISD::Lo: return "PPCISD::Lo"; 786 case PPCISD::TOC_ENTRY: return "PPCISD::TOC_ENTRY"; 787 case PPCISD::DYNALLOC: return "PPCISD::DYNALLOC"; 788 case PPCISD::GlobalBaseReg: return "PPCISD::GlobalBaseReg"; 789 case PPCISD::SRL: return "PPCISD::SRL"; 790 case PPCISD::SRA: return "PPCISD::SRA"; 791 case PPCISD::SHL: return "PPCISD::SHL"; 792 case PPCISD::CALL: return "PPCISD::CALL"; 793 case PPCISD::CALL_NOP: return "PPCISD::CALL_NOP"; 794 case PPCISD::CALL_TLS: return "PPCISD::CALL_TLS"; 795 case PPCISD::CALL_NOP_TLS: return "PPCISD::CALL_NOP_TLS"; 796 case PPCISD::MTCTR: return "PPCISD::MTCTR"; 797 case PPCISD::BCTRL: return "PPCISD::BCTRL"; 798 case PPCISD::BCTRL_LOAD_TOC: return "PPCISD::BCTRL_LOAD_TOC"; 799 case PPCISD::RET_FLAG: return "PPCISD::RET_FLAG"; 800 case PPCISD::READ_TIME_BASE: return "PPCISD::READ_TIME_BASE"; 801 case PPCISD::EH_SJLJ_SETJMP: return "PPCISD::EH_SJLJ_SETJMP"; 802 case PPCISD::EH_SJLJ_LONGJMP: return "PPCISD::EH_SJLJ_LONGJMP"; 803 case PPCISD::MFOCRF: return "PPCISD::MFOCRF"; 804 case PPCISD::VCMP: return "PPCISD::VCMP"; 805 case PPCISD::VCMPo: return "PPCISD::VCMPo"; 806 case PPCISD::LBRX: return "PPCISD::LBRX"; 807 case PPCISD::STBRX: return "PPCISD::STBRX"; 808 case PPCISD::LFIWAX: return "PPCISD::LFIWAX"; 809 case PPCISD::LFIWZX: return "PPCISD::LFIWZX"; 810 case PPCISD::LARX: return "PPCISD::LARX"; 811 case PPCISD::STCX: return "PPCISD::STCX"; 812 case PPCISD::COND_BRANCH: return "PPCISD::COND_BRANCH"; 813 case PPCISD::BDNZ: return "PPCISD::BDNZ"; 814 case PPCISD::BDZ: return "PPCISD::BDZ"; 815 case PPCISD::MFFS: return "PPCISD::MFFS"; 816 case PPCISD::FADDRTZ: return "PPCISD::FADDRTZ"; 817 case PPCISD::TC_RETURN: return "PPCISD::TC_RETURN"; 818 case PPCISD::CR6SET: return "PPCISD::CR6SET"; 819 case PPCISD::CR6UNSET: return "PPCISD::CR6UNSET"; 820 case PPCISD::ADDIS_TOC_HA: return "PPCISD::ADDIS_TOC_HA"; 821 case PPCISD::LD_TOC_L: return "PPCISD::LD_TOC_L"; 822 case PPCISD::ADDI_TOC_L: return "PPCISD::ADDI_TOC_L"; 823 case PPCISD::PPC32_GOT: return "PPCISD::PPC32_GOT"; 824 case PPCISD::ADDIS_GOT_TPREL_HA: return "PPCISD::ADDIS_GOT_TPREL_HA"; 825 case PPCISD::LD_GOT_TPREL_L: return "PPCISD::LD_GOT_TPREL_L"; 826 case PPCISD::ADD_TLS: return "PPCISD::ADD_TLS"; 827 case PPCISD::ADDIS_TLSGD_HA: return "PPCISD::ADDIS_TLSGD_HA"; 828 case PPCISD::ADDI_TLSGD_L: return "PPCISD::ADDI_TLSGD_L"; 829 case PPCISD::ADDIS_TLSLD_HA: return "PPCISD::ADDIS_TLSLD_HA"; 830 case PPCISD::ADDI_TLSLD_L: return "PPCISD::ADDI_TLSLD_L"; 831 case PPCISD::ADDIS_DTPREL_HA: return "PPCISD::ADDIS_DTPREL_HA"; 832 case PPCISD::ADDI_DTPREL_L: return "PPCISD::ADDI_DTPREL_L"; 833 case PPCISD::VADD_SPLAT: return "PPCISD::VADD_SPLAT"; 834 case PPCISD::SC: return "PPCISD::SC"; 835 } 836 } 837 838 EVT PPCTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const { 839 if (!VT.isVector()) 840 return Subtarget.useCRBits() ? MVT::i1 : MVT::i32; 841 return VT.changeVectorElementTypeToInteger(); 842 } 843 844 bool PPCTargetLowering::enableAggressiveFMAFusion(EVT VT) const { 845 assert(VT.isFloatingPoint() && "Non-floating-point FMA?"); 846 return true; 847 } 848 849 //===----------------------------------------------------------------------===// 850 // Node matching predicates, for use by the tblgen matching code. 851 //===----------------------------------------------------------------------===// 852 853 /// isFloatingPointZero - Return true if this is 0.0 or -0.0. 854 static bool isFloatingPointZero(SDValue Op) { 855 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Op)) 856 return CFP->getValueAPF().isZero(); 857 else if (ISD::isEXTLoad(Op.getNode()) || ISD::isNON_EXTLoad(Op.getNode())) { 858 // Maybe this has already been legalized into the constant pool? 859 if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op.getOperand(1))) 860 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CP->getConstVal())) 861 return CFP->getValueAPF().isZero(); 862 } 863 return false; 864 } 865 866 /// isConstantOrUndef - Op is either an undef node or a ConstantSDNode. Return 867 /// true if Op is undef or if it matches the specified value. 868 static bool isConstantOrUndef(int Op, int Val) { 869 return Op < 0 || Op == Val; 870 } 871 872 /// isVPKUHUMShuffleMask - Return true if this is the shuffle mask for a 873 /// VPKUHUM instruction. 874 /// The ShuffleKind distinguishes between big-endian operations with 875 /// two different inputs (0), either-endian operations with two identical 876 /// inputs (1), and little-endian operantion with two different inputs (2). 877 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td). 878 bool PPC::isVPKUHUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind, 879 SelectionDAG &DAG) { 880 bool IsLE = DAG.getSubtarget().getDataLayout()->isLittleEndian(); 881 if (ShuffleKind == 0) { 882 if (IsLE) 883 return false; 884 for (unsigned i = 0; i != 16; ++i) 885 if (!isConstantOrUndef(N->getMaskElt(i), i*2+1)) 886 return false; 887 } else if (ShuffleKind == 2) { 888 if (!IsLE) 889 return false; 890 for (unsigned i = 0; i != 16; ++i) 891 if (!isConstantOrUndef(N->getMaskElt(i), i*2)) 892 return false; 893 } else if (ShuffleKind == 1) { 894 unsigned j = IsLE ? 0 : 1; 895 for (unsigned i = 0; i != 8; ++i) 896 if (!isConstantOrUndef(N->getMaskElt(i), i*2+j) || 897 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j)) 898 return false; 899 } 900 return true; 901 } 902 903 /// isVPKUWUMShuffleMask - Return true if this is the shuffle mask for a 904 /// VPKUWUM instruction. 905 /// The ShuffleKind distinguishes between big-endian operations with 906 /// two different inputs (0), either-endian operations with two identical 907 /// inputs (1), and little-endian operantion with two different inputs (2). 908 /// For the latter, the input operands are swapped (see PPCInstrAltivec.td). 909 bool PPC::isVPKUWUMShuffleMask(ShuffleVectorSDNode *N, unsigned ShuffleKind, 910 SelectionDAG &DAG) { 911 bool IsLE = DAG.getSubtarget().getDataLayout()->isLittleEndian(); 912 if (ShuffleKind == 0) { 913 if (IsLE) 914 return false; 915 for (unsigned i = 0; i != 16; i += 2) 916 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+2) || 917 !isConstantOrUndef(N->getMaskElt(i+1), i*2+3)) 918 return false; 919 } else if (ShuffleKind == 2) { 920 if (!IsLE) 921 return false; 922 for (unsigned i = 0; i != 16; i += 2) 923 if (!isConstantOrUndef(N->getMaskElt(i ), i*2) || 924 !isConstantOrUndef(N->getMaskElt(i+1), i*2+1)) 925 return false; 926 } else if (ShuffleKind == 1) { 927 unsigned j = IsLE ? 0 : 2; 928 for (unsigned i = 0; i != 8; i += 2) 929 if (!isConstantOrUndef(N->getMaskElt(i ), i*2+j) || 930 !isConstantOrUndef(N->getMaskElt(i+1), i*2+j+1) || 931 !isConstantOrUndef(N->getMaskElt(i+8), i*2+j) || 932 !isConstantOrUndef(N->getMaskElt(i+9), i*2+j+1)) 933 return false; 934 } 935 return true; 936 } 937 938 /// isVMerge - Common function, used to match vmrg* shuffles. 939 /// 940 static bool isVMerge(ShuffleVectorSDNode *N, unsigned UnitSize, 941 unsigned LHSStart, unsigned RHSStart) { 942 if (N->getValueType(0) != MVT::v16i8) 943 return false; 944 assert((UnitSize == 1 || UnitSize == 2 || UnitSize == 4) && 945 "Unsupported merge size!"); 946 947 for (unsigned i = 0; i != 8/UnitSize; ++i) // Step over units 948 for (unsigned j = 0; j != UnitSize; ++j) { // Step over bytes within unit 949 if (!isConstantOrUndef(N->getMaskElt(i*UnitSize*2+j), 950 LHSStart+j+i*UnitSize) || 951 !isConstantOrUndef(N->getMaskElt(i*UnitSize*2+UnitSize+j), 952 RHSStart+j+i*UnitSize)) 953 return false; 954 } 955 return true; 956 } 957 958 /// isVMRGLShuffleMask - Return true if this is a shuffle mask suitable for 959 /// a VMRGL* instruction with the specified unit size (1,2 or 4 bytes). 960 /// The ShuffleKind distinguishes between big-endian merges with two 961 /// different inputs (0), either-endian merges with two identical inputs (1), 962 /// and little-endian merges with two different inputs (2). For the latter, 963 /// the input operands are swapped (see PPCInstrAltivec.td). 964 bool PPC::isVMRGLShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize, 965 unsigned ShuffleKind, SelectionDAG &DAG) { 966 if (DAG.getSubtarget().getDataLayout()->isLittleEndian()) { 967 if (ShuffleKind == 1) // unary 968 return isVMerge(N, UnitSize, 0, 0); 969 else if (ShuffleKind == 2) // swapped 970 return isVMerge(N, UnitSize, 0, 16); 971 else 972 return false; 973 } else { 974 if (ShuffleKind == 1) // unary 975 return isVMerge(N, UnitSize, 8, 8); 976 else if (ShuffleKind == 0) // normal 977 return isVMerge(N, UnitSize, 8, 24); 978 else 979 return false; 980 } 981 } 982 983 /// isVMRGHShuffleMask - Return true if this is a shuffle mask suitable for 984 /// a VMRGH* instruction with the specified unit size (1,2 or 4 bytes). 985 /// The ShuffleKind distinguishes between big-endian merges with two 986 /// different inputs (0), either-endian merges with two identical inputs (1), 987 /// and little-endian merges with two different inputs (2). For the latter, 988 /// the input operands are swapped (see PPCInstrAltivec.td). 989 bool PPC::isVMRGHShuffleMask(ShuffleVectorSDNode *N, unsigned UnitSize, 990 unsigned ShuffleKind, SelectionDAG &DAG) { 991 if (DAG.getSubtarget().getDataLayout()->isLittleEndian()) { 992 if (ShuffleKind == 1) // unary 993 return isVMerge(N, UnitSize, 8, 8); 994 else if (ShuffleKind == 2) // swapped 995 return isVMerge(N, UnitSize, 8, 24); 996 else 997 return false; 998 } else { 999 if (ShuffleKind == 1) // unary 1000 return isVMerge(N, UnitSize, 0, 0); 1001 else if (ShuffleKind == 0) // normal 1002 return isVMerge(N, UnitSize, 0, 16); 1003 else 1004 return false; 1005 } 1006 } 1007 1008 1009 /// isVSLDOIShuffleMask - If this is a vsldoi shuffle mask, return the shift 1010 /// amount, otherwise return -1. 1011 /// The ShuffleKind distinguishes between big-endian operations with two 1012 /// different inputs (0), either-endian operations with two identical inputs 1013 /// (1), and little-endian operations with two different inputs (2). For the 1014 /// latter, the input operands are swapped (see PPCInstrAltivec.td). 1015 int PPC::isVSLDOIShuffleMask(SDNode *N, unsigned ShuffleKind, 1016 SelectionDAG &DAG) { 1017 if (N->getValueType(0) != MVT::v16i8) 1018 return -1; 1019 1020 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); 1021 1022 // Find the first non-undef value in the shuffle mask. 1023 unsigned i; 1024 for (i = 0; i != 16 && SVOp->getMaskElt(i) < 0; ++i) 1025 /*search*/; 1026 1027 if (i == 16) return -1; // all undef. 1028 1029 // Otherwise, check to see if the rest of the elements are consecutively 1030 // numbered from this value. 1031 unsigned ShiftAmt = SVOp->getMaskElt(i); 1032 if (ShiftAmt < i) return -1; 1033 1034 ShiftAmt -= i; 1035 bool isLE = DAG.getTarget().getSubtargetImpl()->getDataLayout()-> 1036 isLittleEndian(); 1037 1038 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { 1039 // Check the rest of the elements to see if they are consecutive. 1040 for (++i; i != 16; ++i) 1041 if (!isConstantOrUndef(SVOp->getMaskElt(i), ShiftAmt+i)) 1042 return -1; 1043 } else if (ShuffleKind == 1) { 1044 // Check the rest of the elements to see if they are consecutive. 1045 for (++i; i != 16; ++i) 1046 if (!isConstantOrUndef(SVOp->getMaskElt(i), (ShiftAmt+i) & 15)) 1047 return -1; 1048 } else 1049 return -1; 1050 1051 if (ShuffleKind == 2 && isLE) 1052 ShiftAmt = 16 - ShiftAmt; 1053 1054 return ShiftAmt; 1055 } 1056 1057 /// isSplatShuffleMask - Return true if the specified VECTOR_SHUFFLE operand 1058 /// specifies a splat of a single element that is suitable for input to 1059 /// VSPLTB/VSPLTH/VSPLTW. 1060 bool PPC::isSplatShuffleMask(ShuffleVectorSDNode *N, unsigned EltSize) { 1061 assert(N->getValueType(0) == MVT::v16i8 && 1062 (EltSize == 1 || EltSize == 2 || EltSize == 4)); 1063 1064 // This is a splat operation if each element of the permute is the same, and 1065 // if the value doesn't reference the second vector. 1066 unsigned ElementBase = N->getMaskElt(0); 1067 1068 // FIXME: Handle UNDEF elements too! 1069 if (ElementBase >= 16) 1070 return false; 1071 1072 // Check that the indices are consecutive, in the case of a multi-byte element 1073 // splatted with a v16i8 mask. 1074 for (unsigned i = 1; i != EltSize; ++i) 1075 if (N->getMaskElt(i) < 0 || N->getMaskElt(i) != (int)(i+ElementBase)) 1076 return false; 1077 1078 for (unsigned i = EltSize, e = 16; i != e; i += EltSize) { 1079 if (N->getMaskElt(i) < 0) continue; 1080 for (unsigned j = 0; j != EltSize; ++j) 1081 if (N->getMaskElt(i+j) != N->getMaskElt(j)) 1082 return false; 1083 } 1084 return true; 1085 } 1086 1087 /// isAllNegativeZeroVector - Returns true if all elements of build_vector 1088 /// are -0.0. 1089 bool PPC::isAllNegativeZeroVector(SDNode *N) { 1090 BuildVectorSDNode *BV = cast<BuildVectorSDNode>(N); 1091 1092 APInt APVal, APUndef; 1093 unsigned BitSize; 1094 bool HasAnyUndefs; 1095 1096 if (BV->isConstantSplat(APVal, APUndef, BitSize, HasAnyUndefs, 32, true)) 1097 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) 1098 return CFP->getValueAPF().isNegZero(); 1099 1100 return false; 1101 } 1102 1103 /// getVSPLTImmediate - Return the appropriate VSPLT* immediate to splat the 1104 /// specified isSplatShuffleMask VECTOR_SHUFFLE mask. 1105 unsigned PPC::getVSPLTImmediate(SDNode *N, unsigned EltSize, 1106 SelectionDAG &DAG) { 1107 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N); 1108 assert(isSplatShuffleMask(SVOp, EltSize)); 1109 if (DAG.getSubtarget().getDataLayout()->isLittleEndian()) 1110 return (16 / EltSize) - 1 - (SVOp->getMaskElt(0) / EltSize); 1111 else 1112 return SVOp->getMaskElt(0) / EltSize; 1113 } 1114 1115 /// get_VSPLTI_elt - If this is a build_vector of constants which can be formed 1116 /// by using a vspltis[bhw] instruction of the specified element size, return 1117 /// the constant being splatted. The ByteSize field indicates the number of 1118 /// bytes of each element [124] -> [bhw]. 1119 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { 1120 SDValue OpVal(nullptr, 0); 1121 1122 // If ByteSize of the splat is bigger than the element size of the 1123 // build_vector, then we have a case where we are checking for a splat where 1124 // multiple elements of the buildvector are folded together into a single 1125 // logical element of the splat (e.g. "vsplish 1" to splat {0,1}*8). 1126 unsigned EltSize = 16/N->getNumOperands(); 1127 if (EltSize < ByteSize) { 1128 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval. 1129 SDValue UniquedVals[4]; 1130 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?"); 1131 1132 // See if all of the elements in the buildvector agree across. 1133 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 1134 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue; 1135 // If the element isn't a constant, bail fully out. 1136 if (!isa<ConstantSDNode>(N->getOperand(i))) return SDValue(); 1137 1138 1139 if (!UniquedVals[i&(Multiple-1)].getNode()) 1140 UniquedVals[i&(Multiple-1)] = N->getOperand(i); 1141 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i)) 1142 return SDValue(); // no match. 1143 } 1144 1145 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains 1146 // either constant or undef values that are identical for each chunk. See 1147 // if these chunks can form into a larger vspltis*. 1148 1149 // Check to see if all of the leading entries are either 0 or -1. If 1150 // neither, then this won't fit into the immediate field. 1151 bool LeadingZero = true; 1152 bool LeadingOnes = true; 1153 for (unsigned i = 0; i != Multiple-1; ++i) { 1154 if (!UniquedVals[i].getNode()) continue; // Must have been undefs. 1155 1156 LeadingZero &= cast<ConstantSDNode>(UniquedVals[i])->isNullValue(); 1157 LeadingOnes &= cast<ConstantSDNode>(UniquedVals[i])->isAllOnesValue(); 1158 } 1159 // Finally, check the least significant entry. 1160 if (LeadingZero) { 1161 if (!UniquedVals[Multiple-1].getNode()) 1162 return DAG.getTargetConstant(0, MVT::i32); // 0,0,0,undef 1163 int Val = cast<ConstantSDNode>(UniquedVals[Multiple-1])->getZExtValue(); 1164 if (Val < 16) 1165 return DAG.getTargetConstant(Val, MVT::i32); // 0,0,0,4 -> vspltisw(4) 1166 } 1167 if (LeadingOnes) { 1168 if (!UniquedVals[Multiple-1].getNode()) 1169 return DAG.getTargetConstant(~0U, MVT::i32); // -1,-1,-1,undef 1170 int Val =cast<ConstantSDNode>(UniquedVals[Multiple-1])->getSExtValue(); 1171 if (Val >= -16) // -1,-1,-1,-2 -> vspltisw(-2) 1172 return DAG.getTargetConstant(Val, MVT::i32); 1173 } 1174 1175 return SDValue(); 1176 } 1177 1178 // Check to see if this buildvec has a single non-undef value in its elements. 1179 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) { 1180 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue; 1181 if (!OpVal.getNode()) 1182 OpVal = N->getOperand(i); 1183 else if (OpVal != N->getOperand(i)) 1184 return SDValue(); 1185 } 1186 1187 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def. 1188 1189 unsigned ValSizeInBytes = EltSize; 1190 uint64_t Value = 0; 1191 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) { 1192 Value = CN->getZExtValue(); 1193 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) { 1194 assert(CN->getValueType(0) == MVT::f32 && "Only one legal FP vector type!"); 1195 Value = FloatToBits(CN->getValueAPF().convertToFloat()); 1196 } 1197 1198 // If the splat value is larger than the element value, then we can never do 1199 // this splat. The only case that we could fit the replicated bits into our 1200 // immediate field for would be zero, and we prefer to use vxor for it. 1201 if (ValSizeInBytes < ByteSize) return SDValue(); 1202 1203 // If the element value is larger than the splat value, cut it in half and 1204 // check to see if the two halves are equal. Continue doing this until we 1205 // get to ByteSize. This allows us to handle 0x01010101 as 0x01. 1206 while (ValSizeInBytes > ByteSize) { 1207 ValSizeInBytes >>= 1; 1208 1209 // If the top half equals the bottom half, we're still ok. 1210 if (((Value >> (ValSizeInBytes*8)) & ((1 << (8*ValSizeInBytes))-1)) != 1211 (Value & ((1 << (8*ValSizeInBytes))-1))) 1212 return SDValue(); 1213 } 1214 1215 // Properly sign extend the value. 1216 int MaskVal = SignExtend32(Value, ByteSize * 8); 1217 1218 // If this is zero, don't match, zero matches ISD::isBuildVectorAllZeros. 1219 if (MaskVal == 0) return SDValue(); 1220 1221 // Finally, if this value fits in a 5 bit sext field, return it 1222 if (SignExtend32<5>(MaskVal) == MaskVal) 1223 return DAG.getTargetConstant(MaskVal, MVT::i32); 1224 return SDValue(); 1225 } 1226 1227 //===----------------------------------------------------------------------===// 1228 // Addressing Mode Selection 1229 //===----------------------------------------------------------------------===// 1230 1231 /// isIntS16Immediate - This method tests to see if the node is either a 32-bit 1232 /// or 64-bit immediate, and if the value can be accurately represented as a 1233 /// sign extension from a 16-bit value. If so, this returns true and the 1234 /// immediate. 1235 static bool isIntS16Immediate(SDNode *N, short &Imm) { 1236 if (!isa<ConstantSDNode>(N)) 1237 return false; 1238 1239 Imm = (short)cast<ConstantSDNode>(N)->getZExtValue(); 1240 if (N->getValueType(0) == MVT::i32) 1241 return Imm == (int32_t)cast<ConstantSDNode>(N)->getZExtValue(); 1242 else 1243 return Imm == (int64_t)cast<ConstantSDNode>(N)->getZExtValue(); 1244 } 1245 static bool isIntS16Immediate(SDValue Op, short &Imm) { 1246 return isIntS16Immediate(Op.getNode(), Imm); 1247 } 1248 1249 1250 /// SelectAddressRegReg - Given the specified addressed, check to see if it 1251 /// can be represented as an indexed [r+r] operation. Returns false if it 1252 /// can be more efficiently represented with [r+imm]. 1253 bool PPCTargetLowering::SelectAddressRegReg(SDValue N, SDValue &Base, 1254 SDValue &Index, 1255 SelectionDAG &DAG) const { 1256 short imm = 0; 1257 if (N.getOpcode() == ISD::ADD) { 1258 if (isIntS16Immediate(N.getOperand(1), imm)) 1259 return false; // r+i 1260 if (N.getOperand(1).getOpcode() == PPCISD::Lo) 1261 return false; // r+i 1262 1263 Base = N.getOperand(0); 1264 Index = N.getOperand(1); 1265 return true; 1266 } else if (N.getOpcode() == ISD::OR) { 1267 if (isIntS16Immediate(N.getOperand(1), imm)) 1268 return false; // r+i can fold it if we can. 1269 1270 // If this is an or of disjoint bitfields, we can codegen this as an add 1271 // (for better address arithmetic) if the LHS and RHS of the OR are provably 1272 // disjoint. 1273 APInt LHSKnownZero, LHSKnownOne; 1274 APInt RHSKnownZero, RHSKnownOne; 1275 DAG.computeKnownBits(N.getOperand(0), 1276 LHSKnownZero, LHSKnownOne); 1277 1278 if (LHSKnownZero.getBoolValue()) { 1279 DAG.computeKnownBits(N.getOperand(1), 1280 RHSKnownZero, RHSKnownOne); 1281 // If all of the bits are known zero on the LHS or RHS, the add won't 1282 // carry. 1283 if (~(LHSKnownZero | RHSKnownZero) == 0) { 1284 Base = N.getOperand(0); 1285 Index = N.getOperand(1); 1286 return true; 1287 } 1288 } 1289 } 1290 1291 return false; 1292 } 1293 1294 // If we happen to be doing an i64 load or store into a stack slot that has 1295 // less than a 4-byte alignment, then the frame-index elimination may need to 1296 // use an indexed load or store instruction (because the offset may not be a 1297 // multiple of 4). The extra register needed to hold the offset comes from the 1298 // register scavenger, and it is possible that the scavenger will need to use 1299 // an emergency spill slot. As a result, we need to make sure that a spill slot 1300 // is allocated when doing an i64 load/store into a less-than-4-byte-aligned 1301 // stack slot. 1302 static void fixupFuncForFI(SelectionDAG &DAG, int FrameIdx, EVT VT) { 1303 // FIXME: This does not handle the LWA case. 1304 if (VT != MVT::i64) 1305 return; 1306 1307 // NOTE: We'll exclude negative FIs here, which come from argument 1308 // lowering, because there are no known test cases triggering this problem 1309 // using packed structures (or similar). We can remove this exclusion if 1310 // we find such a test case. The reason why this is so test-case driven is 1311 // because this entire 'fixup' is only to prevent crashes (from the 1312 // register scavenger) on not-really-valid inputs. For example, if we have: 1313 // %a = alloca i1 1314 // %b = bitcast i1* %a to i64* 1315 // store i64* a, i64 b 1316 // then the store should really be marked as 'align 1', but is not. If it 1317 // were marked as 'align 1' then the indexed form would have been 1318 // instruction-selected initially, and the problem this 'fixup' is preventing 1319 // won't happen regardless. 1320 if (FrameIdx < 0) 1321 return; 1322 1323 MachineFunction &MF = DAG.getMachineFunction(); 1324 MachineFrameInfo *MFI = MF.getFrameInfo(); 1325 1326 unsigned Align = MFI->getObjectAlignment(FrameIdx); 1327 if (Align >= 4) 1328 return; 1329 1330 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 1331 FuncInfo->setHasNonRISpills(); 1332 } 1333 1334 /// Returns true if the address N can be represented by a base register plus 1335 /// a signed 16-bit displacement [r+imm], and if it is not better 1336 /// represented as reg+reg. If Aligned is true, only accept displacements 1337 /// suitable for STD and friends, i.e. multiples of 4. 1338 bool PPCTargetLowering::SelectAddressRegImm(SDValue N, SDValue &Disp, 1339 SDValue &Base, 1340 SelectionDAG &DAG, 1341 bool Aligned) const { 1342 // FIXME dl should come from parent load or store, not from address 1343 SDLoc dl(N); 1344 // If this can be more profitably realized as r+r, fail. 1345 if (SelectAddressRegReg(N, Disp, Base, DAG)) 1346 return false; 1347 1348 if (N.getOpcode() == ISD::ADD) { 1349 short imm = 0; 1350 if (isIntS16Immediate(N.getOperand(1), imm) && 1351 (!Aligned || (imm & 3) == 0)) { 1352 Disp = DAG.getTargetConstant(imm, N.getValueType()); 1353 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N.getOperand(0))) { 1354 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 1355 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 1356 } else { 1357 Base = N.getOperand(0); 1358 } 1359 return true; // [r+i] 1360 } else if (N.getOperand(1).getOpcode() == PPCISD::Lo) { 1361 // Match LOAD (ADD (X, Lo(G))). 1362 assert(!cast<ConstantSDNode>(N.getOperand(1).getOperand(1))->getZExtValue() 1363 && "Cannot handle constant offsets yet!"); 1364 Disp = N.getOperand(1).getOperand(0); // The global address. 1365 assert(Disp.getOpcode() == ISD::TargetGlobalAddress || 1366 Disp.getOpcode() == ISD::TargetGlobalTLSAddress || 1367 Disp.getOpcode() == ISD::TargetConstantPool || 1368 Disp.getOpcode() == ISD::TargetJumpTable); 1369 Base = N.getOperand(0); 1370 return true; // [&g+r] 1371 } 1372 } else if (N.getOpcode() == ISD::OR) { 1373 short imm = 0; 1374 if (isIntS16Immediate(N.getOperand(1), imm) && 1375 (!Aligned || (imm & 3) == 0)) { 1376 // If this is an or of disjoint bitfields, we can codegen this as an add 1377 // (for better address arithmetic) if the LHS and RHS of the OR are 1378 // provably disjoint. 1379 APInt LHSKnownZero, LHSKnownOne; 1380 DAG.computeKnownBits(N.getOperand(0), LHSKnownZero, LHSKnownOne); 1381 1382 if ((LHSKnownZero.getZExtValue()|~(uint64_t)imm) == ~0ULL) { 1383 // If all of the bits are known zero on the LHS or RHS, the add won't 1384 // carry. 1385 if (FrameIndexSDNode *FI = 1386 dyn_cast<FrameIndexSDNode>(N.getOperand(0))) { 1387 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 1388 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 1389 } else { 1390 Base = N.getOperand(0); 1391 } 1392 Disp = DAG.getTargetConstant(imm, N.getValueType()); 1393 return true; 1394 } 1395 } 1396 } else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) { 1397 // Loading from a constant address. 1398 1399 // If this address fits entirely in a 16-bit sext immediate field, codegen 1400 // this as "d, 0" 1401 short Imm; 1402 if (isIntS16Immediate(CN, Imm) && (!Aligned || (Imm & 3) == 0)) { 1403 Disp = DAG.getTargetConstant(Imm, CN->getValueType(0)); 1404 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO, 1405 CN->getValueType(0)); 1406 return true; 1407 } 1408 1409 // Handle 32-bit sext immediates with LIS + addr mode. 1410 if ((CN->getValueType(0) == MVT::i32 || 1411 (int64_t)CN->getZExtValue() == (int)CN->getZExtValue()) && 1412 (!Aligned || (CN->getZExtValue() & 3) == 0)) { 1413 int Addr = (int)CN->getZExtValue(); 1414 1415 // Otherwise, break this down into an LIS + disp. 1416 Disp = DAG.getTargetConstant((short)Addr, MVT::i32); 1417 1418 Base = DAG.getTargetConstant((Addr - (signed short)Addr) >> 16, MVT::i32); 1419 unsigned Opc = CN->getValueType(0) == MVT::i32 ? PPC::LIS : PPC::LIS8; 1420 Base = SDValue(DAG.getMachineNode(Opc, dl, CN->getValueType(0), Base), 0); 1421 return true; 1422 } 1423 } 1424 1425 Disp = DAG.getTargetConstant(0, getPointerTy()); 1426 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(N)) { 1427 Base = DAG.getTargetFrameIndex(FI->getIndex(), N.getValueType()); 1428 fixupFuncForFI(DAG, FI->getIndex(), N.getValueType()); 1429 } else 1430 Base = N; 1431 return true; // [r+0] 1432 } 1433 1434 /// SelectAddressRegRegOnly - Given the specified addressed, force it to be 1435 /// represented as an indexed [r+r] operation. 1436 bool PPCTargetLowering::SelectAddressRegRegOnly(SDValue N, SDValue &Base, 1437 SDValue &Index, 1438 SelectionDAG &DAG) const { 1439 // Check to see if we can easily represent this as an [r+r] address. This 1440 // will fail if it thinks that the address is more profitably represented as 1441 // reg+imm, e.g. where imm = 0. 1442 if (SelectAddressRegReg(N, Base, Index, DAG)) 1443 return true; 1444 1445 // If the operand is an addition, always emit this as [r+r], since this is 1446 // better (for code size, and execution, as the memop does the add for free) 1447 // than emitting an explicit add. 1448 if (N.getOpcode() == ISD::ADD) { 1449 Base = N.getOperand(0); 1450 Index = N.getOperand(1); 1451 return true; 1452 } 1453 1454 // Otherwise, do it the hard way, using R0 as the base register. 1455 Base = DAG.getRegister(Subtarget.isPPC64() ? PPC::ZERO8 : PPC::ZERO, 1456 N.getValueType()); 1457 Index = N; 1458 return true; 1459 } 1460 1461 /// getPreIndexedAddressParts - returns true by value, base pointer and 1462 /// offset pointer and addressing mode by reference if the node's address 1463 /// can be legally represented as pre-indexed load / store address. 1464 bool PPCTargetLowering::getPreIndexedAddressParts(SDNode *N, SDValue &Base, 1465 SDValue &Offset, 1466 ISD::MemIndexedMode &AM, 1467 SelectionDAG &DAG) const { 1468 if (DisablePPCPreinc) return false; 1469 1470 bool isLoad = true; 1471 SDValue Ptr; 1472 EVT VT; 1473 unsigned Alignment; 1474 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 1475 Ptr = LD->getBasePtr(); 1476 VT = LD->getMemoryVT(); 1477 Alignment = LD->getAlignment(); 1478 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) { 1479 Ptr = ST->getBasePtr(); 1480 VT = ST->getMemoryVT(); 1481 Alignment = ST->getAlignment(); 1482 isLoad = false; 1483 } else 1484 return false; 1485 1486 // PowerPC doesn't have preinc load/store instructions for vectors. 1487 if (VT.isVector()) 1488 return false; 1489 1490 if (SelectAddressRegReg(Ptr, Base, Offset, DAG)) { 1491 1492 // Common code will reject creating a pre-inc form if the base pointer 1493 // is a frame index, or if N is a store and the base pointer is either 1494 // the same as or a predecessor of the value being stored. Check for 1495 // those situations here, and try with swapped Base/Offset instead. 1496 bool Swap = false; 1497 1498 if (isa<FrameIndexSDNode>(Base) || isa<RegisterSDNode>(Base)) 1499 Swap = true; 1500 else if (!isLoad) { 1501 SDValue Val = cast<StoreSDNode>(N)->getValue(); 1502 if (Val == Base || Base.getNode()->isPredecessorOf(Val.getNode())) 1503 Swap = true; 1504 } 1505 1506 if (Swap) 1507 std::swap(Base, Offset); 1508 1509 AM = ISD::PRE_INC; 1510 return true; 1511 } 1512 1513 // LDU/STU can only handle immediates that are a multiple of 4. 1514 if (VT != MVT::i64) { 1515 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, false)) 1516 return false; 1517 } else { 1518 // LDU/STU need an address with at least 4-byte alignment. 1519 if (Alignment < 4) 1520 return false; 1521 1522 if (!SelectAddressRegImm(Ptr, Offset, Base, DAG, true)) 1523 return false; 1524 } 1525 1526 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) { 1527 // PPC64 doesn't have lwau, but it does have lwaux. Reject preinc load of 1528 // sext i32 to i64 when addr mode is r+i. 1529 if (LD->getValueType(0) == MVT::i64 && LD->getMemoryVT() == MVT::i32 && 1530 LD->getExtensionType() == ISD::SEXTLOAD && 1531 isa<ConstantSDNode>(Offset)) 1532 return false; 1533 } 1534 1535 AM = ISD::PRE_INC; 1536 return true; 1537 } 1538 1539 //===----------------------------------------------------------------------===// 1540 // LowerOperation implementation 1541 //===----------------------------------------------------------------------===// 1542 1543 /// GetLabelAccessInfo - Return true if we should reference labels using a 1544 /// PICBase, set the HiOpFlags and LoOpFlags to the target MO flags. 1545 static bool GetLabelAccessInfo(const TargetMachine &TM, unsigned &HiOpFlags, 1546 unsigned &LoOpFlags, 1547 const GlobalValue *GV = nullptr) { 1548 HiOpFlags = PPCII::MO_HA; 1549 LoOpFlags = PPCII::MO_LO; 1550 1551 // Don't use the pic base if not in PIC relocation model. 1552 bool isPIC = TM.getRelocationModel() == Reloc::PIC_; 1553 1554 if (isPIC) { 1555 HiOpFlags |= PPCII::MO_PIC_FLAG; 1556 LoOpFlags |= PPCII::MO_PIC_FLAG; 1557 } 1558 1559 // If this is a reference to a global value that requires a non-lazy-ptr, make 1560 // sure that instruction lowering adds it. 1561 if (GV && TM.getSubtarget<PPCSubtarget>().hasLazyResolverStub(GV, TM)) { 1562 HiOpFlags |= PPCII::MO_NLP_FLAG; 1563 LoOpFlags |= PPCII::MO_NLP_FLAG; 1564 1565 if (GV->hasHiddenVisibility()) { 1566 HiOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG; 1567 LoOpFlags |= PPCII::MO_NLP_HIDDEN_FLAG; 1568 } 1569 } 1570 1571 return isPIC; 1572 } 1573 1574 static SDValue LowerLabelRef(SDValue HiPart, SDValue LoPart, bool isPIC, 1575 SelectionDAG &DAG) { 1576 EVT PtrVT = HiPart.getValueType(); 1577 SDValue Zero = DAG.getConstant(0, PtrVT); 1578 SDLoc DL(HiPart); 1579 1580 SDValue Hi = DAG.getNode(PPCISD::Hi, DL, PtrVT, HiPart, Zero); 1581 SDValue Lo = DAG.getNode(PPCISD::Lo, DL, PtrVT, LoPart, Zero); 1582 1583 // With PIC, the first instruction is actually "GR+hi(&G)". 1584 if (isPIC) 1585 Hi = DAG.getNode(ISD::ADD, DL, PtrVT, 1586 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT), Hi); 1587 1588 // Generate non-pic code that has direct accesses to the constant pool. 1589 // The address of the global is just (hi(&g)+lo(&g)). 1590 return DAG.getNode(ISD::ADD, DL, PtrVT, Hi, Lo); 1591 } 1592 1593 SDValue PPCTargetLowering::LowerConstantPool(SDValue Op, 1594 SelectionDAG &DAG) const { 1595 EVT PtrVT = Op.getValueType(); 1596 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); 1597 const Constant *C = CP->getConstVal(); 1598 1599 // 64-bit SVR4 ABI code is always position-independent. 1600 // The actual address of the GlobalValue is stored in the TOC. 1601 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) { 1602 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0); 1603 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(CP), MVT::i64, GA, 1604 DAG.getRegister(PPC::X2, MVT::i64)); 1605 } 1606 1607 unsigned MOHiFlag, MOLoFlag; 1608 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag); 1609 1610 if (isPIC && Subtarget.isSVR4ABI()) { 1611 SDValue GA = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 1612 PPCII::MO_PIC_FLAG); 1613 SDLoc DL(CP); 1614 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA, 1615 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT)); 1616 } 1617 1618 SDValue CPIHi = 1619 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOHiFlag); 1620 SDValue CPILo = 1621 DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment(), 0, MOLoFlag); 1622 return LowerLabelRef(CPIHi, CPILo, isPIC, DAG); 1623 } 1624 1625 SDValue PPCTargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const { 1626 EVT PtrVT = Op.getValueType(); 1627 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); 1628 1629 // 64-bit SVR4 ABI code is always position-independent. 1630 // The actual address of the GlobalValue is stored in the TOC. 1631 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) { 1632 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT); 1633 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), MVT::i64, GA, 1634 DAG.getRegister(PPC::X2, MVT::i64)); 1635 } 1636 1637 unsigned MOHiFlag, MOLoFlag; 1638 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag); 1639 1640 if (isPIC && Subtarget.isSVR4ABI()) { 1641 SDValue GA = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, 1642 PPCII::MO_PIC_FLAG); 1643 SDLoc DL(GA); 1644 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(JT), PtrVT, GA, 1645 DAG.getNode(PPCISD::GlobalBaseReg, DL, PtrVT)); 1646 } 1647 1648 SDValue JTIHi = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOHiFlag); 1649 SDValue JTILo = DAG.getTargetJumpTable(JT->getIndex(), PtrVT, MOLoFlag); 1650 return LowerLabelRef(JTIHi, JTILo, isPIC, DAG); 1651 } 1652 1653 SDValue PPCTargetLowering::LowerBlockAddress(SDValue Op, 1654 SelectionDAG &DAG) const { 1655 EVT PtrVT = Op.getValueType(); 1656 BlockAddressSDNode *BASDN = cast<BlockAddressSDNode>(Op); 1657 const BlockAddress *BA = BASDN->getBlockAddress(); 1658 1659 // 64-bit SVR4 ABI code is always position-independent. 1660 // The actual BlockAddress is stored in the TOC. 1661 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) { 1662 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset()); 1663 return DAG.getNode(PPCISD::TOC_ENTRY, SDLoc(BASDN), MVT::i64, GA, 1664 DAG.getRegister(PPC::X2, MVT::i64)); 1665 } 1666 1667 unsigned MOHiFlag, MOLoFlag; 1668 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag); 1669 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag); 1670 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag); 1671 return LowerLabelRef(TgtBAHi, TgtBALo, isPIC, DAG); 1672 } 1673 1674 // Generate a call to __tls_get_addr for the given GOT entry Op. 1675 std::pair<SDValue,SDValue> 1676 PPCTargetLowering::lowerTLSCall(SDValue Op, SDLoc dl, 1677 SelectionDAG &DAG) const { 1678 1679 Type *IntPtrTy = getDataLayout()->getIntPtrType(*DAG.getContext()); 1680 TargetLowering::ArgListTy Args; 1681 TargetLowering::ArgListEntry Entry; 1682 Entry.Node = Op; 1683 Entry.Ty = IntPtrTy; 1684 Args.push_back(Entry); 1685 1686 TargetLowering::CallLoweringInfo CLI(DAG); 1687 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode()) 1688 .setCallee(CallingConv::C, IntPtrTy, 1689 DAG.getTargetExternalSymbol("__tls_get_addr", getPointerTy()), 1690 std::move(Args), 0); 1691 1692 return LowerCallTo(CLI); 1693 } 1694 1695 SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op, 1696 SelectionDAG &DAG) const { 1697 1698 // FIXME: TLS addresses currently use medium model code sequences, 1699 // which is the most useful form. Eventually support for small and 1700 // large models could be added if users need it, at the cost of 1701 // additional complexity. 1702 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); 1703 SDLoc dl(GA); 1704 const GlobalValue *GV = GA->getGlobal(); 1705 EVT PtrVT = getPointerTy(); 1706 bool is64bit = Subtarget.isPPC64(); 1707 const Module *M = DAG.getMachineFunction().getFunction()->getParent(); 1708 PICLevel::Level picLevel = M->getPICLevel(); 1709 1710 TLSModel::Model Model = getTargetMachine().getTLSModel(GV); 1711 1712 if (Model == TLSModel::LocalExec) { 1713 SDValue TGAHi = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 1714 PPCII::MO_TPREL_HA); 1715 SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 1716 PPCII::MO_TPREL_LO); 1717 SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2, 1718 is64bit ? MVT::i64 : MVT::i32); 1719 SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg); 1720 return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi); 1721 } 1722 1723 if (Model == TLSModel::InitialExec) { 1724 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 0); 1725 SDValue TGATLS = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 1726 PPCII::MO_TLS); 1727 SDValue GOTPtr; 1728 if (is64bit) { 1729 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 1730 GOTPtr = DAG.getNode(PPCISD::ADDIS_GOT_TPREL_HA, dl, 1731 PtrVT, GOTReg, TGA); 1732 } else 1733 GOTPtr = DAG.getNode(PPCISD::PPC32_GOT, dl, PtrVT); 1734 SDValue TPOffset = DAG.getNode(PPCISD::LD_GOT_TPREL_L, dl, 1735 PtrVT, TGA, GOTPtr); 1736 return DAG.getNode(PPCISD::ADD_TLS, dl, PtrVT, TPOffset, TGATLS); 1737 } 1738 1739 if (Model == TLSModel::GeneralDynamic) { 1740 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 1741 PPCII::MO_TLSGD); 1742 SDValue GOTPtr; 1743 if (is64bit) { 1744 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 1745 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSGD_HA, dl, PtrVT, 1746 GOTReg, TGA); 1747 } else { 1748 if (picLevel == PICLevel::Small) 1749 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT); 1750 else 1751 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT); 1752 } 1753 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSGD_L, dl, PtrVT, 1754 GOTPtr, TGA); 1755 std::pair<SDValue, SDValue> CallResult = lowerTLSCall(GOTEntry, dl, DAG); 1756 return CallResult.first; 1757 } 1758 1759 if (Model == TLSModel::LocalDynamic) { 1760 SDValue TGA = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0, 1761 PPCII::MO_TLSLD); 1762 SDValue GOTPtr; 1763 if (is64bit) { 1764 SDValue GOTReg = DAG.getRegister(PPC::X2, MVT::i64); 1765 GOTPtr = DAG.getNode(PPCISD::ADDIS_TLSLD_HA, dl, PtrVT, 1766 GOTReg, TGA); 1767 } else { 1768 if (picLevel == PICLevel::Small) 1769 GOTPtr = DAG.getNode(PPCISD::GlobalBaseReg, dl, PtrVT); 1770 else 1771 GOTPtr = DAG.getNode(PPCISD::PPC32_PICGOT, dl, PtrVT); 1772 } 1773 SDValue GOTEntry = DAG.getNode(PPCISD::ADDI_TLSLD_L, dl, PtrVT, 1774 GOTPtr, TGA); 1775 std::pair<SDValue, SDValue> CallResult = lowerTLSCall(GOTEntry, dl, DAG); 1776 SDValue TLSAddr = CallResult.first; 1777 SDValue Chain = CallResult.second; 1778 SDValue DtvOffsetHi = DAG.getNode(PPCISD::ADDIS_DTPREL_HA, dl, PtrVT, 1779 Chain, TLSAddr, TGA); 1780 return DAG.getNode(PPCISD::ADDI_DTPREL_L, dl, PtrVT, DtvOffsetHi, TGA); 1781 } 1782 1783 llvm_unreachable("Unknown TLS model!"); 1784 } 1785 1786 SDValue PPCTargetLowering::LowerGlobalAddress(SDValue Op, 1787 SelectionDAG &DAG) const { 1788 EVT PtrVT = Op.getValueType(); 1789 GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op); 1790 SDLoc DL(GSDN); 1791 const GlobalValue *GV = GSDN->getGlobal(); 1792 1793 // 64-bit SVR4 ABI code is always position-independent. 1794 // The actual address of the GlobalValue is stored in the TOC. 1795 if (Subtarget.isSVR4ABI() && Subtarget.isPPC64()) { 1796 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset()); 1797 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i64, GA, 1798 DAG.getRegister(PPC::X2, MVT::i64)); 1799 } 1800 1801 unsigned MOHiFlag, MOLoFlag; 1802 bool isPIC = GetLabelAccessInfo(DAG.getTarget(), MOHiFlag, MOLoFlag, GV); 1803 1804 if (isPIC && Subtarget.isSVR4ABI()) { 1805 SDValue GA = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 1806 GSDN->getOffset(), 1807 PPCII::MO_PIC_FLAG); 1808 return DAG.getNode(PPCISD::TOC_ENTRY, DL, MVT::i32, GA, 1809 DAG.getNode(PPCISD::GlobalBaseReg, DL, MVT::i32)); 1810 } 1811 1812 SDValue GAHi = 1813 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOHiFlag); 1814 SDValue GALo = 1815 DAG.getTargetGlobalAddress(GV, DL, PtrVT, GSDN->getOffset(), MOLoFlag); 1816 1817 SDValue Ptr = LowerLabelRef(GAHi, GALo, isPIC, DAG); 1818 1819 // If the global reference is actually to a non-lazy-pointer, we have to do an 1820 // extra load to get the address of the global. 1821 if (MOHiFlag & PPCII::MO_NLP_FLAG) 1822 Ptr = DAG.getLoad(PtrVT, DL, DAG.getEntryNode(), Ptr, MachinePointerInfo(), 1823 false, false, false, 0); 1824 return Ptr; 1825 } 1826 1827 SDValue PPCTargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const { 1828 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); 1829 SDLoc dl(Op); 1830 1831 if (Op.getValueType() == MVT::v2i64) { 1832 // When the operands themselves are v2i64 values, we need to do something 1833 // special because VSX has no underlying comparison operations for these. 1834 if (Op.getOperand(0).getValueType() == MVT::v2i64) { 1835 // Equality can be handled by casting to the legal type for Altivec 1836 // comparisons, everything else needs to be expanded. 1837 if (CC == ISD::SETEQ || CC == ISD::SETNE) { 1838 return DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, 1839 DAG.getSetCC(dl, MVT::v4i32, 1840 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)), 1841 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(1)), 1842 CC)); 1843 } 1844 1845 return SDValue(); 1846 } 1847 1848 // We handle most of these in the usual way. 1849 return Op; 1850 } 1851 1852 // If we're comparing for equality to zero, expose the fact that this is 1853 // implented as a ctlz/srl pair on ppc, so that the dag combiner can 1854 // fold the new nodes. 1855 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { 1856 if (C->isNullValue() && CC == ISD::SETEQ) { 1857 EVT VT = Op.getOperand(0).getValueType(); 1858 SDValue Zext = Op.getOperand(0); 1859 if (VT.bitsLT(MVT::i32)) { 1860 VT = MVT::i32; 1861 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0)); 1862 } 1863 unsigned Log2b = Log2_32(VT.getSizeInBits()); 1864 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext); 1865 SDValue Scc = DAG.getNode(ISD::SRL, dl, VT, Clz, 1866 DAG.getConstant(Log2b, MVT::i32)); 1867 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Scc); 1868 } 1869 // Leave comparisons against 0 and -1 alone for now, since they're usually 1870 // optimized. FIXME: revisit this when we can custom lower all setcc 1871 // optimizations. 1872 if (C->isAllOnesValue() || C->isNullValue()) 1873 return SDValue(); 1874 } 1875 1876 // If we have an integer seteq/setne, turn it into a compare against zero 1877 // by xor'ing the rhs with the lhs, which is faster than setting a 1878 // condition register, reading it back out, and masking the correct bit. The 1879 // normal approach here uses sub to do this instead of xor. Using xor exposes 1880 // the result to other bit-twiddling opportunities. 1881 EVT LHSVT = Op.getOperand(0).getValueType(); 1882 if (LHSVT.isInteger() && (CC == ISD::SETEQ || CC == ISD::SETNE)) { 1883 EVT VT = Op.getValueType(); 1884 SDValue Sub = DAG.getNode(ISD::XOR, dl, LHSVT, Op.getOperand(0), 1885 Op.getOperand(1)); 1886 return DAG.getSetCC(dl, VT, Sub, DAG.getConstant(0, LHSVT), CC); 1887 } 1888 return SDValue(); 1889 } 1890 1891 SDValue PPCTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG, 1892 const PPCSubtarget &Subtarget) const { 1893 SDNode *Node = Op.getNode(); 1894 EVT VT = Node->getValueType(0); 1895 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 1896 SDValue InChain = Node->getOperand(0); 1897 SDValue VAListPtr = Node->getOperand(1); 1898 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); 1899 SDLoc dl(Node); 1900 1901 assert(!Subtarget.isPPC64() && "LowerVAARG is PPC32 only"); 1902 1903 // gpr_index 1904 SDValue GprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, 1905 VAListPtr, MachinePointerInfo(SV), MVT::i8, 1906 false, false, false, 0); 1907 InChain = GprIndex.getValue(1); 1908 1909 if (VT == MVT::i64) { 1910 // Check if GprIndex is even 1911 SDValue GprAnd = DAG.getNode(ISD::AND, dl, MVT::i32, GprIndex, 1912 DAG.getConstant(1, MVT::i32)); 1913 SDValue CC64 = DAG.getSetCC(dl, MVT::i32, GprAnd, 1914 DAG.getConstant(0, MVT::i32), ISD::SETNE); 1915 SDValue GprIndexPlusOne = DAG.getNode(ISD::ADD, dl, MVT::i32, GprIndex, 1916 DAG.getConstant(1, MVT::i32)); 1917 // Align GprIndex to be even if it isn't 1918 GprIndex = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC64, GprIndexPlusOne, 1919 GprIndex); 1920 } 1921 1922 // fpr index is 1 byte after gpr 1923 SDValue FprPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 1924 DAG.getConstant(1, MVT::i32)); 1925 1926 // fpr 1927 SDValue FprIndex = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i32, InChain, 1928 FprPtr, MachinePointerInfo(SV), MVT::i8, 1929 false, false, false, 0); 1930 InChain = FprIndex.getValue(1); 1931 1932 SDValue RegSaveAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 1933 DAG.getConstant(8, MVT::i32)); 1934 1935 SDValue OverflowAreaPtr = DAG.getNode(ISD::ADD, dl, PtrVT, VAListPtr, 1936 DAG.getConstant(4, MVT::i32)); 1937 1938 // areas 1939 SDValue OverflowArea = DAG.getLoad(MVT::i32, dl, InChain, OverflowAreaPtr, 1940 MachinePointerInfo(), false, false, 1941 false, 0); 1942 InChain = OverflowArea.getValue(1); 1943 1944 SDValue RegSaveArea = DAG.getLoad(MVT::i32, dl, InChain, RegSaveAreaPtr, 1945 MachinePointerInfo(), false, false, 1946 false, 0); 1947 InChain = RegSaveArea.getValue(1); 1948 1949 // select overflow_area if index > 8 1950 SDValue CC = DAG.getSetCC(dl, MVT::i32, VT.isInteger() ? GprIndex : FprIndex, 1951 DAG.getConstant(8, MVT::i32), ISD::SETLT); 1952 1953 // adjustment constant gpr_index * 4/8 1954 SDValue RegConstant = DAG.getNode(ISD::MUL, dl, MVT::i32, 1955 VT.isInteger() ? GprIndex : FprIndex, 1956 DAG.getConstant(VT.isInteger() ? 4 : 8, 1957 MVT::i32)); 1958 1959 // OurReg = RegSaveArea + RegConstant 1960 SDValue OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, RegSaveArea, 1961 RegConstant); 1962 1963 // Floating types are 32 bytes into RegSaveArea 1964 if (VT.isFloatingPoint()) 1965 OurReg = DAG.getNode(ISD::ADD, dl, PtrVT, OurReg, 1966 DAG.getConstant(32, MVT::i32)); 1967 1968 // increase {f,g}pr_index by 1 (or 2 if VT is i64) 1969 SDValue IndexPlus1 = DAG.getNode(ISD::ADD, dl, MVT::i32, 1970 VT.isInteger() ? GprIndex : FprIndex, 1971 DAG.getConstant(VT == MVT::i64 ? 2 : 1, 1972 MVT::i32)); 1973 1974 InChain = DAG.getTruncStore(InChain, dl, IndexPlus1, 1975 VT.isInteger() ? VAListPtr : FprPtr, 1976 MachinePointerInfo(SV), 1977 MVT::i8, false, false, 0); 1978 1979 // determine if we should load from reg_save_area or overflow_area 1980 SDValue Result = DAG.getNode(ISD::SELECT, dl, PtrVT, CC, OurReg, OverflowArea); 1981 1982 // increase overflow_area by 4/8 if gpr/fpr > 8 1983 SDValue OverflowAreaPlusN = DAG.getNode(ISD::ADD, dl, PtrVT, OverflowArea, 1984 DAG.getConstant(VT.isInteger() ? 4 : 8, 1985 MVT::i32)); 1986 1987 OverflowArea = DAG.getNode(ISD::SELECT, dl, MVT::i32, CC, OverflowArea, 1988 OverflowAreaPlusN); 1989 1990 InChain = DAG.getTruncStore(InChain, dl, OverflowArea, 1991 OverflowAreaPtr, 1992 MachinePointerInfo(), 1993 MVT::i32, false, false, 0); 1994 1995 return DAG.getLoad(VT, dl, InChain, Result, MachinePointerInfo(), 1996 false, false, false, 0); 1997 } 1998 1999 SDValue PPCTargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG, 2000 const PPCSubtarget &Subtarget) const { 2001 assert(!Subtarget.isPPC64() && "LowerVACOPY is PPC32 only"); 2002 2003 // We have to copy the entire va_list struct: 2004 // 2*sizeof(char) + 2 Byte alignment + 2*sizeof(char*) = 12 Byte 2005 return DAG.getMemcpy(Op.getOperand(0), Op, 2006 Op.getOperand(1), Op.getOperand(2), 2007 DAG.getConstant(12, MVT::i32), 8, false, true, 2008 MachinePointerInfo(), MachinePointerInfo()); 2009 } 2010 2011 SDValue PPCTargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op, 2012 SelectionDAG &DAG) const { 2013 return Op.getOperand(0); 2014 } 2015 2016 SDValue PPCTargetLowering::LowerINIT_TRAMPOLINE(SDValue Op, 2017 SelectionDAG &DAG) const { 2018 SDValue Chain = Op.getOperand(0); 2019 SDValue Trmp = Op.getOperand(1); // trampoline 2020 SDValue FPtr = Op.getOperand(2); // nested function 2021 SDValue Nest = Op.getOperand(3); // 'nest' parameter value 2022 SDLoc dl(Op); 2023 2024 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2025 bool isPPC64 = (PtrVT == MVT::i64); 2026 Type *IntPtrTy = 2027 DAG.getTargetLoweringInfo().getDataLayout()->getIntPtrType( 2028 *DAG.getContext()); 2029 2030 TargetLowering::ArgListTy Args; 2031 TargetLowering::ArgListEntry Entry; 2032 2033 Entry.Ty = IntPtrTy; 2034 Entry.Node = Trmp; Args.push_back(Entry); 2035 2036 // TrampSize == (isPPC64 ? 48 : 40); 2037 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40, 2038 isPPC64 ? MVT::i64 : MVT::i32); 2039 Args.push_back(Entry); 2040 2041 Entry.Node = FPtr; Args.push_back(Entry); 2042 Entry.Node = Nest; Args.push_back(Entry); 2043 2044 // Lower to a call to __trampoline_setup(Trmp, TrampSize, FPtr, ctx_reg) 2045 TargetLowering::CallLoweringInfo CLI(DAG); 2046 CLI.setDebugLoc(dl).setChain(Chain) 2047 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), 2048 DAG.getExternalSymbol("__trampoline_setup", PtrVT), 2049 std::move(Args), 0); 2050 2051 std::pair<SDValue, SDValue> CallResult = LowerCallTo(CLI); 2052 return CallResult.second; 2053 } 2054 2055 SDValue PPCTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG, 2056 const PPCSubtarget &Subtarget) const { 2057 MachineFunction &MF = DAG.getMachineFunction(); 2058 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2059 2060 SDLoc dl(Op); 2061 2062 if (Subtarget.isDarwinABI() || Subtarget.isPPC64()) { 2063 // vastart just stores the address of the VarArgsFrameIndex slot into the 2064 // memory location argument. 2065 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2066 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 2067 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 2068 return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), 2069 MachinePointerInfo(SV), 2070 false, false, 0); 2071 } 2072 2073 // For the 32-bit SVR4 ABI we follow the layout of the va_list struct. 2074 // We suppose the given va_list is already allocated. 2075 // 2076 // typedef struct { 2077 // char gpr; /* index into the array of 8 GPRs 2078 // * stored in the register save area 2079 // * gpr=0 corresponds to r3, 2080 // * gpr=1 to r4, etc. 2081 // */ 2082 // char fpr; /* index into the array of 8 FPRs 2083 // * stored in the register save area 2084 // * fpr=0 corresponds to f1, 2085 // * fpr=1 to f2, etc. 2086 // */ 2087 // char *overflow_arg_area; 2088 // /* location on stack that holds 2089 // * the next overflow argument 2090 // */ 2091 // char *reg_save_area; 2092 // /* where r3:r10 and f1:f8 (if saved) 2093 // * are stored 2094 // */ 2095 // } va_list[1]; 2096 2097 2098 SDValue ArgGPR = DAG.getConstant(FuncInfo->getVarArgsNumGPR(), MVT::i32); 2099 SDValue ArgFPR = DAG.getConstant(FuncInfo->getVarArgsNumFPR(), MVT::i32); 2100 2101 2102 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2103 2104 SDValue StackOffsetFI = DAG.getFrameIndex(FuncInfo->getVarArgsStackOffset(), 2105 PtrVT); 2106 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), 2107 PtrVT); 2108 2109 uint64_t FrameOffset = PtrVT.getSizeInBits()/8; 2110 SDValue ConstFrameOffset = DAG.getConstant(FrameOffset, PtrVT); 2111 2112 uint64_t StackOffset = PtrVT.getSizeInBits()/8 - 1; 2113 SDValue ConstStackOffset = DAG.getConstant(StackOffset, PtrVT); 2114 2115 uint64_t FPROffset = 1; 2116 SDValue ConstFPROffset = DAG.getConstant(FPROffset, PtrVT); 2117 2118 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); 2119 2120 // Store first byte : number of int regs 2121 SDValue firstStore = DAG.getTruncStore(Op.getOperand(0), dl, ArgGPR, 2122 Op.getOperand(1), 2123 MachinePointerInfo(SV), 2124 MVT::i8, false, false, 0); 2125 uint64_t nextOffset = FPROffset; 2126 SDValue nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, Op.getOperand(1), 2127 ConstFPROffset); 2128 2129 // Store second byte : number of float regs 2130 SDValue secondStore = 2131 DAG.getTruncStore(firstStore, dl, ArgFPR, nextPtr, 2132 MachinePointerInfo(SV, nextOffset), MVT::i8, 2133 false, false, 0); 2134 nextOffset += StackOffset; 2135 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstStackOffset); 2136 2137 // Store second word : arguments given on stack 2138 SDValue thirdStore = 2139 DAG.getStore(secondStore, dl, StackOffsetFI, nextPtr, 2140 MachinePointerInfo(SV, nextOffset), 2141 false, false, 0); 2142 nextOffset += FrameOffset; 2143 nextPtr = DAG.getNode(ISD::ADD, dl, PtrVT, nextPtr, ConstFrameOffset); 2144 2145 // Store third word : arguments given in registers 2146 return DAG.getStore(thirdStore, dl, FR, nextPtr, 2147 MachinePointerInfo(SV, nextOffset), 2148 false, false, 0); 2149 2150 } 2151 2152 #include "PPCGenCallingConv.inc" 2153 2154 // Function whose sole purpose is to kill compiler warnings 2155 // stemming from unused functions included from PPCGenCallingConv.inc. 2156 CCAssignFn *PPCTargetLowering::useFastISelCCs(unsigned Flag) const { 2157 return Flag ? CC_PPC64_ELF_FIS : RetCC_PPC64_ELF_FIS; 2158 } 2159 2160 bool llvm::CC_PPC32_SVR4_Custom_Dummy(unsigned &ValNo, MVT &ValVT, MVT &LocVT, 2161 CCValAssign::LocInfo &LocInfo, 2162 ISD::ArgFlagsTy &ArgFlags, 2163 CCState &State) { 2164 return true; 2165 } 2166 2167 bool llvm::CC_PPC32_SVR4_Custom_AlignArgRegs(unsigned &ValNo, MVT &ValVT, 2168 MVT &LocVT, 2169 CCValAssign::LocInfo &LocInfo, 2170 ISD::ArgFlagsTy &ArgFlags, 2171 CCState &State) { 2172 static const MCPhysReg ArgRegs[] = { 2173 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 2174 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 2175 }; 2176 const unsigned NumArgRegs = array_lengthof(ArgRegs); 2177 2178 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs); 2179 2180 // Skip one register if the first unallocated register has an even register 2181 // number and there are still argument registers available which have not been 2182 // allocated yet. RegNum is actually an index into ArgRegs, which means we 2183 // need to skip a register if RegNum is odd. 2184 if (RegNum != NumArgRegs && RegNum % 2 == 1) { 2185 State.AllocateReg(ArgRegs[RegNum]); 2186 } 2187 2188 // Always return false here, as this function only makes sure that the first 2189 // unallocated register has an odd register number and does not actually 2190 // allocate a register for the current argument. 2191 return false; 2192 } 2193 2194 bool llvm::CC_PPC32_SVR4_Custom_AlignFPArgRegs(unsigned &ValNo, MVT &ValVT, 2195 MVT &LocVT, 2196 CCValAssign::LocInfo &LocInfo, 2197 ISD::ArgFlagsTy &ArgFlags, 2198 CCState &State) { 2199 static const MCPhysReg ArgRegs[] = { 2200 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7, 2201 PPC::F8 2202 }; 2203 2204 const unsigned NumArgRegs = array_lengthof(ArgRegs); 2205 2206 unsigned RegNum = State.getFirstUnallocated(ArgRegs, NumArgRegs); 2207 2208 // If there is only one Floating-point register left we need to put both f64 2209 // values of a split ppc_fp128 value on the stack. 2210 if (RegNum != NumArgRegs && ArgRegs[RegNum] == PPC::F8) { 2211 State.AllocateReg(ArgRegs[RegNum]); 2212 } 2213 2214 // Always return false here, as this function only makes sure that the two f64 2215 // values a ppc_fp128 value is split into are both passed in registers or both 2216 // passed on the stack and does not actually allocate a register for the 2217 // current argument. 2218 return false; 2219 } 2220 2221 /// GetFPR - Get the set of FP registers that should be allocated for arguments, 2222 /// on Darwin. 2223 static const MCPhysReg *GetFPR() { 2224 static const MCPhysReg FPR[] = { 2225 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7, 2226 PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13 2227 }; 2228 2229 return FPR; 2230 } 2231 2232 /// CalculateStackSlotSize - Calculates the size reserved for this argument on 2233 /// the stack. 2234 static unsigned CalculateStackSlotSize(EVT ArgVT, ISD::ArgFlagsTy Flags, 2235 unsigned PtrByteSize) { 2236 unsigned ArgSize = ArgVT.getStoreSize(); 2237 if (Flags.isByVal()) 2238 ArgSize = Flags.getByValSize(); 2239 2240 // Round up to multiples of the pointer size, except for array members, 2241 // which are always packed. 2242 if (!Flags.isInConsecutiveRegs()) 2243 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 2244 2245 return ArgSize; 2246 } 2247 2248 /// CalculateStackSlotAlignment - Calculates the alignment of this argument 2249 /// on the stack. 2250 static unsigned CalculateStackSlotAlignment(EVT ArgVT, EVT OrigVT, 2251 ISD::ArgFlagsTy Flags, 2252 unsigned PtrByteSize) { 2253 unsigned Align = PtrByteSize; 2254 2255 // Altivec parameters are padded to a 16 byte boundary. 2256 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 2257 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 2258 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) 2259 Align = 16; 2260 2261 // ByVal parameters are aligned as requested. 2262 if (Flags.isByVal()) { 2263 unsigned BVAlign = Flags.getByValAlign(); 2264 if (BVAlign > PtrByteSize) { 2265 if (BVAlign % PtrByteSize != 0) 2266 llvm_unreachable( 2267 "ByVal alignment is not a multiple of the pointer size"); 2268 2269 Align = BVAlign; 2270 } 2271 } 2272 2273 // Array members are always packed to their original alignment. 2274 if (Flags.isInConsecutiveRegs()) { 2275 // If the array member was split into multiple registers, the first 2276 // needs to be aligned to the size of the full type. (Except for 2277 // ppcf128, which is only aligned as its f64 components.) 2278 if (Flags.isSplit() && OrigVT != MVT::ppcf128) 2279 Align = OrigVT.getStoreSize(); 2280 else 2281 Align = ArgVT.getStoreSize(); 2282 } 2283 2284 return Align; 2285 } 2286 2287 /// CalculateStackSlotUsed - Return whether this argument will use its 2288 /// stack slot (instead of being passed in registers). ArgOffset, 2289 /// AvailableFPRs, and AvailableVRs must hold the current argument 2290 /// position, and will be updated to account for this argument. 2291 static bool CalculateStackSlotUsed(EVT ArgVT, EVT OrigVT, 2292 ISD::ArgFlagsTy Flags, 2293 unsigned PtrByteSize, 2294 unsigned LinkageSize, 2295 unsigned ParamAreaSize, 2296 unsigned &ArgOffset, 2297 unsigned &AvailableFPRs, 2298 unsigned &AvailableVRs) { 2299 bool UseMemory = false; 2300 2301 // Respect alignment of argument on the stack. 2302 unsigned Align = 2303 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 2304 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 2305 // If there's no space left in the argument save area, we must 2306 // use memory (this check also catches zero-sized arguments). 2307 if (ArgOffset >= LinkageSize + ParamAreaSize) 2308 UseMemory = true; 2309 2310 // Allocate argument on the stack. 2311 ArgOffset += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 2312 if (Flags.isInConsecutiveRegsLast()) 2313 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 2314 // If we overran the argument save area, we must use memory 2315 // (this check catches arguments passed partially in memory) 2316 if (ArgOffset > LinkageSize + ParamAreaSize) 2317 UseMemory = true; 2318 2319 // However, if the argument is actually passed in an FPR or a VR, 2320 // we don't use memory after all. 2321 if (!Flags.isByVal()) { 2322 if (ArgVT == MVT::f32 || ArgVT == MVT::f64) 2323 if (AvailableFPRs > 0) { 2324 --AvailableFPRs; 2325 return false; 2326 } 2327 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 2328 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 2329 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) 2330 if (AvailableVRs > 0) { 2331 --AvailableVRs; 2332 return false; 2333 } 2334 } 2335 2336 return UseMemory; 2337 } 2338 2339 /// EnsureStackAlignment - Round stack frame size up from NumBytes to 2340 /// ensure minimum alignment required for target. 2341 static unsigned EnsureStackAlignment(const TargetMachine &Target, 2342 unsigned NumBytes) { 2343 unsigned TargetAlign = 2344 Target.getSubtargetImpl()->getFrameLowering()->getStackAlignment(); 2345 unsigned AlignMask = TargetAlign - 1; 2346 NumBytes = (NumBytes + AlignMask) & ~AlignMask; 2347 return NumBytes; 2348 } 2349 2350 SDValue 2351 PPCTargetLowering::LowerFormalArguments(SDValue Chain, 2352 CallingConv::ID CallConv, bool isVarArg, 2353 const SmallVectorImpl<ISD::InputArg> 2354 &Ins, 2355 SDLoc dl, SelectionDAG &DAG, 2356 SmallVectorImpl<SDValue> &InVals) 2357 const { 2358 if (Subtarget.isSVR4ABI()) { 2359 if (Subtarget.isPPC64()) 2360 return LowerFormalArguments_64SVR4(Chain, CallConv, isVarArg, Ins, 2361 dl, DAG, InVals); 2362 else 2363 return LowerFormalArguments_32SVR4(Chain, CallConv, isVarArg, Ins, 2364 dl, DAG, InVals); 2365 } else { 2366 return LowerFormalArguments_Darwin(Chain, CallConv, isVarArg, Ins, 2367 dl, DAG, InVals); 2368 } 2369 } 2370 2371 SDValue 2372 PPCTargetLowering::LowerFormalArguments_32SVR4( 2373 SDValue Chain, 2374 CallingConv::ID CallConv, bool isVarArg, 2375 const SmallVectorImpl<ISD::InputArg> 2376 &Ins, 2377 SDLoc dl, SelectionDAG &DAG, 2378 SmallVectorImpl<SDValue> &InVals) const { 2379 2380 // 32-bit SVR4 ABI Stack Frame Layout: 2381 // +-----------------------------------+ 2382 // +--> | Back chain | 2383 // | +-----------------------------------+ 2384 // | | Floating-point register save area | 2385 // | +-----------------------------------+ 2386 // | | General register save area | 2387 // | +-----------------------------------+ 2388 // | | CR save word | 2389 // | +-----------------------------------+ 2390 // | | VRSAVE save word | 2391 // | +-----------------------------------+ 2392 // | | Alignment padding | 2393 // | +-----------------------------------+ 2394 // | | Vector register save area | 2395 // | +-----------------------------------+ 2396 // | | Local variable space | 2397 // | +-----------------------------------+ 2398 // | | Parameter list area | 2399 // | +-----------------------------------+ 2400 // | | LR save word | 2401 // | +-----------------------------------+ 2402 // SP--> +--- | Back chain | 2403 // +-----------------------------------+ 2404 // 2405 // Specifications: 2406 // System V Application Binary Interface PowerPC Processor Supplement 2407 // AltiVec Technology Programming Interface Manual 2408 2409 MachineFunction &MF = DAG.getMachineFunction(); 2410 MachineFrameInfo *MFI = MF.getFrameInfo(); 2411 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2412 2413 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2414 // Potential tail calls could cause overwriting of argument stack slots. 2415 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 2416 (CallConv == CallingConv::Fast)); 2417 unsigned PtrByteSize = 4; 2418 2419 // Assign locations to all of the incoming arguments. 2420 SmallVector<CCValAssign, 16> ArgLocs; 2421 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 2422 *DAG.getContext()); 2423 2424 // Reserve space for the linkage area on the stack. 2425 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(false, false, false); 2426 CCInfo.AllocateStack(LinkageSize, PtrByteSize); 2427 2428 CCInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4); 2429 2430 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { 2431 CCValAssign &VA = ArgLocs[i]; 2432 2433 // Arguments stored in registers. 2434 if (VA.isRegLoc()) { 2435 const TargetRegisterClass *RC; 2436 EVT ValVT = VA.getValVT(); 2437 2438 switch (ValVT.getSimpleVT().SimpleTy) { 2439 default: 2440 llvm_unreachable("ValVT not supported by formal arguments Lowering"); 2441 case MVT::i1: 2442 case MVT::i32: 2443 RC = &PPC::GPRCRegClass; 2444 break; 2445 case MVT::f32: 2446 RC = &PPC::F4RCRegClass; 2447 break; 2448 case MVT::f64: 2449 if (Subtarget.hasVSX()) 2450 RC = &PPC::VSFRCRegClass; 2451 else 2452 RC = &PPC::F8RCRegClass; 2453 break; 2454 case MVT::v16i8: 2455 case MVT::v8i16: 2456 case MVT::v4i32: 2457 case MVT::v4f32: 2458 RC = &PPC::VRRCRegClass; 2459 break; 2460 case MVT::v2f64: 2461 case MVT::v2i64: 2462 RC = &PPC::VSHRCRegClass; 2463 break; 2464 } 2465 2466 // Transform the arguments stored in physical registers into virtual ones. 2467 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC); 2468 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, 2469 ValVT == MVT::i1 ? MVT::i32 : ValVT); 2470 2471 if (ValVT == MVT::i1) 2472 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgValue); 2473 2474 InVals.push_back(ArgValue); 2475 } else { 2476 // Argument stored in memory. 2477 assert(VA.isMemLoc()); 2478 2479 unsigned ArgSize = VA.getLocVT().getStoreSize(); 2480 int FI = MFI->CreateFixedObject(ArgSize, VA.getLocMemOffset(), 2481 isImmutable); 2482 2483 // Create load nodes to retrieve arguments from the stack. 2484 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 2485 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN, 2486 MachinePointerInfo(), 2487 false, false, false, 0)); 2488 } 2489 } 2490 2491 // Assign locations to all of the incoming aggregate by value arguments. 2492 // Aggregates passed by value are stored in the local variable space of the 2493 // caller's stack frame, right above the parameter list area. 2494 SmallVector<CCValAssign, 16> ByValArgLocs; 2495 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(), 2496 ByValArgLocs, *DAG.getContext()); 2497 2498 // Reserve stack space for the allocations in CCInfo. 2499 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize); 2500 2501 CCByValInfo.AnalyzeFormalArguments(Ins, CC_PPC32_SVR4_ByVal); 2502 2503 // Area that is at least reserved in the caller of this function. 2504 unsigned MinReservedArea = CCByValInfo.getNextStackOffset(); 2505 MinReservedArea = std::max(MinReservedArea, LinkageSize); 2506 2507 // Set the size that is at least reserved in caller of this function. Tail 2508 // call optimized function's reserved stack space needs to be aligned so that 2509 // taking the difference between two stack areas will result in an aligned 2510 // stack. 2511 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea); 2512 FuncInfo->setMinReservedArea(MinReservedArea); 2513 2514 SmallVector<SDValue, 8> MemOps; 2515 2516 // If the function takes variable number of arguments, make a frame index for 2517 // the start of the first vararg value... for expansion of llvm.va_start. 2518 if (isVarArg) { 2519 static const MCPhysReg GPArgRegs[] = { 2520 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 2521 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 2522 }; 2523 const unsigned NumGPArgRegs = array_lengthof(GPArgRegs); 2524 2525 static const MCPhysReg FPArgRegs[] = { 2526 PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7, 2527 PPC::F8 2528 }; 2529 unsigned NumFPArgRegs = array_lengthof(FPArgRegs); 2530 if (DisablePPCFloatInVariadic) 2531 NumFPArgRegs = 0; 2532 2533 FuncInfo->setVarArgsNumGPR(CCInfo.getFirstUnallocated(GPArgRegs, 2534 NumGPArgRegs)); 2535 FuncInfo->setVarArgsNumFPR(CCInfo.getFirstUnallocated(FPArgRegs, 2536 NumFPArgRegs)); 2537 2538 // Make room for NumGPArgRegs and NumFPArgRegs. 2539 int Depth = NumGPArgRegs * PtrVT.getSizeInBits()/8 + 2540 NumFPArgRegs * MVT(MVT::f64).getSizeInBits()/8; 2541 2542 FuncInfo->setVarArgsStackOffset( 2543 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8, 2544 CCInfo.getNextStackOffset(), true)); 2545 2546 FuncInfo->setVarArgsFrameIndex(MFI->CreateStackObject(Depth, 8, false)); 2547 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 2548 2549 // The fixed integer arguments of a variadic function are stored to the 2550 // VarArgsFrameIndex on the stack so that they may be loaded by deferencing 2551 // the result of va_next. 2552 for (unsigned GPRIndex = 0; GPRIndex != NumGPArgRegs; ++GPRIndex) { 2553 // Get an existing live-in vreg, or add a new one. 2554 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(GPArgRegs[GPRIndex]); 2555 if (!VReg) 2556 VReg = MF.addLiveIn(GPArgRegs[GPRIndex], &PPC::GPRCRegClass); 2557 2558 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 2559 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 2560 MachinePointerInfo(), false, false, 0); 2561 MemOps.push_back(Store); 2562 // Increment the address by four for the next argument to store 2563 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT); 2564 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 2565 } 2566 2567 // FIXME 32-bit SVR4: We only need to save FP argument registers if CR bit 6 2568 // is set. 2569 // The double arguments are stored to the VarArgsFrameIndex 2570 // on the stack. 2571 for (unsigned FPRIndex = 0; FPRIndex != NumFPArgRegs; ++FPRIndex) { 2572 // Get an existing live-in vreg, or add a new one. 2573 unsigned VReg = MF.getRegInfo().getLiveInVirtReg(FPArgRegs[FPRIndex]); 2574 if (!VReg) 2575 VReg = MF.addLiveIn(FPArgRegs[FPRIndex], &PPC::F8RCRegClass); 2576 2577 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::f64); 2578 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 2579 MachinePointerInfo(), false, false, 0); 2580 MemOps.push_back(Store); 2581 // Increment the address by eight for the next argument to store 2582 SDValue PtrOff = DAG.getConstant(MVT(MVT::f64).getSizeInBits()/8, 2583 PtrVT); 2584 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 2585 } 2586 } 2587 2588 if (!MemOps.empty()) 2589 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 2590 2591 return Chain; 2592 } 2593 2594 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 2595 // value to MVT::i64 and then truncate to the correct register size. 2596 SDValue 2597 PPCTargetLowering::extendArgForPPC64(ISD::ArgFlagsTy Flags, EVT ObjectVT, 2598 SelectionDAG &DAG, SDValue ArgVal, 2599 SDLoc dl) const { 2600 if (Flags.isSExt()) 2601 ArgVal = DAG.getNode(ISD::AssertSext, dl, MVT::i64, ArgVal, 2602 DAG.getValueType(ObjectVT)); 2603 else if (Flags.isZExt()) 2604 ArgVal = DAG.getNode(ISD::AssertZext, dl, MVT::i64, ArgVal, 2605 DAG.getValueType(ObjectVT)); 2606 2607 return DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, ArgVal); 2608 } 2609 2610 SDValue 2611 PPCTargetLowering::LowerFormalArguments_64SVR4( 2612 SDValue Chain, 2613 CallingConv::ID CallConv, bool isVarArg, 2614 const SmallVectorImpl<ISD::InputArg> 2615 &Ins, 2616 SDLoc dl, SelectionDAG &DAG, 2617 SmallVectorImpl<SDValue> &InVals) const { 2618 // TODO: add description of PPC stack frame format, or at least some docs. 2619 // 2620 bool isELFv2ABI = Subtarget.isELFv2ABI(); 2621 bool isLittleEndian = Subtarget.isLittleEndian(); 2622 MachineFunction &MF = DAG.getMachineFunction(); 2623 MachineFrameInfo *MFI = MF.getFrameInfo(); 2624 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2625 2626 assert(!(CallConv == CallingConv::Fast && isVarArg) && 2627 "fastcc not supported on varargs functions"); 2628 2629 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2630 // Potential tail calls could cause overwriting of argument stack slots. 2631 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 2632 (CallConv == CallingConv::Fast)); 2633 unsigned PtrByteSize = 8; 2634 2635 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false, 2636 isELFv2ABI); 2637 2638 static const MCPhysReg GPR[] = { 2639 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 2640 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 2641 }; 2642 2643 static const MCPhysReg *FPR = GetFPR(); 2644 2645 static const MCPhysReg VR[] = { 2646 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 2647 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 2648 }; 2649 static const MCPhysReg VSRH[] = { 2650 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8, 2651 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13 2652 }; 2653 2654 const unsigned Num_GPR_Regs = array_lengthof(GPR); 2655 const unsigned Num_FPR_Regs = 13; 2656 const unsigned Num_VR_Regs = array_lengthof(VR); 2657 2658 // Do a first pass over the arguments to determine whether the ABI 2659 // guarantees that our caller has allocated the parameter save area 2660 // on its stack frame. In the ELFv1 ABI, this is always the case; 2661 // in the ELFv2 ABI, it is true if this is a vararg function or if 2662 // any parameter is located in a stack slot. 2663 2664 bool HasParameterArea = !isELFv2ABI || isVarArg; 2665 unsigned ParamAreaSize = Num_GPR_Regs * PtrByteSize; 2666 unsigned NumBytes = LinkageSize; 2667 unsigned AvailableFPRs = Num_FPR_Regs; 2668 unsigned AvailableVRs = Num_VR_Regs; 2669 for (unsigned i = 0, e = Ins.size(); i != e; ++i) 2670 if (CalculateStackSlotUsed(Ins[i].VT, Ins[i].ArgVT, Ins[i].Flags, 2671 PtrByteSize, LinkageSize, ParamAreaSize, 2672 NumBytes, AvailableFPRs, AvailableVRs)) 2673 HasParameterArea = true; 2674 2675 // Add DAG nodes to load the arguments or copy them out of registers. On 2676 // entry to a function on PPC, the arguments start after the linkage area, 2677 // although the first ones are often in registers. 2678 2679 unsigned ArgOffset = LinkageSize; 2680 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 2681 SmallVector<SDValue, 8> MemOps; 2682 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin(); 2683 unsigned CurArgIdx = 0; 2684 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) { 2685 SDValue ArgVal; 2686 bool needsLoad = false; 2687 EVT ObjectVT = Ins[ArgNo].VT; 2688 EVT OrigVT = Ins[ArgNo].ArgVT; 2689 unsigned ObjSize = ObjectVT.getStoreSize(); 2690 unsigned ArgSize = ObjSize; 2691 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 2692 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx); 2693 CurArgIdx = Ins[ArgNo].OrigArgIndex; 2694 2695 // We re-align the argument offset for each argument, except when using the 2696 // fast calling convention, when we need to make sure we do that only when 2697 // we'll actually use a stack slot. 2698 unsigned CurArgOffset, Align; 2699 auto ComputeArgOffset = [&]() { 2700 /* Respect alignment of argument on the stack. */ 2701 Align = CalculateStackSlotAlignment(ObjectVT, OrigVT, Flags, PtrByteSize); 2702 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 2703 CurArgOffset = ArgOffset; 2704 }; 2705 2706 if (CallConv != CallingConv::Fast) { 2707 ComputeArgOffset(); 2708 2709 /* Compute GPR index associated with argument offset. */ 2710 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 2711 GPR_idx = std::min(GPR_idx, Num_GPR_Regs); 2712 } 2713 2714 // FIXME the codegen can be much improved in some cases. 2715 // We do not have to keep everything in memory. 2716 if (Flags.isByVal()) { 2717 if (CallConv == CallingConv::Fast) 2718 ComputeArgOffset(); 2719 2720 // ObjSize is the true size, ArgSize rounded up to multiple of registers. 2721 ObjSize = Flags.getByValSize(); 2722 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 2723 // Empty aggregate parameters do not take up registers. Examples: 2724 // struct { } a; 2725 // union { } b; 2726 // int c[0]; 2727 // etc. However, we have to provide a place-holder in InVals, so 2728 // pretend we have an 8-byte item at the current address for that 2729 // purpose. 2730 if (!ObjSize) { 2731 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true); 2732 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 2733 InVals.push_back(FIN); 2734 continue; 2735 } 2736 2737 // Create a stack object covering all stack doublewords occupied 2738 // by the argument. If the argument is (fully or partially) on 2739 // the stack, or if the argument is fully in registers but the 2740 // caller has allocated the parameter save anyway, we can refer 2741 // directly to the caller's stack frame. Otherwise, create a 2742 // local copy in our own frame. 2743 int FI; 2744 if (HasParameterArea || 2745 ArgSize + ArgOffset > LinkageSize + Num_GPR_Regs * PtrByteSize) 2746 FI = MFI->CreateFixedObject(ArgSize, ArgOffset, false, true); 2747 else 2748 FI = MFI->CreateStackObject(ArgSize, Align, false); 2749 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 2750 2751 // Handle aggregates smaller than 8 bytes. 2752 if (ObjSize < PtrByteSize) { 2753 // The value of the object is its address, which differs from the 2754 // address of the enclosing doubleword on big-endian systems. 2755 SDValue Arg = FIN; 2756 if (!isLittleEndian) { 2757 SDValue ArgOff = DAG.getConstant(PtrByteSize - ObjSize, PtrVT); 2758 Arg = DAG.getNode(ISD::ADD, dl, ArgOff.getValueType(), Arg, ArgOff); 2759 } 2760 InVals.push_back(Arg); 2761 2762 if (GPR_idx != Num_GPR_Regs) { 2763 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 2764 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 2765 SDValue Store; 2766 2767 if (ObjSize==1 || ObjSize==2 || ObjSize==4) { 2768 EVT ObjType = (ObjSize == 1 ? MVT::i8 : 2769 (ObjSize == 2 ? MVT::i16 : MVT::i32)); 2770 Store = DAG.getTruncStore(Val.getValue(1), dl, Val, Arg, 2771 MachinePointerInfo(FuncArg), 2772 ObjType, false, false, 0); 2773 } else { 2774 // For sizes that don't fit a truncating store (3, 5, 6, 7), 2775 // store the whole register as-is to the parameter save area 2776 // slot. 2777 Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 2778 MachinePointerInfo(FuncArg), 2779 false, false, 0); 2780 } 2781 2782 MemOps.push_back(Store); 2783 } 2784 // Whether we copied from a register or not, advance the offset 2785 // into the parameter save area by a full doubleword. 2786 ArgOffset += PtrByteSize; 2787 continue; 2788 } 2789 2790 // The value of the object is its address, which is the address of 2791 // its first stack doubleword. 2792 InVals.push_back(FIN); 2793 2794 // Store whatever pieces of the object are in registers to memory. 2795 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) { 2796 if (GPR_idx == Num_GPR_Regs) 2797 break; 2798 2799 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 2800 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 2801 SDValue Addr = FIN; 2802 if (j) { 2803 SDValue Off = DAG.getConstant(j, PtrVT); 2804 Addr = DAG.getNode(ISD::ADD, dl, Off.getValueType(), Addr, Off); 2805 } 2806 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, Addr, 2807 MachinePointerInfo(FuncArg, j), 2808 false, false, 0); 2809 MemOps.push_back(Store); 2810 ++GPR_idx; 2811 } 2812 ArgOffset += ArgSize; 2813 continue; 2814 } 2815 2816 switch (ObjectVT.getSimpleVT().SimpleTy) { 2817 default: llvm_unreachable("Unhandled argument type!"); 2818 case MVT::i1: 2819 case MVT::i32: 2820 case MVT::i64: 2821 // These can be scalar arguments or elements of an integer array type 2822 // passed directly. Clang may use those instead of "byval" aggregate 2823 // types to avoid forcing arguments to memory unnecessarily. 2824 if (GPR_idx != Num_GPR_Regs) { 2825 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 2826 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 2827 2828 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1) 2829 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 2830 // value to MVT::i64 and then truncate to the correct register size. 2831 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl); 2832 } else { 2833 if (CallConv == CallingConv::Fast) 2834 ComputeArgOffset(); 2835 2836 needsLoad = true; 2837 ArgSize = PtrByteSize; 2838 } 2839 if (CallConv != CallingConv::Fast || needsLoad) 2840 ArgOffset += 8; 2841 break; 2842 2843 case MVT::f32: 2844 case MVT::f64: 2845 // These can be scalar arguments or elements of a float array type 2846 // passed directly. The latter are used to implement ELFv2 homogenous 2847 // float aggregates. 2848 if (FPR_idx != Num_FPR_Regs) { 2849 unsigned VReg; 2850 2851 if (ObjectVT == MVT::f32) 2852 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass); 2853 else 2854 VReg = MF.addLiveIn(FPR[FPR_idx], Subtarget.hasVSX() ? 2855 &PPC::VSFRCRegClass : 2856 &PPC::F8RCRegClass); 2857 2858 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 2859 ++FPR_idx; 2860 } else if (GPR_idx != Num_GPR_Regs && CallConv != CallingConv::Fast) { 2861 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8 2862 // once we support fp <-> gpr moves. 2863 2864 // This can only ever happen in the presence of f32 array types, 2865 // since otherwise we never run out of FPRs before running out 2866 // of GPRs. 2867 unsigned VReg = MF.addLiveIn(GPR[GPR_idx++], &PPC::G8RCRegClass); 2868 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 2869 2870 if (ObjectVT == MVT::f32) { 2871 if ((ArgOffset % PtrByteSize) == (isLittleEndian ? 4 : 0)) 2872 ArgVal = DAG.getNode(ISD::SRL, dl, MVT::i64, ArgVal, 2873 DAG.getConstant(32, MVT::i32)); 2874 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, ArgVal); 2875 } 2876 2877 ArgVal = DAG.getNode(ISD::BITCAST, dl, ObjectVT, ArgVal); 2878 } else { 2879 if (CallConv == CallingConv::Fast) 2880 ComputeArgOffset(); 2881 2882 needsLoad = true; 2883 } 2884 2885 // When passing an array of floats, the array occupies consecutive 2886 // space in the argument area; only round up to the next doubleword 2887 // at the end of the array. Otherwise, each float takes 8 bytes. 2888 if (CallConv != CallingConv::Fast || needsLoad) { 2889 ArgSize = Flags.isInConsecutiveRegs() ? ObjSize : PtrByteSize; 2890 ArgOffset += ArgSize; 2891 if (Flags.isInConsecutiveRegsLast()) 2892 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 2893 } 2894 break; 2895 case MVT::v4f32: 2896 case MVT::v4i32: 2897 case MVT::v8i16: 2898 case MVT::v16i8: 2899 case MVT::v2f64: 2900 case MVT::v2i64: 2901 // These can be scalar arguments or elements of a vector array type 2902 // passed directly. The latter are used to implement ELFv2 homogenous 2903 // vector aggregates. 2904 if (VR_idx != Num_VR_Regs) { 2905 unsigned VReg = (ObjectVT == MVT::v2f64 || ObjectVT == MVT::v2i64) ? 2906 MF.addLiveIn(VSRH[VR_idx], &PPC::VSHRCRegClass) : 2907 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass); 2908 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 2909 ++VR_idx; 2910 } else { 2911 if (CallConv == CallingConv::Fast) 2912 ComputeArgOffset(); 2913 2914 needsLoad = true; 2915 } 2916 if (CallConv != CallingConv::Fast || needsLoad) 2917 ArgOffset += 16; 2918 break; 2919 } 2920 2921 // We need to load the argument to a virtual register if we determined 2922 // above that we ran out of physical registers of the appropriate type. 2923 if (needsLoad) { 2924 if (ObjSize < ArgSize && !isLittleEndian) 2925 CurArgOffset += ArgSize - ObjSize; 2926 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, isImmutable); 2927 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 2928 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(), 2929 false, false, false, 0); 2930 } 2931 2932 InVals.push_back(ArgVal); 2933 } 2934 2935 // Area that is at least reserved in the caller of this function. 2936 unsigned MinReservedArea; 2937 if (HasParameterArea) 2938 MinReservedArea = std::max(ArgOffset, LinkageSize + 8 * PtrByteSize); 2939 else 2940 MinReservedArea = LinkageSize; 2941 2942 // Set the size that is at least reserved in caller of this function. Tail 2943 // call optimized functions' reserved stack space needs to be aligned so that 2944 // taking the difference between two stack areas will result in an aligned 2945 // stack. 2946 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea); 2947 FuncInfo->setMinReservedArea(MinReservedArea); 2948 2949 // If the function takes variable number of arguments, make a frame index for 2950 // the start of the first vararg value... for expansion of llvm.va_start. 2951 if (isVarArg) { 2952 int Depth = ArgOffset; 2953 2954 FuncInfo->setVarArgsFrameIndex( 2955 MFI->CreateFixedObject(PtrByteSize, Depth, true)); 2956 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 2957 2958 // If this function is vararg, store any remaining integer argument regs 2959 // to their spots on the stack so that they may be loaded by deferencing the 2960 // result of va_next. 2961 for (GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 2962 GPR_idx < Num_GPR_Regs; ++GPR_idx) { 2963 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 2964 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 2965 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 2966 MachinePointerInfo(), false, false, 0); 2967 MemOps.push_back(Store); 2968 // Increment the address by four for the next argument to store 2969 SDValue PtrOff = DAG.getConstant(PtrByteSize, PtrVT); 2970 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 2971 } 2972 } 2973 2974 if (!MemOps.empty()) 2975 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 2976 2977 return Chain; 2978 } 2979 2980 SDValue 2981 PPCTargetLowering::LowerFormalArguments_Darwin( 2982 SDValue Chain, 2983 CallingConv::ID CallConv, bool isVarArg, 2984 const SmallVectorImpl<ISD::InputArg> 2985 &Ins, 2986 SDLoc dl, SelectionDAG &DAG, 2987 SmallVectorImpl<SDValue> &InVals) const { 2988 // TODO: add description of PPC stack frame format, or at least some docs. 2989 // 2990 MachineFunction &MF = DAG.getMachineFunction(); 2991 MachineFrameInfo *MFI = MF.getFrameInfo(); 2992 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 2993 2994 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 2995 bool isPPC64 = PtrVT == MVT::i64; 2996 // Potential tail calls could cause overwriting of argument stack slots. 2997 bool isImmutable = !(getTargetMachine().Options.GuaranteedTailCallOpt && 2998 (CallConv == CallingConv::Fast)); 2999 unsigned PtrByteSize = isPPC64 ? 8 : 4; 3000 3001 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true, 3002 false); 3003 unsigned ArgOffset = LinkageSize; 3004 // Area that is at least reserved in caller of this function. 3005 unsigned MinReservedArea = ArgOffset; 3006 3007 static const MCPhysReg GPR_32[] = { // 32-bit registers. 3008 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 3009 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 3010 }; 3011 static const MCPhysReg GPR_64[] = { // 64-bit registers. 3012 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 3013 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 3014 }; 3015 3016 static const MCPhysReg *FPR = GetFPR(); 3017 3018 static const MCPhysReg VR[] = { 3019 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 3020 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 3021 }; 3022 3023 const unsigned Num_GPR_Regs = array_lengthof(GPR_32); 3024 const unsigned Num_FPR_Regs = 13; 3025 const unsigned Num_VR_Regs = array_lengthof( VR); 3026 3027 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 3028 3029 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32; 3030 3031 // In 32-bit non-varargs functions, the stack space for vectors is after the 3032 // stack space for non-vectors. We do not use this space unless we have 3033 // too many vectors to fit in registers, something that only occurs in 3034 // constructed examples:), but we have to walk the arglist to figure 3035 // that out...for the pathological case, compute VecArgOffset as the 3036 // start of the vector parameter area. Computing VecArgOffset is the 3037 // entire point of the following loop. 3038 unsigned VecArgOffset = ArgOffset; 3039 if (!isVarArg && !isPPC64) { 3040 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; 3041 ++ArgNo) { 3042 EVT ObjectVT = Ins[ArgNo].VT; 3043 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 3044 3045 if (Flags.isByVal()) { 3046 // ObjSize is the true size, ArgSize rounded up to multiple of regs. 3047 unsigned ObjSize = Flags.getByValSize(); 3048 unsigned ArgSize = 3049 ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 3050 VecArgOffset += ArgSize; 3051 continue; 3052 } 3053 3054 switch(ObjectVT.getSimpleVT().SimpleTy) { 3055 default: llvm_unreachable("Unhandled argument type!"); 3056 case MVT::i1: 3057 case MVT::i32: 3058 case MVT::f32: 3059 VecArgOffset += 4; 3060 break; 3061 case MVT::i64: // PPC64 3062 case MVT::f64: 3063 // FIXME: We are guaranteed to be !isPPC64 at this point. 3064 // Does MVT::i64 apply? 3065 VecArgOffset += 8; 3066 break; 3067 case MVT::v4f32: 3068 case MVT::v4i32: 3069 case MVT::v8i16: 3070 case MVT::v16i8: 3071 // Nothing to do, we're only looking at Nonvector args here. 3072 break; 3073 } 3074 } 3075 } 3076 // We've found where the vector parameter area in memory is. Skip the 3077 // first 12 parameters; these don't use that memory. 3078 VecArgOffset = ((VecArgOffset+15)/16)*16; 3079 VecArgOffset += 12*16; 3080 3081 // Add DAG nodes to load the arguments or copy them out of registers. On 3082 // entry to a function on PPC, the arguments start after the linkage area, 3083 // although the first ones are often in registers. 3084 3085 SmallVector<SDValue, 8> MemOps; 3086 unsigned nAltivecParamsAtEnd = 0; 3087 Function::const_arg_iterator FuncArg = MF.getFunction()->arg_begin(); 3088 unsigned CurArgIdx = 0; 3089 for (unsigned ArgNo = 0, e = Ins.size(); ArgNo != e; ++ArgNo) { 3090 SDValue ArgVal; 3091 bool needsLoad = false; 3092 EVT ObjectVT = Ins[ArgNo].VT; 3093 unsigned ObjSize = ObjectVT.getSizeInBits()/8; 3094 unsigned ArgSize = ObjSize; 3095 ISD::ArgFlagsTy Flags = Ins[ArgNo].Flags; 3096 std::advance(FuncArg, Ins[ArgNo].OrigArgIndex - CurArgIdx); 3097 CurArgIdx = Ins[ArgNo].OrigArgIndex; 3098 3099 unsigned CurArgOffset = ArgOffset; 3100 3101 // Varargs or 64 bit Altivec parameters are padded to a 16 byte boundary. 3102 if (ObjectVT==MVT::v4f32 || ObjectVT==MVT::v4i32 || 3103 ObjectVT==MVT::v8i16 || ObjectVT==MVT::v16i8) { 3104 if (isVarArg || isPPC64) { 3105 MinReservedArea = ((MinReservedArea+15)/16)*16; 3106 MinReservedArea += CalculateStackSlotSize(ObjectVT, 3107 Flags, 3108 PtrByteSize); 3109 } else nAltivecParamsAtEnd++; 3110 } else 3111 // Calculate min reserved area. 3112 MinReservedArea += CalculateStackSlotSize(Ins[ArgNo].VT, 3113 Flags, 3114 PtrByteSize); 3115 3116 // FIXME the codegen can be much improved in some cases. 3117 // We do not have to keep everything in memory. 3118 if (Flags.isByVal()) { 3119 // ObjSize is the true size, ArgSize rounded up to multiple of registers. 3120 ObjSize = Flags.getByValSize(); 3121 ArgSize = ((ObjSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 3122 // Objects of size 1 and 2 are right justified, everything else is 3123 // left justified. This means the memory address is adjusted forwards. 3124 if (ObjSize==1 || ObjSize==2) { 3125 CurArgOffset = CurArgOffset + (4 - ObjSize); 3126 } 3127 // The value of the object is its address. 3128 int FI = MFI->CreateFixedObject(ObjSize, CurArgOffset, false, true); 3129 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3130 InVals.push_back(FIN); 3131 if (ObjSize==1 || ObjSize==2) { 3132 if (GPR_idx != Num_GPR_Regs) { 3133 unsigned VReg; 3134 if (isPPC64) 3135 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 3136 else 3137 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 3138 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3139 EVT ObjType = ObjSize == 1 ? MVT::i8 : MVT::i16; 3140 SDValue Store = DAG.getTruncStore(Val.getValue(1), dl, Val, FIN, 3141 MachinePointerInfo(FuncArg), 3142 ObjType, false, false, 0); 3143 MemOps.push_back(Store); 3144 ++GPR_idx; 3145 } 3146 3147 ArgOffset += PtrByteSize; 3148 3149 continue; 3150 } 3151 for (unsigned j = 0; j < ArgSize; j += PtrByteSize) { 3152 // Store whatever pieces of the object are in registers 3153 // to memory. ArgOffset will be the address of the beginning 3154 // of the object. 3155 if (GPR_idx != Num_GPR_Regs) { 3156 unsigned VReg; 3157 if (isPPC64) 3158 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 3159 else 3160 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 3161 int FI = MFI->CreateFixedObject(PtrByteSize, ArgOffset, true); 3162 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3163 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3164 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 3165 MachinePointerInfo(FuncArg, j), 3166 false, false, 0); 3167 MemOps.push_back(Store); 3168 ++GPR_idx; 3169 ArgOffset += PtrByteSize; 3170 } else { 3171 ArgOffset += ArgSize - (ArgOffset-CurArgOffset); 3172 break; 3173 } 3174 } 3175 continue; 3176 } 3177 3178 switch (ObjectVT.getSimpleVT().SimpleTy) { 3179 default: llvm_unreachable("Unhandled argument type!"); 3180 case MVT::i1: 3181 case MVT::i32: 3182 if (!isPPC64) { 3183 if (GPR_idx != Num_GPR_Regs) { 3184 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 3185 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32); 3186 3187 if (ObjectVT == MVT::i1) 3188 ArgVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, ArgVal); 3189 3190 ++GPR_idx; 3191 } else { 3192 needsLoad = true; 3193 ArgSize = PtrByteSize; 3194 } 3195 // All int arguments reserve stack space in the Darwin ABI. 3196 ArgOffset += PtrByteSize; 3197 break; 3198 } 3199 // FALLTHROUGH 3200 case MVT::i64: // PPC64 3201 if (GPR_idx != Num_GPR_Regs) { 3202 unsigned VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 3203 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64); 3204 3205 if (ObjectVT == MVT::i32 || ObjectVT == MVT::i1) 3206 // PPC64 passes i8, i16, and i32 values in i64 registers. Promote 3207 // value to MVT::i64 and then truncate to the correct register size. 3208 ArgVal = extendArgForPPC64(Flags, ObjectVT, DAG, ArgVal, dl); 3209 3210 ++GPR_idx; 3211 } else { 3212 needsLoad = true; 3213 ArgSize = PtrByteSize; 3214 } 3215 // All int arguments reserve stack space in the Darwin ABI. 3216 ArgOffset += 8; 3217 break; 3218 3219 case MVT::f32: 3220 case MVT::f64: 3221 // Every 4 bytes of argument space consumes one of the GPRs available for 3222 // argument passing. 3223 if (GPR_idx != Num_GPR_Regs) { 3224 ++GPR_idx; 3225 if (ObjSize == 8 && GPR_idx != Num_GPR_Regs && !isPPC64) 3226 ++GPR_idx; 3227 } 3228 if (FPR_idx != Num_FPR_Regs) { 3229 unsigned VReg; 3230 3231 if (ObjectVT == MVT::f32) 3232 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F4RCRegClass); 3233 else 3234 VReg = MF.addLiveIn(FPR[FPR_idx], &PPC::F8RCRegClass); 3235 3236 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 3237 ++FPR_idx; 3238 } else { 3239 needsLoad = true; 3240 } 3241 3242 // All FP arguments reserve stack space in the Darwin ABI. 3243 ArgOffset += isPPC64 ? 8 : ObjSize; 3244 break; 3245 case MVT::v4f32: 3246 case MVT::v4i32: 3247 case MVT::v8i16: 3248 case MVT::v16i8: 3249 // Note that vector arguments in registers don't reserve stack space, 3250 // except in varargs functions. 3251 if (VR_idx != Num_VR_Regs) { 3252 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass); 3253 ArgVal = DAG.getCopyFromReg(Chain, dl, VReg, ObjectVT); 3254 if (isVarArg) { 3255 while ((ArgOffset % 16) != 0) { 3256 ArgOffset += PtrByteSize; 3257 if (GPR_idx != Num_GPR_Regs) 3258 GPR_idx++; 3259 } 3260 ArgOffset += 16; 3261 GPR_idx = std::min(GPR_idx+4, Num_GPR_Regs); // FIXME correct for ppc64? 3262 } 3263 ++VR_idx; 3264 } else { 3265 if (!isVarArg && !isPPC64) { 3266 // Vectors go after all the nonvectors. 3267 CurArgOffset = VecArgOffset; 3268 VecArgOffset += 16; 3269 } else { 3270 // Vectors are aligned. 3271 ArgOffset = ((ArgOffset+15)/16)*16; 3272 CurArgOffset = ArgOffset; 3273 ArgOffset += 16; 3274 } 3275 needsLoad = true; 3276 } 3277 break; 3278 } 3279 3280 // We need to load the argument to a virtual register if we determined above 3281 // that we ran out of physical registers of the appropriate type. 3282 if (needsLoad) { 3283 int FI = MFI->CreateFixedObject(ObjSize, 3284 CurArgOffset + (ArgSize - ObjSize), 3285 isImmutable); 3286 SDValue FIN = DAG.getFrameIndex(FI, PtrVT); 3287 ArgVal = DAG.getLoad(ObjectVT, dl, Chain, FIN, MachinePointerInfo(), 3288 false, false, false, 0); 3289 } 3290 3291 InVals.push_back(ArgVal); 3292 } 3293 3294 // Allow for Altivec parameters at the end, if needed. 3295 if (nAltivecParamsAtEnd) { 3296 MinReservedArea = ((MinReservedArea+15)/16)*16; 3297 MinReservedArea += 16*nAltivecParamsAtEnd; 3298 } 3299 3300 // Area that is at least reserved in the caller of this function. 3301 MinReservedArea = std::max(MinReservedArea, LinkageSize + 8 * PtrByteSize); 3302 3303 // Set the size that is at least reserved in caller of this function. Tail 3304 // call optimized functions' reserved stack space needs to be aligned so that 3305 // taking the difference between two stack areas will result in an aligned 3306 // stack. 3307 MinReservedArea = EnsureStackAlignment(MF.getTarget(), MinReservedArea); 3308 FuncInfo->setMinReservedArea(MinReservedArea); 3309 3310 // If the function takes variable number of arguments, make a frame index for 3311 // the start of the first vararg value... for expansion of llvm.va_start. 3312 if (isVarArg) { 3313 int Depth = ArgOffset; 3314 3315 FuncInfo->setVarArgsFrameIndex( 3316 MFI->CreateFixedObject(PtrVT.getSizeInBits()/8, 3317 Depth, true)); 3318 SDValue FIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(), PtrVT); 3319 3320 // If this function is vararg, store any remaining integer argument regs 3321 // to their spots on the stack so that they may be loaded by deferencing the 3322 // result of va_next. 3323 for (; GPR_idx != Num_GPR_Regs; ++GPR_idx) { 3324 unsigned VReg; 3325 3326 if (isPPC64) 3327 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::G8RCRegClass); 3328 else 3329 VReg = MF.addLiveIn(GPR[GPR_idx], &PPC::GPRCRegClass); 3330 3331 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, PtrVT); 3332 SDValue Store = DAG.getStore(Val.getValue(1), dl, Val, FIN, 3333 MachinePointerInfo(), false, false, 0); 3334 MemOps.push_back(Store); 3335 // Increment the address by four for the next argument to store 3336 SDValue PtrOff = DAG.getConstant(PtrVT.getSizeInBits()/8, PtrVT); 3337 FIN = DAG.getNode(ISD::ADD, dl, PtrOff.getValueType(), FIN, PtrOff); 3338 } 3339 } 3340 3341 if (!MemOps.empty()) 3342 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOps); 3343 3344 return Chain; 3345 } 3346 3347 /// CalculateTailCallSPDiff - Get the amount the stack pointer has to be 3348 /// adjusted to accommodate the arguments for the tailcall. 3349 static int CalculateTailCallSPDiff(SelectionDAG& DAG, bool isTailCall, 3350 unsigned ParamSize) { 3351 3352 if (!isTailCall) return 0; 3353 3354 PPCFunctionInfo *FI = DAG.getMachineFunction().getInfo<PPCFunctionInfo>(); 3355 unsigned CallerMinReservedArea = FI->getMinReservedArea(); 3356 int SPDiff = (int)CallerMinReservedArea - (int)ParamSize; 3357 // Remember only if the new adjustement is bigger. 3358 if (SPDiff < FI->getTailCallSPDelta()) 3359 FI->setTailCallSPDelta(SPDiff); 3360 3361 return SPDiff; 3362 } 3363 3364 /// IsEligibleForTailCallOptimization - Check whether the call is eligible 3365 /// for tail call optimization. Targets which want to do tail call 3366 /// optimization should implement this function. 3367 bool 3368 PPCTargetLowering::IsEligibleForTailCallOptimization(SDValue Callee, 3369 CallingConv::ID CalleeCC, 3370 bool isVarArg, 3371 const SmallVectorImpl<ISD::InputArg> &Ins, 3372 SelectionDAG& DAG) const { 3373 if (!getTargetMachine().Options.GuaranteedTailCallOpt) 3374 return false; 3375 3376 // Variable argument functions are not supported. 3377 if (isVarArg) 3378 return false; 3379 3380 MachineFunction &MF = DAG.getMachineFunction(); 3381 CallingConv::ID CallerCC = MF.getFunction()->getCallingConv(); 3382 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) { 3383 // Functions containing by val parameters are not supported. 3384 for (unsigned i = 0; i != Ins.size(); i++) { 3385 ISD::ArgFlagsTy Flags = Ins[i].Flags; 3386 if (Flags.isByVal()) return false; 3387 } 3388 3389 // Non-PIC/GOT tail calls are supported. 3390 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) 3391 return true; 3392 3393 // At the moment we can only do local tail calls (in same module, hidden 3394 // or protected) if we are generating PIC. 3395 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) 3396 return G->getGlobal()->hasHiddenVisibility() 3397 || G->getGlobal()->hasProtectedVisibility(); 3398 } 3399 3400 return false; 3401 } 3402 3403 /// isCallCompatibleAddress - Return the immediate to use if the specified 3404 /// 32-bit value is representable in the immediate field of a BxA instruction. 3405 static SDNode *isBLACompatibleAddress(SDValue Op, SelectionDAG &DAG) { 3406 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); 3407 if (!C) return nullptr; 3408 3409 int Addr = C->getZExtValue(); 3410 if ((Addr & 3) != 0 || // Low 2 bits are implicitly zero. 3411 SignExtend32<26>(Addr) != Addr) 3412 return nullptr; // Top 6 bits have to be sext of immediate. 3413 3414 return DAG.getConstant((int)C->getZExtValue() >> 2, 3415 DAG.getTargetLoweringInfo().getPointerTy()).getNode(); 3416 } 3417 3418 namespace { 3419 3420 struct TailCallArgumentInfo { 3421 SDValue Arg; 3422 SDValue FrameIdxOp; 3423 int FrameIdx; 3424 3425 TailCallArgumentInfo() : FrameIdx(0) {} 3426 }; 3427 3428 } 3429 3430 /// StoreTailCallArgumentsToStackSlot - Stores arguments to their stack slot. 3431 static void 3432 StoreTailCallArgumentsToStackSlot(SelectionDAG &DAG, 3433 SDValue Chain, 3434 const SmallVectorImpl<TailCallArgumentInfo> &TailCallArgs, 3435 SmallVectorImpl<SDValue> &MemOpChains, 3436 SDLoc dl) { 3437 for (unsigned i = 0, e = TailCallArgs.size(); i != e; ++i) { 3438 SDValue Arg = TailCallArgs[i].Arg; 3439 SDValue FIN = TailCallArgs[i].FrameIdxOp; 3440 int FI = TailCallArgs[i].FrameIdx; 3441 // Store relative to framepointer. 3442 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, FIN, 3443 MachinePointerInfo::getFixedStack(FI), 3444 false, false, 0)); 3445 } 3446 } 3447 3448 /// EmitTailCallStoreFPAndRetAddr - Move the frame pointer and return address to 3449 /// the appropriate stack slot for the tail call optimized function call. 3450 static SDValue EmitTailCallStoreFPAndRetAddr(SelectionDAG &DAG, 3451 MachineFunction &MF, 3452 SDValue Chain, 3453 SDValue OldRetAddr, 3454 SDValue OldFP, 3455 int SPDiff, 3456 bool isPPC64, 3457 bool isDarwinABI, 3458 SDLoc dl) { 3459 if (SPDiff) { 3460 // Calculate the new stack slot for the return address. 3461 int SlotSize = isPPC64 ? 8 : 4; 3462 int NewRetAddrLoc = SPDiff + PPCFrameLowering::getReturnSaveOffset(isPPC64, 3463 isDarwinABI); 3464 int NewRetAddr = MF.getFrameInfo()->CreateFixedObject(SlotSize, 3465 NewRetAddrLoc, true); 3466 EVT VT = isPPC64 ? MVT::i64 : MVT::i32; 3467 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewRetAddr, VT); 3468 Chain = DAG.getStore(Chain, dl, OldRetAddr, NewRetAddrFrIdx, 3469 MachinePointerInfo::getFixedStack(NewRetAddr), 3470 false, false, 0); 3471 3472 // When using the 32/64-bit SVR4 ABI there is no need to move the FP stack 3473 // slot as the FP is never overwritten. 3474 if (isDarwinABI) { 3475 int NewFPLoc = 3476 SPDiff + PPCFrameLowering::getFramePointerSaveOffset(isPPC64, isDarwinABI); 3477 int NewFPIdx = MF.getFrameInfo()->CreateFixedObject(SlotSize, NewFPLoc, 3478 true); 3479 SDValue NewFramePtrIdx = DAG.getFrameIndex(NewFPIdx, VT); 3480 Chain = DAG.getStore(Chain, dl, OldFP, NewFramePtrIdx, 3481 MachinePointerInfo::getFixedStack(NewFPIdx), 3482 false, false, 0); 3483 } 3484 } 3485 return Chain; 3486 } 3487 3488 /// CalculateTailCallArgDest - Remember Argument for later processing. Calculate 3489 /// the position of the argument. 3490 static void 3491 CalculateTailCallArgDest(SelectionDAG &DAG, MachineFunction &MF, bool isPPC64, 3492 SDValue Arg, int SPDiff, unsigned ArgOffset, 3493 SmallVectorImpl<TailCallArgumentInfo>& TailCallArguments) { 3494 int Offset = ArgOffset + SPDiff; 3495 uint32_t OpSize = (Arg.getValueType().getSizeInBits()+7)/8; 3496 int FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true); 3497 EVT VT = isPPC64 ? MVT::i64 : MVT::i32; 3498 SDValue FIN = DAG.getFrameIndex(FI, VT); 3499 TailCallArgumentInfo Info; 3500 Info.Arg = Arg; 3501 Info.FrameIdxOp = FIN; 3502 Info.FrameIdx = FI; 3503 TailCallArguments.push_back(Info); 3504 } 3505 3506 /// EmitTCFPAndRetAddrLoad - Emit load from frame pointer and return address 3507 /// stack slot. Returns the chain as result and the loaded frame pointers in 3508 /// LROpOut/FPOpout. Used when tail calling. 3509 SDValue PPCTargetLowering::EmitTailCallLoadFPAndRetAddr(SelectionDAG & DAG, 3510 int SPDiff, 3511 SDValue Chain, 3512 SDValue &LROpOut, 3513 SDValue &FPOpOut, 3514 bool isDarwinABI, 3515 SDLoc dl) const { 3516 if (SPDiff) { 3517 // Load the LR and FP stack slot for later adjusting. 3518 EVT VT = Subtarget.isPPC64() ? MVT::i64 : MVT::i32; 3519 LROpOut = getReturnAddrFrameIndex(DAG); 3520 LROpOut = DAG.getLoad(VT, dl, Chain, LROpOut, MachinePointerInfo(), 3521 false, false, false, 0); 3522 Chain = SDValue(LROpOut.getNode(), 1); 3523 3524 // When using the 32/64-bit SVR4 ABI there is no need to load the FP stack 3525 // slot as the FP is never overwritten. 3526 if (isDarwinABI) { 3527 FPOpOut = getFramePointerFrameIndex(DAG); 3528 FPOpOut = DAG.getLoad(VT, dl, Chain, FPOpOut, MachinePointerInfo(), 3529 false, false, false, 0); 3530 Chain = SDValue(FPOpOut.getNode(), 1); 3531 } 3532 } 3533 return Chain; 3534 } 3535 3536 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified 3537 /// by "Src" to address "Dst" of size "Size". Alignment information is 3538 /// specified by the specific parameter attribute. The copy will be passed as 3539 /// a byval function parameter. 3540 /// Sometimes what we are copying is the end of a larger object, the part that 3541 /// does not fit in registers. 3542 static SDValue 3543 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain, 3544 ISD::ArgFlagsTy Flags, SelectionDAG &DAG, 3545 SDLoc dl) { 3546 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32); 3547 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(), 3548 false, false, MachinePointerInfo(), 3549 MachinePointerInfo()); 3550 } 3551 3552 /// LowerMemOpCallTo - Store the argument to the stack or remember it in case of 3553 /// tail calls. 3554 static void 3555 LowerMemOpCallTo(SelectionDAG &DAG, MachineFunction &MF, SDValue Chain, 3556 SDValue Arg, SDValue PtrOff, int SPDiff, 3557 unsigned ArgOffset, bool isPPC64, bool isTailCall, 3558 bool isVector, SmallVectorImpl<SDValue> &MemOpChains, 3559 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments, 3560 SDLoc dl) { 3561 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 3562 if (!isTailCall) { 3563 if (isVector) { 3564 SDValue StackPtr; 3565 if (isPPC64) 3566 StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 3567 else 3568 StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 3569 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, 3570 DAG.getConstant(ArgOffset, PtrVT)); 3571 } 3572 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, 3573 MachinePointerInfo(), false, false, 0)); 3574 // Calculate and remember argument location. 3575 } else CalculateTailCallArgDest(DAG, MF, isPPC64, Arg, SPDiff, ArgOffset, 3576 TailCallArguments); 3577 } 3578 3579 static 3580 void PrepareTailCall(SelectionDAG &DAG, SDValue &InFlag, SDValue &Chain, 3581 SDLoc dl, bool isPPC64, int SPDiff, unsigned NumBytes, 3582 SDValue LROp, SDValue FPOp, bool isDarwinABI, 3583 SmallVectorImpl<TailCallArgumentInfo> &TailCallArguments) { 3584 MachineFunction &MF = DAG.getMachineFunction(); 3585 3586 // Emit a sequence of copyto/copyfrom virtual registers for arguments that 3587 // might overwrite each other in case of tail call optimization. 3588 SmallVector<SDValue, 8> MemOpChains2; 3589 // Do not flag preceding copytoreg stuff together with the following stuff. 3590 InFlag = SDValue(); 3591 StoreTailCallArgumentsToStackSlot(DAG, Chain, TailCallArguments, 3592 MemOpChains2, dl); 3593 if (!MemOpChains2.empty()) 3594 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains2); 3595 3596 // Store the return address to the appropriate stack slot. 3597 Chain = EmitTailCallStoreFPAndRetAddr(DAG, MF, Chain, LROp, FPOp, SPDiff, 3598 isPPC64, isDarwinABI, dl); 3599 3600 // Emit callseq_end just before tailcall node. 3601 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true), 3602 DAG.getIntPtrConstant(0, true), InFlag, dl); 3603 InFlag = Chain.getValue(1); 3604 } 3605 3606 // Is this global address that of a function that can be called by name? (as 3607 // opposed to something that must hold a descriptor for an indirect call). 3608 static bool isFunctionGlobalAddress(SDValue Callee) { 3609 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { 3610 if (Callee.getOpcode() == ISD::GlobalTLSAddress || 3611 Callee.getOpcode() == ISD::TargetGlobalTLSAddress) 3612 return false; 3613 3614 return G->getGlobal()->getType()->getElementType()->isFunctionTy(); 3615 } 3616 3617 return false; 3618 } 3619 3620 static 3621 unsigned PrepareCall(SelectionDAG &DAG, SDValue &Callee, SDValue &InFlag, 3622 SDValue &Chain, SDValue CallSeqStart, SDLoc dl, int SPDiff, 3623 bool isTailCall, bool IsPatchPoint, 3624 SmallVectorImpl<std::pair<unsigned, SDValue> > &RegsToPass, 3625 SmallVectorImpl<SDValue> &Ops, std::vector<EVT> &NodeTys, 3626 ImmutableCallSite *CS, const PPCSubtarget &Subtarget) { 3627 3628 bool isPPC64 = Subtarget.isPPC64(); 3629 bool isSVR4ABI = Subtarget.isSVR4ABI(); 3630 bool isELFv2ABI = Subtarget.isELFv2ABI(); 3631 3632 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 3633 NodeTys.push_back(MVT::Other); // Returns a chain 3634 NodeTys.push_back(MVT::Glue); // Returns a flag for retval copy to use. 3635 3636 unsigned CallOpc = PPCISD::CALL; 3637 3638 bool needIndirectCall = true; 3639 if (!isSVR4ABI || !isPPC64) 3640 if (SDNode *Dest = isBLACompatibleAddress(Callee, DAG)) { 3641 // If this is an absolute destination address, use the munged value. 3642 Callee = SDValue(Dest, 0); 3643 needIndirectCall = false; 3644 } 3645 3646 if (isFunctionGlobalAddress(Callee)) { 3647 GlobalAddressSDNode *G = cast<GlobalAddressSDNode>(Callee); 3648 // A call to a TLS address is actually an indirect call to a 3649 // thread-specific pointer. 3650 unsigned OpFlags = 0; 3651 if ((DAG.getTarget().getRelocationModel() != Reloc::Static && 3652 (Subtarget.getTargetTriple().isMacOSX() && 3653 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5)) && 3654 (G->getGlobal()->isDeclaration() || 3655 G->getGlobal()->isWeakForLinker())) || 3656 (Subtarget.isTargetELF() && !isPPC64 && 3657 !G->getGlobal()->hasLocalLinkage() && 3658 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) { 3659 // PC-relative references to external symbols should go through $stub, 3660 // unless we're building with the leopard linker or later, which 3661 // automatically synthesizes these stubs. 3662 OpFlags = PPCII::MO_PLT_OR_STUB; 3663 } 3664 3665 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, 3666 // every direct call is) turn it into a TargetGlobalAddress / 3667 // TargetExternalSymbol node so that legalize doesn't hack it. 3668 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, 3669 Callee.getValueType(), 0, OpFlags); 3670 needIndirectCall = false; 3671 } 3672 3673 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) { 3674 unsigned char OpFlags = 0; 3675 3676 if ((DAG.getTarget().getRelocationModel() != Reloc::Static && 3677 (Subtarget.getTargetTriple().isMacOSX() && 3678 Subtarget.getTargetTriple().isMacOSXVersionLT(10, 5))) || 3679 (Subtarget.isTargetELF() && !isPPC64 && 3680 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) { 3681 // PC-relative references to external symbols should go through $stub, 3682 // unless we're building with the leopard linker or later, which 3683 // automatically synthesizes these stubs. 3684 OpFlags = PPCII::MO_PLT_OR_STUB; 3685 } 3686 3687 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), Callee.getValueType(), 3688 OpFlags); 3689 needIndirectCall = false; 3690 } 3691 3692 if (IsPatchPoint) { 3693 // We'll form an invalid direct call when lowering a patchpoint; the full 3694 // sequence for an indirect call is complicated, and many of the 3695 // instructions introduced might have side effects (and, thus, can't be 3696 // removed later). The call itself will be removed as soon as the 3697 // argument/return lowering is complete, so the fact that it has the wrong 3698 // kind of operands should not really matter. 3699 needIndirectCall = false; 3700 } 3701 3702 if (needIndirectCall) { 3703 // Otherwise, this is an indirect call. We have to use a MTCTR/BCTRL pair 3704 // to do the call, we can't use PPCISD::CALL. 3705 SDValue MTCTROps[] = {Chain, Callee, InFlag}; 3706 3707 if (isSVR4ABI && isPPC64 && !isELFv2ABI) { 3708 // Function pointers in the 64-bit SVR4 ABI do not point to the function 3709 // entry point, but to the function descriptor (the function entry point 3710 // address is part of the function descriptor though). 3711 // The function descriptor is a three doubleword structure with the 3712 // following fields: function entry point, TOC base address and 3713 // environment pointer. 3714 // Thus for a call through a function pointer, the following actions need 3715 // to be performed: 3716 // 1. Save the TOC of the caller in the TOC save area of its stack 3717 // frame (this is done in LowerCall_Darwin() or LowerCall_64SVR4()). 3718 // 2. Load the address of the function entry point from the function 3719 // descriptor. 3720 // 3. Load the TOC of the callee from the function descriptor into r2. 3721 // 4. Load the environment pointer from the function descriptor into 3722 // r11. 3723 // 5. Branch to the function entry point address. 3724 // 6. On return of the callee, the TOC of the caller needs to be 3725 // restored (this is done in FinishCall()). 3726 // 3727 // The loads are scheduled at the beginning of the call sequence, and the 3728 // register copies are flagged together to ensure that no other 3729 // operations can be scheduled in between. E.g. without flagging the 3730 // copies together, a TOC access in the caller could be scheduled between 3731 // the assignment of the callee TOC and the branch to the callee, which 3732 // results in the TOC access going through the TOC of the callee instead 3733 // of going through the TOC of the caller, which leads to incorrect code. 3734 3735 // Load the address of the function entry point from the function 3736 // descriptor. 3737 SDValue LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-1); 3738 if (LDChain.getValueType() == MVT::Glue) 3739 LDChain = CallSeqStart.getValue(CallSeqStart->getNumValues()-2); 3740 3741 bool LoadsInv = Subtarget.hasInvariantFunctionDescriptors(); 3742 3743 MachinePointerInfo MPI(CS ? CS->getCalledValue() : nullptr); 3744 SDValue LoadFuncPtr = DAG.getLoad(MVT::i64, dl, LDChain, Callee, MPI, 3745 false, false, LoadsInv, 8); 3746 3747 // Load environment pointer into r11. 3748 SDValue PtrOff = DAG.getIntPtrConstant(16); 3749 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, PtrOff); 3750 SDValue LoadEnvPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddPtr, 3751 MPI.getWithOffset(16), false, false, 3752 LoadsInv, 8); 3753 3754 SDValue TOCOff = DAG.getIntPtrConstant(8); 3755 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, Callee, TOCOff); 3756 SDValue TOCPtr = DAG.getLoad(MVT::i64, dl, LDChain, AddTOC, 3757 MPI.getWithOffset(8), false, false, 3758 LoadsInv, 8); 3759 3760 SDValue TOCVal = DAG.getCopyToReg(Chain, dl, PPC::X2, TOCPtr, 3761 InFlag); 3762 Chain = TOCVal.getValue(0); 3763 InFlag = TOCVal.getValue(1); 3764 3765 SDValue EnvVal = DAG.getCopyToReg(Chain, dl, PPC::X11, LoadEnvPtr, 3766 InFlag); 3767 3768 Chain = EnvVal.getValue(0); 3769 InFlag = EnvVal.getValue(1); 3770 3771 MTCTROps[0] = Chain; 3772 MTCTROps[1] = LoadFuncPtr; 3773 MTCTROps[2] = InFlag; 3774 } 3775 3776 Chain = DAG.getNode(PPCISD::MTCTR, dl, NodeTys, 3777 makeArrayRef(MTCTROps, InFlag.getNode() ? 3 : 2)); 3778 InFlag = Chain.getValue(1); 3779 3780 NodeTys.clear(); 3781 NodeTys.push_back(MVT::Other); 3782 NodeTys.push_back(MVT::Glue); 3783 Ops.push_back(Chain); 3784 CallOpc = PPCISD::BCTRL; 3785 Callee.setNode(nullptr); 3786 // Add use of X11 (holding environment pointer) 3787 if (isSVR4ABI && isPPC64 && !isELFv2ABI) 3788 Ops.push_back(DAG.getRegister(PPC::X11, PtrVT)); 3789 // Add CTR register as callee so a bctr can be emitted later. 3790 if (isTailCall) 3791 Ops.push_back(DAG.getRegister(isPPC64 ? PPC::CTR8 : PPC::CTR, PtrVT)); 3792 } 3793 3794 // If this is a direct call, pass the chain and the callee. 3795 if (Callee.getNode()) { 3796 Ops.push_back(Chain); 3797 Ops.push_back(Callee); 3798 3799 // If this is a call to __tls_get_addr, find the symbol whose address 3800 // is to be taken and add it to the list. This will be used to 3801 // generate __tls_get_addr(<sym>@tlsgd) or __tls_get_addr(<sym>@tlsld). 3802 // We find the symbol by walking the chain to the CopyFromReg, walking 3803 // back from the CopyFromReg to the ADDI_TLSGD_L or ADDI_TLSLD_L, and 3804 // pulling the symbol from that node. 3805 if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) 3806 if (!strcmp(S->getSymbol(), "__tls_get_addr")) { 3807 assert(!needIndirectCall && "Indirect call to __tls_get_addr???"); 3808 SDNode *AddI = Chain.getNode()->getOperand(2).getNode(); 3809 SDValue TGTAddr = AddI->getOperand(1); 3810 assert(TGTAddr.getNode()->getOpcode() == ISD::TargetGlobalTLSAddress && 3811 "Didn't find target global TLS address where we expected one"); 3812 Ops.push_back(TGTAddr); 3813 CallOpc = PPCISD::CALL_TLS; 3814 } 3815 } 3816 // If this is a tail call add stack pointer delta. 3817 if (isTailCall) 3818 Ops.push_back(DAG.getConstant(SPDiff, MVT::i32)); 3819 3820 // Add argument registers to the end of the list so that they are known live 3821 // into the call. 3822 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) 3823 Ops.push_back(DAG.getRegister(RegsToPass[i].first, 3824 RegsToPass[i].second.getValueType())); 3825 3826 // All calls, in both the ELF V1 and V2 ABIs, need the TOC register live 3827 // into the call. 3828 if (isSVR4ABI && isPPC64 && !IsPatchPoint) 3829 Ops.push_back(DAG.getRegister(PPC::X2, PtrVT)); 3830 3831 return CallOpc; 3832 } 3833 3834 static 3835 bool isLocalCall(const SDValue &Callee) 3836 { 3837 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) 3838 return !G->getGlobal()->isDeclaration() && 3839 !G->getGlobal()->isWeakForLinker(); 3840 return false; 3841 } 3842 3843 SDValue 3844 PPCTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, 3845 CallingConv::ID CallConv, bool isVarArg, 3846 const SmallVectorImpl<ISD::InputArg> &Ins, 3847 SDLoc dl, SelectionDAG &DAG, 3848 SmallVectorImpl<SDValue> &InVals) const { 3849 3850 SmallVector<CCValAssign, 16> RVLocs; 3851 CCState CCRetInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 3852 *DAG.getContext()); 3853 CCRetInfo.AnalyzeCallResult(Ins, RetCC_PPC); 3854 3855 // Copy all of the result registers out of their specified physreg. 3856 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) { 3857 CCValAssign &VA = RVLocs[i]; 3858 assert(VA.isRegLoc() && "Can only return in registers!"); 3859 3860 SDValue Val = DAG.getCopyFromReg(Chain, dl, 3861 VA.getLocReg(), VA.getLocVT(), InFlag); 3862 Chain = Val.getValue(1); 3863 InFlag = Val.getValue(2); 3864 3865 switch (VA.getLocInfo()) { 3866 default: llvm_unreachable("Unknown loc info!"); 3867 case CCValAssign::Full: break; 3868 case CCValAssign::AExt: 3869 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 3870 break; 3871 case CCValAssign::ZExt: 3872 Val = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), Val, 3873 DAG.getValueType(VA.getValVT())); 3874 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 3875 break; 3876 case CCValAssign::SExt: 3877 Val = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), Val, 3878 DAG.getValueType(VA.getValVT())); 3879 Val = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Val); 3880 break; 3881 } 3882 3883 InVals.push_back(Val); 3884 } 3885 3886 return Chain; 3887 } 3888 3889 SDValue 3890 PPCTargetLowering::FinishCall(CallingConv::ID CallConv, SDLoc dl, 3891 bool isTailCall, bool isVarArg, bool IsPatchPoint, 3892 SelectionDAG &DAG, 3893 SmallVector<std::pair<unsigned, SDValue>, 8> 3894 &RegsToPass, 3895 SDValue InFlag, SDValue Chain, 3896 SDValue CallSeqStart, SDValue &Callee, 3897 int SPDiff, unsigned NumBytes, 3898 const SmallVectorImpl<ISD::InputArg> &Ins, 3899 SmallVectorImpl<SDValue> &InVals, 3900 ImmutableCallSite *CS) const { 3901 3902 bool isELFv2ABI = Subtarget.isELFv2ABI(); 3903 std::vector<EVT> NodeTys; 3904 SmallVector<SDValue, 8> Ops; 3905 unsigned CallOpc = PrepareCall(DAG, Callee, InFlag, Chain, CallSeqStart, dl, 3906 SPDiff, isTailCall, IsPatchPoint, RegsToPass, 3907 Ops, NodeTys, CS, Subtarget); 3908 3909 // Add implicit use of CR bit 6 for 32-bit SVR4 vararg calls 3910 if (isVarArg && Subtarget.isSVR4ABI() && !Subtarget.isPPC64()) 3911 Ops.push_back(DAG.getRegister(PPC::CR1EQ, MVT::i32)); 3912 3913 // When performing tail call optimization the callee pops its arguments off 3914 // the stack. Account for this here so these bytes can be pushed back on in 3915 // PPCFrameLowering::eliminateCallFramePseudoInstr. 3916 int BytesCalleePops = 3917 (CallConv == CallingConv::Fast && 3918 getTargetMachine().Options.GuaranteedTailCallOpt) ? NumBytes : 0; 3919 3920 // Add a register mask operand representing the call-preserved registers. 3921 const TargetRegisterInfo *TRI = 3922 getTargetMachine().getSubtargetImpl()->getRegisterInfo(); 3923 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv); 3924 assert(Mask && "Missing call preserved mask for calling convention"); 3925 Ops.push_back(DAG.getRegisterMask(Mask)); 3926 3927 if (InFlag.getNode()) 3928 Ops.push_back(InFlag); 3929 3930 // Emit tail call. 3931 if (isTailCall) { 3932 assert(((Callee.getOpcode() == ISD::Register && 3933 cast<RegisterSDNode>(Callee)->getReg() == PPC::CTR) || 3934 Callee.getOpcode() == ISD::TargetExternalSymbol || 3935 Callee.getOpcode() == ISD::TargetGlobalAddress || 3936 isa<ConstantSDNode>(Callee)) && 3937 "Expecting an global address, external symbol, absolute value or register"); 3938 3939 return DAG.getNode(PPCISD::TC_RETURN, dl, MVT::Other, Ops); 3940 } 3941 3942 // Add a NOP immediately after the branch instruction when using the 64-bit 3943 // SVR4 ABI. At link time, if caller and callee are in a different module and 3944 // thus have a different TOC, the call will be replaced with a call to a stub 3945 // function which saves the current TOC, loads the TOC of the callee and 3946 // branches to the callee. The NOP will be replaced with a load instruction 3947 // which restores the TOC of the caller from the TOC save slot of the current 3948 // stack frame. If caller and callee belong to the same module (and have the 3949 // same TOC), the NOP will remain unchanged. 3950 3951 if (!isTailCall && Subtarget.isSVR4ABI()&& Subtarget.isPPC64() && 3952 !IsPatchPoint) { 3953 if (CallOpc == PPCISD::BCTRL) { 3954 // This is a call through a function pointer. 3955 // Restore the caller TOC from the save area into R2. 3956 // See PrepareCall() for more information about calls through function 3957 // pointers in the 64-bit SVR4 ABI. 3958 // We are using a target-specific load with r2 hard coded, because the 3959 // result of a target-independent load would never go directly into r2, 3960 // since r2 is a reserved register (which prevents the register allocator 3961 // from allocating it), resulting in an additional register being 3962 // allocated and an unnecessary move instruction being generated. 3963 CallOpc = PPCISD::BCTRL_LOAD_TOC; 3964 3965 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 3966 SDValue StackPtr = DAG.getRegister(PPC::X1, PtrVT); 3967 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI); 3968 SDValue TOCOff = DAG.getIntPtrConstant(TOCSaveOffset); 3969 SDValue AddTOC = DAG.getNode(ISD::ADD, dl, MVT::i64, StackPtr, TOCOff); 3970 3971 // The address needs to go after the chain input but before the flag (or 3972 // any other variadic arguments). 3973 Ops.insert(std::next(Ops.begin()), AddTOC); 3974 } else if ((CallOpc == PPCISD::CALL) && 3975 (!isLocalCall(Callee) || 3976 DAG.getTarget().getRelocationModel() == Reloc::PIC_)) { 3977 // Otherwise insert NOP for non-local calls. 3978 CallOpc = PPCISD::CALL_NOP; 3979 } else if (CallOpc == PPCISD::CALL_TLS) 3980 // For 64-bit SVR4, TLS calls are always non-local. 3981 CallOpc = PPCISD::CALL_NOP_TLS; 3982 } 3983 3984 Chain = DAG.getNode(CallOpc, dl, NodeTys, Ops); 3985 InFlag = Chain.getValue(1); 3986 3987 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true), 3988 DAG.getIntPtrConstant(BytesCalleePops, true), 3989 InFlag, dl); 3990 if (!Ins.empty()) 3991 InFlag = Chain.getValue(1); 3992 3993 return LowerCallResult(Chain, InFlag, CallConv, isVarArg, 3994 Ins, dl, DAG, InVals); 3995 } 3996 3997 SDValue 3998 PPCTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI, 3999 SmallVectorImpl<SDValue> &InVals) const { 4000 SelectionDAG &DAG = CLI.DAG; 4001 SDLoc &dl = CLI.DL; 4002 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs; 4003 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals; 4004 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins; 4005 SDValue Chain = CLI.Chain; 4006 SDValue Callee = CLI.Callee; 4007 bool &isTailCall = CLI.IsTailCall; 4008 CallingConv::ID CallConv = CLI.CallConv; 4009 bool isVarArg = CLI.IsVarArg; 4010 bool IsPatchPoint = CLI.IsPatchPoint; 4011 ImmutableCallSite *CS = CLI.CS; 4012 4013 if (isTailCall) 4014 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg, 4015 Ins, DAG); 4016 4017 if (!isTailCall && CS && CS->isMustTailCall()) 4018 report_fatal_error("failed to perform tail call elimination on a call " 4019 "site marked musttail"); 4020 4021 if (Subtarget.isSVR4ABI()) { 4022 if (Subtarget.isPPC64()) 4023 return LowerCall_64SVR4(Chain, Callee, CallConv, isVarArg, 4024 isTailCall, IsPatchPoint, Outs, OutVals, Ins, 4025 dl, DAG, InVals, CS); 4026 else 4027 return LowerCall_32SVR4(Chain, Callee, CallConv, isVarArg, 4028 isTailCall, IsPatchPoint, Outs, OutVals, Ins, 4029 dl, DAG, InVals, CS); 4030 } 4031 4032 return LowerCall_Darwin(Chain, Callee, CallConv, isVarArg, 4033 isTailCall, IsPatchPoint, Outs, OutVals, Ins, 4034 dl, DAG, InVals, CS); 4035 } 4036 4037 SDValue 4038 PPCTargetLowering::LowerCall_32SVR4(SDValue Chain, SDValue Callee, 4039 CallingConv::ID CallConv, bool isVarArg, 4040 bool isTailCall, bool IsPatchPoint, 4041 const SmallVectorImpl<ISD::OutputArg> &Outs, 4042 const SmallVectorImpl<SDValue> &OutVals, 4043 const SmallVectorImpl<ISD::InputArg> &Ins, 4044 SDLoc dl, SelectionDAG &DAG, 4045 SmallVectorImpl<SDValue> &InVals, 4046 ImmutableCallSite *CS) const { 4047 // See PPCTargetLowering::LowerFormalArguments_32SVR4() for a description 4048 // of the 32-bit SVR4 ABI stack frame layout. 4049 4050 assert((CallConv == CallingConv::C || 4051 CallConv == CallingConv::Fast) && "Unknown calling convention!"); 4052 4053 unsigned PtrByteSize = 4; 4054 4055 MachineFunction &MF = DAG.getMachineFunction(); 4056 4057 // Mark this function as potentially containing a function that contains a 4058 // tail call. As a consequence the frame pointer will be used for dynamicalloc 4059 // and restoring the callers stack pointer in this functions epilog. This is 4060 // done because by tail calling the called function might overwrite the value 4061 // in this function's (MF) stack pointer stack slot 0(SP). 4062 if (getTargetMachine().Options.GuaranteedTailCallOpt && 4063 CallConv == CallingConv::Fast) 4064 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 4065 4066 // Count how many bytes are to be pushed on the stack, including the linkage 4067 // area, parameter list area and the part of the local variable space which 4068 // contains copies of aggregates which are passed by value. 4069 4070 // Assign locations to all of the outgoing arguments. 4071 SmallVector<CCValAssign, 16> ArgLocs; 4072 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), ArgLocs, 4073 *DAG.getContext()); 4074 4075 // Reserve space for the linkage area on the stack. 4076 CCInfo.AllocateStack(PPCFrameLowering::getLinkageSize(false, false, false), 4077 PtrByteSize); 4078 4079 if (isVarArg) { 4080 // Handle fixed and variable vector arguments differently. 4081 // Fixed vector arguments go into registers as long as registers are 4082 // available. Variable vector arguments always go into memory. 4083 unsigned NumArgs = Outs.size(); 4084 4085 for (unsigned i = 0; i != NumArgs; ++i) { 4086 MVT ArgVT = Outs[i].VT; 4087 ISD::ArgFlagsTy ArgFlags = Outs[i].Flags; 4088 bool Result; 4089 4090 if (Outs[i].IsFixed) { 4091 Result = CC_PPC32_SVR4(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, 4092 CCInfo); 4093 } else { 4094 Result = CC_PPC32_SVR4_VarArg(i, ArgVT, ArgVT, CCValAssign::Full, 4095 ArgFlags, CCInfo); 4096 } 4097 4098 if (Result) { 4099 #ifndef NDEBUG 4100 errs() << "Call operand #" << i << " has unhandled type " 4101 << EVT(ArgVT).getEVTString() << "\n"; 4102 #endif 4103 llvm_unreachable(nullptr); 4104 } 4105 } 4106 } else { 4107 // All arguments are treated the same. 4108 CCInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4); 4109 } 4110 4111 // Assign locations to all of the outgoing aggregate by value arguments. 4112 SmallVector<CCValAssign, 16> ByValArgLocs; 4113 CCState CCByValInfo(CallConv, isVarArg, DAG.getMachineFunction(), 4114 ByValArgLocs, *DAG.getContext()); 4115 4116 // Reserve stack space for the allocations in CCInfo. 4117 CCByValInfo.AllocateStack(CCInfo.getNextStackOffset(), PtrByteSize); 4118 4119 CCByValInfo.AnalyzeCallOperands(Outs, CC_PPC32_SVR4_ByVal); 4120 4121 // Size of the linkage area, parameter list area and the part of the local 4122 // space variable where copies of aggregates which are passed by value are 4123 // stored. 4124 unsigned NumBytes = CCByValInfo.getNextStackOffset(); 4125 4126 // Calculate by how many bytes the stack has to be adjusted in case of tail 4127 // call optimization. 4128 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 4129 4130 // Adjust the stack pointer for the new arguments... 4131 // These operations are automatically eliminated by the prolog/epilog pass 4132 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true), 4133 dl); 4134 SDValue CallSeqStart = Chain; 4135 4136 // Load the return address and frame pointer so it can be moved somewhere else 4137 // later. 4138 SDValue LROp, FPOp; 4139 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, false, 4140 dl); 4141 4142 // Set up a copy of the stack pointer for use loading and storing any 4143 // arguments that may not fit in the registers available for argument 4144 // passing. 4145 SDValue StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 4146 4147 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 4148 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 4149 SmallVector<SDValue, 8> MemOpChains; 4150 4151 bool seenFloatArg = false; 4152 // Walk the register/memloc assignments, inserting copies/loads. 4153 for (unsigned i = 0, j = 0, e = ArgLocs.size(); 4154 i != e; 4155 ++i) { 4156 CCValAssign &VA = ArgLocs[i]; 4157 SDValue Arg = OutVals[i]; 4158 ISD::ArgFlagsTy Flags = Outs[i].Flags; 4159 4160 if (Flags.isByVal()) { 4161 // Argument is an aggregate which is passed by value, thus we need to 4162 // create a copy of it in the local variable space of the current stack 4163 // frame (which is the stack frame of the caller) and pass the address of 4164 // this copy to the callee. 4165 assert((j < ByValArgLocs.size()) && "Index out of bounds!"); 4166 CCValAssign &ByValVA = ByValArgLocs[j++]; 4167 assert((VA.getValNo() == ByValVA.getValNo()) && "ValNo mismatch!"); 4168 4169 // Memory reserved in the local variable space of the callers stack frame. 4170 unsigned LocMemOffset = ByValVA.getLocMemOffset(); 4171 4172 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset); 4173 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff); 4174 4175 // Create a copy of the argument in the local area of the current 4176 // stack frame. 4177 SDValue MemcpyCall = 4178 CreateCopyOfByValArgument(Arg, PtrOff, 4179 CallSeqStart.getNode()->getOperand(0), 4180 Flags, DAG, dl); 4181 4182 // This must go outside the CALLSEQ_START..END. 4183 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall, 4184 CallSeqStart.getNode()->getOperand(1), 4185 SDLoc(MemcpyCall)); 4186 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), 4187 NewCallSeqStart.getNode()); 4188 Chain = CallSeqStart = NewCallSeqStart; 4189 4190 // Pass the address of the aggregate copy on the stack either in a 4191 // physical register or in the parameter list area of the current stack 4192 // frame to the callee. 4193 Arg = PtrOff; 4194 } 4195 4196 if (VA.isRegLoc()) { 4197 if (Arg.getValueType() == MVT::i1) 4198 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Arg); 4199 4200 seenFloatArg |= VA.getLocVT().isFloatingPoint(); 4201 // Put argument in a physical register. 4202 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); 4203 } else { 4204 // Put argument in the parameter list area of the current stack frame. 4205 assert(VA.isMemLoc()); 4206 unsigned LocMemOffset = VA.getLocMemOffset(); 4207 4208 if (!isTailCall) { 4209 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset); 4210 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff); 4211 4212 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, 4213 MachinePointerInfo(), 4214 false, false, 0)); 4215 } else { 4216 // Calculate and remember argument location. 4217 CalculateTailCallArgDest(DAG, MF, false, Arg, SPDiff, LocMemOffset, 4218 TailCallArguments); 4219 } 4220 } 4221 } 4222 4223 if (!MemOpChains.empty()) 4224 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 4225 4226 // Build a sequence of copy-to-reg nodes chained together with token chain 4227 // and flag operands which copy the outgoing args into the appropriate regs. 4228 SDValue InFlag; 4229 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 4230 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 4231 RegsToPass[i].second, InFlag); 4232 InFlag = Chain.getValue(1); 4233 } 4234 4235 // Set CR bit 6 to true if this is a vararg call with floating args passed in 4236 // registers. 4237 if (isVarArg) { 4238 SDVTList VTs = DAG.getVTList(MVT::Other, MVT::Glue); 4239 SDValue Ops[] = { Chain, InFlag }; 4240 4241 Chain = DAG.getNode(seenFloatArg ? PPCISD::CR6SET : PPCISD::CR6UNSET, 4242 dl, VTs, makeArrayRef(Ops, InFlag.getNode() ? 2 : 1)); 4243 4244 InFlag = Chain.getValue(1); 4245 } 4246 4247 if (isTailCall) 4248 PrepareTailCall(DAG, InFlag, Chain, dl, false, SPDiff, NumBytes, LROp, FPOp, 4249 false, TailCallArguments); 4250 4251 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG, 4252 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff, 4253 NumBytes, Ins, InVals, CS); 4254 } 4255 4256 // Copy an argument into memory, being careful to do this outside the 4257 // call sequence for the call to which the argument belongs. 4258 SDValue 4259 PPCTargetLowering::createMemcpyOutsideCallSeq(SDValue Arg, SDValue PtrOff, 4260 SDValue CallSeqStart, 4261 ISD::ArgFlagsTy Flags, 4262 SelectionDAG &DAG, 4263 SDLoc dl) const { 4264 SDValue MemcpyCall = CreateCopyOfByValArgument(Arg, PtrOff, 4265 CallSeqStart.getNode()->getOperand(0), 4266 Flags, DAG, dl); 4267 // The MEMCPY must go outside the CALLSEQ_START..END. 4268 SDValue NewCallSeqStart = DAG.getCALLSEQ_START(MemcpyCall, 4269 CallSeqStart.getNode()->getOperand(1), 4270 SDLoc(MemcpyCall)); 4271 DAG.ReplaceAllUsesWith(CallSeqStart.getNode(), 4272 NewCallSeqStart.getNode()); 4273 return NewCallSeqStart; 4274 } 4275 4276 SDValue 4277 PPCTargetLowering::LowerCall_64SVR4(SDValue Chain, SDValue Callee, 4278 CallingConv::ID CallConv, bool isVarArg, 4279 bool isTailCall, bool IsPatchPoint, 4280 const SmallVectorImpl<ISD::OutputArg> &Outs, 4281 const SmallVectorImpl<SDValue> &OutVals, 4282 const SmallVectorImpl<ISD::InputArg> &Ins, 4283 SDLoc dl, SelectionDAG &DAG, 4284 SmallVectorImpl<SDValue> &InVals, 4285 ImmutableCallSite *CS) const { 4286 4287 bool isELFv2ABI = Subtarget.isELFv2ABI(); 4288 bool isLittleEndian = Subtarget.isLittleEndian(); 4289 unsigned NumOps = Outs.size(); 4290 4291 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 4292 unsigned PtrByteSize = 8; 4293 4294 MachineFunction &MF = DAG.getMachineFunction(); 4295 4296 // Mark this function as potentially containing a function that contains a 4297 // tail call. As a consequence the frame pointer will be used for dynamicalloc 4298 // and restoring the callers stack pointer in this functions epilog. This is 4299 // done because by tail calling the called function might overwrite the value 4300 // in this function's (MF) stack pointer stack slot 0(SP). 4301 if (getTargetMachine().Options.GuaranteedTailCallOpt && 4302 CallConv == CallingConv::Fast) 4303 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 4304 4305 assert(!(CallConv == CallingConv::Fast && isVarArg) && 4306 "fastcc not supported on varargs functions"); 4307 4308 // Count how many bytes are to be pushed on the stack, including the linkage 4309 // area, and parameter passing area. On ELFv1, the linkage area is 48 bytes 4310 // reserved space for [SP][CR][LR][2 x unused][TOC]; on ELFv2, the linkage 4311 // area is 32 bytes reserved space for [SP][CR][LR][TOC]. 4312 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(true, false, 4313 isELFv2ABI); 4314 unsigned NumBytes = LinkageSize; 4315 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 4316 4317 static const MCPhysReg GPR[] = { 4318 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 4319 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 4320 }; 4321 static const MCPhysReg *FPR = GetFPR(); 4322 4323 static const MCPhysReg VR[] = { 4324 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 4325 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 4326 }; 4327 static const MCPhysReg VSRH[] = { 4328 PPC::VSH2, PPC::VSH3, PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, PPC::VSH8, 4329 PPC::VSH9, PPC::VSH10, PPC::VSH11, PPC::VSH12, PPC::VSH13 4330 }; 4331 4332 const unsigned NumGPRs = array_lengthof(GPR); 4333 const unsigned NumFPRs = 13; 4334 const unsigned NumVRs = array_lengthof(VR); 4335 4336 // When using the fast calling convention, we don't provide backing for 4337 // arguments that will be in registers. 4338 unsigned NumGPRsUsed = 0, NumFPRsUsed = 0, NumVRsUsed = 0; 4339 4340 // Add up all the space actually used. 4341 for (unsigned i = 0; i != NumOps; ++i) { 4342 ISD::ArgFlagsTy Flags = Outs[i].Flags; 4343 EVT ArgVT = Outs[i].VT; 4344 EVT OrigVT = Outs[i].ArgVT; 4345 4346 if (CallConv == CallingConv::Fast) { 4347 if (Flags.isByVal()) 4348 NumGPRsUsed += (Flags.getByValSize()+7)/8; 4349 else 4350 switch (ArgVT.getSimpleVT().SimpleTy) { 4351 default: llvm_unreachable("Unexpected ValueType for argument!"); 4352 case MVT::i1: 4353 case MVT::i32: 4354 case MVT::i64: 4355 if (++NumGPRsUsed <= NumGPRs) 4356 continue; 4357 break; 4358 case MVT::f32: 4359 case MVT::f64: 4360 if (++NumFPRsUsed <= NumFPRs) 4361 continue; 4362 break; 4363 case MVT::v4f32: 4364 case MVT::v4i32: 4365 case MVT::v8i16: 4366 case MVT::v16i8: 4367 case MVT::v2f64: 4368 case MVT::v2i64: 4369 if (++NumVRsUsed <= NumVRs) 4370 continue; 4371 break; 4372 } 4373 } 4374 4375 /* Respect alignment of argument on the stack. */ 4376 unsigned Align = 4377 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 4378 NumBytes = ((NumBytes + Align - 1) / Align) * Align; 4379 4380 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 4381 if (Flags.isInConsecutiveRegsLast()) 4382 NumBytes = ((NumBytes + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 4383 } 4384 4385 unsigned NumBytesActuallyUsed = NumBytes; 4386 4387 // The prolog code of the callee may store up to 8 GPR argument registers to 4388 // the stack, allowing va_start to index over them in memory if its varargs. 4389 // Because we cannot tell if this is needed on the caller side, we have to 4390 // conservatively assume that it is needed. As such, make sure we have at 4391 // least enough stack space for the caller to store the 8 GPRs. 4392 // FIXME: On ELFv2, it may be unnecessary to allocate the parameter area. 4393 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize); 4394 4395 // Tail call needs the stack to be aligned. 4396 if (getTargetMachine().Options.GuaranteedTailCallOpt && 4397 CallConv == CallingConv::Fast) 4398 NumBytes = EnsureStackAlignment(MF.getTarget(), NumBytes); 4399 4400 // Calculate by how many bytes the stack has to be adjusted in case of tail 4401 // call optimization. 4402 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 4403 4404 // To protect arguments on the stack from being clobbered in a tail call, 4405 // force all the loads to happen before doing any other lowering. 4406 if (isTailCall) 4407 Chain = DAG.getStackArgumentTokenFactor(Chain); 4408 4409 // Adjust the stack pointer for the new arguments... 4410 // These operations are automatically eliminated by the prolog/epilog pass 4411 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true), 4412 dl); 4413 SDValue CallSeqStart = Chain; 4414 4415 // Load the return address and frame pointer so it can be move somewhere else 4416 // later. 4417 SDValue LROp, FPOp; 4418 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true, 4419 dl); 4420 4421 // Set up a copy of the stack pointer for use loading and storing any 4422 // arguments that may not fit in the registers available for argument 4423 // passing. 4424 SDValue StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 4425 4426 // Figure out which arguments are going to go in registers, and which in 4427 // memory. Also, if this is a vararg function, floating point operations 4428 // must be stored to our stack, and loaded into integer regs as well, if 4429 // any integer regs are available for argument passing. 4430 unsigned ArgOffset = LinkageSize; 4431 4432 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 4433 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 4434 4435 SmallVector<SDValue, 8> MemOpChains; 4436 for (unsigned i = 0; i != NumOps; ++i) { 4437 SDValue Arg = OutVals[i]; 4438 ISD::ArgFlagsTy Flags = Outs[i].Flags; 4439 EVT ArgVT = Outs[i].VT; 4440 EVT OrigVT = Outs[i].ArgVT; 4441 4442 // PtrOff will be used to store the current argument to the stack if a 4443 // register cannot be found for it. 4444 SDValue PtrOff; 4445 4446 // We re-align the argument offset for each argument, except when using the 4447 // fast calling convention, when we need to make sure we do that only when 4448 // we'll actually use a stack slot. 4449 auto ComputePtrOff = [&]() { 4450 /* Respect alignment of argument on the stack. */ 4451 unsigned Align = 4452 CalculateStackSlotAlignment(ArgVT, OrigVT, Flags, PtrByteSize); 4453 ArgOffset = ((ArgOffset + Align - 1) / Align) * Align; 4454 4455 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType()); 4456 4457 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 4458 }; 4459 4460 if (CallConv != CallingConv::Fast) { 4461 ComputePtrOff(); 4462 4463 /* Compute GPR index associated with argument offset. */ 4464 GPR_idx = (ArgOffset - LinkageSize) / PtrByteSize; 4465 GPR_idx = std::min(GPR_idx, NumGPRs); 4466 } 4467 4468 // Promote integers to 64-bit values. 4469 if (Arg.getValueType() == MVT::i32 || Arg.getValueType() == MVT::i1) { 4470 // FIXME: Should this use ANY_EXTEND if neither sext nor zext? 4471 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 4472 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg); 4473 } 4474 4475 // FIXME memcpy is used way more than necessary. Correctness first. 4476 // Note: "by value" is code for passing a structure by value, not 4477 // basic types. 4478 if (Flags.isByVal()) { 4479 // Note: Size includes alignment padding, so 4480 // struct x { short a; char b; } 4481 // will have Size = 4. With #pragma pack(1), it will have Size = 3. 4482 // These are the proper values we need for right-justifying the 4483 // aggregate in a parameter register. 4484 unsigned Size = Flags.getByValSize(); 4485 4486 // An empty aggregate parameter takes up no storage and no 4487 // registers. 4488 if (Size == 0) 4489 continue; 4490 4491 if (CallConv == CallingConv::Fast) 4492 ComputePtrOff(); 4493 4494 // All aggregates smaller than 8 bytes must be passed right-justified. 4495 if (Size==1 || Size==2 || Size==4) { 4496 EVT VT = (Size==1) ? MVT::i8 : ((Size==2) ? MVT::i16 : MVT::i32); 4497 if (GPR_idx != NumGPRs) { 4498 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg, 4499 MachinePointerInfo(), VT, 4500 false, false, false, 0); 4501 MemOpChains.push_back(Load.getValue(1)); 4502 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 4503 4504 ArgOffset += PtrByteSize; 4505 continue; 4506 } 4507 } 4508 4509 if (GPR_idx == NumGPRs && Size < 8) { 4510 SDValue AddPtr = PtrOff; 4511 if (!isLittleEndian) { 4512 SDValue Const = DAG.getConstant(PtrByteSize - Size, 4513 PtrOff.getValueType()); 4514 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 4515 } 4516 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 4517 CallSeqStart, 4518 Flags, DAG, dl); 4519 ArgOffset += PtrByteSize; 4520 continue; 4521 } 4522 // Copy entire object into memory. There are cases where gcc-generated 4523 // code assumes it is there, even if it could be put entirely into 4524 // registers. (This is not what the doc says.) 4525 4526 // FIXME: The above statement is likely due to a misunderstanding of the 4527 // documents. All arguments must be copied into the parameter area BY 4528 // THE CALLEE in the event that the callee takes the address of any 4529 // formal argument. That has not yet been implemented. However, it is 4530 // reasonable to use the stack area as a staging area for the register 4531 // load. 4532 4533 // Skip this for small aggregates, as we will use the same slot for a 4534 // right-justified copy, below. 4535 if (Size >= 8) 4536 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff, 4537 CallSeqStart, 4538 Flags, DAG, dl); 4539 4540 // When a register is available, pass a small aggregate right-justified. 4541 if (Size < 8 && GPR_idx != NumGPRs) { 4542 // The easiest way to get this right-justified in a register 4543 // is to copy the structure into the rightmost portion of a 4544 // local variable slot, then load the whole slot into the 4545 // register. 4546 // FIXME: The memcpy seems to produce pretty awful code for 4547 // small aggregates, particularly for packed ones. 4548 // FIXME: It would be preferable to use the slot in the 4549 // parameter save area instead of a new local variable. 4550 SDValue AddPtr = PtrOff; 4551 if (!isLittleEndian) { 4552 SDValue Const = DAG.getConstant(8 - Size, PtrOff.getValueType()); 4553 AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 4554 } 4555 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 4556 CallSeqStart, 4557 Flags, DAG, dl); 4558 4559 // Load the slot into the register. 4560 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, PtrOff, 4561 MachinePointerInfo(), 4562 false, false, false, 0); 4563 MemOpChains.push_back(Load.getValue(1)); 4564 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 4565 4566 // Done with this argument. 4567 ArgOffset += PtrByteSize; 4568 continue; 4569 } 4570 4571 // For aggregates larger than PtrByteSize, copy the pieces of the 4572 // object that fit into registers from the parameter save area. 4573 for (unsigned j=0; j<Size; j+=PtrByteSize) { 4574 SDValue Const = DAG.getConstant(j, PtrOff.getValueType()); 4575 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 4576 if (GPR_idx != NumGPRs) { 4577 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, 4578 MachinePointerInfo(), 4579 false, false, false, 0); 4580 MemOpChains.push_back(Load.getValue(1)); 4581 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 4582 ArgOffset += PtrByteSize; 4583 } else { 4584 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize; 4585 break; 4586 } 4587 } 4588 continue; 4589 } 4590 4591 switch (Arg.getSimpleValueType().SimpleTy) { 4592 default: llvm_unreachable("Unexpected ValueType for argument!"); 4593 case MVT::i1: 4594 case MVT::i32: 4595 case MVT::i64: 4596 // These can be scalar arguments or elements of an integer array type 4597 // passed directly. Clang may use those instead of "byval" aggregate 4598 // types to avoid forcing arguments to memory unnecessarily. 4599 if (GPR_idx != NumGPRs) { 4600 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg)); 4601 } else { 4602 if (CallConv == CallingConv::Fast) 4603 ComputePtrOff(); 4604 4605 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 4606 true, isTailCall, false, MemOpChains, 4607 TailCallArguments, dl); 4608 if (CallConv == CallingConv::Fast) 4609 ArgOffset += PtrByteSize; 4610 } 4611 if (CallConv != CallingConv::Fast) 4612 ArgOffset += PtrByteSize; 4613 break; 4614 case MVT::f32: 4615 case MVT::f64: { 4616 // These can be scalar arguments or elements of a float array type 4617 // passed directly. The latter are used to implement ELFv2 homogenous 4618 // float aggregates. 4619 4620 // Named arguments go into FPRs first, and once they overflow, the 4621 // remaining arguments go into GPRs and then the parameter save area. 4622 // Unnamed arguments for vararg functions always go to GPRs and 4623 // then the parameter save area. For now, put all arguments to vararg 4624 // routines always in both locations (FPR *and* GPR or stack slot). 4625 bool NeedGPROrStack = isVarArg || FPR_idx == NumFPRs; 4626 bool NeededLoad = false; 4627 4628 // First load the argument into the next available FPR. 4629 if (FPR_idx != NumFPRs) 4630 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg)); 4631 4632 // Next, load the argument into GPR or stack slot if needed. 4633 if (!NeedGPROrStack) 4634 ; 4635 else if (GPR_idx != NumGPRs && CallConv != CallingConv::Fast) { 4636 // FIXME: We may want to re-enable this for CallingConv::Fast on the P8 4637 // once we support fp <-> gpr moves. 4638 4639 // In the non-vararg case, this can only ever happen in the 4640 // presence of f32 array types, since otherwise we never run 4641 // out of FPRs before running out of GPRs. 4642 SDValue ArgVal; 4643 4644 // Double values are always passed in a single GPR. 4645 if (Arg.getValueType() != MVT::f32) { 4646 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg); 4647 4648 // Non-array float values are extended and passed in a GPR. 4649 } else if (!Flags.isInConsecutiveRegs()) { 4650 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 4651 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal); 4652 4653 // If we have an array of floats, we collect every odd element 4654 // together with its predecessor into one GPR. 4655 } else if (ArgOffset % PtrByteSize != 0) { 4656 SDValue Lo, Hi; 4657 Lo = DAG.getNode(ISD::BITCAST, dl, MVT::i32, OutVals[i - 1]); 4658 Hi = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 4659 if (!isLittleEndian) 4660 std::swap(Lo, Hi); 4661 ArgVal = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Lo, Hi); 4662 4663 // The final element, if even, goes into the first half of a GPR. 4664 } else if (Flags.isInConsecutiveRegsLast()) { 4665 ArgVal = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg); 4666 ArgVal = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i64, ArgVal); 4667 if (!isLittleEndian) 4668 ArgVal = DAG.getNode(ISD::SHL, dl, MVT::i64, ArgVal, 4669 DAG.getConstant(32, MVT::i32)); 4670 4671 // Non-final even elements are skipped; they will be handled 4672 // together the with subsequent argument on the next go-around. 4673 } else 4674 ArgVal = SDValue(); 4675 4676 if (ArgVal.getNode()) 4677 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], ArgVal)); 4678 } else { 4679 if (CallConv == CallingConv::Fast) 4680 ComputePtrOff(); 4681 4682 // Single-precision floating-point values are mapped to the 4683 // second (rightmost) word of the stack doubleword. 4684 if (Arg.getValueType() == MVT::f32 && 4685 !isLittleEndian && !Flags.isInConsecutiveRegs()) { 4686 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType()); 4687 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour); 4688 } 4689 4690 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 4691 true, isTailCall, false, MemOpChains, 4692 TailCallArguments, dl); 4693 4694 NeededLoad = true; 4695 } 4696 // When passing an array of floats, the array occupies consecutive 4697 // space in the argument area; only round up to the next doubleword 4698 // at the end of the array. Otherwise, each float takes 8 bytes. 4699 if (CallConv != CallingConv::Fast || NeededLoad) { 4700 ArgOffset += (Arg.getValueType() == MVT::f32 && 4701 Flags.isInConsecutiveRegs()) ? 4 : 8; 4702 if (Flags.isInConsecutiveRegsLast()) 4703 ArgOffset = ((ArgOffset + PtrByteSize - 1)/PtrByteSize) * PtrByteSize; 4704 } 4705 break; 4706 } 4707 case MVT::v4f32: 4708 case MVT::v4i32: 4709 case MVT::v8i16: 4710 case MVT::v16i8: 4711 case MVT::v2f64: 4712 case MVT::v2i64: 4713 // These can be scalar arguments or elements of a vector array type 4714 // passed directly. The latter are used to implement ELFv2 homogenous 4715 // vector aggregates. 4716 4717 // For a varargs call, named arguments go into VRs or on the stack as 4718 // usual; unnamed arguments always go to the stack or the corresponding 4719 // GPRs when within range. For now, we always put the value in both 4720 // locations (or even all three). 4721 if (isVarArg) { 4722 // We could elide this store in the case where the object fits 4723 // entirely in R registers. Maybe later. 4724 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, 4725 MachinePointerInfo(), false, false, 0); 4726 MemOpChains.push_back(Store); 4727 if (VR_idx != NumVRs) { 4728 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, 4729 MachinePointerInfo(), 4730 false, false, false, 0); 4731 MemOpChains.push_back(Load.getValue(1)); 4732 4733 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 || 4734 Arg.getSimpleValueType() == MVT::v2i64) ? 4735 VSRH[VR_idx] : VR[VR_idx]; 4736 ++VR_idx; 4737 4738 RegsToPass.push_back(std::make_pair(VReg, Load)); 4739 } 4740 ArgOffset += 16; 4741 for (unsigned i=0; i<16; i+=PtrByteSize) { 4742 if (GPR_idx == NumGPRs) 4743 break; 4744 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, 4745 DAG.getConstant(i, PtrVT)); 4746 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(), 4747 false, false, false, 0); 4748 MemOpChains.push_back(Load.getValue(1)); 4749 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 4750 } 4751 break; 4752 } 4753 4754 // Non-varargs Altivec params go into VRs or on the stack. 4755 if (VR_idx != NumVRs) { 4756 unsigned VReg = (Arg.getSimpleValueType() == MVT::v2f64 || 4757 Arg.getSimpleValueType() == MVT::v2i64) ? 4758 VSRH[VR_idx] : VR[VR_idx]; 4759 ++VR_idx; 4760 4761 RegsToPass.push_back(std::make_pair(VReg, Arg)); 4762 } else { 4763 if (CallConv == CallingConv::Fast) 4764 ComputePtrOff(); 4765 4766 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 4767 true, isTailCall, true, MemOpChains, 4768 TailCallArguments, dl); 4769 if (CallConv == CallingConv::Fast) 4770 ArgOffset += 16; 4771 } 4772 4773 if (CallConv != CallingConv::Fast) 4774 ArgOffset += 16; 4775 break; 4776 } 4777 } 4778 4779 assert(NumBytesActuallyUsed == ArgOffset); 4780 (void)NumBytesActuallyUsed; 4781 4782 if (!MemOpChains.empty()) 4783 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 4784 4785 // Check if this is an indirect call (MTCTR/BCTRL). 4786 // See PrepareCall() for more information about calls through function 4787 // pointers in the 64-bit SVR4 ABI. 4788 if (!isTailCall && !IsPatchPoint && 4789 !isFunctionGlobalAddress(Callee) && 4790 !isa<ExternalSymbolSDNode>(Callee)) { 4791 // Load r2 into a virtual register and store it to the TOC save area. 4792 SDValue Val = DAG.getCopyFromReg(Chain, dl, PPC::X2, MVT::i64); 4793 // TOC save area offset. 4794 unsigned TOCSaveOffset = PPCFrameLowering::getTOCSaveOffset(isELFv2ABI); 4795 SDValue PtrOff = DAG.getIntPtrConstant(TOCSaveOffset); 4796 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 4797 Chain = DAG.getStore(Val.getValue(1), dl, Val, AddPtr, 4798 MachinePointerInfo::getStack(TOCSaveOffset), 4799 false, false, 0); 4800 // In the ELFv2 ABI, R12 must contain the address of an indirect callee. 4801 // This does not mean the MTCTR instruction must use R12; it's easier 4802 // to model this as an extra parameter, so do that. 4803 if (isELFv2ABI && !IsPatchPoint) 4804 RegsToPass.push_back(std::make_pair((unsigned)PPC::X12, Callee)); 4805 } 4806 4807 // Build a sequence of copy-to-reg nodes chained together with token chain 4808 // and flag operands which copy the outgoing args into the appropriate regs. 4809 SDValue InFlag; 4810 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 4811 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 4812 RegsToPass[i].second, InFlag); 4813 InFlag = Chain.getValue(1); 4814 } 4815 4816 if (isTailCall) 4817 PrepareTailCall(DAG, InFlag, Chain, dl, true, SPDiff, NumBytes, LROp, 4818 FPOp, true, TailCallArguments); 4819 4820 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG, 4821 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff, 4822 NumBytes, Ins, InVals, CS); 4823 } 4824 4825 SDValue 4826 PPCTargetLowering::LowerCall_Darwin(SDValue Chain, SDValue Callee, 4827 CallingConv::ID CallConv, bool isVarArg, 4828 bool isTailCall, bool IsPatchPoint, 4829 const SmallVectorImpl<ISD::OutputArg> &Outs, 4830 const SmallVectorImpl<SDValue> &OutVals, 4831 const SmallVectorImpl<ISD::InputArg> &Ins, 4832 SDLoc dl, SelectionDAG &DAG, 4833 SmallVectorImpl<SDValue> &InVals, 4834 ImmutableCallSite *CS) const { 4835 4836 unsigned NumOps = Outs.size(); 4837 4838 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 4839 bool isPPC64 = PtrVT == MVT::i64; 4840 unsigned PtrByteSize = isPPC64 ? 8 : 4; 4841 4842 MachineFunction &MF = DAG.getMachineFunction(); 4843 4844 // Mark this function as potentially containing a function that contains a 4845 // tail call. As a consequence the frame pointer will be used for dynamicalloc 4846 // and restoring the callers stack pointer in this functions epilog. This is 4847 // done because by tail calling the called function might overwrite the value 4848 // in this function's (MF) stack pointer stack slot 0(SP). 4849 if (getTargetMachine().Options.GuaranteedTailCallOpt && 4850 CallConv == CallingConv::Fast) 4851 MF.getInfo<PPCFunctionInfo>()->setHasFastCall(); 4852 4853 // Count how many bytes are to be pushed on the stack, including the linkage 4854 // area, and parameter passing area. We start with 24/48 bytes, which is 4855 // prereserved space for [SP][CR][LR][3 x unused]. 4856 unsigned LinkageSize = PPCFrameLowering::getLinkageSize(isPPC64, true, 4857 false); 4858 unsigned NumBytes = LinkageSize; 4859 4860 // Add up all the space actually used. 4861 // In 32-bit non-varargs calls, Altivec parameters all go at the end; usually 4862 // they all go in registers, but we must reserve stack space for them for 4863 // possible use by the caller. In varargs or 64-bit calls, parameters are 4864 // assigned stack space in order, with padding so Altivec parameters are 4865 // 16-byte aligned. 4866 unsigned nAltivecParamsAtEnd = 0; 4867 for (unsigned i = 0; i != NumOps; ++i) { 4868 ISD::ArgFlagsTy Flags = Outs[i].Flags; 4869 EVT ArgVT = Outs[i].VT; 4870 // Varargs Altivec parameters are padded to a 16 byte boundary. 4871 if (ArgVT == MVT::v4f32 || ArgVT == MVT::v4i32 || 4872 ArgVT == MVT::v8i16 || ArgVT == MVT::v16i8 || 4873 ArgVT == MVT::v2f64 || ArgVT == MVT::v2i64) { 4874 if (!isVarArg && !isPPC64) { 4875 // Non-varargs Altivec parameters go after all the non-Altivec 4876 // parameters; handle those later so we know how much padding we need. 4877 nAltivecParamsAtEnd++; 4878 continue; 4879 } 4880 // Varargs and 64-bit Altivec parameters are padded to 16 byte boundary. 4881 NumBytes = ((NumBytes+15)/16)*16; 4882 } 4883 NumBytes += CalculateStackSlotSize(ArgVT, Flags, PtrByteSize); 4884 } 4885 4886 // Allow for Altivec parameters at the end, if needed. 4887 if (nAltivecParamsAtEnd) { 4888 NumBytes = ((NumBytes+15)/16)*16; 4889 NumBytes += 16*nAltivecParamsAtEnd; 4890 } 4891 4892 // The prolog code of the callee may store up to 8 GPR argument registers to 4893 // the stack, allowing va_start to index over them in memory if its varargs. 4894 // Because we cannot tell if this is needed on the caller side, we have to 4895 // conservatively assume that it is needed. As such, make sure we have at 4896 // least enough stack space for the caller to store the 8 GPRs. 4897 NumBytes = std::max(NumBytes, LinkageSize + 8 * PtrByteSize); 4898 4899 // Tail call needs the stack to be aligned. 4900 if (getTargetMachine().Options.GuaranteedTailCallOpt && 4901 CallConv == CallingConv::Fast) 4902 NumBytes = EnsureStackAlignment(MF.getTarget(), NumBytes); 4903 4904 // Calculate by how many bytes the stack has to be adjusted in case of tail 4905 // call optimization. 4906 int SPDiff = CalculateTailCallSPDiff(DAG, isTailCall, NumBytes); 4907 4908 // To protect arguments on the stack from being clobbered in a tail call, 4909 // force all the loads to happen before doing any other lowering. 4910 if (isTailCall) 4911 Chain = DAG.getStackArgumentTokenFactor(Chain); 4912 4913 // Adjust the stack pointer for the new arguments... 4914 // These operations are automatically eliminated by the prolog/epilog pass 4915 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true), 4916 dl); 4917 SDValue CallSeqStart = Chain; 4918 4919 // Load the return address and frame pointer so it can be move somewhere else 4920 // later. 4921 SDValue LROp, FPOp; 4922 Chain = EmitTailCallLoadFPAndRetAddr(DAG, SPDiff, Chain, LROp, FPOp, true, 4923 dl); 4924 4925 // Set up a copy of the stack pointer for use loading and storing any 4926 // arguments that may not fit in the registers available for argument 4927 // passing. 4928 SDValue StackPtr; 4929 if (isPPC64) 4930 StackPtr = DAG.getRegister(PPC::X1, MVT::i64); 4931 else 4932 StackPtr = DAG.getRegister(PPC::R1, MVT::i32); 4933 4934 // Figure out which arguments are going to go in registers, and which in 4935 // memory. Also, if this is a vararg function, floating point operations 4936 // must be stored to our stack, and loaded into integer regs as well, if 4937 // any integer regs are available for argument passing. 4938 unsigned ArgOffset = LinkageSize; 4939 unsigned GPR_idx = 0, FPR_idx = 0, VR_idx = 0; 4940 4941 static const MCPhysReg GPR_32[] = { // 32-bit registers. 4942 PPC::R3, PPC::R4, PPC::R5, PPC::R6, 4943 PPC::R7, PPC::R8, PPC::R9, PPC::R10, 4944 }; 4945 static const MCPhysReg GPR_64[] = { // 64-bit registers. 4946 PPC::X3, PPC::X4, PPC::X5, PPC::X6, 4947 PPC::X7, PPC::X8, PPC::X9, PPC::X10, 4948 }; 4949 static const MCPhysReg *FPR = GetFPR(); 4950 4951 static const MCPhysReg VR[] = { 4952 PPC::V2, PPC::V3, PPC::V4, PPC::V5, PPC::V6, PPC::V7, PPC::V8, 4953 PPC::V9, PPC::V10, PPC::V11, PPC::V12, PPC::V13 4954 }; 4955 const unsigned NumGPRs = array_lengthof(GPR_32); 4956 const unsigned NumFPRs = 13; 4957 const unsigned NumVRs = array_lengthof(VR); 4958 4959 const MCPhysReg *GPR = isPPC64 ? GPR_64 : GPR_32; 4960 4961 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; 4962 SmallVector<TailCallArgumentInfo, 8> TailCallArguments; 4963 4964 SmallVector<SDValue, 8> MemOpChains; 4965 for (unsigned i = 0; i != NumOps; ++i) { 4966 SDValue Arg = OutVals[i]; 4967 ISD::ArgFlagsTy Flags = Outs[i].Flags; 4968 4969 // PtrOff will be used to store the current argument to the stack if a 4970 // register cannot be found for it. 4971 SDValue PtrOff; 4972 4973 PtrOff = DAG.getConstant(ArgOffset, StackPtr.getValueType()); 4974 4975 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, PtrOff); 4976 4977 // On PPC64, promote integers to 64-bit values. 4978 if (isPPC64 && Arg.getValueType() == MVT::i32) { 4979 // FIXME: Should this use ANY_EXTEND if neither sext nor zext? 4980 unsigned ExtOp = Flags.isSExt() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 4981 Arg = DAG.getNode(ExtOp, dl, MVT::i64, Arg); 4982 } 4983 4984 // FIXME memcpy is used way more than necessary. Correctness first. 4985 // Note: "by value" is code for passing a structure by value, not 4986 // basic types. 4987 if (Flags.isByVal()) { 4988 unsigned Size = Flags.getByValSize(); 4989 // Very small objects are passed right-justified. Everything else is 4990 // passed left-justified. 4991 if (Size==1 || Size==2) { 4992 EVT VT = (Size==1) ? MVT::i8 : MVT::i16; 4993 if (GPR_idx != NumGPRs) { 4994 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, PtrVT, Chain, Arg, 4995 MachinePointerInfo(), VT, 4996 false, false, false, 0); 4997 MemOpChains.push_back(Load.getValue(1)); 4998 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 4999 5000 ArgOffset += PtrByteSize; 5001 } else { 5002 SDValue Const = DAG.getConstant(PtrByteSize - Size, 5003 PtrOff.getValueType()); 5004 SDValue AddPtr = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, Const); 5005 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, AddPtr, 5006 CallSeqStart, 5007 Flags, DAG, dl); 5008 ArgOffset += PtrByteSize; 5009 } 5010 continue; 5011 } 5012 // Copy entire object into memory. There are cases where gcc-generated 5013 // code assumes it is there, even if it could be put entirely into 5014 // registers. (This is not what the doc says.) 5015 Chain = CallSeqStart = createMemcpyOutsideCallSeq(Arg, PtrOff, 5016 CallSeqStart, 5017 Flags, DAG, dl); 5018 5019 // For small aggregates (Darwin only) and aggregates >= PtrByteSize, 5020 // copy the pieces of the object that fit into registers from the 5021 // parameter save area. 5022 for (unsigned j=0; j<Size; j+=PtrByteSize) { 5023 SDValue Const = DAG.getConstant(j, PtrOff.getValueType()); 5024 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const); 5025 if (GPR_idx != NumGPRs) { 5026 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, AddArg, 5027 MachinePointerInfo(), 5028 false, false, false, 0); 5029 MemOpChains.push_back(Load.getValue(1)); 5030 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 5031 ArgOffset += PtrByteSize; 5032 } else { 5033 ArgOffset += ((Size - j + PtrByteSize-1)/PtrByteSize)*PtrByteSize; 5034 break; 5035 } 5036 } 5037 continue; 5038 } 5039 5040 switch (Arg.getSimpleValueType().SimpleTy) { 5041 default: llvm_unreachable("Unexpected ValueType for argument!"); 5042 case MVT::i1: 5043 case MVT::i32: 5044 case MVT::i64: 5045 if (GPR_idx != NumGPRs) { 5046 if (Arg.getValueType() == MVT::i1) 5047 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, PtrVT, Arg); 5048 5049 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Arg)); 5050 } else { 5051 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 5052 isPPC64, isTailCall, false, MemOpChains, 5053 TailCallArguments, dl); 5054 } 5055 ArgOffset += PtrByteSize; 5056 break; 5057 case MVT::f32: 5058 case MVT::f64: 5059 if (FPR_idx != NumFPRs) { 5060 RegsToPass.push_back(std::make_pair(FPR[FPR_idx++], Arg)); 5061 5062 if (isVarArg) { 5063 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, 5064 MachinePointerInfo(), false, false, 0); 5065 MemOpChains.push_back(Store); 5066 5067 // Float varargs are always shadowed in available integer registers 5068 if (GPR_idx != NumGPRs) { 5069 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, 5070 MachinePointerInfo(), false, false, 5071 false, 0); 5072 MemOpChains.push_back(Load.getValue(1)); 5073 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 5074 } 5075 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && !isPPC64){ 5076 SDValue ConstFour = DAG.getConstant(4, PtrOff.getValueType()); 5077 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, ConstFour); 5078 SDValue Load = DAG.getLoad(PtrVT, dl, Store, PtrOff, 5079 MachinePointerInfo(), 5080 false, false, false, 0); 5081 MemOpChains.push_back(Load.getValue(1)); 5082 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 5083 } 5084 } else { 5085 // If we have any FPRs remaining, we may also have GPRs remaining. 5086 // Args passed in FPRs consume either 1 (f32) or 2 (f64) available 5087 // GPRs. 5088 if (GPR_idx != NumGPRs) 5089 ++GPR_idx; 5090 if (GPR_idx != NumGPRs && Arg.getValueType() == MVT::f64 && 5091 !isPPC64) // PPC64 has 64-bit GPR's obviously :) 5092 ++GPR_idx; 5093 } 5094 } else 5095 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 5096 isPPC64, isTailCall, false, MemOpChains, 5097 TailCallArguments, dl); 5098 if (isPPC64) 5099 ArgOffset += 8; 5100 else 5101 ArgOffset += Arg.getValueType() == MVT::f32 ? 4 : 8; 5102 break; 5103 case MVT::v4f32: 5104 case MVT::v4i32: 5105 case MVT::v8i16: 5106 case MVT::v16i8: 5107 if (isVarArg) { 5108 // These go aligned on the stack, or in the corresponding R registers 5109 // when within range. The Darwin PPC ABI doc claims they also go in 5110 // V registers; in fact gcc does this only for arguments that are 5111 // prototyped, not for those that match the ... We do it for all 5112 // arguments, seems to work. 5113 while (ArgOffset % 16 !=0) { 5114 ArgOffset += PtrByteSize; 5115 if (GPR_idx != NumGPRs) 5116 GPR_idx++; 5117 } 5118 // We could elide this store in the case where the object fits 5119 // entirely in R registers. Maybe later. 5120 PtrOff = DAG.getNode(ISD::ADD, dl, PtrVT, StackPtr, 5121 DAG.getConstant(ArgOffset, PtrVT)); 5122 SDValue Store = DAG.getStore(Chain, dl, Arg, PtrOff, 5123 MachinePointerInfo(), false, false, 0); 5124 MemOpChains.push_back(Store); 5125 if (VR_idx != NumVRs) { 5126 SDValue Load = DAG.getLoad(MVT::v4f32, dl, Store, PtrOff, 5127 MachinePointerInfo(), 5128 false, false, false, 0); 5129 MemOpChains.push_back(Load.getValue(1)); 5130 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load)); 5131 } 5132 ArgOffset += 16; 5133 for (unsigned i=0; i<16; i+=PtrByteSize) { 5134 if (GPR_idx == NumGPRs) 5135 break; 5136 SDValue Ix = DAG.getNode(ISD::ADD, dl, PtrVT, PtrOff, 5137 DAG.getConstant(i, PtrVT)); 5138 SDValue Load = DAG.getLoad(PtrVT, dl, Store, Ix, MachinePointerInfo(), 5139 false, false, false, 0); 5140 MemOpChains.push_back(Load.getValue(1)); 5141 RegsToPass.push_back(std::make_pair(GPR[GPR_idx++], Load)); 5142 } 5143 break; 5144 } 5145 5146 // Non-varargs Altivec params generally go in registers, but have 5147 // stack space allocated at the end. 5148 if (VR_idx != NumVRs) { 5149 // Doesn't have GPR space allocated. 5150 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg)); 5151 } else if (nAltivecParamsAtEnd==0) { 5152 // We are emitting Altivec params in order. 5153 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 5154 isPPC64, isTailCall, true, MemOpChains, 5155 TailCallArguments, dl); 5156 ArgOffset += 16; 5157 } 5158 break; 5159 } 5160 } 5161 // If all Altivec parameters fit in registers, as they usually do, 5162 // they get stack space following the non-Altivec parameters. We 5163 // don't track this here because nobody below needs it. 5164 // If there are more Altivec parameters than fit in registers emit 5165 // the stores here. 5166 if (!isVarArg && nAltivecParamsAtEnd > NumVRs) { 5167 unsigned j = 0; 5168 // Offset is aligned; skip 1st 12 params which go in V registers. 5169 ArgOffset = ((ArgOffset+15)/16)*16; 5170 ArgOffset += 12*16; 5171 for (unsigned i = 0; i != NumOps; ++i) { 5172 SDValue Arg = OutVals[i]; 5173 EVT ArgType = Outs[i].VT; 5174 if (ArgType==MVT::v4f32 || ArgType==MVT::v4i32 || 5175 ArgType==MVT::v8i16 || ArgType==MVT::v16i8) { 5176 if (++j > NumVRs) { 5177 SDValue PtrOff; 5178 // We are emitting Altivec params in order. 5179 LowerMemOpCallTo(DAG, MF, Chain, Arg, PtrOff, SPDiff, ArgOffset, 5180 isPPC64, isTailCall, true, MemOpChains, 5181 TailCallArguments, dl); 5182 ArgOffset += 16; 5183 } 5184 } 5185 } 5186 } 5187 5188 if (!MemOpChains.empty()) 5189 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); 5190 5191 // On Darwin, R12 must contain the address of an indirect callee. This does 5192 // not mean the MTCTR instruction must use R12; it's easier to model this as 5193 // an extra parameter, so do that. 5194 if (!isTailCall && 5195 !isFunctionGlobalAddress(Callee) && 5196 !isa<ExternalSymbolSDNode>(Callee) && 5197 !isBLACompatibleAddress(Callee, DAG)) 5198 RegsToPass.push_back(std::make_pair((unsigned)(isPPC64 ? PPC::X12 : 5199 PPC::R12), Callee)); 5200 5201 // Build a sequence of copy-to-reg nodes chained together with token chain 5202 // and flag operands which copy the outgoing args into the appropriate regs. 5203 SDValue InFlag; 5204 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { 5205 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, 5206 RegsToPass[i].second, InFlag); 5207 InFlag = Chain.getValue(1); 5208 } 5209 5210 if (isTailCall) 5211 PrepareTailCall(DAG, InFlag, Chain, dl, isPPC64, SPDiff, NumBytes, LROp, 5212 FPOp, true, TailCallArguments); 5213 5214 return FinishCall(CallConv, dl, isTailCall, isVarArg, IsPatchPoint, DAG, 5215 RegsToPass, InFlag, Chain, CallSeqStart, Callee, SPDiff, 5216 NumBytes, Ins, InVals, CS); 5217 } 5218 5219 bool 5220 PPCTargetLowering::CanLowerReturn(CallingConv::ID CallConv, 5221 MachineFunction &MF, bool isVarArg, 5222 const SmallVectorImpl<ISD::OutputArg> &Outs, 5223 LLVMContext &Context) const { 5224 SmallVector<CCValAssign, 16> RVLocs; 5225 CCState CCInfo(CallConv, isVarArg, MF, RVLocs, Context); 5226 return CCInfo.CheckReturn(Outs, RetCC_PPC); 5227 } 5228 5229 SDValue 5230 PPCTargetLowering::LowerReturn(SDValue Chain, 5231 CallingConv::ID CallConv, bool isVarArg, 5232 const SmallVectorImpl<ISD::OutputArg> &Outs, 5233 const SmallVectorImpl<SDValue> &OutVals, 5234 SDLoc dl, SelectionDAG &DAG) const { 5235 5236 SmallVector<CCValAssign, 16> RVLocs; 5237 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(), RVLocs, 5238 *DAG.getContext()); 5239 CCInfo.AnalyzeReturn(Outs, RetCC_PPC); 5240 5241 SDValue Flag; 5242 SmallVector<SDValue, 4> RetOps(1, Chain); 5243 5244 // Copy the result values into the output registers. 5245 for (unsigned i = 0; i != RVLocs.size(); ++i) { 5246 CCValAssign &VA = RVLocs[i]; 5247 assert(VA.isRegLoc() && "Can only return in registers!"); 5248 5249 SDValue Arg = OutVals[i]; 5250 5251 switch (VA.getLocInfo()) { 5252 default: llvm_unreachable("Unknown loc info!"); 5253 case CCValAssign::Full: break; 5254 case CCValAssign::AExt: 5255 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg); 5256 break; 5257 case CCValAssign::ZExt: 5258 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); 5259 break; 5260 case CCValAssign::SExt: 5261 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); 5262 break; 5263 } 5264 5265 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Arg, Flag); 5266 Flag = Chain.getValue(1); 5267 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT())); 5268 } 5269 5270 RetOps[0] = Chain; // Update chain. 5271 5272 // Add the flag if we have it. 5273 if (Flag.getNode()) 5274 RetOps.push_back(Flag); 5275 5276 return DAG.getNode(PPCISD::RET_FLAG, dl, MVT::Other, RetOps); 5277 } 5278 5279 SDValue PPCTargetLowering::LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG, 5280 const PPCSubtarget &Subtarget) const { 5281 // When we pop the dynamic allocation we need to restore the SP link. 5282 SDLoc dl(Op); 5283 5284 // Get the corect type for pointers. 5285 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5286 5287 // Construct the stack pointer operand. 5288 bool isPPC64 = Subtarget.isPPC64(); 5289 unsigned SP = isPPC64 ? PPC::X1 : PPC::R1; 5290 SDValue StackPtr = DAG.getRegister(SP, PtrVT); 5291 5292 // Get the operands for the STACKRESTORE. 5293 SDValue Chain = Op.getOperand(0); 5294 SDValue SaveSP = Op.getOperand(1); 5295 5296 // Load the old link SP. 5297 SDValue LoadLinkSP = DAG.getLoad(PtrVT, dl, Chain, StackPtr, 5298 MachinePointerInfo(), 5299 false, false, false, 0); 5300 5301 // Restore the stack pointer. 5302 Chain = DAG.getCopyToReg(LoadLinkSP.getValue(1), dl, SP, SaveSP); 5303 5304 // Store the old link SP. 5305 return DAG.getStore(Chain, dl, LoadLinkSP, StackPtr, MachinePointerInfo(), 5306 false, false, 0); 5307 } 5308 5309 5310 5311 SDValue 5312 PPCTargetLowering::getReturnAddrFrameIndex(SelectionDAG & DAG) const { 5313 MachineFunction &MF = DAG.getMachineFunction(); 5314 bool isPPC64 = Subtarget.isPPC64(); 5315 bool isDarwinABI = Subtarget.isDarwinABI(); 5316 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5317 5318 // Get current frame pointer save index. The users of this index will be 5319 // primarily DYNALLOC instructions. 5320 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 5321 int RASI = FI->getReturnAddrSaveIndex(); 5322 5323 // If the frame pointer save index hasn't been defined yet. 5324 if (!RASI) { 5325 // Find out what the fix offset of the frame pointer save area. 5326 int LROffset = PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI); 5327 // Allocate the frame index for frame pointer save area. 5328 RASI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, LROffset, false); 5329 // Save the result. 5330 FI->setReturnAddrSaveIndex(RASI); 5331 } 5332 return DAG.getFrameIndex(RASI, PtrVT); 5333 } 5334 5335 SDValue 5336 PPCTargetLowering::getFramePointerFrameIndex(SelectionDAG & DAG) const { 5337 MachineFunction &MF = DAG.getMachineFunction(); 5338 bool isPPC64 = Subtarget.isPPC64(); 5339 bool isDarwinABI = Subtarget.isDarwinABI(); 5340 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5341 5342 // Get current frame pointer save index. The users of this index will be 5343 // primarily DYNALLOC instructions. 5344 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 5345 int FPSI = FI->getFramePointerSaveIndex(); 5346 5347 // If the frame pointer save index hasn't been defined yet. 5348 if (!FPSI) { 5349 // Find out what the fix offset of the frame pointer save area. 5350 int FPOffset = PPCFrameLowering::getFramePointerSaveOffset(isPPC64, 5351 isDarwinABI); 5352 5353 // Allocate the frame index for frame pointer save area. 5354 FPSI = MF.getFrameInfo()->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true); 5355 // Save the result. 5356 FI->setFramePointerSaveIndex(FPSI); 5357 } 5358 return DAG.getFrameIndex(FPSI, PtrVT); 5359 } 5360 5361 SDValue PPCTargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op, 5362 SelectionDAG &DAG, 5363 const PPCSubtarget &Subtarget) const { 5364 // Get the inputs. 5365 SDValue Chain = Op.getOperand(0); 5366 SDValue Size = Op.getOperand(1); 5367 SDLoc dl(Op); 5368 5369 // Get the corect type for pointers. 5370 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5371 // Negate the size. 5372 SDValue NegSize = DAG.getNode(ISD::SUB, dl, PtrVT, 5373 DAG.getConstant(0, PtrVT), Size); 5374 // Construct a node for the frame pointer save index. 5375 SDValue FPSIdx = getFramePointerFrameIndex(DAG); 5376 // Build a DYNALLOC node. 5377 SDValue Ops[3] = { Chain, NegSize, FPSIdx }; 5378 SDVTList VTs = DAG.getVTList(PtrVT, MVT::Other); 5379 return DAG.getNode(PPCISD::DYNALLOC, dl, VTs, Ops); 5380 } 5381 5382 SDValue PPCTargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op, 5383 SelectionDAG &DAG) const { 5384 SDLoc DL(Op); 5385 return DAG.getNode(PPCISD::EH_SJLJ_SETJMP, DL, 5386 DAG.getVTList(MVT::i32, MVT::Other), 5387 Op.getOperand(0), Op.getOperand(1)); 5388 } 5389 5390 SDValue PPCTargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op, 5391 SelectionDAG &DAG) const { 5392 SDLoc DL(Op); 5393 return DAG.getNode(PPCISD::EH_SJLJ_LONGJMP, DL, MVT::Other, 5394 Op.getOperand(0), Op.getOperand(1)); 5395 } 5396 5397 SDValue PPCTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const { 5398 assert(Op.getValueType() == MVT::i1 && 5399 "Custom lowering only for i1 loads"); 5400 5401 // First, load 8 bits into 32 bits, then truncate to 1 bit. 5402 5403 SDLoc dl(Op); 5404 LoadSDNode *LD = cast<LoadSDNode>(Op); 5405 5406 SDValue Chain = LD->getChain(); 5407 SDValue BasePtr = LD->getBasePtr(); 5408 MachineMemOperand *MMO = LD->getMemOperand(); 5409 5410 SDValue NewLD = DAG.getExtLoad(ISD::EXTLOAD, dl, getPointerTy(), Chain, 5411 BasePtr, MVT::i8, MMO); 5412 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, NewLD); 5413 5414 SDValue Ops[] = { Result, SDValue(NewLD.getNode(), 1) }; 5415 return DAG.getMergeValues(Ops, dl); 5416 } 5417 5418 SDValue PPCTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const { 5419 assert(Op.getOperand(1).getValueType() == MVT::i1 && 5420 "Custom lowering only for i1 stores"); 5421 5422 // First, zero extend to 32 bits, then use a truncating store to 8 bits. 5423 5424 SDLoc dl(Op); 5425 StoreSDNode *ST = cast<StoreSDNode>(Op); 5426 5427 SDValue Chain = ST->getChain(); 5428 SDValue BasePtr = ST->getBasePtr(); 5429 SDValue Value = ST->getValue(); 5430 MachineMemOperand *MMO = ST->getMemOperand(); 5431 5432 Value = DAG.getNode(ISD::ZERO_EXTEND, dl, getPointerTy(), Value); 5433 return DAG.getTruncStore(Chain, dl, Value, BasePtr, MVT::i8, MMO); 5434 } 5435 5436 // FIXME: Remove this once the ANDI glue bug is fixed: 5437 SDValue PPCTargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const { 5438 assert(Op.getValueType() == MVT::i1 && 5439 "Custom lowering only for i1 results"); 5440 5441 SDLoc DL(Op); 5442 return DAG.getNode(PPCISD::ANDIo_1_GT_BIT, DL, MVT::i1, 5443 Op.getOperand(0)); 5444 } 5445 5446 /// LowerSELECT_CC - Lower floating point select_cc's into fsel instruction when 5447 /// possible. 5448 SDValue PPCTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) const { 5449 // Not FP? Not a fsel. 5450 if (!Op.getOperand(0).getValueType().isFloatingPoint() || 5451 !Op.getOperand(2).getValueType().isFloatingPoint()) 5452 return Op; 5453 5454 // We might be able to do better than this under some circumstances, but in 5455 // general, fsel-based lowering of select is a finite-math-only optimization. 5456 // For more information, see section F.3 of the 2.06 ISA specification. 5457 if (!DAG.getTarget().Options.NoInfsFPMath || 5458 !DAG.getTarget().Options.NoNaNsFPMath) 5459 return Op; 5460 5461 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); 5462 5463 EVT ResVT = Op.getValueType(); 5464 EVT CmpVT = Op.getOperand(0).getValueType(); 5465 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 5466 SDValue TV = Op.getOperand(2), FV = Op.getOperand(3); 5467 SDLoc dl(Op); 5468 5469 // If the RHS of the comparison is a 0.0, we don't need to do the 5470 // subtraction at all. 5471 SDValue Sel1; 5472 if (isFloatingPointZero(RHS)) 5473 switch (CC) { 5474 default: break; // SETUO etc aren't handled by fsel. 5475 case ISD::SETNE: 5476 std::swap(TV, FV); 5477 case ISD::SETEQ: 5478 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 5479 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 5480 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); 5481 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits 5482 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1); 5483 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 5484 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), Sel1, FV); 5485 case ISD::SETULT: 5486 case ISD::SETLT: 5487 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt 5488 case ISD::SETOGE: 5489 case ISD::SETGE: 5490 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 5491 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 5492 return DAG.getNode(PPCISD::FSEL, dl, ResVT, LHS, TV, FV); 5493 case ISD::SETUGT: 5494 case ISD::SETGT: 5495 std::swap(TV, FV); // fsel is natively setge, swap operands for setlt 5496 case ISD::SETOLE: 5497 case ISD::SETLE: 5498 if (LHS.getValueType() == MVT::f32) // Comparison is always 64-bits 5499 LHS = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, LHS); 5500 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 5501 DAG.getNode(ISD::FNEG, dl, MVT::f64, LHS), TV, FV); 5502 } 5503 5504 SDValue Cmp; 5505 switch (CC) { 5506 default: break; // SETUO etc aren't handled by fsel. 5507 case ISD::SETNE: 5508 std::swap(TV, FV); 5509 case ISD::SETEQ: 5510 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS); 5511 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 5512 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 5513 Sel1 = DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 5514 if (Sel1.getValueType() == MVT::f32) // Comparison is always 64-bits 5515 Sel1 = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Sel1); 5516 return DAG.getNode(PPCISD::FSEL, dl, ResVT, 5517 DAG.getNode(ISD::FNEG, dl, MVT::f64, Cmp), Sel1, FV); 5518 case ISD::SETULT: 5519 case ISD::SETLT: 5520 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS); 5521 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 5522 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 5523 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV); 5524 case ISD::SETOGE: 5525 case ISD::SETGE: 5526 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, LHS, RHS); 5527 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 5528 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 5529 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 5530 case ISD::SETUGT: 5531 case ISD::SETGT: 5532 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS); 5533 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 5534 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 5535 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, FV, TV); 5536 case ISD::SETOLE: 5537 case ISD::SETLE: 5538 Cmp = DAG.getNode(ISD::FSUB, dl, CmpVT, RHS, LHS); 5539 if (Cmp.getValueType() == MVT::f32) // Comparison is always 64-bits 5540 Cmp = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Cmp); 5541 return DAG.getNode(PPCISD::FSEL, dl, ResVT, Cmp, TV, FV); 5542 } 5543 return Op; 5544 } 5545 5546 void PPCTargetLowering::LowerFP_TO_INTForReuse(SDValue Op, ReuseLoadInfo &RLI, 5547 SelectionDAG &DAG, 5548 SDLoc dl) const { 5549 assert(Op.getOperand(0).getValueType().isFloatingPoint()); 5550 SDValue Src = Op.getOperand(0); 5551 if (Src.getValueType() == MVT::f32) 5552 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src); 5553 5554 SDValue Tmp; 5555 switch (Op.getSimpleValueType().SimpleTy) { 5556 default: llvm_unreachable("Unhandled FP_TO_INT type in custom expander!"); 5557 case MVT::i32: 5558 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIWZ : 5559 (Subtarget.hasFPCVT() ? PPCISD::FCTIWUZ : 5560 PPCISD::FCTIDZ), 5561 dl, MVT::f64, Src); 5562 break; 5563 case MVT::i64: 5564 assert((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()) && 5565 "i64 FP_TO_UINT is supported only with FPCVT"); 5566 Tmp = DAG.getNode(Op.getOpcode()==ISD::FP_TO_SINT ? PPCISD::FCTIDZ : 5567 PPCISD::FCTIDUZ, 5568 dl, MVT::f64, Src); 5569 break; 5570 } 5571 5572 // Convert the FP value to an int value through memory. 5573 bool i32Stack = Op.getValueType() == MVT::i32 && Subtarget.hasSTFIWX() && 5574 (Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT()); 5575 SDValue FIPtr = DAG.CreateStackTemporary(i32Stack ? MVT::i32 : MVT::f64); 5576 int FI = cast<FrameIndexSDNode>(FIPtr)->getIndex(); 5577 MachinePointerInfo MPI = MachinePointerInfo::getFixedStack(FI); 5578 5579 // Emit a store to the stack slot. 5580 SDValue Chain; 5581 if (i32Stack) { 5582 MachineFunction &MF = DAG.getMachineFunction(); 5583 MachineMemOperand *MMO = 5584 MF.getMachineMemOperand(MPI, MachineMemOperand::MOStore, 4, 4); 5585 SDValue Ops[] = { DAG.getEntryNode(), Tmp, FIPtr }; 5586 Chain = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl, 5587 DAG.getVTList(MVT::Other), Ops, MVT::i32, MMO); 5588 } else 5589 Chain = DAG.getStore(DAG.getEntryNode(), dl, Tmp, FIPtr, 5590 MPI, false, false, 0); 5591 5592 // Result is a load from the stack slot. If loading 4 bytes, make sure to 5593 // add in a bias. 5594 if (Op.getValueType() == MVT::i32 && !i32Stack) { 5595 FIPtr = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, 5596 DAG.getConstant(4, FIPtr.getValueType())); 5597 MPI = MPI.getWithOffset(4); 5598 } 5599 5600 RLI.Chain = Chain; 5601 RLI.Ptr = FIPtr; 5602 RLI.MPI = MPI; 5603 } 5604 5605 SDValue PPCTargetLowering::LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG, 5606 SDLoc dl) const { 5607 ReuseLoadInfo RLI; 5608 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl); 5609 5610 return DAG.getLoad(Op.getValueType(), dl, RLI.Chain, RLI.Ptr, RLI.MPI, false, 5611 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo, 5612 RLI.Ranges); 5613 } 5614 5615 // We're trying to insert a regular store, S, and then a load, L. If the 5616 // incoming value, O, is a load, we might just be able to have our load use the 5617 // address used by O. However, we don't know if anything else will store to 5618 // that address before we can load from it. To prevent this situation, we need 5619 // to insert our load, L, into the chain as a peer of O. To do this, we give L 5620 // the same chain operand as O, we create a token factor from the chain results 5621 // of O and L, and we replace all uses of O's chain result with that token 5622 // factor (see spliceIntoChain below for this last part). 5623 bool PPCTargetLowering::canReuseLoadAddress(SDValue Op, EVT MemVT, 5624 ReuseLoadInfo &RLI, 5625 SelectionDAG &DAG, 5626 ISD::LoadExtType ET) const { 5627 SDLoc dl(Op); 5628 if (ET == ISD::NON_EXTLOAD && 5629 (Op.getOpcode() == ISD::FP_TO_UINT || 5630 Op.getOpcode() == ISD::FP_TO_SINT) && 5631 isOperationLegalOrCustom(Op.getOpcode(), 5632 Op.getOperand(0).getValueType())) { 5633 5634 LowerFP_TO_INTForReuse(Op, RLI, DAG, dl); 5635 return true; 5636 } 5637 5638 LoadSDNode *LD = dyn_cast<LoadSDNode>(Op); 5639 if (!LD || LD->getExtensionType() != ET || LD->isVolatile() || 5640 LD->isNonTemporal()) 5641 return false; 5642 if (LD->getMemoryVT() != MemVT) 5643 return false; 5644 5645 RLI.Ptr = LD->getBasePtr(); 5646 if (LD->isIndexed() && LD->getOffset().getOpcode() != ISD::UNDEF) { 5647 assert(LD->getAddressingMode() == ISD::PRE_INC && 5648 "Non-pre-inc AM on PPC?"); 5649 RLI.Ptr = DAG.getNode(ISD::ADD, dl, RLI.Ptr.getValueType(), RLI.Ptr, 5650 LD->getOffset()); 5651 } 5652 5653 RLI.Chain = LD->getChain(); 5654 RLI.MPI = LD->getPointerInfo(); 5655 RLI.IsInvariant = LD->isInvariant(); 5656 RLI.Alignment = LD->getAlignment(); 5657 RLI.AAInfo = LD->getAAInfo(); 5658 RLI.Ranges = LD->getRanges(); 5659 5660 RLI.ResChain = SDValue(LD, LD->isIndexed() ? 2 : 1); 5661 return true; 5662 } 5663 5664 // Given the head of the old chain, ResChain, insert a token factor containing 5665 // it and NewResChain, and make users of ResChain now be users of that token 5666 // factor. 5667 void PPCTargetLowering::spliceIntoChain(SDValue ResChain, 5668 SDValue NewResChain, 5669 SelectionDAG &DAG) const { 5670 if (!ResChain) 5671 return; 5672 5673 SDLoc dl(NewResChain); 5674 5675 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 5676 NewResChain, DAG.getUNDEF(MVT::Other)); 5677 assert(TF.getNode() != NewResChain.getNode() && 5678 "A new TF really is required here"); 5679 5680 DAG.ReplaceAllUsesOfValueWith(ResChain, TF); 5681 DAG.UpdateNodeOperands(TF.getNode(), ResChain, NewResChain); 5682 } 5683 5684 SDValue PPCTargetLowering::LowerINT_TO_FP(SDValue Op, 5685 SelectionDAG &DAG) const { 5686 SDLoc dl(Op); 5687 // Don't handle ppc_fp128 here; let it be lowered to a libcall. 5688 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64) 5689 return SDValue(); 5690 5691 if (Op.getOperand(0).getValueType() == MVT::i1) 5692 return DAG.getNode(ISD::SELECT, dl, Op.getValueType(), Op.getOperand(0), 5693 DAG.getConstantFP(1.0, Op.getValueType()), 5694 DAG.getConstantFP(0.0, Op.getValueType())); 5695 5696 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) && 5697 "UINT_TO_FP is supported only with FPCVT"); 5698 5699 // If we have FCFIDS, then use it when converting to single-precision. 5700 // Otherwise, convert to double-precision and then round. 5701 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ? 5702 (Op.getOpcode() == ISD::UINT_TO_FP ? 5703 PPCISD::FCFIDUS : PPCISD::FCFIDS) : 5704 (Op.getOpcode() == ISD::UINT_TO_FP ? 5705 PPCISD::FCFIDU : PPCISD::FCFID); 5706 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ? 5707 MVT::f32 : MVT::f64; 5708 5709 if (Op.getOperand(0).getValueType() == MVT::i64) { 5710 SDValue SINT = Op.getOperand(0); 5711 // When converting to single-precision, we actually need to convert 5712 // to double-precision first and then round to single-precision. 5713 // To avoid double-rounding effects during that operation, we have 5714 // to prepare the input operand. Bits that might be truncated when 5715 // converting to double-precision are replaced by a bit that won't 5716 // be lost at this stage, but is below the single-precision rounding 5717 // position. 5718 // 5719 // However, if -enable-unsafe-fp-math is in effect, accept double 5720 // rounding to avoid the extra overhead. 5721 if (Op.getValueType() == MVT::f32 && 5722 !Subtarget.hasFPCVT() && 5723 !DAG.getTarget().Options.UnsafeFPMath) { 5724 5725 // Twiddle input to make sure the low 11 bits are zero. (If this 5726 // is the case, we are guaranteed the value will fit into the 53 bit 5727 // mantissa of an IEEE double-precision value without rounding.) 5728 // If any of those low 11 bits were not zero originally, make sure 5729 // bit 12 (value 2048) is set instead, so that the final rounding 5730 // to single-precision gets the correct result. 5731 SDValue Round = DAG.getNode(ISD::AND, dl, MVT::i64, 5732 SINT, DAG.getConstant(2047, MVT::i64)); 5733 Round = DAG.getNode(ISD::ADD, dl, MVT::i64, 5734 Round, DAG.getConstant(2047, MVT::i64)); 5735 Round = DAG.getNode(ISD::OR, dl, MVT::i64, Round, SINT); 5736 Round = DAG.getNode(ISD::AND, dl, MVT::i64, 5737 Round, DAG.getConstant(-2048, MVT::i64)); 5738 5739 // However, we cannot use that value unconditionally: if the magnitude 5740 // of the input value is small, the bit-twiddling we did above might 5741 // end up visibly changing the output. Fortunately, in that case, we 5742 // don't need to twiddle bits since the original input will convert 5743 // exactly to double-precision floating-point already. Therefore, 5744 // construct a conditional to use the original value if the top 11 5745 // bits are all sign-bit copies, and use the rounded value computed 5746 // above otherwise. 5747 SDValue Cond = DAG.getNode(ISD::SRA, dl, MVT::i64, 5748 SINT, DAG.getConstant(53, MVT::i32)); 5749 Cond = DAG.getNode(ISD::ADD, dl, MVT::i64, 5750 Cond, DAG.getConstant(1, MVT::i64)); 5751 Cond = DAG.getSetCC(dl, MVT::i32, 5752 Cond, DAG.getConstant(1, MVT::i64), ISD::SETUGT); 5753 5754 SINT = DAG.getNode(ISD::SELECT, dl, MVT::i64, Cond, Round, SINT); 5755 } 5756 5757 ReuseLoadInfo RLI; 5758 SDValue Bits; 5759 5760 MachineFunction &MF = DAG.getMachineFunction(); 5761 if (canReuseLoadAddress(SINT, MVT::i64, RLI, DAG)) { 5762 Bits = DAG.getLoad(MVT::f64, dl, RLI.Chain, RLI.Ptr, RLI.MPI, false, 5763 false, RLI.IsInvariant, RLI.Alignment, RLI.AAInfo, 5764 RLI.Ranges); 5765 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 5766 } else if (Subtarget.hasLFIWAX() && 5767 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::SEXTLOAD)) { 5768 MachineMemOperand *MMO = 5769 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 5770 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 5771 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 5772 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWAX, dl, 5773 DAG.getVTList(MVT::f64, MVT::Other), 5774 Ops, MVT::i32, MMO); 5775 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 5776 } else if (Subtarget.hasFPCVT() && 5777 canReuseLoadAddress(SINT, MVT::i32, RLI, DAG, ISD::ZEXTLOAD)) { 5778 MachineMemOperand *MMO = 5779 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 5780 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 5781 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 5782 Bits = DAG.getMemIntrinsicNode(PPCISD::LFIWZX, dl, 5783 DAG.getVTList(MVT::f64, MVT::Other), 5784 Ops, MVT::i32, MMO); 5785 spliceIntoChain(RLI.ResChain, Bits.getValue(1), DAG); 5786 } else if (((Subtarget.hasLFIWAX() && 5787 SINT.getOpcode() == ISD::SIGN_EXTEND) || 5788 (Subtarget.hasFPCVT() && 5789 SINT.getOpcode() == ISD::ZERO_EXTEND)) && 5790 SINT.getOperand(0).getValueType() == MVT::i32) { 5791 MachineFrameInfo *FrameInfo = MF.getFrameInfo(); 5792 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5793 5794 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false); 5795 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 5796 5797 SDValue Store = 5798 DAG.getStore(DAG.getEntryNode(), dl, SINT.getOperand(0), FIdx, 5799 MachinePointerInfo::getFixedStack(FrameIdx), 5800 false, false, 0); 5801 5802 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 && 5803 "Expected an i32 store"); 5804 5805 RLI.Ptr = FIdx; 5806 RLI.Chain = Store; 5807 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx); 5808 RLI.Alignment = 4; 5809 5810 MachineMemOperand *MMO = 5811 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 5812 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 5813 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 5814 Bits = DAG.getMemIntrinsicNode(SINT.getOpcode() == ISD::ZERO_EXTEND ? 5815 PPCISD::LFIWZX : PPCISD::LFIWAX, 5816 dl, DAG.getVTList(MVT::f64, MVT::Other), 5817 Ops, MVT::i32, MMO); 5818 } else 5819 Bits = DAG.getNode(ISD::BITCAST, dl, MVT::f64, SINT); 5820 5821 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Bits); 5822 5823 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) 5824 FP = DAG.getNode(ISD::FP_ROUND, dl, 5825 MVT::f32, FP, DAG.getIntPtrConstant(0)); 5826 return FP; 5827 } 5828 5829 assert(Op.getOperand(0).getValueType() == MVT::i32 && 5830 "Unhandled INT_TO_FP type in custom expander!"); 5831 // Since we only generate this in 64-bit mode, we can take advantage of 5832 // 64-bit registers. In particular, sign extend the input value into the 5833 // 64-bit register with extsw, store the WHOLE 64-bit value into the stack 5834 // then lfd it and fcfid it. 5835 MachineFunction &MF = DAG.getMachineFunction(); 5836 MachineFrameInfo *FrameInfo = MF.getFrameInfo(); 5837 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5838 5839 SDValue Ld; 5840 if (Subtarget.hasLFIWAX() || Subtarget.hasFPCVT()) { 5841 ReuseLoadInfo RLI; 5842 bool ReusingLoad; 5843 if (!(ReusingLoad = canReuseLoadAddress(Op.getOperand(0), MVT::i32, RLI, 5844 DAG))) { 5845 int FrameIdx = FrameInfo->CreateStackObject(4, 4, false); 5846 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 5847 5848 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0), FIdx, 5849 MachinePointerInfo::getFixedStack(FrameIdx), 5850 false, false, 0); 5851 5852 assert(cast<StoreSDNode>(Store)->getMemoryVT() == MVT::i32 && 5853 "Expected an i32 store"); 5854 5855 RLI.Ptr = FIdx; 5856 RLI.Chain = Store; 5857 RLI.MPI = MachinePointerInfo::getFixedStack(FrameIdx); 5858 RLI.Alignment = 4; 5859 } 5860 5861 MachineMemOperand *MMO = 5862 MF.getMachineMemOperand(RLI.MPI, MachineMemOperand::MOLoad, 4, 5863 RLI.Alignment, RLI.AAInfo, RLI.Ranges); 5864 SDValue Ops[] = { RLI.Chain, RLI.Ptr }; 5865 Ld = DAG.getMemIntrinsicNode(Op.getOpcode() == ISD::UINT_TO_FP ? 5866 PPCISD::LFIWZX : PPCISD::LFIWAX, 5867 dl, DAG.getVTList(MVT::f64, MVT::Other), 5868 Ops, MVT::i32, MMO); 5869 if (ReusingLoad) 5870 spliceIntoChain(RLI.ResChain, Ld.getValue(1), DAG); 5871 } else { 5872 assert(Subtarget.isPPC64() && 5873 "i32->FP without LFIWAX supported only on PPC64"); 5874 5875 int FrameIdx = FrameInfo->CreateStackObject(8, 8, false); 5876 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 5877 5878 SDValue Ext64 = DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::i64, 5879 Op.getOperand(0)); 5880 5881 // STD the extended value into the stack slot. 5882 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Ext64, FIdx, 5883 MachinePointerInfo::getFixedStack(FrameIdx), 5884 false, false, 0); 5885 5886 // Load the value as a double. 5887 Ld = DAG.getLoad(MVT::f64, dl, Store, FIdx, 5888 MachinePointerInfo::getFixedStack(FrameIdx), 5889 false, false, false, 0); 5890 } 5891 5892 // FCFID it and return it. 5893 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Ld); 5894 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) 5895 FP = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, FP, DAG.getIntPtrConstant(0)); 5896 return FP; 5897 } 5898 5899 SDValue PPCTargetLowering::LowerFLT_ROUNDS_(SDValue Op, 5900 SelectionDAG &DAG) const { 5901 SDLoc dl(Op); 5902 /* 5903 The rounding mode is in bits 30:31 of FPSR, and has the following 5904 settings: 5905 00 Round to nearest 5906 01 Round to 0 5907 10 Round to +inf 5908 11 Round to -inf 5909 5910 FLT_ROUNDS, on the other hand, expects the following: 5911 -1 Undefined 5912 0 Round to 0 5913 1 Round to nearest 5914 2 Round to +inf 5915 3 Round to -inf 5916 5917 To perform the conversion, we do: 5918 ((FPSCR & 0x3) ^ ((~FPSCR & 0x3) >> 1)) 5919 */ 5920 5921 MachineFunction &MF = DAG.getMachineFunction(); 5922 EVT VT = Op.getValueType(); 5923 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 5924 5925 // Save FP Control Word to register 5926 EVT NodeTys[] = { 5927 MVT::f64, // return register 5928 MVT::Glue // unused in this context 5929 }; 5930 SDValue Chain = DAG.getNode(PPCISD::MFFS, dl, NodeTys, None); 5931 5932 // Save FP register to stack slot 5933 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8, false); 5934 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT); 5935 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain, 5936 StackSlot, MachinePointerInfo(), false, false,0); 5937 5938 // Load FP Control Word from low 32 bits of stack slot. 5939 SDValue Four = DAG.getConstant(4, PtrVT); 5940 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four); 5941 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo(), 5942 false, false, false, 0); 5943 5944 // Transform as necessary 5945 SDValue CWD1 = 5946 DAG.getNode(ISD::AND, dl, MVT::i32, 5947 CWD, DAG.getConstant(3, MVT::i32)); 5948 SDValue CWD2 = 5949 DAG.getNode(ISD::SRL, dl, MVT::i32, 5950 DAG.getNode(ISD::AND, dl, MVT::i32, 5951 DAG.getNode(ISD::XOR, dl, MVT::i32, 5952 CWD, DAG.getConstant(3, MVT::i32)), 5953 DAG.getConstant(3, MVT::i32)), 5954 DAG.getConstant(1, MVT::i32)); 5955 5956 SDValue RetVal = 5957 DAG.getNode(ISD::XOR, dl, MVT::i32, CWD1, CWD2); 5958 5959 return DAG.getNode((VT.getSizeInBits() < 16 ? 5960 ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal); 5961 } 5962 5963 SDValue PPCTargetLowering::LowerSHL_PARTS(SDValue Op, SelectionDAG &DAG) const { 5964 EVT VT = Op.getValueType(); 5965 unsigned BitWidth = VT.getSizeInBits(); 5966 SDLoc dl(Op); 5967 assert(Op.getNumOperands() == 3 && 5968 VT == Op.getOperand(1).getValueType() && 5969 "Unexpected SHL!"); 5970 5971 // Expand into a bunch of logical ops. Note that these ops 5972 // depend on the PPC behavior for oversized shift amounts. 5973 SDValue Lo = Op.getOperand(0); 5974 SDValue Hi = Op.getOperand(1); 5975 SDValue Amt = Op.getOperand(2); 5976 EVT AmtVT = Amt.getValueType(); 5977 5978 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 5979 DAG.getConstant(BitWidth, AmtVT), Amt); 5980 SDValue Tmp2 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Amt); 5981 SDValue Tmp3 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Tmp1); 5982 SDValue Tmp4 = DAG.getNode(ISD::OR , dl, VT, Tmp2, Tmp3); 5983 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 5984 DAG.getConstant(-BitWidth, AmtVT)); 5985 SDValue Tmp6 = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Tmp5); 5986 SDValue OutHi = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6); 5987 SDValue OutLo = DAG.getNode(PPCISD::SHL, dl, VT, Lo, Amt); 5988 SDValue OutOps[] = { OutLo, OutHi }; 5989 return DAG.getMergeValues(OutOps, dl); 5990 } 5991 5992 SDValue PPCTargetLowering::LowerSRL_PARTS(SDValue Op, SelectionDAG &DAG) const { 5993 EVT VT = Op.getValueType(); 5994 SDLoc dl(Op); 5995 unsigned BitWidth = VT.getSizeInBits(); 5996 assert(Op.getNumOperands() == 3 && 5997 VT == Op.getOperand(1).getValueType() && 5998 "Unexpected SRL!"); 5999 6000 // Expand into a bunch of logical ops. Note that these ops 6001 // depend on the PPC behavior for oversized shift amounts. 6002 SDValue Lo = Op.getOperand(0); 6003 SDValue Hi = Op.getOperand(1); 6004 SDValue Amt = Op.getOperand(2); 6005 EVT AmtVT = Amt.getValueType(); 6006 6007 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 6008 DAG.getConstant(BitWidth, AmtVT), Amt); 6009 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt); 6010 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1); 6011 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3); 6012 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 6013 DAG.getConstant(-BitWidth, AmtVT)); 6014 SDValue Tmp6 = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Tmp5); 6015 SDValue OutLo = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp6); 6016 SDValue OutHi = DAG.getNode(PPCISD::SRL, dl, VT, Hi, Amt); 6017 SDValue OutOps[] = { OutLo, OutHi }; 6018 return DAG.getMergeValues(OutOps, dl); 6019 } 6020 6021 SDValue PPCTargetLowering::LowerSRA_PARTS(SDValue Op, SelectionDAG &DAG) const { 6022 SDLoc dl(Op); 6023 EVT VT = Op.getValueType(); 6024 unsigned BitWidth = VT.getSizeInBits(); 6025 assert(Op.getNumOperands() == 3 && 6026 VT == Op.getOperand(1).getValueType() && 6027 "Unexpected SRA!"); 6028 6029 // Expand into a bunch of logical ops, followed by a select_cc. 6030 SDValue Lo = Op.getOperand(0); 6031 SDValue Hi = Op.getOperand(1); 6032 SDValue Amt = Op.getOperand(2); 6033 EVT AmtVT = Amt.getValueType(); 6034 6035 SDValue Tmp1 = DAG.getNode(ISD::SUB, dl, AmtVT, 6036 DAG.getConstant(BitWidth, AmtVT), Amt); 6037 SDValue Tmp2 = DAG.getNode(PPCISD::SRL, dl, VT, Lo, Amt); 6038 SDValue Tmp3 = DAG.getNode(PPCISD::SHL, dl, VT, Hi, Tmp1); 6039 SDValue Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp3); 6040 SDValue Tmp5 = DAG.getNode(ISD::ADD, dl, AmtVT, Amt, 6041 DAG.getConstant(-BitWidth, AmtVT)); 6042 SDValue Tmp6 = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Tmp5); 6043 SDValue OutHi = DAG.getNode(PPCISD::SRA, dl, VT, Hi, Amt); 6044 SDValue OutLo = DAG.getSelectCC(dl, Tmp5, DAG.getConstant(0, AmtVT), 6045 Tmp4, Tmp6, ISD::SETLE); 6046 SDValue OutOps[] = { OutLo, OutHi }; 6047 return DAG.getMergeValues(OutOps, dl); 6048 } 6049 6050 //===----------------------------------------------------------------------===// 6051 // Vector related lowering. 6052 // 6053 6054 /// BuildSplatI - Build a canonical splati of Val with an element size of 6055 /// SplatSize. Cast the result to VT. 6056 static SDValue BuildSplatI(int Val, unsigned SplatSize, EVT VT, 6057 SelectionDAG &DAG, SDLoc dl) { 6058 assert(Val >= -16 && Val <= 15 && "vsplti is out of range!"); 6059 6060 static const EVT VTys[] = { // canonical VT to use for each size. 6061 MVT::v16i8, MVT::v8i16, MVT::Other, MVT::v4i32 6062 }; 6063 6064 EVT ReqVT = VT != MVT::Other ? VT : VTys[SplatSize-1]; 6065 6066 // Force vspltis[hw] -1 to vspltisb -1 to canonicalize. 6067 if (Val == -1) 6068 SplatSize = 1; 6069 6070 EVT CanonicalVT = VTys[SplatSize-1]; 6071 6072 // Build a canonical splat for this value. 6073 SDValue Elt = DAG.getConstant(Val, MVT::i32); 6074 SmallVector<SDValue, 8> Ops; 6075 Ops.assign(CanonicalVT.getVectorNumElements(), Elt); 6076 SDValue Res = DAG.getNode(ISD::BUILD_VECTOR, dl, CanonicalVT, Ops); 6077 return DAG.getNode(ISD::BITCAST, dl, ReqVT, Res); 6078 } 6079 6080 /// BuildIntrinsicOp - Return a unary operator intrinsic node with the 6081 /// specified intrinsic ID. 6082 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op, 6083 SelectionDAG &DAG, SDLoc dl, 6084 EVT DestVT = MVT::Other) { 6085 if (DestVT == MVT::Other) DestVT = Op.getValueType(); 6086 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 6087 DAG.getConstant(IID, MVT::i32), Op); 6088 } 6089 6090 /// BuildIntrinsicOp - Return a binary operator intrinsic node with the 6091 /// specified intrinsic ID. 6092 static SDValue BuildIntrinsicOp(unsigned IID, SDValue LHS, SDValue RHS, 6093 SelectionDAG &DAG, SDLoc dl, 6094 EVT DestVT = MVT::Other) { 6095 if (DestVT == MVT::Other) DestVT = LHS.getValueType(); 6096 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 6097 DAG.getConstant(IID, MVT::i32), LHS, RHS); 6098 } 6099 6100 /// BuildIntrinsicOp - Return a ternary operator intrinsic node with the 6101 /// specified intrinsic ID. 6102 static SDValue BuildIntrinsicOp(unsigned IID, SDValue Op0, SDValue Op1, 6103 SDValue Op2, SelectionDAG &DAG, 6104 SDLoc dl, EVT DestVT = MVT::Other) { 6105 if (DestVT == MVT::Other) DestVT = Op0.getValueType(); 6106 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, DestVT, 6107 DAG.getConstant(IID, MVT::i32), Op0, Op1, Op2); 6108 } 6109 6110 6111 /// BuildVSLDOI - Return a VECTOR_SHUFFLE that is a vsldoi of the specified 6112 /// amount. The result has the specified value type. 6113 static SDValue BuildVSLDOI(SDValue LHS, SDValue RHS, unsigned Amt, 6114 EVT VT, SelectionDAG &DAG, SDLoc dl) { 6115 // Force LHS/RHS to be the right type. 6116 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, LHS); 6117 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, RHS); 6118 6119 int Ops[16]; 6120 for (unsigned i = 0; i != 16; ++i) 6121 Ops[i] = i + Amt; 6122 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, LHS, RHS, Ops); 6123 return DAG.getNode(ISD::BITCAST, dl, VT, T); 6124 } 6125 6126 // If this is a case we can't handle, return null and let the default 6127 // expansion code take care of it. If we CAN select this case, and if it 6128 // selects to a single instruction, return Op. Otherwise, if we can codegen 6129 // this case more efficiently than a constant pool load, lower it to the 6130 // sequence of ops that should be used. 6131 SDValue PPCTargetLowering::LowerBUILD_VECTOR(SDValue Op, 6132 SelectionDAG &DAG) const { 6133 SDLoc dl(Op); 6134 BuildVectorSDNode *BVN = dyn_cast<BuildVectorSDNode>(Op.getNode()); 6135 assert(BVN && "Expected a BuildVectorSDNode in LowerBUILD_VECTOR"); 6136 6137 // Check if this is a splat of a constant value. 6138 APInt APSplatBits, APSplatUndef; 6139 unsigned SplatBitSize; 6140 bool HasAnyUndefs; 6141 if (! BVN->isConstantSplat(APSplatBits, APSplatUndef, SplatBitSize, 6142 HasAnyUndefs, 0, true) || SplatBitSize > 32) 6143 return SDValue(); 6144 6145 unsigned SplatBits = APSplatBits.getZExtValue(); 6146 unsigned SplatUndef = APSplatUndef.getZExtValue(); 6147 unsigned SplatSize = SplatBitSize / 8; 6148 6149 // First, handle single instruction cases. 6150 6151 // All zeros? 6152 if (SplatBits == 0) { 6153 // Canonicalize all zero vectors to be v4i32. 6154 if (Op.getValueType() != MVT::v4i32 || HasAnyUndefs) { 6155 SDValue Z = DAG.getConstant(0, MVT::i32); 6156 Z = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Z, Z, Z, Z); 6157 Op = DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Z); 6158 } 6159 return Op; 6160 } 6161 6162 // If the sign extended value is in the range [-16,15], use VSPLTI[bhw]. 6163 int32_t SextVal= (int32_t(SplatBits << (32-SplatBitSize)) >> 6164 (32-SplatBitSize)); 6165 if (SextVal >= -16 && SextVal <= 15) 6166 return BuildSplatI(SextVal, SplatSize, Op.getValueType(), DAG, dl); 6167 6168 6169 // Two instruction sequences. 6170 6171 // If this value is in the range [-32,30] and is even, use: 6172 // VSPLTI[bhw](val/2) + VSPLTI[bhw](val/2) 6173 // If this value is in the range [17,31] and is odd, use: 6174 // VSPLTI[bhw](val-16) - VSPLTI[bhw](-16) 6175 // If this value is in the range [-31,-17] and is odd, use: 6176 // VSPLTI[bhw](val+16) + VSPLTI[bhw](-16) 6177 // Note the last two are three-instruction sequences. 6178 if (SextVal >= -32 && SextVal <= 31) { 6179 // To avoid having these optimizations undone by constant folding, 6180 // we convert to a pseudo that will be expanded later into one of 6181 // the above forms. 6182 SDValue Elt = DAG.getConstant(SextVal, MVT::i32); 6183 EVT VT = (SplatSize == 1 ? MVT::v16i8 : 6184 (SplatSize == 2 ? MVT::v8i16 : MVT::v4i32)); 6185 SDValue EltSize = DAG.getConstant(SplatSize, MVT::i32); 6186 SDValue RetVal = DAG.getNode(PPCISD::VADD_SPLAT, dl, VT, Elt, EltSize); 6187 if (VT == Op.getValueType()) 6188 return RetVal; 6189 else 6190 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), RetVal); 6191 } 6192 6193 // If this is 0x8000_0000 x 4, turn into vspltisw + vslw. If it is 6194 // 0x7FFF_FFFF x 4, turn it into not(0x8000_0000). This is important 6195 // for fneg/fabs. 6196 if (SplatSize == 4 && SplatBits == (0x7FFFFFFF&~SplatUndef)) { 6197 // Make -1 and vspltisw -1: 6198 SDValue OnesV = BuildSplatI(-1, 4, MVT::v4i32, DAG, dl); 6199 6200 // Make the VSLW intrinsic, computing 0x8000_0000. 6201 SDValue Res = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, OnesV, 6202 OnesV, DAG, dl); 6203 6204 // xor by OnesV to invert it. 6205 Res = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Res, OnesV); 6206 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 6207 } 6208 6209 // The remaining cases assume either big endian element order or 6210 // a splat-size that equates to the element size of the vector 6211 // to be built. An example that doesn't work for little endian is 6212 // {0, -1, 0, -1, 0, -1, 0, -1} which has a splat size of 32 bits 6213 // and a vector element size of 16 bits. The code below will 6214 // produce the vector in big endian element order, which for little 6215 // endian is {-1, 0, -1, 0, -1, 0, -1, 0}. 6216 6217 // For now, just avoid these optimizations in that case. 6218 // FIXME: Develop correct optimizations for LE with mismatched 6219 // splat and element sizes. 6220 6221 if (Subtarget.isLittleEndian() && 6222 SplatSize != Op.getValueType().getVectorElementType().getSizeInBits()) 6223 return SDValue(); 6224 6225 // Check to see if this is a wide variety of vsplti*, binop self cases. 6226 static const signed char SplatCsts[] = { 6227 -1, 1, -2, 2, -3, 3, -4, 4, -5, 5, -6, 6, -7, 7, 6228 -8, 8, -9, 9, -10, 10, -11, 11, -12, 12, -13, 13, 14, -14, 15, -15, -16 6229 }; 6230 6231 for (unsigned idx = 0; idx < array_lengthof(SplatCsts); ++idx) { 6232 // Indirect through the SplatCsts array so that we favor 'vsplti -1' for 6233 // cases which are ambiguous (e.g. formation of 0x8000_0000). 'vsplti -1' 6234 int i = SplatCsts[idx]; 6235 6236 // Figure out what shift amount will be used by altivec if shifted by i in 6237 // this splat size. 6238 unsigned TypeShiftAmt = i & (SplatBitSize-1); 6239 6240 // vsplti + shl self. 6241 if (SextVal == (int)((unsigned)i << TypeShiftAmt)) { 6242 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 6243 static const unsigned IIDs[] = { // Intrinsic to use for each size. 6244 Intrinsic::ppc_altivec_vslb, Intrinsic::ppc_altivec_vslh, 0, 6245 Intrinsic::ppc_altivec_vslw 6246 }; 6247 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 6248 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 6249 } 6250 6251 // vsplti + srl self. 6252 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) { 6253 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 6254 static const unsigned IIDs[] = { // Intrinsic to use for each size. 6255 Intrinsic::ppc_altivec_vsrb, Intrinsic::ppc_altivec_vsrh, 0, 6256 Intrinsic::ppc_altivec_vsrw 6257 }; 6258 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 6259 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 6260 } 6261 6262 // vsplti + sra self. 6263 if (SextVal == (int)((unsigned)i >> TypeShiftAmt)) { 6264 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 6265 static const unsigned IIDs[] = { // Intrinsic to use for each size. 6266 Intrinsic::ppc_altivec_vsrab, Intrinsic::ppc_altivec_vsrah, 0, 6267 Intrinsic::ppc_altivec_vsraw 6268 }; 6269 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 6270 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 6271 } 6272 6273 // vsplti + rol self. 6274 if (SextVal == (int)(((unsigned)i << TypeShiftAmt) | 6275 ((unsigned)i >> (SplatBitSize-TypeShiftAmt)))) { 6276 SDValue Res = BuildSplatI(i, SplatSize, MVT::Other, DAG, dl); 6277 static const unsigned IIDs[] = { // Intrinsic to use for each size. 6278 Intrinsic::ppc_altivec_vrlb, Intrinsic::ppc_altivec_vrlh, 0, 6279 Intrinsic::ppc_altivec_vrlw 6280 }; 6281 Res = BuildIntrinsicOp(IIDs[SplatSize-1], Res, Res, DAG, dl); 6282 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Res); 6283 } 6284 6285 // t = vsplti c, result = vsldoi t, t, 1 6286 if (SextVal == (int)(((unsigned)i << 8) | (i < 0 ? 0xFF : 0))) { 6287 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 6288 return BuildVSLDOI(T, T, 1, Op.getValueType(), DAG, dl); 6289 } 6290 // t = vsplti c, result = vsldoi t, t, 2 6291 if (SextVal == (int)(((unsigned)i << 16) | (i < 0 ? 0xFFFF : 0))) { 6292 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 6293 return BuildVSLDOI(T, T, 2, Op.getValueType(), DAG, dl); 6294 } 6295 // t = vsplti c, result = vsldoi t, t, 3 6296 if (SextVal == (int)(((unsigned)i << 24) | (i < 0 ? 0xFFFFFF : 0))) { 6297 SDValue T = BuildSplatI(i, SplatSize, MVT::v16i8, DAG, dl); 6298 return BuildVSLDOI(T, T, 3, Op.getValueType(), DAG, dl); 6299 } 6300 } 6301 6302 return SDValue(); 6303 } 6304 6305 /// GeneratePerfectShuffle - Given an entry in the perfect-shuffle table, emit 6306 /// the specified operations to build the shuffle. 6307 static SDValue GeneratePerfectShuffle(unsigned PFEntry, SDValue LHS, 6308 SDValue RHS, SelectionDAG &DAG, 6309 SDLoc dl) { 6310 unsigned OpNum = (PFEntry >> 26) & 0x0F; 6311 unsigned LHSID = (PFEntry >> 13) & ((1 << 13)-1); 6312 unsigned RHSID = (PFEntry >> 0) & ((1 << 13)-1); 6313 6314 enum { 6315 OP_COPY = 0, // Copy, used for things like <u,u,u,3> to say it is <0,1,2,3> 6316 OP_VMRGHW, 6317 OP_VMRGLW, 6318 OP_VSPLTISW0, 6319 OP_VSPLTISW1, 6320 OP_VSPLTISW2, 6321 OP_VSPLTISW3, 6322 OP_VSLDOI4, 6323 OP_VSLDOI8, 6324 OP_VSLDOI12 6325 }; 6326 6327 if (OpNum == OP_COPY) { 6328 if (LHSID == (1*9+2)*9+3) return LHS; 6329 assert(LHSID == ((4*9+5)*9+6)*9+7 && "Illegal OP_COPY!"); 6330 return RHS; 6331 } 6332 6333 SDValue OpLHS, OpRHS; 6334 OpLHS = GeneratePerfectShuffle(PerfectShuffleTable[LHSID], LHS, RHS, DAG, dl); 6335 OpRHS = GeneratePerfectShuffle(PerfectShuffleTable[RHSID], LHS, RHS, DAG, dl); 6336 6337 int ShufIdxs[16]; 6338 switch (OpNum) { 6339 default: llvm_unreachable("Unknown i32 permute!"); 6340 case OP_VMRGHW: 6341 ShufIdxs[ 0] = 0; ShufIdxs[ 1] = 1; ShufIdxs[ 2] = 2; ShufIdxs[ 3] = 3; 6342 ShufIdxs[ 4] = 16; ShufIdxs[ 5] = 17; ShufIdxs[ 6] = 18; ShufIdxs[ 7] = 19; 6343 ShufIdxs[ 8] = 4; ShufIdxs[ 9] = 5; ShufIdxs[10] = 6; ShufIdxs[11] = 7; 6344 ShufIdxs[12] = 20; ShufIdxs[13] = 21; ShufIdxs[14] = 22; ShufIdxs[15] = 23; 6345 break; 6346 case OP_VMRGLW: 6347 ShufIdxs[ 0] = 8; ShufIdxs[ 1] = 9; ShufIdxs[ 2] = 10; ShufIdxs[ 3] = 11; 6348 ShufIdxs[ 4] = 24; ShufIdxs[ 5] = 25; ShufIdxs[ 6] = 26; ShufIdxs[ 7] = 27; 6349 ShufIdxs[ 8] = 12; ShufIdxs[ 9] = 13; ShufIdxs[10] = 14; ShufIdxs[11] = 15; 6350 ShufIdxs[12] = 28; ShufIdxs[13] = 29; ShufIdxs[14] = 30; ShufIdxs[15] = 31; 6351 break; 6352 case OP_VSPLTISW0: 6353 for (unsigned i = 0; i != 16; ++i) 6354 ShufIdxs[i] = (i&3)+0; 6355 break; 6356 case OP_VSPLTISW1: 6357 for (unsigned i = 0; i != 16; ++i) 6358 ShufIdxs[i] = (i&3)+4; 6359 break; 6360 case OP_VSPLTISW2: 6361 for (unsigned i = 0; i != 16; ++i) 6362 ShufIdxs[i] = (i&3)+8; 6363 break; 6364 case OP_VSPLTISW3: 6365 for (unsigned i = 0; i != 16; ++i) 6366 ShufIdxs[i] = (i&3)+12; 6367 break; 6368 case OP_VSLDOI4: 6369 return BuildVSLDOI(OpLHS, OpRHS, 4, OpLHS.getValueType(), DAG, dl); 6370 case OP_VSLDOI8: 6371 return BuildVSLDOI(OpLHS, OpRHS, 8, OpLHS.getValueType(), DAG, dl); 6372 case OP_VSLDOI12: 6373 return BuildVSLDOI(OpLHS, OpRHS, 12, OpLHS.getValueType(), DAG, dl); 6374 } 6375 EVT VT = OpLHS.getValueType(); 6376 OpLHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLHS); 6377 OpRHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpRHS); 6378 SDValue T = DAG.getVectorShuffle(MVT::v16i8, dl, OpLHS, OpRHS, ShufIdxs); 6379 return DAG.getNode(ISD::BITCAST, dl, VT, T); 6380 } 6381 6382 /// LowerVECTOR_SHUFFLE - Return the code we lower for VECTOR_SHUFFLE. If this 6383 /// is a shuffle we can handle in a single instruction, return it. Otherwise, 6384 /// return the code it can be lowered into. Worst case, it can always be 6385 /// lowered into a vperm. 6386 SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, 6387 SelectionDAG &DAG) const { 6388 SDLoc dl(Op); 6389 SDValue V1 = Op.getOperand(0); 6390 SDValue V2 = Op.getOperand(1); 6391 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op); 6392 EVT VT = Op.getValueType(); 6393 bool isLittleEndian = Subtarget.isLittleEndian(); 6394 6395 // Cases that are handled by instructions that take permute immediates 6396 // (such as vsplt*) should be left as VECTOR_SHUFFLE nodes so they can be 6397 // selected by the instruction selector. 6398 if (V2.getOpcode() == ISD::UNDEF) { 6399 if (PPC::isSplatShuffleMask(SVOp, 1) || 6400 PPC::isSplatShuffleMask(SVOp, 2) || 6401 PPC::isSplatShuffleMask(SVOp, 4) || 6402 PPC::isVPKUWUMShuffleMask(SVOp, 1, DAG) || 6403 PPC::isVPKUHUMShuffleMask(SVOp, 1, DAG) || 6404 PPC::isVSLDOIShuffleMask(SVOp, 1, DAG) != -1 || 6405 PPC::isVMRGLShuffleMask(SVOp, 1, 1, DAG) || 6406 PPC::isVMRGLShuffleMask(SVOp, 2, 1, DAG) || 6407 PPC::isVMRGLShuffleMask(SVOp, 4, 1, DAG) || 6408 PPC::isVMRGHShuffleMask(SVOp, 1, 1, DAG) || 6409 PPC::isVMRGHShuffleMask(SVOp, 2, 1, DAG) || 6410 PPC::isVMRGHShuffleMask(SVOp, 4, 1, DAG)) { 6411 return Op; 6412 } 6413 } 6414 6415 // Altivec has a variety of "shuffle immediates" that take two vector inputs 6416 // and produce a fixed permutation. If any of these match, do not lower to 6417 // VPERM. 6418 unsigned int ShuffleKind = isLittleEndian ? 2 : 0; 6419 if (PPC::isVPKUWUMShuffleMask(SVOp, ShuffleKind, DAG) || 6420 PPC::isVPKUHUMShuffleMask(SVOp, ShuffleKind, DAG) || 6421 PPC::isVSLDOIShuffleMask(SVOp, ShuffleKind, DAG) != -1 || 6422 PPC::isVMRGLShuffleMask(SVOp, 1, ShuffleKind, DAG) || 6423 PPC::isVMRGLShuffleMask(SVOp, 2, ShuffleKind, DAG) || 6424 PPC::isVMRGLShuffleMask(SVOp, 4, ShuffleKind, DAG) || 6425 PPC::isVMRGHShuffleMask(SVOp, 1, ShuffleKind, DAG) || 6426 PPC::isVMRGHShuffleMask(SVOp, 2, ShuffleKind, DAG) || 6427 PPC::isVMRGHShuffleMask(SVOp, 4, ShuffleKind, DAG)) 6428 return Op; 6429 6430 // Check to see if this is a shuffle of 4-byte values. If so, we can use our 6431 // perfect shuffle table to emit an optimal matching sequence. 6432 ArrayRef<int> PermMask = SVOp->getMask(); 6433 6434 unsigned PFIndexes[4]; 6435 bool isFourElementShuffle = true; 6436 for (unsigned i = 0; i != 4 && isFourElementShuffle; ++i) { // Element number 6437 unsigned EltNo = 8; // Start out undef. 6438 for (unsigned j = 0; j != 4; ++j) { // Intra-element byte. 6439 if (PermMask[i*4+j] < 0) 6440 continue; // Undef, ignore it. 6441 6442 unsigned ByteSource = PermMask[i*4+j]; 6443 if ((ByteSource & 3) != j) { 6444 isFourElementShuffle = false; 6445 break; 6446 } 6447 6448 if (EltNo == 8) { 6449 EltNo = ByteSource/4; 6450 } else if (EltNo != ByteSource/4) { 6451 isFourElementShuffle = false; 6452 break; 6453 } 6454 } 6455 PFIndexes[i] = EltNo; 6456 } 6457 6458 // If this shuffle can be expressed as a shuffle of 4-byte elements, use the 6459 // perfect shuffle vector to determine if it is cost effective to do this as 6460 // discrete instructions, or whether we should use a vperm. 6461 // For now, we skip this for little endian until such time as we have a 6462 // little-endian perfect shuffle table. 6463 if (isFourElementShuffle && !isLittleEndian) { 6464 // Compute the index in the perfect shuffle table. 6465 unsigned PFTableIndex = 6466 PFIndexes[0]*9*9*9+PFIndexes[1]*9*9+PFIndexes[2]*9+PFIndexes[3]; 6467 6468 unsigned PFEntry = PerfectShuffleTable[PFTableIndex]; 6469 unsigned Cost = (PFEntry >> 30); 6470 6471 // Determining when to avoid vperm is tricky. Many things affect the cost 6472 // of vperm, particularly how many times the perm mask needs to be computed. 6473 // For example, if the perm mask can be hoisted out of a loop or is already 6474 // used (perhaps because there are multiple permutes with the same shuffle 6475 // mask?) the vperm has a cost of 1. OTOH, hoisting the permute mask out of 6476 // the loop requires an extra register. 6477 // 6478 // As a compromise, we only emit discrete instructions if the shuffle can be 6479 // generated in 3 or fewer operations. When we have loop information 6480 // available, if this block is within a loop, we should avoid using vperm 6481 // for 3-operation perms and use a constant pool load instead. 6482 if (Cost < 3) 6483 return GeneratePerfectShuffle(PFEntry, V1, V2, DAG, dl); 6484 } 6485 6486 // Lower this to a VPERM(V1, V2, V3) expression, where V3 is a constant 6487 // vector that will get spilled to the constant pool. 6488 if (V2.getOpcode() == ISD::UNDEF) V2 = V1; 6489 6490 // The SHUFFLE_VECTOR mask is almost exactly what we want for vperm, except 6491 // that it is in input element units, not in bytes. Convert now. 6492 6493 // For little endian, the order of the input vectors is reversed, and 6494 // the permutation mask is complemented with respect to 31. This is 6495 // necessary to produce proper semantics with the big-endian-biased vperm 6496 // instruction. 6497 EVT EltVT = V1.getValueType().getVectorElementType(); 6498 unsigned BytesPerElement = EltVT.getSizeInBits()/8; 6499 6500 SmallVector<SDValue, 16> ResultMask; 6501 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i) { 6502 unsigned SrcElt = PermMask[i] < 0 ? 0 : PermMask[i]; 6503 6504 for (unsigned j = 0; j != BytesPerElement; ++j) 6505 if (isLittleEndian) 6506 ResultMask.push_back(DAG.getConstant(31 - (SrcElt*BytesPerElement+j), 6507 MVT::i32)); 6508 else 6509 ResultMask.push_back(DAG.getConstant(SrcElt*BytesPerElement+j, 6510 MVT::i32)); 6511 } 6512 6513 SDValue VPermMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i8, 6514 ResultMask); 6515 if (isLittleEndian) 6516 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), 6517 V2, V1, VPermMask); 6518 else 6519 return DAG.getNode(PPCISD::VPERM, dl, V1.getValueType(), 6520 V1, V2, VPermMask); 6521 } 6522 6523 /// getAltivecCompareInfo - Given an intrinsic, return false if it is not an 6524 /// altivec comparison. If it is, return true and fill in Opc/isDot with 6525 /// information about the intrinsic. 6526 static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc, 6527 bool &isDot) { 6528 unsigned IntrinsicID = 6529 cast<ConstantSDNode>(Intrin.getOperand(0))->getZExtValue(); 6530 CompareOpc = -1; 6531 isDot = false; 6532 switch (IntrinsicID) { 6533 default: return false; 6534 // Comparison predicates. 6535 case Intrinsic::ppc_altivec_vcmpbfp_p: CompareOpc = 966; isDot = 1; break; 6536 case Intrinsic::ppc_altivec_vcmpeqfp_p: CompareOpc = 198; isDot = 1; break; 6537 case Intrinsic::ppc_altivec_vcmpequb_p: CompareOpc = 6; isDot = 1; break; 6538 case Intrinsic::ppc_altivec_vcmpequh_p: CompareOpc = 70; isDot = 1; break; 6539 case Intrinsic::ppc_altivec_vcmpequw_p: CompareOpc = 134; isDot = 1; break; 6540 case Intrinsic::ppc_altivec_vcmpgefp_p: CompareOpc = 454; isDot = 1; break; 6541 case Intrinsic::ppc_altivec_vcmpgtfp_p: CompareOpc = 710; isDot = 1; break; 6542 case Intrinsic::ppc_altivec_vcmpgtsb_p: CompareOpc = 774; isDot = 1; break; 6543 case Intrinsic::ppc_altivec_vcmpgtsh_p: CompareOpc = 838; isDot = 1; break; 6544 case Intrinsic::ppc_altivec_vcmpgtsw_p: CompareOpc = 902; isDot = 1; break; 6545 case Intrinsic::ppc_altivec_vcmpgtub_p: CompareOpc = 518; isDot = 1; break; 6546 case Intrinsic::ppc_altivec_vcmpgtuh_p: CompareOpc = 582; isDot = 1; break; 6547 case Intrinsic::ppc_altivec_vcmpgtuw_p: CompareOpc = 646; isDot = 1; break; 6548 6549 // Normal Comparisons. 6550 case Intrinsic::ppc_altivec_vcmpbfp: CompareOpc = 966; isDot = 0; break; 6551 case Intrinsic::ppc_altivec_vcmpeqfp: CompareOpc = 198; isDot = 0; break; 6552 case Intrinsic::ppc_altivec_vcmpequb: CompareOpc = 6; isDot = 0; break; 6553 case Intrinsic::ppc_altivec_vcmpequh: CompareOpc = 70; isDot = 0; break; 6554 case Intrinsic::ppc_altivec_vcmpequw: CompareOpc = 134; isDot = 0; break; 6555 case Intrinsic::ppc_altivec_vcmpgefp: CompareOpc = 454; isDot = 0; break; 6556 case Intrinsic::ppc_altivec_vcmpgtfp: CompareOpc = 710; isDot = 0; break; 6557 case Intrinsic::ppc_altivec_vcmpgtsb: CompareOpc = 774; isDot = 0; break; 6558 case Intrinsic::ppc_altivec_vcmpgtsh: CompareOpc = 838; isDot = 0; break; 6559 case Intrinsic::ppc_altivec_vcmpgtsw: CompareOpc = 902; isDot = 0; break; 6560 case Intrinsic::ppc_altivec_vcmpgtub: CompareOpc = 518; isDot = 0; break; 6561 case Intrinsic::ppc_altivec_vcmpgtuh: CompareOpc = 582; isDot = 0; break; 6562 case Intrinsic::ppc_altivec_vcmpgtuw: CompareOpc = 646; isDot = 0; break; 6563 } 6564 return true; 6565 } 6566 6567 /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom 6568 /// lower, do it, otherwise return null. 6569 SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, 6570 SelectionDAG &DAG) const { 6571 // If this is a lowered altivec predicate compare, CompareOpc is set to the 6572 // opcode number of the comparison. 6573 SDLoc dl(Op); 6574 int CompareOpc; 6575 bool isDot; 6576 if (!getAltivecCompareInfo(Op, CompareOpc, isDot)) 6577 return SDValue(); // Don't custom lower most intrinsics. 6578 6579 // If this is a non-dot comparison, make the VCMP node and we are done. 6580 if (!isDot) { 6581 SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(), 6582 Op.getOperand(1), Op.getOperand(2), 6583 DAG.getConstant(CompareOpc, MVT::i32)); 6584 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Tmp); 6585 } 6586 6587 // Create the PPCISD altivec 'dot' comparison node. 6588 SDValue Ops[] = { 6589 Op.getOperand(2), // LHS 6590 Op.getOperand(3), // RHS 6591 DAG.getConstant(CompareOpc, MVT::i32) 6592 }; 6593 EVT VTs[] = { Op.getOperand(2).getValueType(), MVT::Glue }; 6594 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops); 6595 6596 // Now that we have the comparison, emit a copy from the CR to a GPR. 6597 // This is flagged to the above dot comparison. 6598 SDValue Flags = DAG.getNode(PPCISD::MFOCRF, dl, MVT::i32, 6599 DAG.getRegister(PPC::CR6, MVT::i32), 6600 CompNode.getValue(1)); 6601 6602 // Unpack the result based on how the target uses it. 6603 unsigned BitNo; // Bit # of CR6. 6604 bool InvertBit; // Invert result? 6605 switch (cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue()) { 6606 default: // Can't happen, don't crash on invalid number though. 6607 case 0: // Return the value of the EQ bit of CR6. 6608 BitNo = 0; InvertBit = false; 6609 break; 6610 case 1: // Return the inverted value of the EQ bit of CR6. 6611 BitNo = 0; InvertBit = true; 6612 break; 6613 case 2: // Return the value of the LT bit of CR6. 6614 BitNo = 2; InvertBit = false; 6615 break; 6616 case 3: // Return the inverted value of the LT bit of CR6. 6617 BitNo = 2; InvertBit = true; 6618 break; 6619 } 6620 6621 // Shift the bit into the low position. 6622 Flags = DAG.getNode(ISD::SRL, dl, MVT::i32, Flags, 6623 DAG.getConstant(8-(3-BitNo), MVT::i32)); 6624 // Isolate the bit. 6625 Flags = DAG.getNode(ISD::AND, dl, MVT::i32, Flags, 6626 DAG.getConstant(1, MVT::i32)); 6627 6628 // If we are supposed to, toggle the bit. 6629 if (InvertBit) 6630 Flags = DAG.getNode(ISD::XOR, dl, MVT::i32, Flags, 6631 DAG.getConstant(1, MVT::i32)); 6632 return Flags; 6633 } 6634 6635 SDValue PPCTargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, 6636 SelectionDAG &DAG) const { 6637 SDLoc dl(Op); 6638 // For v2i64 (VSX), we can pattern patch the v2i32 case (using fp <-> int 6639 // instructions), but for smaller types, we need to first extend up to v2i32 6640 // before doing going farther. 6641 if (Op.getValueType() == MVT::v2i64) { 6642 EVT ExtVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); 6643 if (ExtVT != MVT::v2i32) { 6644 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op.getOperand(0)); 6645 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32, Op, 6646 DAG.getValueType(EVT::getVectorVT(*DAG.getContext(), 6647 ExtVT.getVectorElementType(), 4))); 6648 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Op); 6649 Op = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v2i64, Op, 6650 DAG.getValueType(MVT::v2i32)); 6651 } 6652 6653 return Op; 6654 } 6655 6656 return SDValue(); 6657 } 6658 6659 SDValue PPCTargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, 6660 SelectionDAG &DAG) const { 6661 SDLoc dl(Op); 6662 // Create a stack slot that is 16-byte aligned. 6663 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo(); 6664 int FrameIdx = FrameInfo->CreateStackObject(16, 16, false); 6665 EVT PtrVT = getPointerTy(); 6666 SDValue FIdx = DAG.getFrameIndex(FrameIdx, PtrVT); 6667 6668 // Store the input value into Value#0 of the stack slot. 6669 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, 6670 Op.getOperand(0), FIdx, MachinePointerInfo(), 6671 false, false, 0); 6672 // Load it out. 6673 return DAG.getLoad(Op.getValueType(), dl, Store, FIdx, MachinePointerInfo(), 6674 false, false, false, 0); 6675 } 6676 6677 SDValue PPCTargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const { 6678 SDLoc dl(Op); 6679 if (Op.getValueType() == MVT::v4i32) { 6680 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 6681 6682 SDValue Zero = BuildSplatI( 0, 1, MVT::v4i32, DAG, dl); 6683 SDValue Neg16 = BuildSplatI(-16, 4, MVT::v4i32, DAG, dl);//+16 as shift amt. 6684 6685 SDValue RHSSwap = // = vrlw RHS, 16 6686 BuildIntrinsicOp(Intrinsic::ppc_altivec_vrlw, RHS, Neg16, DAG, dl); 6687 6688 // Shrinkify inputs to v8i16. 6689 LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, LHS); 6690 RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHS); 6691 RHSSwap = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, RHSSwap); 6692 6693 // Low parts multiplied together, generating 32-bit results (we ignore the 6694 // top parts). 6695 SDValue LoProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmulouh, 6696 LHS, RHS, DAG, dl, MVT::v4i32); 6697 6698 SDValue HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmsumuhm, 6699 LHS, RHSSwap, Zero, DAG, dl, MVT::v4i32); 6700 // Shift the high parts up 16 bits. 6701 HiProd = BuildIntrinsicOp(Intrinsic::ppc_altivec_vslw, HiProd, 6702 Neg16, DAG, dl); 6703 return DAG.getNode(ISD::ADD, dl, MVT::v4i32, LoProd, HiProd); 6704 } else if (Op.getValueType() == MVT::v8i16) { 6705 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 6706 6707 SDValue Zero = BuildSplatI(0, 1, MVT::v8i16, DAG, dl); 6708 6709 return BuildIntrinsicOp(Intrinsic::ppc_altivec_vmladduhm, 6710 LHS, RHS, Zero, DAG, dl); 6711 } else if (Op.getValueType() == MVT::v16i8) { 6712 SDValue LHS = Op.getOperand(0), RHS = Op.getOperand(1); 6713 bool isLittleEndian = Subtarget.isLittleEndian(); 6714 6715 // Multiply the even 8-bit parts, producing 16-bit sums. 6716 SDValue EvenParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuleub, 6717 LHS, RHS, DAG, dl, MVT::v8i16); 6718 EvenParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, EvenParts); 6719 6720 // Multiply the odd 8-bit parts, producing 16-bit sums. 6721 SDValue OddParts = BuildIntrinsicOp(Intrinsic::ppc_altivec_vmuloub, 6722 LHS, RHS, DAG, dl, MVT::v8i16); 6723 OddParts = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OddParts); 6724 6725 // Merge the results together. Because vmuleub and vmuloub are 6726 // instructions with a big-endian bias, we must reverse the 6727 // element numbering and reverse the meaning of "odd" and "even" 6728 // when generating little endian code. 6729 int Ops[16]; 6730 for (unsigned i = 0; i != 8; ++i) { 6731 if (isLittleEndian) { 6732 Ops[i*2 ] = 2*i; 6733 Ops[i*2+1] = 2*i+16; 6734 } else { 6735 Ops[i*2 ] = 2*i+1; 6736 Ops[i*2+1] = 2*i+1+16; 6737 } 6738 } 6739 if (isLittleEndian) 6740 return DAG.getVectorShuffle(MVT::v16i8, dl, OddParts, EvenParts, Ops); 6741 else 6742 return DAG.getVectorShuffle(MVT::v16i8, dl, EvenParts, OddParts, Ops); 6743 } else { 6744 llvm_unreachable("Unknown mul to lower!"); 6745 } 6746 } 6747 6748 /// LowerOperation - Provide custom lowering hooks for some operations. 6749 /// 6750 SDValue PPCTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 6751 switch (Op.getOpcode()) { 6752 default: llvm_unreachable("Wasn't expecting to be able to lower this!"); 6753 case ISD::ConstantPool: return LowerConstantPool(Op, DAG); 6754 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG); 6755 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); 6756 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); 6757 case ISD::JumpTable: return LowerJumpTable(Op, DAG); 6758 case ISD::SETCC: return LowerSETCC(Op, DAG); 6759 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG); 6760 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG); 6761 case ISD::VASTART: 6762 return LowerVASTART(Op, DAG, Subtarget); 6763 6764 case ISD::VAARG: 6765 return LowerVAARG(Op, DAG, Subtarget); 6766 6767 case ISD::VACOPY: 6768 return LowerVACOPY(Op, DAG, Subtarget); 6769 6770 case ISD::STACKRESTORE: return LowerSTACKRESTORE(Op, DAG, Subtarget); 6771 case ISD::DYNAMIC_STACKALLOC: 6772 return LowerDYNAMIC_STACKALLOC(Op, DAG, Subtarget); 6773 6774 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG); 6775 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG); 6776 6777 case ISD::LOAD: return LowerLOAD(Op, DAG); 6778 case ISD::STORE: return LowerSTORE(Op, DAG); 6779 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG); 6780 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); 6781 case ISD::FP_TO_UINT: 6782 case ISD::FP_TO_SINT: return LowerFP_TO_INT(Op, DAG, 6783 SDLoc(Op)); 6784 case ISD::UINT_TO_FP: 6785 case ISD::SINT_TO_FP: return LowerINT_TO_FP(Op, DAG); 6786 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG); 6787 6788 // Lower 64-bit shifts. 6789 case ISD::SHL_PARTS: return LowerSHL_PARTS(Op, DAG); 6790 case ISD::SRL_PARTS: return LowerSRL_PARTS(Op, DAG); 6791 case ISD::SRA_PARTS: return LowerSRA_PARTS(Op, DAG); 6792 6793 // Vector-related lowering. 6794 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG); 6795 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG); 6796 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG); 6797 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG); 6798 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op, DAG); 6799 case ISD::MUL: return LowerMUL(Op, DAG); 6800 6801 // For counter-based loop handling. 6802 case ISD::INTRINSIC_W_CHAIN: return SDValue(); 6803 6804 // Frame & Return address. 6805 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG); 6806 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG); 6807 } 6808 } 6809 6810 void PPCTargetLowering::ReplaceNodeResults(SDNode *N, 6811 SmallVectorImpl<SDValue>&Results, 6812 SelectionDAG &DAG) const { 6813 const TargetMachine &TM = getTargetMachine(); 6814 SDLoc dl(N); 6815 switch (N->getOpcode()) { 6816 default: 6817 llvm_unreachable("Do not know how to custom type legalize this operation!"); 6818 case ISD::READCYCLECOUNTER: { 6819 SDVTList VTs = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other); 6820 SDValue RTB = DAG.getNode(PPCISD::READ_TIME_BASE, dl, VTs, N->getOperand(0)); 6821 6822 Results.push_back(RTB); 6823 Results.push_back(RTB.getValue(1)); 6824 Results.push_back(RTB.getValue(2)); 6825 break; 6826 } 6827 case ISD::INTRINSIC_W_CHAIN: { 6828 if (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() != 6829 Intrinsic::ppc_is_decremented_ctr_nonzero) 6830 break; 6831 6832 assert(N->getValueType(0) == MVT::i1 && 6833 "Unexpected result type for CTR decrement intrinsic"); 6834 EVT SVT = getSetCCResultType(*DAG.getContext(), N->getValueType(0)); 6835 SDVTList VTs = DAG.getVTList(SVT, MVT::Other); 6836 SDValue NewInt = DAG.getNode(N->getOpcode(), dl, VTs, N->getOperand(0), 6837 N->getOperand(1)); 6838 6839 Results.push_back(NewInt); 6840 Results.push_back(NewInt.getValue(1)); 6841 break; 6842 } 6843 case ISD::VAARG: { 6844 if (!TM.getSubtarget<PPCSubtarget>().isSVR4ABI() 6845 || TM.getSubtarget<PPCSubtarget>().isPPC64()) 6846 return; 6847 6848 EVT VT = N->getValueType(0); 6849 6850 if (VT == MVT::i64) { 6851 SDValue NewNode = LowerVAARG(SDValue(N, 1), DAG, Subtarget); 6852 6853 Results.push_back(NewNode); 6854 Results.push_back(NewNode.getValue(1)); 6855 } 6856 return; 6857 } 6858 case ISD::FP_ROUND_INREG: { 6859 assert(N->getValueType(0) == MVT::ppcf128); 6860 assert(N->getOperand(0).getValueType() == MVT::ppcf128); 6861 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, 6862 MVT::f64, N->getOperand(0), 6863 DAG.getIntPtrConstant(0)); 6864 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, 6865 MVT::f64, N->getOperand(0), 6866 DAG.getIntPtrConstant(1)); 6867 6868 // Add the two halves of the long double in round-to-zero mode. 6869 SDValue FPreg = DAG.getNode(PPCISD::FADDRTZ, dl, MVT::f64, Lo, Hi); 6870 6871 // We know the low half is about to be thrown away, so just use something 6872 // convenient. 6873 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::ppcf128, 6874 FPreg, FPreg)); 6875 return; 6876 } 6877 case ISD::FP_TO_SINT: 6878 // LowerFP_TO_INT() can only handle f32 and f64. 6879 if (N->getOperand(0).getValueType() == MVT::ppcf128) 6880 return; 6881 Results.push_back(LowerFP_TO_INT(SDValue(N, 0), DAG, dl)); 6882 return; 6883 } 6884 } 6885 6886 6887 //===----------------------------------------------------------------------===// 6888 // Other Lowering Code 6889 //===----------------------------------------------------------------------===// 6890 6891 static Instruction* callIntrinsic(IRBuilder<> &Builder, Intrinsic::ID Id) { 6892 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); 6893 Function *Func = Intrinsic::getDeclaration(M, Id); 6894 return Builder.CreateCall(Func); 6895 } 6896 6897 // The mappings for emitLeading/TrailingFence is taken from 6898 // http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html 6899 Instruction* PPCTargetLowering::emitLeadingFence(IRBuilder<> &Builder, 6900 AtomicOrdering Ord, bool IsStore, 6901 bool IsLoad) const { 6902 if (Ord == SequentiallyConsistent) 6903 return callIntrinsic(Builder, Intrinsic::ppc_sync); 6904 else if (isAtLeastRelease(Ord)) 6905 return callIntrinsic(Builder, Intrinsic::ppc_lwsync); 6906 else 6907 return nullptr; 6908 } 6909 6910 Instruction* PPCTargetLowering::emitTrailingFence(IRBuilder<> &Builder, 6911 AtomicOrdering Ord, bool IsStore, 6912 bool IsLoad) const { 6913 if (IsLoad && isAtLeastAcquire(Ord)) 6914 return callIntrinsic(Builder, Intrinsic::ppc_lwsync); 6915 // FIXME: this is too conservative, a dependent branch + isync is enough. 6916 // See http://www.cl.cam.ac.uk/~pes20/cpp/cpp0xmappings.html and 6917 // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html 6918 // and http://www.cl.cam.ac.uk/~pes20/cppppc/ for justification. 6919 else 6920 return nullptr; 6921 } 6922 6923 MachineBasicBlock * 6924 PPCTargetLowering::EmitAtomicBinary(MachineInstr *MI, MachineBasicBlock *BB, 6925 bool is64bit, unsigned BinOpcode) const { 6926 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0. 6927 const TargetInstrInfo *TII = 6928 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 6929 6930 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 6931 MachineFunction *F = BB->getParent(); 6932 MachineFunction::iterator It = BB; 6933 ++It; 6934 6935 unsigned dest = MI->getOperand(0).getReg(); 6936 unsigned ptrA = MI->getOperand(1).getReg(); 6937 unsigned ptrB = MI->getOperand(2).getReg(); 6938 unsigned incr = MI->getOperand(3).getReg(); 6939 DebugLoc dl = MI->getDebugLoc(); 6940 6941 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB); 6942 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 6943 F->insert(It, loopMBB); 6944 F->insert(It, exitMBB); 6945 exitMBB->splice(exitMBB->begin(), BB, 6946 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 6947 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 6948 6949 MachineRegisterInfo &RegInfo = F->getRegInfo(); 6950 unsigned TmpReg = (!BinOpcode) ? incr : 6951 RegInfo.createVirtualRegister( is64bit ? &PPC::G8RCRegClass 6952 : &PPC::GPRCRegClass); 6953 6954 // thisMBB: 6955 // ... 6956 // fallthrough --> loopMBB 6957 BB->addSuccessor(loopMBB); 6958 6959 // loopMBB: 6960 // l[wd]arx dest, ptr 6961 // add r0, dest, incr 6962 // st[wd]cx. r0, ptr 6963 // bne- loopMBB 6964 // fallthrough --> exitMBB 6965 BB = loopMBB; 6966 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest) 6967 .addReg(ptrA).addReg(ptrB); 6968 if (BinOpcode) 6969 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg).addReg(incr).addReg(dest); 6970 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX)) 6971 .addReg(TmpReg).addReg(ptrA).addReg(ptrB); 6972 BuildMI(BB, dl, TII->get(PPC::BCC)) 6973 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB); 6974 BB->addSuccessor(loopMBB); 6975 BB->addSuccessor(exitMBB); 6976 6977 // exitMBB: 6978 // ... 6979 BB = exitMBB; 6980 return BB; 6981 } 6982 6983 MachineBasicBlock * 6984 PPCTargetLowering::EmitPartwordAtomicBinary(MachineInstr *MI, 6985 MachineBasicBlock *BB, 6986 bool is8bit, // operation 6987 unsigned BinOpcode) const { 6988 // This also handles ATOMIC_SWAP, indicated by BinOpcode==0. 6989 const TargetInstrInfo *TII = 6990 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 6991 // In 64 bit mode we have to use 64 bits for addresses, even though the 6992 // lwarx/stwcx are 32 bits. With the 32-bit atomics we can use address 6993 // registers without caring whether they're 32 or 64, but here we're 6994 // doing actual arithmetic on the addresses. 6995 bool is64bit = Subtarget.isPPC64(); 6996 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO; 6997 6998 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 6999 MachineFunction *F = BB->getParent(); 7000 MachineFunction::iterator It = BB; 7001 ++It; 7002 7003 unsigned dest = MI->getOperand(0).getReg(); 7004 unsigned ptrA = MI->getOperand(1).getReg(); 7005 unsigned ptrB = MI->getOperand(2).getReg(); 7006 unsigned incr = MI->getOperand(3).getReg(); 7007 DebugLoc dl = MI->getDebugLoc(); 7008 7009 MachineBasicBlock *loopMBB = F->CreateMachineBasicBlock(LLVM_BB); 7010 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 7011 F->insert(It, loopMBB); 7012 F->insert(It, exitMBB); 7013 exitMBB->splice(exitMBB->begin(), BB, 7014 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7015 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 7016 7017 MachineRegisterInfo &RegInfo = F->getRegInfo(); 7018 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass 7019 : &PPC::GPRCRegClass; 7020 unsigned PtrReg = RegInfo.createVirtualRegister(RC); 7021 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC); 7022 unsigned ShiftReg = RegInfo.createVirtualRegister(RC); 7023 unsigned Incr2Reg = RegInfo.createVirtualRegister(RC); 7024 unsigned MaskReg = RegInfo.createVirtualRegister(RC); 7025 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC); 7026 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC); 7027 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC); 7028 unsigned Tmp3Reg = RegInfo.createVirtualRegister(RC); 7029 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC); 7030 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC); 7031 unsigned Ptr1Reg; 7032 unsigned TmpReg = (!BinOpcode) ? Incr2Reg : RegInfo.createVirtualRegister(RC); 7033 7034 // thisMBB: 7035 // ... 7036 // fallthrough --> loopMBB 7037 BB->addSuccessor(loopMBB); 7038 7039 // The 4-byte load must be aligned, while a char or short may be 7040 // anywhere in the word. Hence all this nasty bookkeeping code. 7041 // add ptr1, ptrA, ptrB [copy if ptrA==0] 7042 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27] 7043 // xori shift, shift1, 24 [16] 7044 // rlwinm ptr, ptr1, 0, 0, 29 7045 // slw incr2, incr, shift 7046 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535] 7047 // slw mask, mask2, shift 7048 // loopMBB: 7049 // lwarx tmpDest, ptr 7050 // add tmp, tmpDest, incr2 7051 // andc tmp2, tmpDest, mask 7052 // and tmp3, tmp, mask 7053 // or tmp4, tmp3, tmp2 7054 // stwcx. tmp4, ptr 7055 // bne- loopMBB 7056 // fallthrough --> exitMBB 7057 // srw dest, tmpDest, shift 7058 if (ptrA != ZeroReg) { 7059 Ptr1Reg = RegInfo.createVirtualRegister(RC); 7060 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg) 7061 .addReg(ptrA).addReg(ptrB); 7062 } else { 7063 Ptr1Reg = ptrB; 7064 } 7065 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg) 7066 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27); 7067 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg) 7068 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16); 7069 if (is64bit) 7070 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg) 7071 .addReg(Ptr1Reg).addImm(0).addImm(61); 7072 else 7073 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg) 7074 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29); 7075 BuildMI(BB, dl, TII->get(PPC::SLW), Incr2Reg) 7076 .addReg(incr).addReg(ShiftReg); 7077 if (is8bit) 7078 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255); 7079 else { 7080 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0); 7081 BuildMI(BB, dl, TII->get(PPC::ORI),Mask2Reg).addReg(Mask3Reg).addImm(65535); 7082 } 7083 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg) 7084 .addReg(Mask2Reg).addReg(ShiftReg); 7085 7086 BB = loopMBB; 7087 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg) 7088 .addReg(ZeroReg).addReg(PtrReg); 7089 if (BinOpcode) 7090 BuildMI(BB, dl, TII->get(BinOpcode), TmpReg) 7091 .addReg(Incr2Reg).addReg(TmpDestReg); 7092 BuildMI(BB, dl, TII->get(is64bit ? PPC::ANDC8 : PPC::ANDC), Tmp2Reg) 7093 .addReg(TmpDestReg).addReg(MaskReg); 7094 BuildMI(BB, dl, TII->get(is64bit ? PPC::AND8 : PPC::AND), Tmp3Reg) 7095 .addReg(TmpReg).addReg(MaskReg); 7096 BuildMI(BB, dl, TII->get(is64bit ? PPC::OR8 : PPC::OR), Tmp4Reg) 7097 .addReg(Tmp3Reg).addReg(Tmp2Reg); 7098 BuildMI(BB, dl, TII->get(PPC::STWCX)) 7099 .addReg(Tmp4Reg).addReg(ZeroReg).addReg(PtrReg); 7100 BuildMI(BB, dl, TII->get(PPC::BCC)) 7101 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loopMBB); 7102 BB->addSuccessor(loopMBB); 7103 BB->addSuccessor(exitMBB); 7104 7105 // exitMBB: 7106 // ... 7107 BB = exitMBB; 7108 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW), dest).addReg(TmpDestReg) 7109 .addReg(ShiftReg); 7110 return BB; 7111 } 7112 7113 llvm::MachineBasicBlock* 7114 PPCTargetLowering::emitEHSjLjSetJmp(MachineInstr *MI, 7115 MachineBasicBlock *MBB) const { 7116 DebugLoc DL = MI->getDebugLoc(); 7117 const TargetInstrInfo *TII = 7118 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 7119 7120 MachineFunction *MF = MBB->getParent(); 7121 MachineRegisterInfo &MRI = MF->getRegInfo(); 7122 7123 const BasicBlock *BB = MBB->getBasicBlock(); 7124 MachineFunction::iterator I = MBB; 7125 ++I; 7126 7127 // Memory Reference 7128 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin(); 7129 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end(); 7130 7131 unsigned DstReg = MI->getOperand(0).getReg(); 7132 const TargetRegisterClass *RC = MRI.getRegClass(DstReg); 7133 assert(RC->hasType(MVT::i32) && "Invalid destination!"); 7134 unsigned mainDstReg = MRI.createVirtualRegister(RC); 7135 unsigned restoreDstReg = MRI.createVirtualRegister(RC); 7136 7137 MVT PVT = getPointerTy(); 7138 assert((PVT == MVT::i64 || PVT == MVT::i32) && 7139 "Invalid Pointer Size!"); 7140 // For v = setjmp(buf), we generate 7141 // 7142 // thisMBB: 7143 // SjLjSetup mainMBB 7144 // bl mainMBB 7145 // v_restore = 1 7146 // b sinkMBB 7147 // 7148 // mainMBB: 7149 // buf[LabelOffset] = LR 7150 // v_main = 0 7151 // 7152 // sinkMBB: 7153 // v = phi(main, restore) 7154 // 7155 7156 MachineBasicBlock *thisMBB = MBB; 7157 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB); 7158 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB); 7159 MF->insert(I, mainMBB); 7160 MF->insert(I, sinkMBB); 7161 7162 MachineInstrBuilder MIB; 7163 7164 // Transfer the remainder of BB and its successor edges to sinkMBB. 7165 sinkMBB->splice(sinkMBB->begin(), MBB, 7166 std::next(MachineBasicBlock::iterator(MI)), MBB->end()); 7167 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB); 7168 7169 // Note that the structure of the jmp_buf used here is not compatible 7170 // with that used by libc, and is not designed to be. Specifically, it 7171 // stores only those 'reserved' registers that LLVM does not otherwise 7172 // understand how to spill. Also, by convention, by the time this 7173 // intrinsic is called, Clang has already stored the frame address in the 7174 // first slot of the buffer and stack address in the third. Following the 7175 // X86 target code, we'll store the jump address in the second slot. We also 7176 // need to save the TOC pointer (R2) to handle jumps between shared 7177 // libraries, and that will be stored in the fourth slot. The thread 7178 // identifier (R13) is not affected. 7179 7180 // thisMBB: 7181 const int64_t LabelOffset = 1 * PVT.getStoreSize(); 7182 const int64_t TOCOffset = 3 * PVT.getStoreSize(); 7183 const int64_t BPOffset = 4 * PVT.getStoreSize(); 7184 7185 // Prepare IP either in reg. 7186 const TargetRegisterClass *PtrRC = getRegClassFor(PVT); 7187 unsigned LabelReg = MRI.createVirtualRegister(PtrRC); 7188 unsigned BufReg = MI->getOperand(1).getReg(); 7189 7190 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI()) { 7191 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::STD)) 7192 .addReg(PPC::X2) 7193 .addImm(TOCOffset) 7194 .addReg(BufReg); 7195 MIB.setMemRefs(MMOBegin, MMOEnd); 7196 } 7197 7198 // Naked functions never have a base pointer, and so we use r1. For all 7199 // other functions, this decision must be delayed until during PEI. 7200 unsigned BaseReg; 7201 if (MF->getFunction()->getAttributes().hasAttribute( 7202 AttributeSet::FunctionIndex, Attribute::Naked)) 7203 BaseReg = Subtarget.isPPC64() ? PPC::X1 : PPC::R1; 7204 else 7205 BaseReg = Subtarget.isPPC64() ? PPC::BP8 : PPC::BP; 7206 7207 MIB = BuildMI(*thisMBB, MI, DL, 7208 TII->get(Subtarget.isPPC64() ? PPC::STD : PPC::STW)) 7209 .addReg(BaseReg) 7210 .addImm(BPOffset) 7211 .addReg(BufReg); 7212 MIB.setMemRefs(MMOBegin, MMOEnd); 7213 7214 // Setup 7215 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::BCLalways)).addMBB(mainMBB); 7216 const PPCRegisterInfo *TRI = 7217 getTargetMachine().getSubtarget<PPCSubtarget>().getRegisterInfo(); 7218 MIB.addRegMask(TRI->getNoPreservedMask()); 7219 7220 BuildMI(*thisMBB, MI, DL, TII->get(PPC::LI), restoreDstReg).addImm(1); 7221 7222 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::EH_SjLj_Setup)) 7223 .addMBB(mainMBB); 7224 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PPC::B)).addMBB(sinkMBB); 7225 7226 thisMBB->addSuccessor(mainMBB, /* weight */ 0); 7227 thisMBB->addSuccessor(sinkMBB, /* weight */ 1); 7228 7229 // mainMBB: 7230 // mainDstReg = 0 7231 MIB = BuildMI(mainMBB, DL, 7232 TII->get(Subtarget.isPPC64() ? PPC::MFLR8 : PPC::MFLR), LabelReg); 7233 7234 // Store IP 7235 if (Subtarget.isPPC64()) { 7236 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STD)) 7237 .addReg(LabelReg) 7238 .addImm(LabelOffset) 7239 .addReg(BufReg); 7240 } else { 7241 MIB = BuildMI(mainMBB, DL, TII->get(PPC::STW)) 7242 .addReg(LabelReg) 7243 .addImm(LabelOffset) 7244 .addReg(BufReg); 7245 } 7246 7247 MIB.setMemRefs(MMOBegin, MMOEnd); 7248 7249 BuildMI(mainMBB, DL, TII->get(PPC::LI), mainDstReg).addImm(0); 7250 mainMBB->addSuccessor(sinkMBB); 7251 7252 // sinkMBB: 7253 BuildMI(*sinkMBB, sinkMBB->begin(), DL, 7254 TII->get(PPC::PHI), DstReg) 7255 .addReg(mainDstReg).addMBB(mainMBB) 7256 .addReg(restoreDstReg).addMBB(thisMBB); 7257 7258 MI->eraseFromParent(); 7259 return sinkMBB; 7260 } 7261 7262 MachineBasicBlock * 7263 PPCTargetLowering::emitEHSjLjLongJmp(MachineInstr *MI, 7264 MachineBasicBlock *MBB) const { 7265 DebugLoc DL = MI->getDebugLoc(); 7266 const TargetInstrInfo *TII = 7267 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 7268 7269 MachineFunction *MF = MBB->getParent(); 7270 MachineRegisterInfo &MRI = MF->getRegInfo(); 7271 7272 // Memory Reference 7273 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin(); 7274 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end(); 7275 7276 MVT PVT = getPointerTy(); 7277 assert((PVT == MVT::i64 || PVT == MVT::i32) && 7278 "Invalid Pointer Size!"); 7279 7280 const TargetRegisterClass *RC = 7281 (PVT == MVT::i64) ? &PPC::G8RCRegClass : &PPC::GPRCRegClass; 7282 unsigned Tmp = MRI.createVirtualRegister(RC); 7283 // Since FP is only updated here but NOT referenced, it's treated as GPR. 7284 unsigned FP = (PVT == MVT::i64) ? PPC::X31 : PPC::R31; 7285 unsigned SP = (PVT == MVT::i64) ? PPC::X1 : PPC::R1; 7286 unsigned BP = (PVT == MVT::i64) ? PPC::X30 : 7287 (Subtarget.isSVR4ABI() && 7288 MF->getTarget().getRelocationModel() == Reloc::PIC_ ? 7289 PPC::R29 : PPC::R30); 7290 7291 MachineInstrBuilder MIB; 7292 7293 const int64_t LabelOffset = 1 * PVT.getStoreSize(); 7294 const int64_t SPOffset = 2 * PVT.getStoreSize(); 7295 const int64_t TOCOffset = 3 * PVT.getStoreSize(); 7296 const int64_t BPOffset = 4 * PVT.getStoreSize(); 7297 7298 unsigned BufReg = MI->getOperand(0).getReg(); 7299 7300 // Reload FP (the jumped-to function may not have had a 7301 // frame pointer, and if so, then its r31 will be restored 7302 // as necessary). 7303 if (PVT == MVT::i64) { 7304 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), FP) 7305 .addImm(0) 7306 .addReg(BufReg); 7307 } else { 7308 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), FP) 7309 .addImm(0) 7310 .addReg(BufReg); 7311 } 7312 MIB.setMemRefs(MMOBegin, MMOEnd); 7313 7314 // Reload IP 7315 if (PVT == MVT::i64) { 7316 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), Tmp) 7317 .addImm(LabelOffset) 7318 .addReg(BufReg); 7319 } else { 7320 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), Tmp) 7321 .addImm(LabelOffset) 7322 .addReg(BufReg); 7323 } 7324 MIB.setMemRefs(MMOBegin, MMOEnd); 7325 7326 // Reload SP 7327 if (PVT == MVT::i64) { 7328 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), SP) 7329 .addImm(SPOffset) 7330 .addReg(BufReg); 7331 } else { 7332 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), SP) 7333 .addImm(SPOffset) 7334 .addReg(BufReg); 7335 } 7336 MIB.setMemRefs(MMOBegin, MMOEnd); 7337 7338 // Reload BP 7339 if (PVT == MVT::i64) { 7340 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), BP) 7341 .addImm(BPOffset) 7342 .addReg(BufReg); 7343 } else { 7344 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LWZ), BP) 7345 .addImm(BPOffset) 7346 .addReg(BufReg); 7347 } 7348 MIB.setMemRefs(MMOBegin, MMOEnd); 7349 7350 // Reload TOC 7351 if (PVT == MVT::i64 && Subtarget.isSVR4ABI()) { 7352 MIB = BuildMI(*MBB, MI, DL, TII->get(PPC::LD), PPC::X2) 7353 .addImm(TOCOffset) 7354 .addReg(BufReg); 7355 7356 MIB.setMemRefs(MMOBegin, MMOEnd); 7357 } 7358 7359 // Jump 7360 BuildMI(*MBB, MI, DL, 7361 TII->get(PVT == MVT::i64 ? PPC::MTCTR8 : PPC::MTCTR)).addReg(Tmp); 7362 BuildMI(*MBB, MI, DL, TII->get(PVT == MVT::i64 ? PPC::BCTR8 : PPC::BCTR)); 7363 7364 MI->eraseFromParent(); 7365 return MBB; 7366 } 7367 7368 MachineBasicBlock * 7369 PPCTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, 7370 MachineBasicBlock *BB) const { 7371 if (MI->getOpcode() == TargetOpcode::STACKMAP || 7372 MI->getOpcode() == TargetOpcode::PATCHPOINT) { 7373 if (Subtarget.isPPC64() && Subtarget.isSVR4ABI() && 7374 MI->getOpcode() == TargetOpcode::PATCHPOINT) { 7375 // Call lowering should have added an r2 operand to indicate a dependence 7376 // on the TOC base pointer value. It can't however, because there is no 7377 // way to mark the dependence as implicit there, and so the stackmap code 7378 // will confuse it with a regular operand. Instead, add the dependence 7379 // here. 7380 MI->addOperand(MachineOperand::CreateReg(PPC::X2, false, true)); 7381 } 7382 7383 return emitPatchPoint(MI, BB); 7384 } 7385 7386 if (MI->getOpcode() == PPC::EH_SjLj_SetJmp32 || 7387 MI->getOpcode() == PPC::EH_SjLj_SetJmp64) { 7388 return emitEHSjLjSetJmp(MI, BB); 7389 } else if (MI->getOpcode() == PPC::EH_SjLj_LongJmp32 || 7390 MI->getOpcode() == PPC::EH_SjLj_LongJmp64) { 7391 return emitEHSjLjLongJmp(MI, BB); 7392 } 7393 7394 const TargetInstrInfo *TII = 7395 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 7396 7397 // To "insert" these instructions we actually have to insert their 7398 // control-flow patterns. 7399 const BasicBlock *LLVM_BB = BB->getBasicBlock(); 7400 MachineFunction::iterator It = BB; 7401 ++It; 7402 7403 MachineFunction *F = BB->getParent(); 7404 7405 if (Subtarget.hasISEL() && (MI->getOpcode() == PPC::SELECT_CC_I4 || 7406 MI->getOpcode() == PPC::SELECT_CC_I8 || 7407 MI->getOpcode() == PPC::SELECT_I4 || 7408 MI->getOpcode() == PPC::SELECT_I8)) { 7409 SmallVector<MachineOperand, 2> Cond; 7410 if (MI->getOpcode() == PPC::SELECT_CC_I4 || 7411 MI->getOpcode() == PPC::SELECT_CC_I8) 7412 Cond.push_back(MI->getOperand(4)); 7413 else 7414 Cond.push_back(MachineOperand::CreateImm(PPC::PRED_BIT_SET)); 7415 Cond.push_back(MI->getOperand(1)); 7416 7417 DebugLoc dl = MI->getDebugLoc(); 7418 const TargetInstrInfo *TII = 7419 getTargetMachine().getSubtargetImpl()->getInstrInfo(); 7420 TII->insertSelect(*BB, MI, dl, MI->getOperand(0).getReg(), 7421 Cond, MI->getOperand(2).getReg(), 7422 MI->getOperand(3).getReg()); 7423 } else if (MI->getOpcode() == PPC::SELECT_CC_I4 || 7424 MI->getOpcode() == PPC::SELECT_CC_I8 || 7425 MI->getOpcode() == PPC::SELECT_CC_F4 || 7426 MI->getOpcode() == PPC::SELECT_CC_F8 || 7427 MI->getOpcode() == PPC::SELECT_CC_VRRC || 7428 MI->getOpcode() == PPC::SELECT_CC_VSFRC || 7429 MI->getOpcode() == PPC::SELECT_CC_VSRC || 7430 MI->getOpcode() == PPC::SELECT_I4 || 7431 MI->getOpcode() == PPC::SELECT_I8 || 7432 MI->getOpcode() == PPC::SELECT_F4 || 7433 MI->getOpcode() == PPC::SELECT_F8 || 7434 MI->getOpcode() == PPC::SELECT_VRRC || 7435 MI->getOpcode() == PPC::SELECT_VSFRC || 7436 MI->getOpcode() == PPC::SELECT_VSRC) { 7437 // The incoming instruction knows the destination vreg to set, the 7438 // condition code register to branch on, the true/false values to 7439 // select between, and a branch opcode to use. 7440 7441 // thisMBB: 7442 // ... 7443 // TrueVal = ... 7444 // cmpTY ccX, r1, r2 7445 // bCC copy1MBB 7446 // fallthrough --> copy0MBB 7447 MachineBasicBlock *thisMBB = BB; 7448 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); 7449 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 7450 DebugLoc dl = MI->getDebugLoc(); 7451 F->insert(It, copy0MBB); 7452 F->insert(It, sinkMBB); 7453 7454 // Transfer the remainder of BB and its successor edges to sinkMBB. 7455 sinkMBB->splice(sinkMBB->begin(), BB, 7456 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7457 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 7458 7459 // Next, add the true and fallthrough blocks as its successors. 7460 BB->addSuccessor(copy0MBB); 7461 BB->addSuccessor(sinkMBB); 7462 7463 if (MI->getOpcode() == PPC::SELECT_I4 || 7464 MI->getOpcode() == PPC::SELECT_I8 || 7465 MI->getOpcode() == PPC::SELECT_F4 || 7466 MI->getOpcode() == PPC::SELECT_F8 || 7467 MI->getOpcode() == PPC::SELECT_VRRC || 7468 MI->getOpcode() == PPC::SELECT_VSFRC || 7469 MI->getOpcode() == PPC::SELECT_VSRC) { 7470 BuildMI(BB, dl, TII->get(PPC::BC)) 7471 .addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB); 7472 } else { 7473 unsigned SelectPred = MI->getOperand(4).getImm(); 7474 BuildMI(BB, dl, TII->get(PPC::BCC)) 7475 .addImm(SelectPred).addReg(MI->getOperand(1).getReg()).addMBB(sinkMBB); 7476 } 7477 7478 // copy0MBB: 7479 // %FalseValue = ... 7480 // # fallthrough to sinkMBB 7481 BB = copy0MBB; 7482 7483 // Update machine-CFG edges 7484 BB->addSuccessor(sinkMBB); 7485 7486 // sinkMBB: 7487 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] 7488 // ... 7489 BB = sinkMBB; 7490 BuildMI(*BB, BB->begin(), dl, 7491 TII->get(PPC::PHI), MI->getOperand(0).getReg()) 7492 .addReg(MI->getOperand(3).getReg()).addMBB(copy0MBB) 7493 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB); 7494 } else if (MI->getOpcode() == PPC::ReadTB) { 7495 // To read the 64-bit time-base register on a 32-bit target, we read the 7496 // two halves. Should the counter have wrapped while it was being read, we 7497 // need to try again. 7498 // ... 7499 // readLoop: 7500 // mfspr Rx,TBU # load from TBU 7501 // mfspr Ry,TB # load from TB 7502 // mfspr Rz,TBU # load from TBU 7503 // cmpw crX,Rx,Rz # check if ‘old’=’new’ 7504 // bne readLoop # branch if they're not equal 7505 // ... 7506 7507 MachineBasicBlock *readMBB = F->CreateMachineBasicBlock(LLVM_BB); 7508 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); 7509 DebugLoc dl = MI->getDebugLoc(); 7510 F->insert(It, readMBB); 7511 F->insert(It, sinkMBB); 7512 7513 // Transfer the remainder of BB and its successor edges to sinkMBB. 7514 sinkMBB->splice(sinkMBB->begin(), BB, 7515 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7516 sinkMBB->transferSuccessorsAndUpdatePHIs(BB); 7517 7518 BB->addSuccessor(readMBB); 7519 BB = readMBB; 7520 7521 MachineRegisterInfo &RegInfo = F->getRegInfo(); 7522 unsigned ReadAgainReg = RegInfo.createVirtualRegister(&PPC::GPRCRegClass); 7523 unsigned LoReg = MI->getOperand(0).getReg(); 7524 unsigned HiReg = MI->getOperand(1).getReg(); 7525 7526 BuildMI(BB, dl, TII->get(PPC::MFSPR), HiReg).addImm(269); 7527 BuildMI(BB, dl, TII->get(PPC::MFSPR), LoReg).addImm(268); 7528 BuildMI(BB, dl, TII->get(PPC::MFSPR), ReadAgainReg).addImm(269); 7529 7530 unsigned CmpReg = RegInfo.createVirtualRegister(&PPC::CRRCRegClass); 7531 7532 BuildMI(BB, dl, TII->get(PPC::CMPW), CmpReg) 7533 .addReg(HiReg).addReg(ReadAgainReg); 7534 BuildMI(BB, dl, TII->get(PPC::BCC)) 7535 .addImm(PPC::PRED_NE).addReg(CmpReg).addMBB(readMBB); 7536 7537 BB->addSuccessor(readMBB); 7538 BB->addSuccessor(sinkMBB); 7539 } 7540 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I8) 7541 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::ADD4); 7542 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I16) 7543 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::ADD4); 7544 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I32) 7545 BB = EmitAtomicBinary(MI, BB, false, PPC::ADD4); 7546 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_ADD_I64) 7547 BB = EmitAtomicBinary(MI, BB, true, PPC::ADD8); 7548 7549 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I8) 7550 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::AND); 7551 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I16) 7552 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::AND); 7553 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I32) 7554 BB = EmitAtomicBinary(MI, BB, false, PPC::AND); 7555 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_AND_I64) 7556 BB = EmitAtomicBinary(MI, BB, true, PPC::AND8); 7557 7558 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I8) 7559 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::OR); 7560 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I16) 7561 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::OR); 7562 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I32) 7563 BB = EmitAtomicBinary(MI, BB, false, PPC::OR); 7564 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_OR_I64) 7565 BB = EmitAtomicBinary(MI, BB, true, PPC::OR8); 7566 7567 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I8) 7568 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::XOR); 7569 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I16) 7570 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::XOR); 7571 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I32) 7572 BB = EmitAtomicBinary(MI, BB, false, PPC::XOR); 7573 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_XOR_I64) 7574 BB = EmitAtomicBinary(MI, BB, true, PPC::XOR8); 7575 7576 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I8) 7577 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::NAND); 7578 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I16) 7579 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::NAND); 7580 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I32) 7581 BB = EmitAtomicBinary(MI, BB, false, PPC::NAND); 7582 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_NAND_I64) 7583 BB = EmitAtomicBinary(MI, BB, true, PPC::NAND8); 7584 7585 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I8) 7586 BB = EmitPartwordAtomicBinary(MI, BB, true, PPC::SUBF); 7587 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I16) 7588 BB = EmitPartwordAtomicBinary(MI, BB, false, PPC::SUBF); 7589 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I32) 7590 BB = EmitAtomicBinary(MI, BB, false, PPC::SUBF); 7591 else if (MI->getOpcode() == PPC::ATOMIC_LOAD_SUB_I64) 7592 BB = EmitAtomicBinary(MI, BB, true, PPC::SUBF8); 7593 7594 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I8) 7595 BB = EmitPartwordAtomicBinary(MI, BB, true, 0); 7596 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I16) 7597 BB = EmitPartwordAtomicBinary(MI, BB, false, 0); 7598 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I32) 7599 BB = EmitAtomicBinary(MI, BB, false, 0); 7600 else if (MI->getOpcode() == PPC::ATOMIC_SWAP_I64) 7601 BB = EmitAtomicBinary(MI, BB, true, 0); 7602 7603 else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I32 || 7604 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64) { 7605 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64; 7606 7607 unsigned dest = MI->getOperand(0).getReg(); 7608 unsigned ptrA = MI->getOperand(1).getReg(); 7609 unsigned ptrB = MI->getOperand(2).getReg(); 7610 unsigned oldval = MI->getOperand(3).getReg(); 7611 unsigned newval = MI->getOperand(4).getReg(); 7612 DebugLoc dl = MI->getDebugLoc(); 7613 7614 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB); 7615 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB); 7616 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB); 7617 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 7618 F->insert(It, loop1MBB); 7619 F->insert(It, loop2MBB); 7620 F->insert(It, midMBB); 7621 F->insert(It, exitMBB); 7622 exitMBB->splice(exitMBB->begin(), BB, 7623 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7624 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 7625 7626 // thisMBB: 7627 // ... 7628 // fallthrough --> loopMBB 7629 BB->addSuccessor(loop1MBB); 7630 7631 // loop1MBB: 7632 // l[wd]arx dest, ptr 7633 // cmp[wd] dest, oldval 7634 // bne- midMBB 7635 // loop2MBB: 7636 // st[wd]cx. newval, ptr 7637 // bne- loopMBB 7638 // b exitBB 7639 // midMBB: 7640 // st[wd]cx. dest, ptr 7641 // exitBB: 7642 BB = loop1MBB; 7643 BuildMI(BB, dl, TII->get(is64bit ? PPC::LDARX : PPC::LWARX), dest) 7644 .addReg(ptrA).addReg(ptrB); 7645 BuildMI(BB, dl, TII->get(is64bit ? PPC::CMPD : PPC::CMPW), PPC::CR0) 7646 .addReg(oldval).addReg(dest); 7647 BuildMI(BB, dl, TII->get(PPC::BCC)) 7648 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB); 7649 BB->addSuccessor(loop2MBB); 7650 BB->addSuccessor(midMBB); 7651 7652 BB = loop2MBB; 7653 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX)) 7654 .addReg(newval).addReg(ptrA).addReg(ptrB); 7655 BuildMI(BB, dl, TII->get(PPC::BCC)) 7656 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB); 7657 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB); 7658 BB->addSuccessor(loop1MBB); 7659 BB->addSuccessor(exitMBB); 7660 7661 BB = midMBB; 7662 BuildMI(BB, dl, TII->get(is64bit ? PPC::STDCX : PPC::STWCX)) 7663 .addReg(dest).addReg(ptrA).addReg(ptrB); 7664 BB->addSuccessor(exitMBB); 7665 7666 // exitMBB: 7667 // ... 7668 BB = exitMBB; 7669 } else if (MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8 || 7670 MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I16) { 7671 // We must use 64-bit registers for addresses when targeting 64-bit, 7672 // since we're actually doing arithmetic on them. Other registers 7673 // can be 32-bit. 7674 bool is64bit = Subtarget.isPPC64(); 7675 bool is8bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I8; 7676 7677 unsigned dest = MI->getOperand(0).getReg(); 7678 unsigned ptrA = MI->getOperand(1).getReg(); 7679 unsigned ptrB = MI->getOperand(2).getReg(); 7680 unsigned oldval = MI->getOperand(3).getReg(); 7681 unsigned newval = MI->getOperand(4).getReg(); 7682 DebugLoc dl = MI->getDebugLoc(); 7683 7684 MachineBasicBlock *loop1MBB = F->CreateMachineBasicBlock(LLVM_BB); 7685 MachineBasicBlock *loop2MBB = F->CreateMachineBasicBlock(LLVM_BB); 7686 MachineBasicBlock *midMBB = F->CreateMachineBasicBlock(LLVM_BB); 7687 MachineBasicBlock *exitMBB = F->CreateMachineBasicBlock(LLVM_BB); 7688 F->insert(It, loop1MBB); 7689 F->insert(It, loop2MBB); 7690 F->insert(It, midMBB); 7691 F->insert(It, exitMBB); 7692 exitMBB->splice(exitMBB->begin(), BB, 7693 std::next(MachineBasicBlock::iterator(MI)), BB->end()); 7694 exitMBB->transferSuccessorsAndUpdatePHIs(BB); 7695 7696 MachineRegisterInfo &RegInfo = F->getRegInfo(); 7697 const TargetRegisterClass *RC = is64bit ? &PPC::G8RCRegClass 7698 : &PPC::GPRCRegClass; 7699 unsigned PtrReg = RegInfo.createVirtualRegister(RC); 7700 unsigned Shift1Reg = RegInfo.createVirtualRegister(RC); 7701 unsigned ShiftReg = RegInfo.createVirtualRegister(RC); 7702 unsigned NewVal2Reg = RegInfo.createVirtualRegister(RC); 7703 unsigned NewVal3Reg = RegInfo.createVirtualRegister(RC); 7704 unsigned OldVal2Reg = RegInfo.createVirtualRegister(RC); 7705 unsigned OldVal3Reg = RegInfo.createVirtualRegister(RC); 7706 unsigned MaskReg = RegInfo.createVirtualRegister(RC); 7707 unsigned Mask2Reg = RegInfo.createVirtualRegister(RC); 7708 unsigned Mask3Reg = RegInfo.createVirtualRegister(RC); 7709 unsigned Tmp2Reg = RegInfo.createVirtualRegister(RC); 7710 unsigned Tmp4Reg = RegInfo.createVirtualRegister(RC); 7711 unsigned TmpDestReg = RegInfo.createVirtualRegister(RC); 7712 unsigned Ptr1Reg; 7713 unsigned TmpReg = RegInfo.createVirtualRegister(RC); 7714 unsigned ZeroReg = is64bit ? PPC::ZERO8 : PPC::ZERO; 7715 // thisMBB: 7716 // ... 7717 // fallthrough --> loopMBB 7718 BB->addSuccessor(loop1MBB); 7719 7720 // The 4-byte load must be aligned, while a char or short may be 7721 // anywhere in the word. Hence all this nasty bookkeeping code. 7722 // add ptr1, ptrA, ptrB [copy if ptrA==0] 7723 // rlwinm shift1, ptr1, 3, 27, 28 [3, 27, 27] 7724 // xori shift, shift1, 24 [16] 7725 // rlwinm ptr, ptr1, 0, 0, 29 7726 // slw newval2, newval, shift 7727 // slw oldval2, oldval,shift 7728 // li mask2, 255 [li mask3, 0; ori mask2, mask3, 65535] 7729 // slw mask, mask2, shift 7730 // and newval3, newval2, mask 7731 // and oldval3, oldval2, mask 7732 // loop1MBB: 7733 // lwarx tmpDest, ptr 7734 // and tmp, tmpDest, mask 7735 // cmpw tmp, oldval3 7736 // bne- midMBB 7737 // loop2MBB: 7738 // andc tmp2, tmpDest, mask 7739 // or tmp4, tmp2, newval3 7740 // stwcx. tmp4, ptr 7741 // bne- loop1MBB 7742 // b exitBB 7743 // midMBB: 7744 // stwcx. tmpDest, ptr 7745 // exitBB: 7746 // srw dest, tmpDest, shift 7747 if (ptrA != ZeroReg) { 7748 Ptr1Reg = RegInfo.createVirtualRegister(RC); 7749 BuildMI(BB, dl, TII->get(is64bit ? PPC::ADD8 : PPC::ADD4), Ptr1Reg) 7750 .addReg(ptrA).addReg(ptrB); 7751 } else { 7752 Ptr1Reg = ptrB; 7753 } 7754 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg) 7755 .addImm(3).addImm(27).addImm(is8bit ? 28 : 27); 7756 BuildMI(BB, dl, TII->get(is64bit ? PPC::XORI8 : PPC::XORI), ShiftReg) 7757 .addReg(Shift1Reg).addImm(is8bit ? 24 : 16); 7758 if (is64bit) 7759 BuildMI(BB, dl, TII->get(PPC::RLDICR), PtrReg) 7760 .addReg(Ptr1Reg).addImm(0).addImm(61); 7761 else 7762 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg) 7763 .addReg(Ptr1Reg).addImm(0).addImm(0).addImm(29); 7764 BuildMI(BB, dl, TII->get(PPC::SLW), NewVal2Reg) 7765 .addReg(newval).addReg(ShiftReg); 7766 BuildMI(BB, dl, TII->get(PPC::SLW), OldVal2Reg) 7767 .addReg(oldval).addReg(ShiftReg); 7768 if (is8bit) 7769 BuildMI(BB, dl, TII->get(PPC::LI), Mask2Reg).addImm(255); 7770 else { 7771 BuildMI(BB, dl, TII->get(PPC::LI), Mask3Reg).addImm(0); 7772 BuildMI(BB, dl, TII->get(PPC::ORI), Mask2Reg) 7773 .addReg(Mask3Reg).addImm(65535); 7774 } 7775 BuildMI(BB, dl, TII->get(PPC::SLW), MaskReg) 7776 .addReg(Mask2Reg).addReg(ShiftReg); 7777 BuildMI(BB, dl, TII->get(PPC::AND), NewVal3Reg) 7778 .addReg(NewVal2Reg).addReg(MaskReg); 7779 BuildMI(BB, dl, TII->get(PPC::AND), OldVal3Reg) 7780 .addReg(OldVal2Reg).addReg(MaskReg); 7781 7782 BB = loop1MBB; 7783 BuildMI(BB, dl, TII->get(PPC::LWARX), TmpDestReg) 7784 .addReg(ZeroReg).addReg(PtrReg); 7785 BuildMI(BB, dl, TII->get(PPC::AND),TmpReg) 7786 .addReg(TmpDestReg).addReg(MaskReg); 7787 BuildMI(BB, dl, TII->get(PPC::CMPW), PPC::CR0) 7788 .addReg(TmpReg).addReg(OldVal3Reg); 7789 BuildMI(BB, dl, TII->get(PPC::BCC)) 7790 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(midMBB); 7791 BB->addSuccessor(loop2MBB); 7792 BB->addSuccessor(midMBB); 7793 7794 BB = loop2MBB; 7795 BuildMI(BB, dl, TII->get(PPC::ANDC),Tmp2Reg) 7796 .addReg(TmpDestReg).addReg(MaskReg); 7797 BuildMI(BB, dl, TII->get(PPC::OR),Tmp4Reg) 7798 .addReg(Tmp2Reg).addReg(NewVal3Reg); 7799 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(Tmp4Reg) 7800 .addReg(ZeroReg).addReg(PtrReg); 7801 BuildMI(BB, dl, TII->get(PPC::BCC)) 7802 .addImm(PPC::PRED_NE).addReg(PPC::CR0).addMBB(loop1MBB); 7803 BuildMI(BB, dl, TII->get(PPC::B)).addMBB(exitMBB); 7804 BB->addSuccessor(loop1MBB); 7805 BB->addSuccessor(exitMBB); 7806 7807 BB = midMBB; 7808 BuildMI(BB, dl, TII->get(PPC::STWCX)).addReg(TmpDestReg) 7809 .addReg(ZeroReg).addReg(PtrReg); 7810 BB->addSuccessor(exitMBB); 7811 7812 // exitMBB: 7813 // ... 7814 BB = exitMBB; 7815 BuildMI(*BB, BB->begin(), dl, TII->get(PPC::SRW),dest).addReg(TmpReg) 7816 .addReg(ShiftReg); 7817 } else if (MI->getOpcode() == PPC::FADDrtz) { 7818 // This pseudo performs an FADD with rounding mode temporarily forced 7819 // to round-to-zero. We emit this via custom inserter since the FPSCR 7820 // is not modeled at the SelectionDAG level. 7821 unsigned Dest = MI->getOperand(0).getReg(); 7822 unsigned Src1 = MI->getOperand(1).getReg(); 7823 unsigned Src2 = MI->getOperand(2).getReg(); 7824 DebugLoc dl = MI->getDebugLoc(); 7825 7826 MachineRegisterInfo &RegInfo = F->getRegInfo(); 7827 unsigned MFFSReg = RegInfo.createVirtualRegister(&PPC::F8RCRegClass); 7828 7829 // Save FPSCR value. 7830 BuildMI(*BB, MI, dl, TII->get(PPC::MFFS), MFFSReg); 7831 7832 // Set rounding mode to round-to-zero. 7833 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB1)).addImm(31); 7834 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSB0)).addImm(30); 7835 7836 // Perform addition. 7837 BuildMI(*BB, MI, dl, TII->get(PPC::FADD), Dest).addReg(Src1).addReg(Src2); 7838 7839 // Restore FPSCR value. 7840 BuildMI(*BB, MI, dl, TII->get(PPC::MTFSFb)).addImm(1).addReg(MFFSReg); 7841 } else if (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT || 7842 MI->getOpcode() == PPC::ANDIo_1_GT_BIT || 7843 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 || 7844 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) { 7845 unsigned Opcode = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8 || 7846 MI->getOpcode() == PPC::ANDIo_1_GT_BIT8) ? 7847 PPC::ANDIo8 : PPC::ANDIo; 7848 bool isEQ = (MI->getOpcode() == PPC::ANDIo_1_EQ_BIT || 7849 MI->getOpcode() == PPC::ANDIo_1_EQ_BIT8); 7850 7851 MachineRegisterInfo &RegInfo = F->getRegInfo(); 7852 unsigned Dest = RegInfo.createVirtualRegister(Opcode == PPC::ANDIo ? 7853 &PPC::GPRCRegClass : 7854 &PPC::G8RCRegClass); 7855 7856 DebugLoc dl = MI->getDebugLoc(); 7857 BuildMI(*BB, MI, dl, TII->get(Opcode), Dest) 7858 .addReg(MI->getOperand(1).getReg()).addImm(1); 7859 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), 7860 MI->getOperand(0).getReg()) 7861 .addReg(isEQ ? PPC::CR0EQ : PPC::CR0GT); 7862 } else { 7863 llvm_unreachable("Unexpected instr type to insert"); 7864 } 7865 7866 MI->eraseFromParent(); // The pseudo instruction is gone now. 7867 return BB; 7868 } 7869 7870 //===----------------------------------------------------------------------===// 7871 // Target Optimization Hooks 7872 //===----------------------------------------------------------------------===// 7873 7874 SDValue PPCTargetLowering::getRsqrtEstimate(SDValue Operand, 7875 DAGCombinerInfo &DCI, 7876 unsigned &RefinementSteps, 7877 bool &UseOneConstNR) const { 7878 EVT VT = Operand.getValueType(); 7879 if ((VT == MVT::f32 && Subtarget.hasFRSQRTES()) || 7880 (VT == MVT::f64 && Subtarget.hasFRSQRTE()) || 7881 (VT == MVT::v4f32 && Subtarget.hasAltivec()) || 7882 (VT == MVT::v2f64 && Subtarget.hasVSX())) { 7883 // Convergence is quadratic, so we essentially double the number of digits 7884 // correct after every iteration. For both FRE and FRSQRTE, the minimum 7885 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is 7886 // 2^-14. IEEE float has 23 digits and double has 52 digits. 7887 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3; 7888 if (VT.getScalarType() == MVT::f64) 7889 ++RefinementSteps; 7890 UseOneConstNR = true; 7891 return DCI.DAG.getNode(PPCISD::FRSQRTE, SDLoc(Operand), VT, Operand); 7892 } 7893 return SDValue(); 7894 } 7895 7896 SDValue PPCTargetLowering::getRecipEstimate(SDValue Operand, 7897 DAGCombinerInfo &DCI, 7898 unsigned &RefinementSteps) const { 7899 EVT VT = Operand.getValueType(); 7900 if ((VT == MVT::f32 && Subtarget.hasFRES()) || 7901 (VT == MVT::f64 && Subtarget.hasFRE()) || 7902 (VT == MVT::v4f32 && Subtarget.hasAltivec()) || 7903 (VT == MVT::v2f64 && Subtarget.hasVSX())) { 7904 // Convergence is quadratic, so we essentially double the number of digits 7905 // correct after every iteration. For both FRE and FRSQRTE, the minimum 7906 // architected relative accuracy is 2^-5. When hasRecipPrec(), this is 7907 // 2^-14. IEEE float has 23 digits and double has 52 digits. 7908 RefinementSteps = Subtarget.hasRecipPrec() ? 1 : 3; 7909 if (VT.getScalarType() == MVT::f64) 7910 ++RefinementSteps; 7911 return DCI.DAG.getNode(PPCISD::FRE, SDLoc(Operand), VT, Operand); 7912 } 7913 return SDValue(); 7914 } 7915 7916 bool PPCTargetLowering::combineRepeatedFPDivisors(unsigned NumUsers) const { 7917 // Note: This functionality is used only when unsafe-fp-math is enabled, and 7918 // on cores with reciprocal estimates (which are used when unsafe-fp-math is 7919 // enabled for division), this functionality is redundant with the default 7920 // combiner logic (once the division -> reciprocal/multiply transformation 7921 // has taken place). As a result, this matters more for older cores than for 7922 // newer ones. 7923 7924 // Combine multiple FDIVs with the same divisor into multiple FMULs by the 7925 // reciprocal if there are two or more FDIVs (for embedded cores with only 7926 // one FP pipeline) for three or more FDIVs (for generic OOO cores). 7927 switch (Subtarget.getDarwinDirective()) { 7928 default: 7929 return NumUsers > 2; 7930 case PPC::DIR_440: 7931 case PPC::DIR_A2: 7932 case PPC::DIR_E500mc: 7933 case PPC::DIR_E5500: 7934 return NumUsers > 1; 7935 } 7936 } 7937 7938 static bool isConsecutiveLSLoc(SDValue Loc, EVT VT, LSBaseSDNode *Base, 7939 unsigned Bytes, int Dist, 7940 SelectionDAG &DAG) { 7941 if (VT.getSizeInBits() / 8 != Bytes) 7942 return false; 7943 7944 SDValue BaseLoc = Base->getBasePtr(); 7945 if (Loc.getOpcode() == ISD::FrameIndex) { 7946 if (BaseLoc.getOpcode() != ISD::FrameIndex) 7947 return false; 7948 const MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); 7949 int FI = cast<FrameIndexSDNode>(Loc)->getIndex(); 7950 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex(); 7951 int FS = MFI->getObjectSize(FI); 7952 int BFS = MFI->getObjectSize(BFI); 7953 if (FS != BFS || FS != (int)Bytes) return false; 7954 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes); 7955 } 7956 7957 // Handle X+C 7958 if (DAG.isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc && 7959 cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes) 7960 return true; 7961 7962 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7963 const GlobalValue *GV1 = nullptr; 7964 const GlobalValue *GV2 = nullptr; 7965 int64_t Offset1 = 0; 7966 int64_t Offset2 = 0; 7967 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1); 7968 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); 7969 if (isGA1 && isGA2 && GV1 == GV2) 7970 return Offset1 == (Offset2 + Dist*Bytes); 7971 return false; 7972 } 7973 7974 // Like SelectionDAG::isConsecutiveLoad, but also works for stores, and does 7975 // not enforce equality of the chain operands. 7976 static bool isConsecutiveLS(SDNode *N, LSBaseSDNode *Base, 7977 unsigned Bytes, int Dist, 7978 SelectionDAG &DAG) { 7979 if (LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(N)) { 7980 EVT VT = LS->getMemoryVT(); 7981 SDValue Loc = LS->getBasePtr(); 7982 return isConsecutiveLSLoc(Loc, VT, Base, Bytes, Dist, DAG); 7983 } 7984 7985 if (N->getOpcode() == ISD::INTRINSIC_W_CHAIN) { 7986 EVT VT; 7987 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 7988 default: return false; 7989 case Intrinsic::ppc_altivec_lvx: 7990 case Intrinsic::ppc_altivec_lvxl: 7991 case Intrinsic::ppc_vsx_lxvw4x: 7992 VT = MVT::v4i32; 7993 break; 7994 case Intrinsic::ppc_vsx_lxvd2x: 7995 VT = MVT::v2f64; 7996 break; 7997 case Intrinsic::ppc_altivec_lvebx: 7998 VT = MVT::i8; 7999 break; 8000 case Intrinsic::ppc_altivec_lvehx: 8001 VT = MVT::i16; 8002 break; 8003 case Intrinsic::ppc_altivec_lvewx: 8004 VT = MVT::i32; 8005 break; 8006 } 8007 8008 return isConsecutiveLSLoc(N->getOperand(2), VT, Base, Bytes, Dist, DAG); 8009 } 8010 8011 if (N->getOpcode() == ISD::INTRINSIC_VOID) { 8012 EVT VT; 8013 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 8014 default: return false; 8015 case Intrinsic::ppc_altivec_stvx: 8016 case Intrinsic::ppc_altivec_stvxl: 8017 case Intrinsic::ppc_vsx_stxvw4x: 8018 VT = MVT::v4i32; 8019 break; 8020 case Intrinsic::ppc_vsx_stxvd2x: 8021 VT = MVT::v2f64; 8022 break; 8023 case Intrinsic::ppc_altivec_stvebx: 8024 VT = MVT::i8; 8025 break; 8026 case Intrinsic::ppc_altivec_stvehx: 8027 VT = MVT::i16; 8028 break; 8029 case Intrinsic::ppc_altivec_stvewx: 8030 VT = MVT::i32; 8031 break; 8032 } 8033 8034 return isConsecutiveLSLoc(N->getOperand(3), VT, Base, Bytes, Dist, DAG); 8035 } 8036 8037 return false; 8038 } 8039 8040 // Return true is there is a nearyby consecutive load to the one provided 8041 // (regardless of alignment). We search up and down the chain, looking though 8042 // token factors and other loads (but nothing else). As a result, a true result 8043 // indicates that it is safe to create a new consecutive load adjacent to the 8044 // load provided. 8045 static bool findConsecutiveLoad(LoadSDNode *LD, SelectionDAG &DAG) { 8046 SDValue Chain = LD->getChain(); 8047 EVT VT = LD->getMemoryVT(); 8048 8049 SmallSet<SDNode *, 16> LoadRoots; 8050 SmallVector<SDNode *, 8> Queue(1, Chain.getNode()); 8051 SmallSet<SDNode *, 16> Visited; 8052 8053 // First, search up the chain, branching to follow all token-factor operands. 8054 // If we find a consecutive load, then we're done, otherwise, record all 8055 // nodes just above the top-level loads and token factors. 8056 while (!Queue.empty()) { 8057 SDNode *ChainNext = Queue.pop_back_val(); 8058 if (!Visited.insert(ChainNext).second) 8059 continue; 8060 8061 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(ChainNext)) { 8062 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG)) 8063 return true; 8064 8065 if (!Visited.count(ChainLD->getChain().getNode())) 8066 Queue.push_back(ChainLD->getChain().getNode()); 8067 } else if (ChainNext->getOpcode() == ISD::TokenFactor) { 8068 for (const SDUse &O : ChainNext->ops()) 8069 if (!Visited.count(O.getNode())) 8070 Queue.push_back(O.getNode()); 8071 } else 8072 LoadRoots.insert(ChainNext); 8073 } 8074 8075 // Second, search down the chain, starting from the top-level nodes recorded 8076 // in the first phase. These top-level nodes are the nodes just above all 8077 // loads and token factors. Starting with their uses, recursively look though 8078 // all loads (just the chain uses) and token factors to find a consecutive 8079 // load. 8080 Visited.clear(); 8081 Queue.clear(); 8082 8083 for (SmallSet<SDNode *, 16>::iterator I = LoadRoots.begin(), 8084 IE = LoadRoots.end(); I != IE; ++I) { 8085 Queue.push_back(*I); 8086 8087 while (!Queue.empty()) { 8088 SDNode *LoadRoot = Queue.pop_back_val(); 8089 if (!Visited.insert(LoadRoot).second) 8090 continue; 8091 8092 if (MemSDNode *ChainLD = dyn_cast<MemSDNode>(LoadRoot)) 8093 if (isConsecutiveLS(ChainLD, LD, VT.getStoreSize(), 1, DAG)) 8094 return true; 8095 8096 for (SDNode::use_iterator UI = LoadRoot->use_begin(), 8097 UE = LoadRoot->use_end(); UI != UE; ++UI) 8098 if (((isa<MemSDNode>(*UI) && 8099 cast<MemSDNode>(*UI)->getChain().getNode() == LoadRoot) || 8100 UI->getOpcode() == ISD::TokenFactor) && !Visited.count(*UI)) 8101 Queue.push_back(*UI); 8102 } 8103 } 8104 8105 return false; 8106 } 8107 8108 SDValue PPCTargetLowering::DAGCombineTruncBoolExt(SDNode *N, 8109 DAGCombinerInfo &DCI) const { 8110 SelectionDAG &DAG = DCI.DAG; 8111 SDLoc dl(N); 8112 8113 assert(Subtarget.useCRBits() && 8114 "Expecting to be tracking CR bits"); 8115 // If we're tracking CR bits, we need to be careful that we don't have: 8116 // trunc(binary-ops(zext(x), zext(y))) 8117 // or 8118 // trunc(binary-ops(binary-ops(zext(x), zext(y)), ...) 8119 // such that we're unnecessarily moving things into GPRs when it would be 8120 // better to keep them in CR bits. 8121 8122 // Note that trunc here can be an actual i1 trunc, or can be the effective 8123 // truncation that comes from a setcc or select_cc. 8124 if (N->getOpcode() == ISD::TRUNCATE && 8125 N->getValueType(0) != MVT::i1) 8126 return SDValue(); 8127 8128 if (N->getOperand(0).getValueType() != MVT::i32 && 8129 N->getOperand(0).getValueType() != MVT::i64) 8130 return SDValue(); 8131 8132 if (N->getOpcode() == ISD::SETCC || 8133 N->getOpcode() == ISD::SELECT_CC) { 8134 // If we're looking at a comparison, then we need to make sure that the 8135 // high bits (all except for the first) don't matter the result. 8136 ISD::CondCode CC = 8137 cast<CondCodeSDNode>(N->getOperand( 8138 N->getOpcode() == ISD::SETCC ? 2 : 4))->get(); 8139 unsigned OpBits = N->getOperand(0).getValueSizeInBits(); 8140 8141 if (ISD::isSignedIntSetCC(CC)) { 8142 if (DAG.ComputeNumSignBits(N->getOperand(0)) != OpBits || 8143 DAG.ComputeNumSignBits(N->getOperand(1)) != OpBits) 8144 return SDValue(); 8145 } else if (ISD::isUnsignedIntSetCC(CC)) { 8146 if (!DAG.MaskedValueIsZero(N->getOperand(0), 8147 APInt::getHighBitsSet(OpBits, OpBits-1)) || 8148 !DAG.MaskedValueIsZero(N->getOperand(1), 8149 APInt::getHighBitsSet(OpBits, OpBits-1))) 8150 return SDValue(); 8151 } else { 8152 // This is neither a signed nor an unsigned comparison, just make sure 8153 // that the high bits are equal. 8154 APInt Op1Zero, Op1One; 8155 APInt Op2Zero, Op2One; 8156 DAG.computeKnownBits(N->getOperand(0), Op1Zero, Op1One); 8157 DAG.computeKnownBits(N->getOperand(1), Op2Zero, Op2One); 8158 8159 // We don't really care about what is known about the first bit (if 8160 // anything), so clear it in all masks prior to comparing them. 8161 Op1Zero.clearBit(0); Op1One.clearBit(0); 8162 Op2Zero.clearBit(0); Op2One.clearBit(0); 8163 8164 if (Op1Zero != Op2Zero || Op1One != Op2One) 8165 return SDValue(); 8166 } 8167 } 8168 8169 // We now know that the higher-order bits are irrelevant, we just need to 8170 // make sure that all of the intermediate operations are bit operations, and 8171 // all inputs are extensions. 8172 if (N->getOperand(0).getOpcode() != ISD::AND && 8173 N->getOperand(0).getOpcode() != ISD::OR && 8174 N->getOperand(0).getOpcode() != ISD::XOR && 8175 N->getOperand(0).getOpcode() != ISD::SELECT && 8176 N->getOperand(0).getOpcode() != ISD::SELECT_CC && 8177 N->getOperand(0).getOpcode() != ISD::TRUNCATE && 8178 N->getOperand(0).getOpcode() != ISD::SIGN_EXTEND && 8179 N->getOperand(0).getOpcode() != ISD::ZERO_EXTEND && 8180 N->getOperand(0).getOpcode() != ISD::ANY_EXTEND) 8181 return SDValue(); 8182 8183 if ((N->getOpcode() == ISD::SETCC || N->getOpcode() == ISD::SELECT_CC) && 8184 N->getOperand(1).getOpcode() != ISD::AND && 8185 N->getOperand(1).getOpcode() != ISD::OR && 8186 N->getOperand(1).getOpcode() != ISD::XOR && 8187 N->getOperand(1).getOpcode() != ISD::SELECT && 8188 N->getOperand(1).getOpcode() != ISD::SELECT_CC && 8189 N->getOperand(1).getOpcode() != ISD::TRUNCATE && 8190 N->getOperand(1).getOpcode() != ISD::SIGN_EXTEND && 8191 N->getOperand(1).getOpcode() != ISD::ZERO_EXTEND && 8192 N->getOperand(1).getOpcode() != ISD::ANY_EXTEND) 8193 return SDValue(); 8194 8195 SmallVector<SDValue, 4> Inputs; 8196 SmallVector<SDValue, 8> BinOps, PromOps; 8197 SmallPtrSet<SDNode *, 16> Visited; 8198 8199 for (unsigned i = 0; i < 2; ++i) { 8200 if (((N->getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 8201 N->getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 8202 N->getOperand(i).getOpcode() == ISD::ANY_EXTEND) && 8203 N->getOperand(i).getOperand(0).getValueType() == MVT::i1) || 8204 isa<ConstantSDNode>(N->getOperand(i))) 8205 Inputs.push_back(N->getOperand(i)); 8206 else 8207 BinOps.push_back(N->getOperand(i)); 8208 8209 if (N->getOpcode() == ISD::TRUNCATE) 8210 break; 8211 } 8212 8213 // Visit all inputs, collect all binary operations (and, or, xor and 8214 // select) that are all fed by extensions. 8215 while (!BinOps.empty()) { 8216 SDValue BinOp = BinOps.back(); 8217 BinOps.pop_back(); 8218 8219 if (!Visited.insert(BinOp.getNode()).second) 8220 continue; 8221 8222 PromOps.push_back(BinOp); 8223 8224 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) { 8225 // The condition of the select is not promoted. 8226 if (BinOp.getOpcode() == ISD::SELECT && i == 0) 8227 continue; 8228 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3) 8229 continue; 8230 8231 if (((BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 8232 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 8233 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) && 8234 BinOp.getOperand(i).getOperand(0).getValueType() == MVT::i1) || 8235 isa<ConstantSDNode>(BinOp.getOperand(i))) { 8236 Inputs.push_back(BinOp.getOperand(i)); 8237 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND || 8238 BinOp.getOperand(i).getOpcode() == ISD::OR || 8239 BinOp.getOperand(i).getOpcode() == ISD::XOR || 8240 BinOp.getOperand(i).getOpcode() == ISD::SELECT || 8241 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC || 8242 BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE || 8243 BinOp.getOperand(i).getOpcode() == ISD::SIGN_EXTEND || 8244 BinOp.getOperand(i).getOpcode() == ISD::ZERO_EXTEND || 8245 BinOp.getOperand(i).getOpcode() == ISD::ANY_EXTEND) { 8246 BinOps.push_back(BinOp.getOperand(i)); 8247 } else { 8248 // We have an input that is not an extension or another binary 8249 // operation; we'll abort this transformation. 8250 return SDValue(); 8251 } 8252 } 8253 } 8254 8255 // Make sure that this is a self-contained cluster of operations (which 8256 // is not quite the same thing as saying that everything has only one 8257 // use). 8258 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 8259 if (isa<ConstantSDNode>(Inputs[i])) 8260 continue; 8261 8262 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(), 8263 UE = Inputs[i].getNode()->use_end(); 8264 UI != UE; ++UI) { 8265 SDNode *User = *UI; 8266 if (User != N && !Visited.count(User)) 8267 return SDValue(); 8268 8269 // Make sure that we're not going to promote the non-output-value 8270 // operand(s) or SELECT or SELECT_CC. 8271 // FIXME: Although we could sometimes handle this, and it does occur in 8272 // practice that one of the condition inputs to the select is also one of 8273 // the outputs, we currently can't deal with this. 8274 if (User->getOpcode() == ISD::SELECT) { 8275 if (User->getOperand(0) == Inputs[i]) 8276 return SDValue(); 8277 } else if (User->getOpcode() == ISD::SELECT_CC) { 8278 if (User->getOperand(0) == Inputs[i] || 8279 User->getOperand(1) == Inputs[i]) 8280 return SDValue(); 8281 } 8282 } 8283 } 8284 8285 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) { 8286 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(), 8287 UE = PromOps[i].getNode()->use_end(); 8288 UI != UE; ++UI) { 8289 SDNode *User = *UI; 8290 if (User != N && !Visited.count(User)) 8291 return SDValue(); 8292 8293 // Make sure that we're not going to promote the non-output-value 8294 // operand(s) or SELECT or SELECT_CC. 8295 // FIXME: Although we could sometimes handle this, and it does occur in 8296 // practice that one of the condition inputs to the select is also one of 8297 // the outputs, we currently can't deal with this. 8298 if (User->getOpcode() == ISD::SELECT) { 8299 if (User->getOperand(0) == PromOps[i]) 8300 return SDValue(); 8301 } else if (User->getOpcode() == ISD::SELECT_CC) { 8302 if (User->getOperand(0) == PromOps[i] || 8303 User->getOperand(1) == PromOps[i]) 8304 return SDValue(); 8305 } 8306 } 8307 } 8308 8309 // Replace all inputs with the extension operand. 8310 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 8311 // Constants may have users outside the cluster of to-be-promoted nodes, 8312 // and so we need to replace those as we do the promotions. 8313 if (isa<ConstantSDNode>(Inputs[i])) 8314 continue; 8315 else 8316 DAG.ReplaceAllUsesOfValueWith(Inputs[i], Inputs[i].getOperand(0)); 8317 } 8318 8319 // Replace all operations (these are all the same, but have a different 8320 // (i1) return type). DAG.getNode will validate that the types of 8321 // a binary operator match, so go through the list in reverse so that 8322 // we've likely promoted both operands first. Any intermediate truncations or 8323 // extensions disappear. 8324 while (!PromOps.empty()) { 8325 SDValue PromOp = PromOps.back(); 8326 PromOps.pop_back(); 8327 8328 if (PromOp.getOpcode() == ISD::TRUNCATE || 8329 PromOp.getOpcode() == ISD::SIGN_EXTEND || 8330 PromOp.getOpcode() == ISD::ZERO_EXTEND || 8331 PromOp.getOpcode() == ISD::ANY_EXTEND) { 8332 if (!isa<ConstantSDNode>(PromOp.getOperand(0)) && 8333 PromOp.getOperand(0).getValueType() != MVT::i1) { 8334 // The operand is not yet ready (see comment below). 8335 PromOps.insert(PromOps.begin(), PromOp); 8336 continue; 8337 } 8338 8339 SDValue RepValue = PromOp.getOperand(0); 8340 if (isa<ConstantSDNode>(RepValue)) 8341 RepValue = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, RepValue); 8342 8343 DAG.ReplaceAllUsesOfValueWith(PromOp, RepValue); 8344 continue; 8345 } 8346 8347 unsigned C; 8348 switch (PromOp.getOpcode()) { 8349 default: C = 0; break; 8350 case ISD::SELECT: C = 1; break; 8351 case ISD::SELECT_CC: C = 2; break; 8352 } 8353 8354 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) && 8355 PromOp.getOperand(C).getValueType() != MVT::i1) || 8356 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) && 8357 PromOp.getOperand(C+1).getValueType() != MVT::i1)) { 8358 // The to-be-promoted operands of this node have not yet been 8359 // promoted (this should be rare because we're going through the 8360 // list backward, but if one of the operands has several users in 8361 // this cluster of to-be-promoted nodes, it is possible). 8362 PromOps.insert(PromOps.begin(), PromOp); 8363 continue; 8364 } 8365 8366 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(), 8367 PromOp.getNode()->op_end()); 8368 8369 // If there are any constant inputs, make sure they're replaced now. 8370 for (unsigned i = 0; i < 2; ++i) 8371 if (isa<ConstantSDNode>(Ops[C+i])) 8372 Ops[C+i] = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, Ops[C+i]); 8373 8374 DAG.ReplaceAllUsesOfValueWith(PromOp, 8375 DAG.getNode(PromOp.getOpcode(), dl, MVT::i1, Ops)); 8376 } 8377 8378 // Now we're left with the initial truncation itself. 8379 if (N->getOpcode() == ISD::TRUNCATE) 8380 return N->getOperand(0); 8381 8382 // Otherwise, this is a comparison. The operands to be compared have just 8383 // changed type (to i1), but everything else is the same. 8384 return SDValue(N, 0); 8385 } 8386 8387 SDValue PPCTargetLowering::DAGCombineExtBoolTrunc(SDNode *N, 8388 DAGCombinerInfo &DCI) const { 8389 SelectionDAG &DAG = DCI.DAG; 8390 SDLoc dl(N); 8391 8392 // If we're tracking CR bits, we need to be careful that we don't have: 8393 // zext(binary-ops(trunc(x), trunc(y))) 8394 // or 8395 // zext(binary-ops(binary-ops(trunc(x), trunc(y)), ...) 8396 // such that we're unnecessarily moving things into CR bits that can more 8397 // efficiently stay in GPRs. Note that if we're not certain that the high 8398 // bits are set as required by the final extension, we still may need to do 8399 // some masking to get the proper behavior. 8400 8401 // This same functionality is important on PPC64 when dealing with 8402 // 32-to-64-bit extensions; these occur often when 32-bit values are used as 8403 // the return values of functions. Because it is so similar, it is handled 8404 // here as well. 8405 8406 if (N->getValueType(0) != MVT::i32 && 8407 N->getValueType(0) != MVT::i64) 8408 return SDValue(); 8409 8410 if (!((N->getOperand(0).getValueType() == MVT::i1 && 8411 Subtarget.useCRBits()) || 8412 (N->getOperand(0).getValueType() == MVT::i32 && 8413 Subtarget.isPPC64()))) 8414 return SDValue(); 8415 8416 if (N->getOperand(0).getOpcode() != ISD::AND && 8417 N->getOperand(0).getOpcode() != ISD::OR && 8418 N->getOperand(0).getOpcode() != ISD::XOR && 8419 N->getOperand(0).getOpcode() != ISD::SELECT && 8420 N->getOperand(0).getOpcode() != ISD::SELECT_CC) 8421 return SDValue(); 8422 8423 SmallVector<SDValue, 4> Inputs; 8424 SmallVector<SDValue, 8> BinOps(1, N->getOperand(0)), PromOps; 8425 SmallPtrSet<SDNode *, 16> Visited; 8426 8427 // Visit all inputs, collect all binary operations (and, or, xor and 8428 // select) that are all fed by truncations. 8429 while (!BinOps.empty()) { 8430 SDValue BinOp = BinOps.back(); 8431 BinOps.pop_back(); 8432 8433 if (!Visited.insert(BinOp.getNode()).second) 8434 continue; 8435 8436 PromOps.push_back(BinOp); 8437 8438 for (unsigned i = 0, ie = BinOp.getNumOperands(); i != ie; ++i) { 8439 // The condition of the select is not promoted. 8440 if (BinOp.getOpcode() == ISD::SELECT && i == 0) 8441 continue; 8442 if (BinOp.getOpcode() == ISD::SELECT_CC && i != 2 && i != 3) 8443 continue; 8444 8445 if (BinOp.getOperand(i).getOpcode() == ISD::TRUNCATE || 8446 isa<ConstantSDNode>(BinOp.getOperand(i))) { 8447 Inputs.push_back(BinOp.getOperand(i)); 8448 } else if (BinOp.getOperand(i).getOpcode() == ISD::AND || 8449 BinOp.getOperand(i).getOpcode() == ISD::OR || 8450 BinOp.getOperand(i).getOpcode() == ISD::XOR || 8451 BinOp.getOperand(i).getOpcode() == ISD::SELECT || 8452 BinOp.getOperand(i).getOpcode() == ISD::SELECT_CC) { 8453 BinOps.push_back(BinOp.getOperand(i)); 8454 } else { 8455 // We have an input that is not a truncation or another binary 8456 // operation; we'll abort this transformation. 8457 return SDValue(); 8458 } 8459 } 8460 } 8461 8462 // The operands of a select that must be truncated when the select is 8463 // promoted because the operand is actually part of the to-be-promoted set. 8464 DenseMap<SDNode *, EVT> SelectTruncOp[2]; 8465 8466 // Make sure that this is a self-contained cluster of operations (which 8467 // is not quite the same thing as saying that everything has only one 8468 // use). 8469 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 8470 if (isa<ConstantSDNode>(Inputs[i])) 8471 continue; 8472 8473 for (SDNode::use_iterator UI = Inputs[i].getNode()->use_begin(), 8474 UE = Inputs[i].getNode()->use_end(); 8475 UI != UE; ++UI) { 8476 SDNode *User = *UI; 8477 if (User != N && !Visited.count(User)) 8478 return SDValue(); 8479 8480 // If we're going to promote the non-output-value operand(s) or SELECT or 8481 // SELECT_CC, record them for truncation. 8482 if (User->getOpcode() == ISD::SELECT) { 8483 if (User->getOperand(0) == Inputs[i]) 8484 SelectTruncOp[0].insert(std::make_pair(User, 8485 User->getOperand(0).getValueType())); 8486 } else if (User->getOpcode() == ISD::SELECT_CC) { 8487 if (User->getOperand(0) == Inputs[i]) 8488 SelectTruncOp[0].insert(std::make_pair(User, 8489 User->getOperand(0).getValueType())); 8490 if (User->getOperand(1) == Inputs[i]) 8491 SelectTruncOp[1].insert(std::make_pair(User, 8492 User->getOperand(1).getValueType())); 8493 } 8494 } 8495 } 8496 8497 for (unsigned i = 0, ie = PromOps.size(); i != ie; ++i) { 8498 for (SDNode::use_iterator UI = PromOps[i].getNode()->use_begin(), 8499 UE = PromOps[i].getNode()->use_end(); 8500 UI != UE; ++UI) { 8501 SDNode *User = *UI; 8502 if (User != N && !Visited.count(User)) 8503 return SDValue(); 8504 8505 // If we're going to promote the non-output-value operand(s) or SELECT or 8506 // SELECT_CC, record them for truncation. 8507 if (User->getOpcode() == ISD::SELECT) { 8508 if (User->getOperand(0) == PromOps[i]) 8509 SelectTruncOp[0].insert(std::make_pair(User, 8510 User->getOperand(0).getValueType())); 8511 } else if (User->getOpcode() == ISD::SELECT_CC) { 8512 if (User->getOperand(0) == PromOps[i]) 8513 SelectTruncOp[0].insert(std::make_pair(User, 8514 User->getOperand(0).getValueType())); 8515 if (User->getOperand(1) == PromOps[i]) 8516 SelectTruncOp[1].insert(std::make_pair(User, 8517 User->getOperand(1).getValueType())); 8518 } 8519 } 8520 } 8521 8522 unsigned PromBits = N->getOperand(0).getValueSizeInBits(); 8523 bool ReallyNeedsExt = false; 8524 if (N->getOpcode() != ISD::ANY_EXTEND) { 8525 // If all of the inputs are not already sign/zero extended, then 8526 // we'll still need to do that at the end. 8527 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 8528 if (isa<ConstantSDNode>(Inputs[i])) 8529 continue; 8530 8531 unsigned OpBits = 8532 Inputs[i].getOperand(0).getValueSizeInBits(); 8533 assert(PromBits < OpBits && "Truncation not to a smaller bit count?"); 8534 8535 if ((N->getOpcode() == ISD::ZERO_EXTEND && 8536 !DAG.MaskedValueIsZero(Inputs[i].getOperand(0), 8537 APInt::getHighBitsSet(OpBits, 8538 OpBits-PromBits))) || 8539 (N->getOpcode() == ISD::SIGN_EXTEND && 8540 DAG.ComputeNumSignBits(Inputs[i].getOperand(0)) < 8541 (OpBits-(PromBits-1)))) { 8542 ReallyNeedsExt = true; 8543 break; 8544 } 8545 } 8546 } 8547 8548 // Replace all inputs, either with the truncation operand, or a 8549 // truncation or extension to the final output type. 8550 for (unsigned i = 0, ie = Inputs.size(); i != ie; ++i) { 8551 // Constant inputs need to be replaced with the to-be-promoted nodes that 8552 // use them because they might have users outside of the cluster of 8553 // promoted nodes. 8554 if (isa<ConstantSDNode>(Inputs[i])) 8555 continue; 8556 8557 SDValue InSrc = Inputs[i].getOperand(0); 8558 if (Inputs[i].getValueType() == N->getValueType(0)) 8559 DAG.ReplaceAllUsesOfValueWith(Inputs[i], InSrc); 8560 else if (N->getOpcode() == ISD::SIGN_EXTEND) 8561 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 8562 DAG.getSExtOrTrunc(InSrc, dl, N->getValueType(0))); 8563 else if (N->getOpcode() == ISD::ZERO_EXTEND) 8564 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 8565 DAG.getZExtOrTrunc(InSrc, dl, N->getValueType(0))); 8566 else 8567 DAG.ReplaceAllUsesOfValueWith(Inputs[i], 8568 DAG.getAnyExtOrTrunc(InSrc, dl, N->getValueType(0))); 8569 } 8570 8571 // Replace all operations (these are all the same, but have a different 8572 // (promoted) return type). DAG.getNode will validate that the types of 8573 // a binary operator match, so go through the list in reverse so that 8574 // we've likely promoted both operands first. 8575 while (!PromOps.empty()) { 8576 SDValue PromOp = PromOps.back(); 8577 PromOps.pop_back(); 8578 8579 unsigned C; 8580 switch (PromOp.getOpcode()) { 8581 default: C = 0; break; 8582 case ISD::SELECT: C = 1; break; 8583 case ISD::SELECT_CC: C = 2; break; 8584 } 8585 8586 if ((!isa<ConstantSDNode>(PromOp.getOperand(C)) && 8587 PromOp.getOperand(C).getValueType() != N->getValueType(0)) || 8588 (!isa<ConstantSDNode>(PromOp.getOperand(C+1)) && 8589 PromOp.getOperand(C+1).getValueType() != N->getValueType(0))) { 8590 // The to-be-promoted operands of this node have not yet been 8591 // promoted (this should be rare because we're going through the 8592 // list backward, but if one of the operands has several users in 8593 // this cluster of to-be-promoted nodes, it is possible). 8594 PromOps.insert(PromOps.begin(), PromOp); 8595 continue; 8596 } 8597 8598 // For SELECT and SELECT_CC nodes, we do a similar check for any 8599 // to-be-promoted comparison inputs. 8600 if (PromOp.getOpcode() == ISD::SELECT || 8601 PromOp.getOpcode() == ISD::SELECT_CC) { 8602 if ((SelectTruncOp[0].count(PromOp.getNode()) && 8603 PromOp.getOperand(0).getValueType() != N->getValueType(0)) || 8604 (SelectTruncOp[1].count(PromOp.getNode()) && 8605 PromOp.getOperand(1).getValueType() != N->getValueType(0))) { 8606 PromOps.insert(PromOps.begin(), PromOp); 8607 continue; 8608 } 8609 } 8610 8611 SmallVector<SDValue, 3> Ops(PromOp.getNode()->op_begin(), 8612 PromOp.getNode()->op_end()); 8613 8614 // If this node has constant inputs, then they'll need to be promoted here. 8615 for (unsigned i = 0; i < 2; ++i) { 8616 if (!isa<ConstantSDNode>(Ops[C+i])) 8617 continue; 8618 if (Ops[C+i].getValueType() == N->getValueType(0)) 8619 continue; 8620 8621 if (N->getOpcode() == ISD::SIGN_EXTEND) 8622 Ops[C+i] = DAG.getSExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 8623 else if (N->getOpcode() == ISD::ZERO_EXTEND) 8624 Ops[C+i] = DAG.getZExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 8625 else 8626 Ops[C+i] = DAG.getAnyExtOrTrunc(Ops[C+i], dl, N->getValueType(0)); 8627 } 8628 8629 // If we've promoted the comparison inputs of a SELECT or SELECT_CC, 8630 // truncate them again to the original value type. 8631 if (PromOp.getOpcode() == ISD::SELECT || 8632 PromOp.getOpcode() == ISD::SELECT_CC) { 8633 auto SI0 = SelectTruncOp[0].find(PromOp.getNode()); 8634 if (SI0 != SelectTruncOp[0].end()) 8635 Ops[0] = DAG.getNode(ISD::TRUNCATE, dl, SI0->second, Ops[0]); 8636 auto SI1 = SelectTruncOp[1].find(PromOp.getNode()); 8637 if (SI1 != SelectTruncOp[1].end()) 8638 Ops[1] = DAG.getNode(ISD::TRUNCATE, dl, SI1->second, Ops[1]); 8639 } 8640 8641 DAG.ReplaceAllUsesOfValueWith(PromOp, 8642 DAG.getNode(PromOp.getOpcode(), dl, N->getValueType(0), Ops)); 8643 } 8644 8645 // Now we're left with the initial extension itself. 8646 if (!ReallyNeedsExt) 8647 return N->getOperand(0); 8648 8649 // To zero extend, just mask off everything except for the first bit (in the 8650 // i1 case). 8651 if (N->getOpcode() == ISD::ZERO_EXTEND) 8652 return DAG.getNode(ISD::AND, dl, N->getValueType(0), N->getOperand(0), 8653 DAG.getConstant(APInt::getLowBitsSet( 8654 N->getValueSizeInBits(0), PromBits), 8655 N->getValueType(0))); 8656 8657 assert(N->getOpcode() == ISD::SIGN_EXTEND && 8658 "Invalid extension type"); 8659 EVT ShiftAmountTy = getShiftAmountTy(N->getValueType(0)); 8660 SDValue ShiftCst = 8661 DAG.getConstant(N->getValueSizeInBits(0)-PromBits, ShiftAmountTy); 8662 return DAG.getNode(ISD::SRA, dl, N->getValueType(0), 8663 DAG.getNode(ISD::SHL, dl, N->getValueType(0), 8664 N->getOperand(0), ShiftCst), ShiftCst); 8665 } 8666 8667 SDValue PPCTargetLowering::combineFPToIntToFP(SDNode *N, 8668 DAGCombinerInfo &DCI) const { 8669 assert((N->getOpcode() == ISD::SINT_TO_FP || 8670 N->getOpcode() == ISD::UINT_TO_FP) && 8671 "Need an int -> FP conversion node here"); 8672 8673 if (!Subtarget.has64BitSupport()) 8674 return SDValue(); 8675 8676 SelectionDAG &DAG = DCI.DAG; 8677 SDLoc dl(N); 8678 SDValue Op(N, 0); 8679 8680 // Don't handle ppc_fp128 here or i1 conversions. 8681 if (Op.getValueType() != MVT::f32 && Op.getValueType() != MVT::f64) 8682 return SDValue(); 8683 if (Op.getOperand(0).getValueType() == MVT::i1) 8684 return SDValue(); 8685 8686 // For i32 intermediate values, unfortunately, the conversion functions 8687 // leave the upper 32 bits of the value are undefined. Within the set of 8688 // scalar instructions, we have no method for zero- or sign-extending the 8689 // value. Thus, we cannot handle i32 intermediate values here. 8690 if (Op.getOperand(0).getValueType() == MVT::i32) 8691 return SDValue(); 8692 8693 assert((Op.getOpcode() == ISD::SINT_TO_FP || Subtarget.hasFPCVT()) && 8694 "UINT_TO_FP is supported only with FPCVT"); 8695 8696 // If we have FCFIDS, then use it when converting to single-precision. 8697 // Otherwise, convert to double-precision and then round. 8698 unsigned FCFOp = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ? 8699 (Op.getOpcode() == ISD::UINT_TO_FP ? 8700 PPCISD::FCFIDUS : PPCISD::FCFIDS) : 8701 (Op.getOpcode() == ISD::UINT_TO_FP ? 8702 PPCISD::FCFIDU : PPCISD::FCFID); 8703 MVT FCFTy = (Subtarget.hasFPCVT() && Op.getValueType() == MVT::f32) ? 8704 MVT::f32 : MVT::f64; 8705 8706 // If we're converting from a float, to an int, and back to a float again, 8707 // then we don't need the store/load pair at all. 8708 if ((Op.getOperand(0).getOpcode() == ISD::FP_TO_UINT && 8709 Subtarget.hasFPCVT()) || 8710 (Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT)) { 8711 SDValue Src = Op.getOperand(0).getOperand(0); 8712 if (Src.getValueType() == MVT::f32) { 8713 Src = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Src); 8714 DCI.AddToWorklist(Src.getNode()); 8715 } 8716 8717 unsigned FCTOp = 8718 Op.getOperand(0).getOpcode() == ISD::FP_TO_SINT ? PPCISD::FCTIDZ : 8719 PPCISD::FCTIDUZ; 8720 8721 SDValue Tmp = DAG.getNode(FCTOp, dl, MVT::f64, Src); 8722 SDValue FP = DAG.getNode(FCFOp, dl, FCFTy, Tmp); 8723 8724 if (Op.getValueType() == MVT::f32 && !Subtarget.hasFPCVT()) { 8725 FP = DAG.getNode(ISD::FP_ROUND, dl, 8726 MVT::f32, FP, DAG.getIntPtrConstant(0)); 8727 DCI.AddToWorklist(FP.getNode()); 8728 } 8729 8730 return FP; 8731 } 8732 8733 return SDValue(); 8734 } 8735 8736 // expandVSXLoadForLE - Convert VSX loads (which may be intrinsics for 8737 // builtins) into loads with swaps. 8738 SDValue PPCTargetLowering::expandVSXLoadForLE(SDNode *N, 8739 DAGCombinerInfo &DCI) const { 8740 SelectionDAG &DAG = DCI.DAG; 8741 SDLoc dl(N); 8742 SDValue Chain; 8743 SDValue Base; 8744 MachineMemOperand *MMO; 8745 8746 switch (N->getOpcode()) { 8747 default: 8748 llvm_unreachable("Unexpected opcode for little endian VSX load"); 8749 case ISD::LOAD: { 8750 LoadSDNode *LD = cast<LoadSDNode>(N); 8751 Chain = LD->getChain(); 8752 Base = LD->getBasePtr(); 8753 MMO = LD->getMemOperand(); 8754 // If the MMO suggests this isn't a load of a full vector, leave 8755 // things alone. For a built-in, we have to make the change for 8756 // correctness, so if there is a size problem that will be a bug. 8757 if (MMO->getSize() < 16) 8758 return SDValue(); 8759 break; 8760 } 8761 case ISD::INTRINSIC_W_CHAIN: { 8762 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N); 8763 Chain = Intrin->getChain(); 8764 Base = Intrin->getBasePtr(); 8765 MMO = Intrin->getMemOperand(); 8766 break; 8767 } 8768 } 8769 8770 MVT VecTy = N->getValueType(0).getSimpleVT(); 8771 SDValue LoadOps[] = { Chain, Base }; 8772 SDValue Load = DAG.getMemIntrinsicNode(PPCISD::LXVD2X, dl, 8773 DAG.getVTList(VecTy, MVT::Other), 8774 LoadOps, VecTy, MMO); 8775 DCI.AddToWorklist(Load.getNode()); 8776 Chain = Load.getValue(1); 8777 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl, 8778 DAG.getVTList(VecTy, MVT::Other), Chain, Load); 8779 DCI.AddToWorklist(Swap.getNode()); 8780 return Swap; 8781 } 8782 8783 // expandVSXStoreForLE - Convert VSX stores (which may be intrinsics for 8784 // builtins) into stores with swaps. 8785 SDValue PPCTargetLowering::expandVSXStoreForLE(SDNode *N, 8786 DAGCombinerInfo &DCI) const { 8787 SelectionDAG &DAG = DCI.DAG; 8788 SDLoc dl(N); 8789 SDValue Chain; 8790 SDValue Base; 8791 unsigned SrcOpnd; 8792 MachineMemOperand *MMO; 8793 8794 switch (N->getOpcode()) { 8795 default: 8796 llvm_unreachable("Unexpected opcode for little endian VSX store"); 8797 case ISD::STORE: { 8798 StoreSDNode *ST = cast<StoreSDNode>(N); 8799 Chain = ST->getChain(); 8800 Base = ST->getBasePtr(); 8801 MMO = ST->getMemOperand(); 8802 SrcOpnd = 1; 8803 // If the MMO suggests this isn't a store of a full vector, leave 8804 // things alone. For a built-in, we have to make the change for 8805 // correctness, so if there is a size problem that will be a bug. 8806 if (MMO->getSize() < 16) 8807 return SDValue(); 8808 break; 8809 } 8810 case ISD::INTRINSIC_VOID: { 8811 MemIntrinsicSDNode *Intrin = cast<MemIntrinsicSDNode>(N); 8812 Chain = Intrin->getChain(); 8813 // Intrin->getBasePtr() oddly does not get what we want. 8814 Base = Intrin->getOperand(3); 8815 MMO = Intrin->getMemOperand(); 8816 SrcOpnd = 2; 8817 break; 8818 } 8819 } 8820 8821 SDValue Src = N->getOperand(SrcOpnd); 8822 MVT VecTy = Src.getValueType().getSimpleVT(); 8823 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl, 8824 DAG.getVTList(VecTy, MVT::Other), Chain, Src); 8825 DCI.AddToWorklist(Swap.getNode()); 8826 Chain = Swap.getValue(1); 8827 SDValue StoreOps[] = { Chain, Swap, Base }; 8828 SDValue Store = DAG.getMemIntrinsicNode(PPCISD::STXVD2X, dl, 8829 DAG.getVTList(MVT::Other), 8830 StoreOps, VecTy, MMO); 8831 DCI.AddToWorklist(Store.getNode()); 8832 return Store; 8833 } 8834 8835 SDValue PPCTargetLowering::PerformDAGCombine(SDNode *N, 8836 DAGCombinerInfo &DCI) const { 8837 const TargetMachine &TM = getTargetMachine(); 8838 SelectionDAG &DAG = DCI.DAG; 8839 SDLoc dl(N); 8840 switch (N->getOpcode()) { 8841 default: break; 8842 case PPCISD::SHL: 8843 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 8844 if (C->isNullValue()) // 0 << V -> 0. 8845 return N->getOperand(0); 8846 } 8847 break; 8848 case PPCISD::SRL: 8849 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 8850 if (C->isNullValue()) // 0 >>u V -> 0. 8851 return N->getOperand(0); 8852 } 8853 break; 8854 case PPCISD::SRA: 8855 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(0))) { 8856 if (C->isNullValue() || // 0 >>s V -> 0. 8857 C->isAllOnesValue()) // -1 >>s V -> -1. 8858 return N->getOperand(0); 8859 } 8860 break; 8861 case ISD::SIGN_EXTEND: 8862 case ISD::ZERO_EXTEND: 8863 case ISD::ANY_EXTEND: 8864 return DAGCombineExtBoolTrunc(N, DCI); 8865 case ISD::TRUNCATE: 8866 case ISD::SETCC: 8867 case ISD::SELECT_CC: 8868 return DAGCombineTruncBoolExt(N, DCI); 8869 case ISD::SINT_TO_FP: 8870 case ISD::UINT_TO_FP: 8871 return combineFPToIntToFP(N, DCI); 8872 case ISD::STORE: { 8873 // Turn STORE (FP_TO_SINT F) -> STFIWX(FCTIWZ(F)). 8874 if (TM.getSubtarget<PPCSubtarget>().hasSTFIWX() && 8875 !cast<StoreSDNode>(N)->isTruncatingStore() && 8876 N->getOperand(1).getOpcode() == ISD::FP_TO_SINT && 8877 N->getOperand(1).getValueType() == MVT::i32 && 8878 N->getOperand(1).getOperand(0).getValueType() != MVT::ppcf128) { 8879 SDValue Val = N->getOperand(1).getOperand(0); 8880 if (Val.getValueType() == MVT::f32) { 8881 Val = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Val); 8882 DCI.AddToWorklist(Val.getNode()); 8883 } 8884 Val = DAG.getNode(PPCISD::FCTIWZ, dl, MVT::f64, Val); 8885 DCI.AddToWorklist(Val.getNode()); 8886 8887 SDValue Ops[] = { 8888 N->getOperand(0), Val, N->getOperand(2), 8889 DAG.getValueType(N->getOperand(1).getValueType()) 8890 }; 8891 8892 Val = DAG.getMemIntrinsicNode(PPCISD::STFIWX, dl, 8893 DAG.getVTList(MVT::Other), Ops, 8894 cast<StoreSDNode>(N)->getMemoryVT(), 8895 cast<StoreSDNode>(N)->getMemOperand()); 8896 DCI.AddToWorklist(Val.getNode()); 8897 return Val; 8898 } 8899 8900 // Turn STORE (BSWAP) -> sthbrx/stwbrx. 8901 if (cast<StoreSDNode>(N)->isUnindexed() && 8902 N->getOperand(1).getOpcode() == ISD::BSWAP && 8903 N->getOperand(1).getNode()->hasOneUse() && 8904 (N->getOperand(1).getValueType() == MVT::i32 || 8905 N->getOperand(1).getValueType() == MVT::i16 || 8906 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() && 8907 TM.getSubtarget<PPCSubtarget>().isPPC64() && 8908 N->getOperand(1).getValueType() == MVT::i64))) { 8909 SDValue BSwapOp = N->getOperand(1).getOperand(0); 8910 // Do an any-extend to 32-bits if this is a half-word input. 8911 if (BSwapOp.getValueType() == MVT::i16) 8912 BSwapOp = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, BSwapOp); 8913 8914 SDValue Ops[] = { 8915 N->getOperand(0), BSwapOp, N->getOperand(2), 8916 DAG.getValueType(N->getOperand(1).getValueType()) 8917 }; 8918 return 8919 DAG.getMemIntrinsicNode(PPCISD::STBRX, dl, DAG.getVTList(MVT::Other), 8920 Ops, cast<StoreSDNode>(N)->getMemoryVT(), 8921 cast<StoreSDNode>(N)->getMemOperand()); 8922 } 8923 8924 // For little endian, VSX stores require generating xxswapd/lxvd2x. 8925 EVT VT = N->getOperand(1).getValueType(); 8926 if (VT.isSimple()) { 8927 MVT StoreVT = VT.getSimpleVT(); 8928 if (TM.getSubtarget<PPCSubtarget>().hasVSX() && 8929 TM.getSubtarget<PPCSubtarget>().isLittleEndian() && 8930 (StoreVT == MVT::v2f64 || StoreVT == MVT::v2i64 || 8931 StoreVT == MVT::v4f32 || StoreVT == MVT::v4i32)) 8932 return expandVSXStoreForLE(N, DCI); 8933 } 8934 break; 8935 } 8936 case ISD::LOAD: { 8937 LoadSDNode *LD = cast<LoadSDNode>(N); 8938 EVT VT = LD->getValueType(0); 8939 8940 // For little endian, VSX loads require generating lxvd2x/xxswapd. 8941 if (VT.isSimple()) { 8942 MVT LoadVT = VT.getSimpleVT(); 8943 if (TM.getSubtarget<PPCSubtarget>().hasVSX() && 8944 TM.getSubtarget<PPCSubtarget>().isLittleEndian() && 8945 (LoadVT == MVT::v2f64 || LoadVT == MVT::v2i64 || 8946 LoadVT == MVT::v4f32 || LoadVT == MVT::v4i32)) 8947 return expandVSXLoadForLE(N, DCI); 8948 } 8949 8950 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext()); 8951 unsigned ABIAlignment = getDataLayout()->getABITypeAlignment(Ty); 8952 if (ISD::isNON_EXTLoad(N) && VT.isVector() && 8953 TM.getSubtarget<PPCSubtarget>().hasAltivec() && 8954 // P8 and later hardware should just use LOAD. 8955 !TM.getSubtarget<PPCSubtarget>().hasP8Vector() && 8956 (VT == MVT::v16i8 || VT == MVT::v8i16 || 8957 VT == MVT::v4i32 || VT == MVT::v4f32) && 8958 LD->getAlignment() < ABIAlignment) { 8959 // This is a type-legal unaligned Altivec load. 8960 SDValue Chain = LD->getChain(); 8961 SDValue Ptr = LD->getBasePtr(); 8962 bool isLittleEndian = Subtarget.isLittleEndian(); 8963 8964 // This implements the loading of unaligned vectors as described in 8965 // the venerable Apple Velocity Engine overview. Specifically: 8966 // https://developer.apple.com/hardwaredrivers/ve/alignment.html 8967 // https://developer.apple.com/hardwaredrivers/ve/code_optimization.html 8968 // 8969 // The general idea is to expand a sequence of one or more unaligned 8970 // loads into an alignment-based permutation-control instruction (lvsl 8971 // or lvsr), a series of regular vector loads (which always truncate 8972 // their input address to an aligned address), and a series of 8973 // permutations. The results of these permutations are the requested 8974 // loaded values. The trick is that the last "extra" load is not taken 8975 // from the address you might suspect (sizeof(vector) bytes after the 8976 // last requested load), but rather sizeof(vector) - 1 bytes after the 8977 // last requested vector. The point of this is to avoid a page fault if 8978 // the base address happened to be aligned. This works because if the 8979 // base address is aligned, then adding less than a full vector length 8980 // will cause the last vector in the sequence to be (re)loaded. 8981 // Otherwise, the next vector will be fetched as you might suspect was 8982 // necessary. 8983 8984 // We might be able to reuse the permutation generation from 8985 // a different base address offset from this one by an aligned amount. 8986 // The INTRINSIC_WO_CHAIN DAG combine will attempt to perform this 8987 // optimization later. 8988 Intrinsic::ID Intr = (isLittleEndian ? 8989 Intrinsic::ppc_altivec_lvsr : 8990 Intrinsic::ppc_altivec_lvsl); 8991 SDValue PermCntl = BuildIntrinsicOp(Intr, Ptr, DAG, dl, MVT::v16i8); 8992 8993 // Create the new MMO for the new base load. It is like the original MMO, 8994 // but represents an area in memory almost twice the vector size centered 8995 // on the original address. If the address is unaligned, we might start 8996 // reading up to (sizeof(vector)-1) bytes below the address of the 8997 // original unaligned load. 8998 MachineFunction &MF = DAG.getMachineFunction(); 8999 MachineMemOperand *BaseMMO = 9000 MF.getMachineMemOperand(LD->getMemOperand(), 9001 -LD->getMemoryVT().getStoreSize()+1, 9002 2*LD->getMemoryVT().getStoreSize()-1); 9003 9004 // Create the new base load. 9005 SDValue LDXIntID = DAG.getTargetConstant(Intrinsic::ppc_altivec_lvx, 9006 getPointerTy()); 9007 SDValue BaseLoadOps[] = { Chain, LDXIntID, Ptr }; 9008 SDValue BaseLoad = 9009 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl, 9010 DAG.getVTList(MVT::v4i32, MVT::Other), 9011 BaseLoadOps, MVT::v4i32, BaseMMO); 9012 9013 // Note that the value of IncOffset (which is provided to the next 9014 // load's pointer info offset value, and thus used to calculate the 9015 // alignment), and the value of IncValue (which is actually used to 9016 // increment the pointer value) are different! This is because we 9017 // require the next load to appear to be aligned, even though it 9018 // is actually offset from the base pointer by a lesser amount. 9019 int IncOffset = VT.getSizeInBits() / 8; 9020 int IncValue = IncOffset; 9021 9022 // Walk (both up and down) the chain looking for another load at the real 9023 // (aligned) offset (the alignment of the other load does not matter in 9024 // this case). If found, then do not use the offset reduction trick, as 9025 // that will prevent the loads from being later combined (as they would 9026 // otherwise be duplicates). 9027 if (!findConsecutiveLoad(LD, DAG)) 9028 --IncValue; 9029 9030 SDValue Increment = DAG.getConstant(IncValue, getPointerTy()); 9031 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); 9032 9033 MachineMemOperand *ExtraMMO = 9034 MF.getMachineMemOperand(LD->getMemOperand(), 9035 1, 2*LD->getMemoryVT().getStoreSize()-1); 9036 SDValue ExtraLoadOps[] = { Chain, LDXIntID, Ptr }; 9037 SDValue ExtraLoad = 9038 DAG.getMemIntrinsicNode(ISD::INTRINSIC_W_CHAIN, dl, 9039 DAG.getVTList(MVT::v4i32, MVT::Other), 9040 ExtraLoadOps, MVT::v4i32, ExtraMMO); 9041 9042 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 9043 BaseLoad.getValue(1), ExtraLoad.getValue(1)); 9044 9045 // Because vperm has a big-endian bias, we must reverse the order 9046 // of the input vectors and complement the permute control vector 9047 // when generating little endian code. We have already handled the 9048 // latter by using lvsr instead of lvsl, so just reverse BaseLoad 9049 // and ExtraLoad here. 9050 SDValue Perm; 9051 if (isLittleEndian) 9052 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm, 9053 ExtraLoad, BaseLoad, PermCntl, DAG, dl); 9054 else 9055 Perm = BuildIntrinsicOp(Intrinsic::ppc_altivec_vperm, 9056 BaseLoad, ExtraLoad, PermCntl, DAG, dl); 9057 9058 if (VT != MVT::v4i32) 9059 Perm = DAG.getNode(ISD::BITCAST, dl, VT, Perm); 9060 9061 // The output of the permutation is our loaded result, the TokenFactor is 9062 // our new chain. 9063 DCI.CombineTo(N, Perm, TF); 9064 return SDValue(N, 0); 9065 } 9066 } 9067 break; 9068 case ISD::INTRINSIC_WO_CHAIN: { 9069 bool isLittleEndian = Subtarget.isLittleEndian(); 9070 Intrinsic::ID Intr = (isLittleEndian ? 9071 Intrinsic::ppc_altivec_lvsr : 9072 Intrinsic::ppc_altivec_lvsl); 9073 if (cast<ConstantSDNode>(N->getOperand(0))->getZExtValue() == Intr && 9074 N->getOperand(1)->getOpcode() == ISD::ADD) { 9075 SDValue Add = N->getOperand(1); 9076 9077 if (DAG.MaskedValueIsZero(Add->getOperand(1), 9078 APInt::getAllOnesValue(4 /* 16 byte alignment */).zext( 9079 Add.getValueType().getScalarType().getSizeInBits()))) { 9080 SDNode *BasePtr = Add->getOperand(0).getNode(); 9081 for (SDNode::use_iterator UI = BasePtr->use_begin(), 9082 UE = BasePtr->use_end(); UI != UE; ++UI) { 9083 if (UI->getOpcode() == ISD::INTRINSIC_WO_CHAIN && 9084 cast<ConstantSDNode>(UI->getOperand(0))->getZExtValue() == 9085 Intr) { 9086 // We've found another LVSL/LVSR, and this address is an aligned 9087 // multiple of that one. The results will be the same, so use the 9088 // one we've just found instead. 9089 9090 return SDValue(*UI, 0); 9091 } 9092 } 9093 } 9094 } 9095 } 9096 9097 break; 9098 case ISD::INTRINSIC_W_CHAIN: { 9099 // For little endian, VSX loads require generating lxvd2x/xxswapd. 9100 if (TM.getSubtarget<PPCSubtarget>().hasVSX() && 9101 TM.getSubtarget<PPCSubtarget>().isLittleEndian()) { 9102 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 9103 default: 9104 break; 9105 case Intrinsic::ppc_vsx_lxvw4x: 9106 case Intrinsic::ppc_vsx_lxvd2x: 9107 return expandVSXLoadForLE(N, DCI); 9108 } 9109 } 9110 break; 9111 } 9112 case ISD::INTRINSIC_VOID: { 9113 // For little endian, VSX stores require generating xxswapd/stxvd2x. 9114 if (TM.getSubtarget<PPCSubtarget>().hasVSX() && 9115 TM.getSubtarget<PPCSubtarget>().isLittleEndian()) { 9116 switch (cast<ConstantSDNode>(N->getOperand(1))->getZExtValue()) { 9117 default: 9118 break; 9119 case Intrinsic::ppc_vsx_stxvw4x: 9120 case Intrinsic::ppc_vsx_stxvd2x: 9121 return expandVSXStoreForLE(N, DCI); 9122 } 9123 } 9124 break; 9125 } 9126 case ISD::BSWAP: 9127 // Turn BSWAP (LOAD) -> lhbrx/lwbrx. 9128 if (ISD::isNON_EXTLoad(N->getOperand(0).getNode()) && 9129 N->getOperand(0).hasOneUse() && 9130 (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i16 || 9131 (TM.getSubtarget<PPCSubtarget>().hasLDBRX() && 9132 TM.getSubtarget<PPCSubtarget>().isPPC64() && 9133 N->getValueType(0) == MVT::i64))) { 9134 SDValue Load = N->getOperand(0); 9135 LoadSDNode *LD = cast<LoadSDNode>(Load); 9136 // Create the byte-swapping load. 9137 SDValue Ops[] = { 9138 LD->getChain(), // Chain 9139 LD->getBasePtr(), // Ptr 9140 DAG.getValueType(N->getValueType(0)) // VT 9141 }; 9142 SDValue BSLoad = 9143 DAG.getMemIntrinsicNode(PPCISD::LBRX, dl, 9144 DAG.getVTList(N->getValueType(0) == MVT::i64 ? 9145 MVT::i64 : MVT::i32, MVT::Other), 9146 Ops, LD->getMemoryVT(), LD->getMemOperand()); 9147 9148 // If this is an i16 load, insert the truncate. 9149 SDValue ResVal = BSLoad; 9150 if (N->getValueType(0) == MVT::i16) 9151 ResVal = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, BSLoad); 9152 9153 // First, combine the bswap away. This makes the value produced by the 9154 // load dead. 9155 DCI.CombineTo(N, ResVal); 9156 9157 // Next, combine the load away, we give it a bogus result value but a real 9158 // chain result. The result value is dead because the bswap is dead. 9159 DCI.CombineTo(Load.getNode(), ResVal, BSLoad.getValue(1)); 9160 9161 // Return N so it doesn't get rechecked! 9162 return SDValue(N, 0); 9163 } 9164 9165 break; 9166 case PPCISD::VCMP: { 9167 // If a VCMPo node already exists with exactly the same operands as this 9168 // node, use its result instead of this node (VCMPo computes both a CR6 and 9169 // a normal output). 9170 // 9171 if (!N->getOperand(0).hasOneUse() && 9172 !N->getOperand(1).hasOneUse() && 9173 !N->getOperand(2).hasOneUse()) { 9174 9175 // Scan all of the users of the LHS, looking for VCMPo's that match. 9176 SDNode *VCMPoNode = nullptr; 9177 9178 SDNode *LHSN = N->getOperand(0).getNode(); 9179 for (SDNode::use_iterator UI = LHSN->use_begin(), E = LHSN->use_end(); 9180 UI != E; ++UI) 9181 if (UI->getOpcode() == PPCISD::VCMPo && 9182 UI->getOperand(1) == N->getOperand(1) && 9183 UI->getOperand(2) == N->getOperand(2) && 9184 UI->getOperand(0) == N->getOperand(0)) { 9185 VCMPoNode = *UI; 9186 break; 9187 } 9188 9189 // If there is no VCMPo node, or if the flag value has a single use, don't 9190 // transform this. 9191 if (!VCMPoNode || VCMPoNode->hasNUsesOfValue(0, 1)) 9192 break; 9193 9194 // Look at the (necessarily single) use of the flag value. If it has a 9195 // chain, this transformation is more complex. Note that multiple things 9196 // could use the value result, which we should ignore. 9197 SDNode *FlagUser = nullptr; 9198 for (SDNode::use_iterator UI = VCMPoNode->use_begin(); 9199 FlagUser == nullptr; ++UI) { 9200 assert(UI != VCMPoNode->use_end() && "Didn't find user!"); 9201 SDNode *User = *UI; 9202 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) { 9203 if (User->getOperand(i) == SDValue(VCMPoNode, 1)) { 9204 FlagUser = User; 9205 break; 9206 } 9207 } 9208 } 9209 9210 // If the user is a MFOCRF instruction, we know this is safe. 9211 // Otherwise we give up for right now. 9212 if (FlagUser->getOpcode() == PPCISD::MFOCRF) 9213 return SDValue(VCMPoNode, 0); 9214 } 9215 break; 9216 } 9217 case ISD::BRCOND: { 9218 SDValue Cond = N->getOperand(1); 9219 SDValue Target = N->getOperand(2); 9220 9221 if (Cond.getOpcode() == ISD::INTRINSIC_W_CHAIN && 9222 cast<ConstantSDNode>(Cond.getOperand(1))->getZExtValue() == 9223 Intrinsic::ppc_is_decremented_ctr_nonzero) { 9224 9225 // We now need to make the intrinsic dead (it cannot be instruction 9226 // selected). 9227 DAG.ReplaceAllUsesOfValueWith(Cond.getValue(1), Cond.getOperand(0)); 9228 assert(Cond.getNode()->hasOneUse() && 9229 "Counter decrement has more than one use"); 9230 9231 return DAG.getNode(PPCISD::BDNZ, dl, MVT::Other, 9232 N->getOperand(0), Target); 9233 } 9234 } 9235 break; 9236 case ISD::BR_CC: { 9237 // If this is a branch on an altivec predicate comparison, lower this so 9238 // that we don't have to do a MFOCRF: instead, branch directly on CR6. This 9239 // lowering is done pre-legalize, because the legalizer lowers the predicate 9240 // compare down to code that is difficult to reassemble. 9241 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get(); 9242 SDValue LHS = N->getOperand(2), RHS = N->getOperand(3); 9243 9244 // Sometimes the promoted value of the intrinsic is ANDed by some non-zero 9245 // value. If so, pass-through the AND to get to the intrinsic. 9246 if (LHS.getOpcode() == ISD::AND && 9247 LHS.getOperand(0).getOpcode() == ISD::INTRINSIC_W_CHAIN && 9248 cast<ConstantSDNode>(LHS.getOperand(0).getOperand(1))->getZExtValue() == 9249 Intrinsic::ppc_is_decremented_ctr_nonzero && 9250 isa<ConstantSDNode>(LHS.getOperand(1)) && 9251 !cast<ConstantSDNode>(LHS.getOperand(1))->getConstantIntValue()-> 9252 isZero()) 9253 LHS = LHS.getOperand(0); 9254 9255 if (LHS.getOpcode() == ISD::INTRINSIC_W_CHAIN && 9256 cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() == 9257 Intrinsic::ppc_is_decremented_ctr_nonzero && 9258 isa<ConstantSDNode>(RHS)) { 9259 assert((CC == ISD::SETEQ || CC == ISD::SETNE) && 9260 "Counter decrement comparison is not EQ or NE"); 9261 9262 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue(); 9263 bool isBDNZ = (CC == ISD::SETEQ && Val) || 9264 (CC == ISD::SETNE && !Val); 9265 9266 // We now need to make the intrinsic dead (it cannot be instruction 9267 // selected). 9268 DAG.ReplaceAllUsesOfValueWith(LHS.getValue(1), LHS.getOperand(0)); 9269 assert(LHS.getNode()->hasOneUse() && 9270 "Counter decrement has more than one use"); 9271 9272 return DAG.getNode(isBDNZ ? PPCISD::BDNZ : PPCISD::BDZ, dl, MVT::Other, 9273 N->getOperand(0), N->getOperand(4)); 9274 } 9275 9276 int CompareOpc; 9277 bool isDot; 9278 9279 if (LHS.getOpcode() == ISD::INTRINSIC_WO_CHAIN && 9280 isa<ConstantSDNode>(RHS) && (CC == ISD::SETEQ || CC == ISD::SETNE) && 9281 getAltivecCompareInfo(LHS, CompareOpc, isDot)) { 9282 assert(isDot && "Can't compare against a vector result!"); 9283 9284 // If this is a comparison against something other than 0/1, then we know 9285 // that the condition is never/always true. 9286 unsigned Val = cast<ConstantSDNode>(RHS)->getZExtValue(); 9287 if (Val != 0 && Val != 1) { 9288 if (CC == ISD::SETEQ) // Cond never true, remove branch. 9289 return N->getOperand(0); 9290 // Always !=, turn it into an unconditional branch. 9291 return DAG.getNode(ISD::BR, dl, MVT::Other, 9292 N->getOperand(0), N->getOperand(4)); 9293 } 9294 9295 bool BranchOnWhenPredTrue = (CC == ISD::SETEQ) ^ (Val == 0); 9296 9297 // Create the PPCISD altivec 'dot' comparison node. 9298 SDValue Ops[] = { 9299 LHS.getOperand(2), // LHS of compare 9300 LHS.getOperand(3), // RHS of compare 9301 DAG.getConstant(CompareOpc, MVT::i32) 9302 }; 9303 EVT VTs[] = { LHS.getOperand(2).getValueType(), MVT::Glue }; 9304 SDValue CompNode = DAG.getNode(PPCISD::VCMPo, dl, VTs, Ops); 9305 9306 // Unpack the result based on how the target uses it. 9307 PPC::Predicate CompOpc; 9308 switch (cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue()) { 9309 default: // Can't happen, don't crash on invalid number though. 9310 case 0: // Branch on the value of the EQ bit of CR6. 9311 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_EQ : PPC::PRED_NE; 9312 break; 9313 case 1: // Branch on the inverted value of the EQ bit of CR6. 9314 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_NE : PPC::PRED_EQ; 9315 break; 9316 case 2: // Branch on the value of the LT bit of CR6. 9317 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_LT : PPC::PRED_GE; 9318 break; 9319 case 3: // Branch on the inverted value of the LT bit of CR6. 9320 CompOpc = BranchOnWhenPredTrue ? PPC::PRED_GE : PPC::PRED_LT; 9321 break; 9322 } 9323 9324 return DAG.getNode(PPCISD::COND_BRANCH, dl, MVT::Other, N->getOperand(0), 9325 DAG.getConstant(CompOpc, MVT::i32), 9326 DAG.getRegister(PPC::CR6, MVT::i32), 9327 N->getOperand(4), CompNode.getValue(1)); 9328 } 9329 break; 9330 } 9331 } 9332 9333 return SDValue(); 9334 } 9335 9336 SDValue 9337 PPCTargetLowering::BuildSDIVPow2(SDNode *N, const APInt &Divisor, 9338 SelectionDAG &DAG, 9339 std::vector<SDNode *> *Created) const { 9340 // fold (sdiv X, pow2) 9341 EVT VT = N->getValueType(0); 9342 if (VT == MVT::i64 && !Subtarget.isPPC64()) 9343 return SDValue(); 9344 if ((VT != MVT::i32 && VT != MVT::i64) || 9345 !(Divisor.isPowerOf2() || (-Divisor).isPowerOf2())) 9346 return SDValue(); 9347 9348 SDLoc DL(N); 9349 SDValue N0 = N->getOperand(0); 9350 9351 bool IsNegPow2 = (-Divisor).isPowerOf2(); 9352 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros(); 9353 SDValue ShiftAmt = DAG.getConstant(Lg2, VT); 9354 9355 SDValue Op = DAG.getNode(PPCISD::SRA_ADDZE, DL, VT, N0, ShiftAmt); 9356 if (Created) 9357 Created->push_back(Op.getNode()); 9358 9359 if (IsNegPow2) { 9360 Op = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), Op); 9361 if (Created) 9362 Created->push_back(Op.getNode()); 9363 } 9364 9365 return Op; 9366 } 9367 9368 //===----------------------------------------------------------------------===// 9369 // Inline Assembly Support 9370 //===----------------------------------------------------------------------===// 9371 9372 void PPCTargetLowering::computeKnownBitsForTargetNode(const SDValue Op, 9373 APInt &KnownZero, 9374 APInt &KnownOne, 9375 const SelectionDAG &DAG, 9376 unsigned Depth) const { 9377 KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0); 9378 switch (Op.getOpcode()) { 9379 default: break; 9380 case PPCISD::LBRX: { 9381 // lhbrx is known to have the top bits cleared out. 9382 if (cast<VTSDNode>(Op.getOperand(2))->getVT() == MVT::i16) 9383 KnownZero = 0xFFFF0000; 9384 break; 9385 } 9386 case ISD::INTRINSIC_WO_CHAIN: { 9387 switch (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue()) { 9388 default: break; 9389 case Intrinsic::ppc_altivec_vcmpbfp_p: 9390 case Intrinsic::ppc_altivec_vcmpeqfp_p: 9391 case Intrinsic::ppc_altivec_vcmpequb_p: 9392 case Intrinsic::ppc_altivec_vcmpequh_p: 9393 case Intrinsic::ppc_altivec_vcmpequw_p: 9394 case Intrinsic::ppc_altivec_vcmpgefp_p: 9395 case Intrinsic::ppc_altivec_vcmpgtfp_p: 9396 case Intrinsic::ppc_altivec_vcmpgtsb_p: 9397 case Intrinsic::ppc_altivec_vcmpgtsh_p: 9398 case Intrinsic::ppc_altivec_vcmpgtsw_p: 9399 case Intrinsic::ppc_altivec_vcmpgtub_p: 9400 case Intrinsic::ppc_altivec_vcmpgtuh_p: 9401 case Intrinsic::ppc_altivec_vcmpgtuw_p: 9402 KnownZero = ~1U; // All bits but the low one are known to be zero. 9403 break; 9404 } 9405 } 9406 } 9407 } 9408 9409 unsigned PPCTargetLowering::getPrefLoopAlignment(MachineLoop *ML) const { 9410 switch (Subtarget.getDarwinDirective()) { 9411 default: break; 9412 case PPC::DIR_970: 9413 case PPC::DIR_PWR4: 9414 case PPC::DIR_PWR5: 9415 case PPC::DIR_PWR5X: 9416 case PPC::DIR_PWR6: 9417 case PPC::DIR_PWR6X: 9418 case PPC::DIR_PWR7: 9419 case PPC::DIR_PWR8: { 9420 if (!ML) 9421 break; 9422 9423 const PPCInstrInfo *TII = 9424 static_cast<const PPCInstrInfo *>(getTargetMachine().getSubtargetImpl()-> 9425 getInstrInfo()); 9426 9427 // For small loops (between 5 and 8 instructions), align to a 32-byte 9428 // boundary so that the entire loop fits in one instruction-cache line. 9429 uint64_t LoopSize = 0; 9430 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I) 9431 for (auto J = (*I)->begin(), JE = (*I)->end(); J != JE; ++J) 9432 LoopSize += TII->GetInstSizeInBytes(J); 9433 9434 if (LoopSize > 16 && LoopSize <= 32) 9435 return 5; 9436 9437 break; 9438 } 9439 } 9440 9441 return TargetLowering::getPrefLoopAlignment(ML); 9442 } 9443 9444 /// getConstraintType - Given a constraint, return the type of 9445 /// constraint it is for this target. 9446 PPCTargetLowering::ConstraintType 9447 PPCTargetLowering::getConstraintType(const std::string &Constraint) const { 9448 if (Constraint.size() == 1) { 9449 switch (Constraint[0]) { 9450 default: break; 9451 case 'b': 9452 case 'r': 9453 case 'f': 9454 case 'v': 9455 case 'y': 9456 return C_RegisterClass; 9457 case 'Z': 9458 // FIXME: While Z does indicate a memory constraint, it specifically 9459 // indicates an r+r address (used in conjunction with the 'y' modifier 9460 // in the replacement string). Currently, we're forcing the base 9461 // register to be r0 in the asm printer (which is interpreted as zero) 9462 // and forming the complete address in the second register. This is 9463 // suboptimal. 9464 return C_Memory; 9465 } 9466 } else if (Constraint == "wc") { // individual CR bits. 9467 return C_RegisterClass; 9468 } else if (Constraint == "wa" || Constraint == "wd" || 9469 Constraint == "wf" || Constraint == "ws") { 9470 return C_RegisterClass; // VSX registers. 9471 } 9472 return TargetLowering::getConstraintType(Constraint); 9473 } 9474 9475 /// Examine constraint type and operand type and determine a weight value. 9476 /// This object must already have been set up with the operand type 9477 /// and the current alternative constraint selected. 9478 TargetLowering::ConstraintWeight 9479 PPCTargetLowering::getSingleConstraintMatchWeight( 9480 AsmOperandInfo &info, const char *constraint) const { 9481 ConstraintWeight weight = CW_Invalid; 9482 Value *CallOperandVal = info.CallOperandVal; 9483 // If we don't have a value, we can't do a match, 9484 // but allow it at the lowest weight. 9485 if (!CallOperandVal) 9486 return CW_Default; 9487 Type *type = CallOperandVal->getType(); 9488 9489 // Look at the constraint type. 9490 if (StringRef(constraint) == "wc" && type->isIntegerTy(1)) 9491 return CW_Register; // an individual CR bit. 9492 else if ((StringRef(constraint) == "wa" || 9493 StringRef(constraint) == "wd" || 9494 StringRef(constraint) == "wf") && 9495 type->isVectorTy()) 9496 return CW_Register; 9497 else if (StringRef(constraint) == "ws" && type->isDoubleTy()) 9498 return CW_Register; 9499 9500 switch (*constraint) { 9501 default: 9502 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint); 9503 break; 9504 case 'b': 9505 if (type->isIntegerTy()) 9506 weight = CW_Register; 9507 break; 9508 case 'f': 9509 if (type->isFloatTy()) 9510 weight = CW_Register; 9511 break; 9512 case 'd': 9513 if (type->isDoubleTy()) 9514 weight = CW_Register; 9515 break; 9516 case 'v': 9517 if (type->isVectorTy()) 9518 weight = CW_Register; 9519 break; 9520 case 'y': 9521 weight = CW_Register; 9522 break; 9523 case 'Z': 9524 weight = CW_Memory; 9525 break; 9526 } 9527 return weight; 9528 } 9529 9530 std::pair<unsigned, const TargetRegisterClass*> 9531 PPCTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, 9532 MVT VT) const { 9533 if (Constraint.size() == 1) { 9534 // GCC RS6000 Constraint Letters 9535 switch (Constraint[0]) { 9536 case 'b': // R1-R31 9537 if (VT == MVT::i64 && Subtarget.isPPC64()) 9538 return std::make_pair(0U, &PPC::G8RC_NOX0RegClass); 9539 return std::make_pair(0U, &PPC::GPRC_NOR0RegClass); 9540 case 'r': // R0-R31 9541 if (VT == MVT::i64 && Subtarget.isPPC64()) 9542 return std::make_pair(0U, &PPC::G8RCRegClass); 9543 return std::make_pair(0U, &PPC::GPRCRegClass); 9544 case 'f': 9545 if (VT == MVT::f32 || VT == MVT::i32) 9546 return std::make_pair(0U, &PPC::F4RCRegClass); 9547 if (VT == MVT::f64 || VT == MVT::i64) 9548 return std::make_pair(0U, &PPC::F8RCRegClass); 9549 break; 9550 case 'v': 9551 return std::make_pair(0U, &PPC::VRRCRegClass); 9552 case 'y': // crrc 9553 return std::make_pair(0U, &PPC::CRRCRegClass); 9554 } 9555 } else if (Constraint == "wc") { // an individual CR bit. 9556 return std::make_pair(0U, &PPC::CRBITRCRegClass); 9557 } else if (Constraint == "wa" || Constraint == "wd" || 9558 Constraint == "wf") { 9559 return std::make_pair(0U, &PPC::VSRCRegClass); 9560 } else if (Constraint == "ws") { 9561 return std::make_pair(0U, &PPC::VSFRCRegClass); 9562 } 9563 9564 std::pair<unsigned, const TargetRegisterClass*> R = 9565 TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); 9566 9567 // r[0-9]+ are used, on PPC64, to refer to the corresponding 64-bit registers 9568 // (which we call X[0-9]+). If a 64-bit value has been requested, and a 9569 // 32-bit GPR has been selected, then 'upgrade' it to the 64-bit parent 9570 // register. 9571 // FIXME: If TargetLowering::getRegForInlineAsmConstraint could somehow use 9572 // the AsmName field from *RegisterInfo.td, then this would not be necessary. 9573 if (R.first && VT == MVT::i64 && Subtarget.isPPC64() && 9574 PPC::GPRCRegClass.contains(R.first)) { 9575 const TargetRegisterInfo *TRI = 9576 getTargetMachine().getSubtargetImpl()->getRegisterInfo(); 9577 return std::make_pair(TRI->getMatchingSuperReg(R.first, 9578 PPC::sub_32, &PPC::G8RCRegClass), 9579 &PPC::G8RCRegClass); 9580 } 9581 9582 // GCC accepts 'cc' as an alias for 'cr0', and we need to do the same. 9583 if (!R.second && StringRef("{cc}").equals_lower(Constraint)) { 9584 R.first = PPC::CR0; 9585 R.second = &PPC::CRRCRegClass; 9586 } 9587 9588 return R; 9589 } 9590 9591 9592 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops 9593 /// vector. If it is invalid, don't add anything to Ops. 9594 void PPCTargetLowering::LowerAsmOperandForConstraint(SDValue Op, 9595 std::string &Constraint, 9596 std::vector<SDValue>&Ops, 9597 SelectionDAG &DAG) const { 9598 SDValue Result; 9599 9600 // Only support length 1 constraints. 9601 if (Constraint.length() > 1) return; 9602 9603 char Letter = Constraint[0]; 9604 switch (Letter) { 9605 default: break; 9606 case 'I': 9607 case 'J': 9608 case 'K': 9609 case 'L': 9610 case 'M': 9611 case 'N': 9612 case 'O': 9613 case 'P': { 9614 ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op); 9615 if (!CST) return; // Must be an immediate to match. 9616 int64_t Value = CST->getSExtValue(); 9617 EVT TCVT = MVT::i64; // All constants taken to be 64 bits so that negative 9618 // numbers are printed as such. 9619 switch (Letter) { 9620 default: llvm_unreachable("Unknown constraint letter!"); 9621 case 'I': // "I" is a signed 16-bit constant. 9622 if (isInt<16>(Value)) 9623 Result = DAG.getTargetConstant(Value, TCVT); 9624 break; 9625 case 'J': // "J" is a constant with only the high-order 16 bits nonzero. 9626 if (isShiftedUInt<16, 16>(Value)) 9627 Result = DAG.getTargetConstant(Value, TCVT); 9628 break; 9629 case 'L': // "L" is a signed 16-bit constant shifted left 16 bits. 9630 if (isShiftedInt<16, 16>(Value)) 9631 Result = DAG.getTargetConstant(Value, TCVT); 9632 break; 9633 case 'K': // "K" is a constant with only the low-order 16 bits nonzero. 9634 if (isUInt<16>(Value)) 9635 Result = DAG.getTargetConstant(Value, TCVT); 9636 break; 9637 case 'M': // "M" is a constant that is greater than 31. 9638 if (Value > 31) 9639 Result = DAG.getTargetConstant(Value, TCVT); 9640 break; 9641 case 'N': // "N" is a positive constant that is an exact power of two. 9642 if (Value > 0 && isPowerOf2_64(Value)) 9643 Result = DAG.getTargetConstant(Value, TCVT); 9644 break; 9645 case 'O': // "O" is the constant zero. 9646 if (Value == 0) 9647 Result = DAG.getTargetConstant(Value, TCVT); 9648 break; 9649 case 'P': // "P" is a constant whose negation is a signed 16-bit constant. 9650 if (isInt<16>(-Value)) 9651 Result = DAG.getTargetConstant(Value, TCVT); 9652 break; 9653 } 9654 break; 9655 } 9656 } 9657 9658 if (Result.getNode()) { 9659 Ops.push_back(Result); 9660 return; 9661 } 9662 9663 // Handle standard constraint letters. 9664 TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG); 9665 } 9666 9667 // isLegalAddressingMode - Return true if the addressing mode represented 9668 // by AM is legal for this target, for a load/store of the specified type. 9669 bool PPCTargetLowering::isLegalAddressingMode(const AddrMode &AM, 9670 Type *Ty) const { 9671 // FIXME: PPC does not allow r+i addressing modes for vectors! 9672 9673 // PPC allows a sign-extended 16-bit immediate field. 9674 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1) 9675 return false; 9676 9677 // No global is ever allowed as a base. 9678 if (AM.BaseGV) 9679 return false; 9680 9681 // PPC only support r+r, 9682 switch (AM.Scale) { 9683 case 0: // "r+i" or just "i", depending on HasBaseReg. 9684 break; 9685 case 1: 9686 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed. 9687 return false; 9688 // Otherwise we have r+r or r+i. 9689 break; 9690 case 2: 9691 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed. 9692 return false; 9693 // Allow 2*r as r+r. 9694 break; 9695 default: 9696 // No other scales are supported. 9697 return false; 9698 } 9699 9700 return true; 9701 } 9702 9703 SDValue PPCTargetLowering::LowerRETURNADDR(SDValue Op, 9704 SelectionDAG &DAG) const { 9705 MachineFunction &MF = DAG.getMachineFunction(); 9706 MachineFrameInfo *MFI = MF.getFrameInfo(); 9707 MFI->setReturnAddressIsTaken(true); 9708 9709 if (verifyReturnAddressArgumentIsConstant(Op, DAG)) 9710 return SDValue(); 9711 9712 SDLoc dl(Op); 9713 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 9714 9715 // Make sure the function does not optimize away the store of the RA to 9716 // the stack. 9717 PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>(); 9718 FuncInfo->setLRStoreRequired(); 9719 bool isPPC64 = Subtarget.isPPC64(); 9720 bool isDarwinABI = Subtarget.isDarwinABI(); 9721 9722 if (Depth > 0) { 9723 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG); 9724 SDValue Offset = 9725 9726 DAG.getConstant(PPCFrameLowering::getReturnSaveOffset(isPPC64, isDarwinABI), 9727 isPPC64? MVT::i64 : MVT::i32); 9728 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), 9729 DAG.getNode(ISD::ADD, dl, getPointerTy(), 9730 FrameAddr, Offset), 9731 MachinePointerInfo(), false, false, false, 0); 9732 } 9733 9734 // Just load the return address off the stack. 9735 SDValue RetAddrFI = getReturnAddrFrameIndex(DAG); 9736 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), 9737 RetAddrFI, MachinePointerInfo(), false, false, false, 0); 9738 } 9739 9740 SDValue PPCTargetLowering::LowerFRAMEADDR(SDValue Op, 9741 SelectionDAG &DAG) const { 9742 SDLoc dl(Op); 9743 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); 9744 9745 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy(); 9746 bool isPPC64 = PtrVT == MVT::i64; 9747 9748 MachineFunction &MF = DAG.getMachineFunction(); 9749 MachineFrameInfo *MFI = MF.getFrameInfo(); 9750 MFI->setFrameAddressIsTaken(true); 9751 9752 // Naked functions never have a frame pointer, and so we use r1. For all 9753 // other functions, this decision must be delayed until during PEI. 9754 unsigned FrameReg; 9755 if (MF.getFunction()->getAttributes().hasAttribute( 9756 AttributeSet::FunctionIndex, Attribute::Naked)) 9757 FrameReg = isPPC64 ? PPC::X1 : PPC::R1; 9758 else 9759 FrameReg = isPPC64 ? PPC::FP8 : PPC::FP; 9760 9761 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, 9762 PtrVT); 9763 while (Depth--) 9764 FrameAddr = DAG.getLoad(Op.getValueType(), dl, DAG.getEntryNode(), 9765 FrameAddr, MachinePointerInfo(), false, false, 9766 false, 0); 9767 return FrameAddr; 9768 } 9769 9770 // FIXME? Maybe this could be a TableGen attribute on some registers and 9771 // this table could be generated automatically from RegInfo. 9772 unsigned PPCTargetLowering::getRegisterByName(const char* RegName, 9773 EVT VT) const { 9774 bool isPPC64 = Subtarget.isPPC64(); 9775 bool isDarwinABI = Subtarget.isDarwinABI(); 9776 9777 if ((isPPC64 && VT != MVT::i64 && VT != MVT::i32) || 9778 (!isPPC64 && VT != MVT::i32)) 9779 report_fatal_error("Invalid register global variable type"); 9780 9781 bool is64Bit = isPPC64 && VT == MVT::i64; 9782 unsigned Reg = StringSwitch<unsigned>(RegName) 9783 .Case("r1", is64Bit ? PPC::X1 : PPC::R1) 9784 .Case("r2", isDarwinABI ? 0 : (is64Bit ? PPC::X2 : PPC::R2)) 9785 .Case("r13", (!isPPC64 && isDarwinABI) ? 0 : 9786 (is64Bit ? PPC::X13 : PPC::R13)) 9787 .Default(0); 9788 9789 if (Reg) 9790 return Reg; 9791 report_fatal_error("Invalid register name global variable"); 9792 } 9793 9794 bool 9795 PPCTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { 9796 // The PowerPC target isn't yet aware of offsets. 9797 return false; 9798 } 9799 9800 bool PPCTargetLowering::getTgtMemIntrinsic(IntrinsicInfo &Info, 9801 const CallInst &I, 9802 unsigned Intrinsic) const { 9803 9804 switch (Intrinsic) { 9805 case Intrinsic::ppc_altivec_lvx: 9806 case Intrinsic::ppc_altivec_lvxl: 9807 case Intrinsic::ppc_altivec_lvebx: 9808 case Intrinsic::ppc_altivec_lvehx: 9809 case Intrinsic::ppc_altivec_lvewx: 9810 case Intrinsic::ppc_vsx_lxvd2x: 9811 case Intrinsic::ppc_vsx_lxvw4x: { 9812 EVT VT; 9813 switch (Intrinsic) { 9814 case Intrinsic::ppc_altivec_lvebx: 9815 VT = MVT::i8; 9816 break; 9817 case Intrinsic::ppc_altivec_lvehx: 9818 VT = MVT::i16; 9819 break; 9820 case Intrinsic::ppc_altivec_lvewx: 9821 VT = MVT::i32; 9822 break; 9823 case Intrinsic::ppc_vsx_lxvd2x: 9824 VT = MVT::v2f64; 9825 break; 9826 default: 9827 VT = MVT::v4i32; 9828 break; 9829 } 9830 9831 Info.opc = ISD::INTRINSIC_W_CHAIN; 9832 Info.memVT = VT; 9833 Info.ptrVal = I.getArgOperand(0); 9834 Info.offset = -VT.getStoreSize()+1; 9835 Info.size = 2*VT.getStoreSize()-1; 9836 Info.align = 1; 9837 Info.vol = false; 9838 Info.readMem = true; 9839 Info.writeMem = false; 9840 return true; 9841 } 9842 case Intrinsic::ppc_altivec_stvx: 9843 case Intrinsic::ppc_altivec_stvxl: 9844 case Intrinsic::ppc_altivec_stvebx: 9845 case Intrinsic::ppc_altivec_stvehx: 9846 case Intrinsic::ppc_altivec_stvewx: 9847 case Intrinsic::ppc_vsx_stxvd2x: 9848 case Intrinsic::ppc_vsx_stxvw4x: { 9849 EVT VT; 9850 switch (Intrinsic) { 9851 case Intrinsic::ppc_altivec_stvebx: 9852 VT = MVT::i8; 9853 break; 9854 case Intrinsic::ppc_altivec_stvehx: 9855 VT = MVT::i16; 9856 break; 9857 case Intrinsic::ppc_altivec_stvewx: 9858 VT = MVT::i32; 9859 break; 9860 case Intrinsic::ppc_vsx_stxvd2x: 9861 VT = MVT::v2f64; 9862 break; 9863 default: 9864 VT = MVT::v4i32; 9865 break; 9866 } 9867 9868 Info.opc = ISD::INTRINSIC_VOID; 9869 Info.memVT = VT; 9870 Info.ptrVal = I.getArgOperand(1); 9871 Info.offset = -VT.getStoreSize()+1; 9872 Info.size = 2*VT.getStoreSize()-1; 9873 Info.align = 1; 9874 Info.vol = false; 9875 Info.readMem = false; 9876 Info.writeMem = true; 9877 return true; 9878 } 9879 default: 9880 break; 9881 } 9882 9883 return false; 9884 } 9885 9886 /// getOptimalMemOpType - Returns the target specific optimal type for load 9887 /// and store operations as a result of memset, memcpy, and memmove 9888 /// lowering. If DstAlign is zero that means it's safe to destination 9889 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it 9890 /// means there isn't a need to check it against alignment requirement, 9891 /// probably because the source does not need to be loaded. If 'IsMemset' is 9892 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that 9893 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy 9894 /// source is constant so it does not need to be loaded. 9895 /// It returns EVT::Other if the type should be determined using generic 9896 /// target-independent logic. 9897 EVT PPCTargetLowering::getOptimalMemOpType(uint64_t Size, 9898 unsigned DstAlign, unsigned SrcAlign, 9899 bool IsMemset, bool ZeroMemset, 9900 bool MemcpyStrSrc, 9901 MachineFunction &MF) const { 9902 if (Subtarget.isPPC64()) { 9903 return MVT::i64; 9904 } else { 9905 return MVT::i32; 9906 } 9907 } 9908 9909 /// \brief Returns true if it is beneficial to convert a load of a constant 9910 /// to just the constant itself. 9911 bool PPCTargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm, 9912 Type *Ty) const { 9913 assert(Ty->isIntegerTy()); 9914 9915 unsigned BitSize = Ty->getPrimitiveSizeInBits(); 9916 if (BitSize == 0 || BitSize > 64) 9917 return false; 9918 return true; 9919 } 9920 9921 bool PPCTargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const { 9922 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy()) 9923 return false; 9924 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits(); 9925 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits(); 9926 return NumBits1 == 64 && NumBits2 == 32; 9927 } 9928 9929 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { 9930 if (!VT1.isInteger() || !VT2.isInteger()) 9931 return false; 9932 unsigned NumBits1 = VT1.getSizeInBits(); 9933 unsigned NumBits2 = VT2.getSizeInBits(); 9934 return NumBits1 == 64 && NumBits2 == 32; 9935 } 9936 9937 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { 9938 // Generally speaking, zexts are not free, but they are free when they can be 9939 // folded with other operations. 9940 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Val)) { 9941 EVT MemVT = LD->getMemoryVT(); 9942 if ((MemVT == MVT::i1 || MemVT == MVT::i8 || MemVT == MVT::i16 || 9943 (Subtarget.isPPC64() && MemVT == MVT::i32)) && 9944 (LD->getExtensionType() == ISD::NON_EXTLOAD || 9945 LD->getExtensionType() == ISD::ZEXTLOAD)) 9946 return true; 9947 } 9948 9949 // FIXME: Add other cases... 9950 // - 32-bit shifts with a zext to i64 9951 // - zext after ctlz, bswap, etc. 9952 // - zext after and by a constant mask 9953 9954 return TargetLowering::isZExtFree(Val, VT2); 9955 } 9956 9957 bool PPCTargetLowering::isFPExtFree(EVT VT) const { 9958 assert(VT.isFloatingPoint()); 9959 return true; 9960 } 9961 9962 bool PPCTargetLowering::isLegalICmpImmediate(int64_t Imm) const { 9963 return isInt<16>(Imm) || isUInt<16>(Imm); 9964 } 9965 9966 bool PPCTargetLowering::isLegalAddImmediate(int64_t Imm) const { 9967 return isInt<16>(Imm) || isUInt<16>(Imm); 9968 } 9969 9970 bool PPCTargetLowering::allowsMisalignedMemoryAccesses(EVT VT, 9971 unsigned, 9972 unsigned, 9973 bool *Fast) const { 9974 if (DisablePPCUnaligned) 9975 return false; 9976 9977 // PowerPC supports unaligned memory access for simple non-vector types. 9978 // Although accessing unaligned addresses is not as efficient as accessing 9979 // aligned addresses, it is generally more efficient than manual expansion, 9980 // and generally only traps for software emulation when crossing page 9981 // boundaries. 9982 9983 if (!VT.isSimple()) 9984 return false; 9985 9986 if (VT.getSimpleVT().isVector()) { 9987 if (Subtarget.hasVSX()) { 9988 if (VT != MVT::v2f64 && VT != MVT::v2i64 && 9989 VT != MVT::v4f32 && VT != MVT::v4i32) 9990 return false; 9991 } else { 9992 return false; 9993 } 9994 } 9995 9996 if (VT == MVT::ppcf128) 9997 return false; 9998 9999 if (Fast) 10000 *Fast = true; 10001 10002 return true; 10003 } 10004 10005 bool PPCTargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const { 10006 VT = VT.getScalarType(); 10007 10008 if (!VT.isSimple()) 10009 return false; 10010 10011 switch (VT.getSimpleVT().SimpleTy) { 10012 case MVT::f32: 10013 case MVT::f64: 10014 return true; 10015 default: 10016 break; 10017 } 10018 10019 return false; 10020 } 10021 10022 const MCPhysReg * 10023 PPCTargetLowering::getScratchRegisters(CallingConv::ID) const { 10024 // LR is a callee-save register, but we must treat it as clobbered by any call 10025 // site. Hence we include LR in the scratch registers, which are in turn added 10026 // as implicit-defs for stackmaps and patchpoints. The same reasoning applies 10027 // to CTR, which is used by any indirect call. 10028 static const MCPhysReg ScratchRegs[] = { 10029 PPC::X12, PPC::LR8, PPC::CTR8, 0 10030 }; 10031 10032 return ScratchRegs; 10033 } 10034 10035 bool 10036 PPCTargetLowering::shouldExpandBuildVectorWithShuffles( 10037 EVT VT , unsigned DefinedValues) const { 10038 if (VT == MVT::v2i64) 10039 return false; 10040 10041 return TargetLowering::shouldExpandBuildVectorWithShuffles(VT, DefinedValues); 10042 } 10043 10044 Sched::Preference PPCTargetLowering::getSchedulingPreference(SDNode *N) const { 10045 if (DisableILPPref || Subtarget.enableMachineScheduler()) 10046 return TargetLowering::getSchedulingPreference(N); 10047 10048 return Sched::ILP; 10049 } 10050 10051 // Create a fast isel object. 10052 FastISel * 10053 PPCTargetLowering::createFastISel(FunctionLoweringInfo &FuncInfo, 10054 const TargetLibraryInfo *LibInfo) const { 10055 return PPC::createFastISel(FuncInfo, LibInfo); 10056 } 10057