1 //===-- SelectionDAGBuilder.cpp - Selection-DAG building ------------------===// 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 implements routines for translating from LLVM IR into SelectionDAG IR. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "SelectionDAGBuilder.h" 15 #include "SDNodeDbgValue.h" 16 #include "llvm/ADT/BitVector.h" 17 #include "llvm/ADT/Optional.h" 18 #include "llvm/ADT/SmallSet.h" 19 #include "llvm/ADT/Statistic.h" 20 #include "llvm/Analysis/AliasAnalysis.h" 21 #include "llvm/Analysis/BranchProbabilityInfo.h" 22 #include "llvm/Analysis/ConstantFolding.h" 23 #include "llvm/Analysis/Loads.h" 24 #include "llvm/Analysis/TargetLibraryInfo.h" 25 #include "llvm/Analysis/ValueTracking.h" 26 #include "llvm/Analysis/VectorUtils.h" 27 #include "llvm/CodeGen/FastISel.h" 28 #include "llvm/CodeGen/FunctionLoweringInfo.h" 29 #include "llvm/CodeGen/GCMetadata.h" 30 #include "llvm/CodeGen/GCStrategy.h" 31 #include "llvm/CodeGen/MachineFrameInfo.h" 32 #include "llvm/CodeGen/MachineFunction.h" 33 #include "llvm/CodeGen/MachineInstrBuilder.h" 34 #include "llvm/CodeGen/MachineJumpTableInfo.h" 35 #include "llvm/CodeGen/MachineModuleInfo.h" 36 #include "llvm/CodeGen/MachineRegisterInfo.h" 37 #include "llvm/CodeGen/SelectionDAG.h" 38 #include "llvm/CodeGen/SelectionDAGTargetInfo.h" 39 #include "llvm/CodeGen/StackMaps.h" 40 #include "llvm/CodeGen/WinEHFuncInfo.h" 41 #include "llvm/IR/CallingConv.h" 42 #include "llvm/IR/Constants.h" 43 #include "llvm/IR/DataLayout.h" 44 #include "llvm/IR/DebugInfo.h" 45 #include "llvm/IR/DerivedTypes.h" 46 #include "llvm/IR/Function.h" 47 #include "llvm/IR/GetElementPtrTypeIterator.h" 48 #include "llvm/IR/GlobalVariable.h" 49 #include "llvm/IR/InlineAsm.h" 50 #include "llvm/IR/Instructions.h" 51 #include "llvm/IR/IntrinsicInst.h" 52 #include "llvm/IR/Intrinsics.h" 53 #include "llvm/IR/LLVMContext.h" 54 #include "llvm/IR/Module.h" 55 #include "llvm/IR/Statepoint.h" 56 #include "llvm/MC/MCSymbol.h" 57 #include "llvm/Support/CommandLine.h" 58 #include "llvm/Support/Debug.h" 59 #include "llvm/Support/ErrorHandling.h" 60 #include "llvm/Support/MathExtras.h" 61 #include "llvm/Support/raw_ostream.h" 62 #include "llvm/Target/TargetFrameLowering.h" 63 #include "llvm/Target/TargetInstrInfo.h" 64 #include "llvm/Target/TargetIntrinsicInfo.h" 65 #include "llvm/Target/TargetLowering.h" 66 #include "llvm/Target/TargetOptions.h" 67 #include "llvm/Target/TargetSubtargetInfo.h" 68 #include <algorithm> 69 #include <utility> 70 using namespace llvm; 71 72 #define DEBUG_TYPE "isel" 73 74 /// LimitFloatPrecision - Generate low-precision inline sequences for 75 /// some float libcalls (6, 8 or 12 bits). 76 static unsigned LimitFloatPrecision; 77 78 static cl::opt<unsigned, true> 79 LimitFPPrecision("limit-float-precision", 80 cl::desc("Generate low-precision inline sequences " 81 "for some float libcalls"), 82 cl::location(LimitFloatPrecision), 83 cl::init(0)); 84 85 static cl::opt<bool> 86 EnableFMFInDAG("enable-fmf-dag", cl::init(true), cl::Hidden, 87 cl::desc("Enable fast-math-flags for DAG nodes")); 88 89 /// Minimum jump table density for normal functions. 90 static cl::opt<unsigned> 91 JumpTableDensity("jump-table-density", cl::init(10), cl::Hidden, 92 cl::desc("Minimum density for building a jump table in " 93 "a normal function")); 94 95 /// Minimum jump table density for -Os or -Oz functions. 96 static cl::opt<unsigned> 97 OptsizeJumpTableDensity("optsize-jump-table-density", cl::init(40), cl::Hidden, 98 cl::desc("Minimum density for building a jump table in " 99 "an optsize function")); 100 101 102 // Limit the width of DAG chains. This is important in general to prevent 103 // DAG-based analysis from blowing up. For example, alias analysis and 104 // load clustering may not complete in reasonable time. It is difficult to 105 // recognize and avoid this situation within each individual analysis, and 106 // future analyses are likely to have the same behavior. Limiting DAG width is 107 // the safe approach and will be especially important with global DAGs. 108 // 109 // MaxParallelChains default is arbitrarily high to avoid affecting 110 // optimization, but could be lowered to improve compile time. Any ld-ld-st-st 111 // sequence over this should have been converted to llvm.memcpy by the 112 // frontend. It easy to induce this behavior with .ll code such as: 113 // %buffer = alloca [4096 x i8] 114 // %data = load [4096 x i8]* %argPtr 115 // store [4096 x i8] %data, [4096 x i8]* %buffer 116 static const unsigned MaxParallelChains = 64; 117 118 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL, 119 const SDValue *Parts, unsigned NumParts, 120 MVT PartVT, EVT ValueVT, const Value *V); 121 122 /// getCopyFromParts - Create a value that contains the specified legal parts 123 /// combined into the value they represent. If the parts combine to a type 124 /// larger then ValueVT then AssertOp can be used to specify whether the extra 125 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT 126 /// (ISD::AssertSext). 127 static SDValue getCopyFromParts(SelectionDAG &DAG, SDLoc DL, 128 const SDValue *Parts, 129 unsigned NumParts, MVT PartVT, EVT ValueVT, 130 const Value *V, 131 ISD::NodeType AssertOp = ISD::DELETED_NODE) { 132 if (ValueVT.isVector()) 133 return getCopyFromPartsVector(DAG, DL, Parts, NumParts, 134 PartVT, ValueVT, V); 135 136 assert(NumParts > 0 && "No parts to assemble!"); 137 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 138 SDValue Val = Parts[0]; 139 140 if (NumParts > 1) { 141 // Assemble the value from multiple parts. 142 if (ValueVT.isInteger()) { 143 unsigned PartBits = PartVT.getSizeInBits(); 144 unsigned ValueBits = ValueVT.getSizeInBits(); 145 146 // Assemble the power of 2 part. 147 unsigned RoundParts = NumParts & (NumParts - 1) ? 148 1 << Log2_32(NumParts) : NumParts; 149 unsigned RoundBits = PartBits * RoundParts; 150 EVT RoundVT = RoundBits == ValueBits ? 151 ValueVT : EVT::getIntegerVT(*DAG.getContext(), RoundBits); 152 SDValue Lo, Hi; 153 154 EVT HalfVT = EVT::getIntegerVT(*DAG.getContext(), RoundBits/2); 155 156 if (RoundParts > 2) { 157 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2, 158 PartVT, HalfVT, V); 159 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2, 160 RoundParts / 2, PartVT, HalfVT, V); 161 } else { 162 Lo = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[0]); 163 Hi = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[1]); 164 } 165 166 if (DAG.getDataLayout().isBigEndian()) 167 std::swap(Lo, Hi); 168 169 Val = DAG.getNode(ISD::BUILD_PAIR, DL, RoundVT, Lo, Hi); 170 171 if (RoundParts < NumParts) { 172 // Assemble the trailing non-power-of-2 part. 173 unsigned OddParts = NumParts - RoundParts; 174 EVT OddVT = EVT::getIntegerVT(*DAG.getContext(), OddParts * PartBits); 175 Hi = getCopyFromParts(DAG, DL, 176 Parts + RoundParts, OddParts, PartVT, OddVT, V); 177 178 // Combine the round and odd parts. 179 Lo = Val; 180 if (DAG.getDataLayout().isBigEndian()) 181 std::swap(Lo, Hi); 182 EVT TotalVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); 183 Hi = DAG.getNode(ISD::ANY_EXTEND, DL, TotalVT, Hi); 184 Hi = 185 DAG.getNode(ISD::SHL, DL, TotalVT, Hi, 186 DAG.getConstant(Lo.getValueType().getSizeInBits(), DL, 187 TLI.getPointerTy(DAG.getDataLayout()))); 188 Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, TotalVT, Lo); 189 Val = DAG.getNode(ISD::OR, DL, TotalVT, Lo, Hi); 190 } 191 } else if (PartVT.isFloatingPoint()) { 192 // FP split into multiple FP parts (for ppcf128) 193 assert(ValueVT == EVT(MVT::ppcf128) && PartVT == MVT::f64 && 194 "Unexpected split"); 195 SDValue Lo, Hi; 196 Lo = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[0]); 197 Hi = DAG.getNode(ISD::BITCAST, DL, EVT(MVT::f64), Parts[1]); 198 if (TLI.hasBigEndianPartOrdering(ValueVT, DAG.getDataLayout())) 199 std::swap(Lo, Hi); 200 Val = DAG.getNode(ISD::BUILD_PAIR, DL, ValueVT, Lo, Hi); 201 } else { 202 // FP split into integer parts (soft fp) 203 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() && 204 !PartVT.isVector() && "Unexpected split"); 205 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); 206 Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V); 207 } 208 } 209 210 // There is now one part, held in Val. Correct it to match ValueVT. 211 // PartEVT is the type of the register class that holds the value. 212 // ValueVT is the type of the inline asm operation. 213 EVT PartEVT = Val.getValueType(); 214 215 if (PartEVT == ValueVT) 216 return Val; 217 218 if (PartEVT.isInteger() && ValueVT.isFloatingPoint() && 219 ValueVT.bitsLT(PartEVT)) { 220 // For an FP value in an integer part, we need to truncate to the right 221 // width first. 222 PartEVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); 223 Val = DAG.getNode(ISD::TRUNCATE, DL, PartEVT, Val); 224 } 225 226 // Handle types that have the same size. 227 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits()) 228 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val); 229 230 // Handle types with different sizes. 231 if (PartEVT.isInteger() && ValueVT.isInteger()) { 232 if (ValueVT.bitsLT(PartEVT)) { 233 // For a truncate, see if we have any information to 234 // indicate whether the truncated bits will always be 235 // zero or sign-extension. 236 if (AssertOp != ISD::DELETED_NODE) 237 Val = DAG.getNode(AssertOp, DL, PartEVT, Val, 238 DAG.getValueType(ValueVT)); 239 return DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val); 240 } 241 return DAG.getNode(ISD::ANY_EXTEND, DL, ValueVT, Val); 242 } 243 244 if (PartEVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { 245 // FP_ROUND's are always exact here. 246 if (ValueVT.bitsLT(Val.getValueType())) 247 return DAG.getNode( 248 ISD::FP_ROUND, DL, ValueVT, Val, 249 DAG.getTargetConstant(1, DL, TLI.getPointerTy(DAG.getDataLayout()))); 250 251 return DAG.getNode(ISD::FP_EXTEND, DL, ValueVT, Val); 252 } 253 254 llvm_unreachable("Unknown mismatch!"); 255 } 256 257 static void diagnosePossiblyInvalidConstraint(LLVMContext &Ctx, const Value *V, 258 const Twine &ErrMsg) { 259 const Instruction *I = dyn_cast_or_null<Instruction>(V); 260 if (!V) 261 return Ctx.emitError(ErrMsg); 262 263 const char *AsmError = ", possible invalid constraint for vector type"; 264 if (const CallInst *CI = dyn_cast<CallInst>(I)) 265 if (isa<InlineAsm>(CI->getCalledValue())) 266 return Ctx.emitError(I, ErrMsg + AsmError); 267 268 return Ctx.emitError(I, ErrMsg); 269 } 270 271 /// getCopyFromPartsVector - Create a value that contains the specified legal 272 /// parts combined into the value they represent. If the parts combine to a 273 /// type larger then ValueVT then AssertOp can be used to specify whether the 274 /// extra bits are known to be zero (ISD::AssertZext) or sign extended from 275 /// ValueVT (ISD::AssertSext). 276 static SDValue getCopyFromPartsVector(SelectionDAG &DAG, SDLoc DL, 277 const SDValue *Parts, unsigned NumParts, 278 MVT PartVT, EVT ValueVT, const Value *V) { 279 assert(ValueVT.isVector() && "Not a vector value"); 280 assert(NumParts > 0 && "No parts to assemble!"); 281 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 282 SDValue Val = Parts[0]; 283 284 // Handle a multi-element vector. 285 if (NumParts > 1) { 286 EVT IntermediateVT; 287 MVT RegisterVT; 288 unsigned NumIntermediates; 289 unsigned NumRegs = 290 TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, IntermediateVT, 291 NumIntermediates, RegisterVT); 292 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); 293 NumParts = NumRegs; // Silence a compiler warning. 294 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); 295 assert(RegisterVT.getSizeInBits() == 296 Parts[0].getSimpleValueType().getSizeInBits() && 297 "Part type sizes don't match!"); 298 299 // Assemble the parts into intermediate operands. 300 SmallVector<SDValue, 8> Ops(NumIntermediates); 301 if (NumIntermediates == NumParts) { 302 // If the register was not expanded, truncate or copy the value, 303 // as appropriate. 304 for (unsigned i = 0; i != NumParts; ++i) 305 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i], 1, 306 PartVT, IntermediateVT, V); 307 } else if (NumParts > 0) { 308 // If the intermediate type was expanded, build the intermediate 309 // operands from the parts. 310 assert(NumParts % NumIntermediates == 0 && 311 "Must expand into a divisible number of parts!"); 312 unsigned Factor = NumParts / NumIntermediates; 313 for (unsigned i = 0; i != NumIntermediates; ++i) 314 Ops[i] = getCopyFromParts(DAG, DL, &Parts[i * Factor], Factor, 315 PartVT, IntermediateVT, V); 316 } 317 318 // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the 319 // intermediate operands. 320 Val = DAG.getNode(IntermediateVT.isVector() ? ISD::CONCAT_VECTORS 321 : ISD::BUILD_VECTOR, 322 DL, ValueVT, Ops); 323 } 324 325 // There is now one part, held in Val. Correct it to match ValueVT. 326 EVT PartEVT = Val.getValueType(); 327 328 if (PartEVT == ValueVT) 329 return Val; 330 331 if (PartEVT.isVector()) { 332 // If the element type of the source/dest vectors are the same, but the 333 // parts vector has more elements than the value vector, then we have a 334 // vector widening case (e.g. <2 x float> -> <4 x float>). Extract the 335 // elements we want. 336 if (PartEVT.getVectorElementType() == ValueVT.getVectorElementType()) { 337 assert(PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements() && 338 "Cannot narrow, it would be a lossy transformation"); 339 return DAG.getNode( 340 ISD::EXTRACT_SUBVECTOR, DL, ValueVT, Val, 341 DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout()))); 342 } 343 344 // Vector/Vector bitcast. 345 if (ValueVT.getSizeInBits() == PartEVT.getSizeInBits()) 346 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val); 347 348 assert(PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements() && 349 "Cannot handle this kind of promotion"); 350 // Promoted vector extract 351 return DAG.getAnyExtOrTrunc(Val, DL, ValueVT); 352 353 } 354 355 // Trivial bitcast if the types are the same size and the destination 356 // vector type is legal. 357 if (PartEVT.getSizeInBits() == ValueVT.getSizeInBits() && 358 TLI.isTypeLegal(ValueVT)) 359 return DAG.getNode(ISD::BITCAST, DL, ValueVT, Val); 360 361 // Handle cases such as i8 -> <1 x i1> 362 if (ValueVT.getVectorNumElements() != 1) { 363 diagnosePossiblyInvalidConstraint(*DAG.getContext(), V, 364 "non-trivial scalar-to-vector conversion"); 365 return DAG.getUNDEF(ValueVT); 366 } 367 368 if (ValueVT.getVectorNumElements() == 1 && 369 ValueVT.getVectorElementType() != PartEVT) 370 Val = DAG.getAnyExtOrTrunc(Val, DL, ValueVT.getScalarType()); 371 372 return DAG.getNode(ISD::BUILD_VECTOR, DL, ValueVT, Val); 373 } 374 375 static void getCopyToPartsVector(SelectionDAG &DAG, SDLoc dl, 376 SDValue Val, SDValue *Parts, unsigned NumParts, 377 MVT PartVT, const Value *V); 378 379 /// getCopyToParts - Create a series of nodes that contain the specified value 380 /// split into legal parts. If the parts contain more bits than Val, then, for 381 /// integers, ExtendKind can be used to specify how to generate the extra bits. 382 static void getCopyToParts(SelectionDAG &DAG, SDLoc DL, 383 SDValue Val, SDValue *Parts, unsigned NumParts, 384 MVT PartVT, const Value *V, 385 ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { 386 EVT ValueVT = Val.getValueType(); 387 388 // Handle the vector case separately. 389 if (ValueVT.isVector()) 390 return getCopyToPartsVector(DAG, DL, Val, Parts, NumParts, PartVT, V); 391 392 unsigned PartBits = PartVT.getSizeInBits(); 393 unsigned OrigNumParts = NumParts; 394 assert(DAG.getTargetLoweringInfo().isTypeLegal(PartVT) && 395 "Copying to an illegal type!"); 396 397 if (NumParts == 0) 398 return; 399 400 assert(!ValueVT.isVector() && "Vector case handled elsewhere"); 401 EVT PartEVT = PartVT; 402 if (PartEVT == ValueVT) { 403 assert(NumParts == 1 && "No-op copy with multiple parts!"); 404 Parts[0] = Val; 405 return; 406 } 407 408 if (NumParts * PartBits > ValueVT.getSizeInBits()) { 409 // If the parts cover more bits than the value has, promote the value. 410 if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { 411 assert(NumParts == 1 && "Do not know what to promote to!"); 412 Val = DAG.getNode(ISD::FP_EXTEND, DL, PartVT, Val); 413 } else { 414 if (ValueVT.isFloatingPoint()) { 415 // FP values need to be bitcast, then extended if they are being put 416 // into a larger container. 417 ValueVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); 418 Val = DAG.getNode(ISD::BITCAST, DL, ValueVT, Val); 419 } 420 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) && 421 ValueVT.isInteger() && 422 "Unknown mismatch!"); 423 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); 424 Val = DAG.getNode(ExtendKind, DL, ValueVT, Val); 425 if (PartVT == MVT::x86mmx) 426 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val); 427 } 428 } else if (PartBits == ValueVT.getSizeInBits()) { 429 // Different types of the same size. 430 assert(NumParts == 1 && PartEVT != ValueVT); 431 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val); 432 } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { 433 // If the parts cover less bits than value has, truncate the value. 434 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) && 435 ValueVT.isInteger() && 436 "Unknown mismatch!"); 437 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); 438 Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val); 439 if (PartVT == MVT::x86mmx) 440 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val); 441 } 442 443 // The value may have changed - recompute ValueVT. 444 ValueVT = Val.getValueType(); 445 assert(NumParts * PartBits == ValueVT.getSizeInBits() && 446 "Failed to tile the value with PartVT!"); 447 448 if (NumParts == 1) { 449 if (PartEVT != ValueVT) 450 diagnosePossiblyInvalidConstraint(*DAG.getContext(), V, 451 "scalar-to-vector conversion failed"); 452 453 Parts[0] = Val; 454 return; 455 } 456 457 // Expand the value into multiple parts. 458 if (NumParts & (NumParts - 1)) { 459 // The number of parts is not a power of 2. Split off and copy the tail. 460 assert(PartVT.isInteger() && ValueVT.isInteger() && 461 "Do not know what to expand to!"); 462 unsigned RoundParts = 1 << Log2_32(NumParts); 463 unsigned RoundBits = RoundParts * PartBits; 464 unsigned OddParts = NumParts - RoundParts; 465 SDValue OddVal = DAG.getNode(ISD::SRL, DL, ValueVT, Val, 466 DAG.getIntPtrConstant(RoundBits, DL)); 467 getCopyToParts(DAG, DL, OddVal, Parts + RoundParts, OddParts, PartVT, V); 468 469 if (DAG.getDataLayout().isBigEndian()) 470 // The odd parts were reversed by getCopyToParts - unreverse them. 471 std::reverse(Parts + RoundParts, Parts + NumParts); 472 473 NumParts = RoundParts; 474 ValueVT = EVT::getIntegerVT(*DAG.getContext(), NumParts * PartBits); 475 Val = DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val); 476 } 477 478 // The number of parts is a power of 2. Repeatedly bisect the value using 479 // EXTRACT_ELEMENT. 480 Parts[0] = DAG.getNode(ISD::BITCAST, DL, 481 EVT::getIntegerVT(*DAG.getContext(), 482 ValueVT.getSizeInBits()), 483 Val); 484 485 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { 486 for (unsigned i = 0; i < NumParts; i += StepSize) { 487 unsigned ThisBits = StepSize * PartBits / 2; 488 EVT ThisVT = EVT::getIntegerVT(*DAG.getContext(), ThisBits); 489 SDValue &Part0 = Parts[i]; 490 SDValue &Part1 = Parts[i+StepSize/2]; 491 492 Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, 493 ThisVT, Part0, DAG.getIntPtrConstant(1, DL)); 494 Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, DL, 495 ThisVT, Part0, DAG.getIntPtrConstant(0, DL)); 496 497 if (ThisBits == PartBits && ThisVT != PartVT) { 498 Part0 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part0); 499 Part1 = DAG.getNode(ISD::BITCAST, DL, PartVT, Part1); 500 } 501 } 502 } 503 504 if (DAG.getDataLayout().isBigEndian()) 505 std::reverse(Parts, Parts + OrigNumParts); 506 } 507 508 509 /// getCopyToPartsVector - Create a series of nodes that contain the specified 510 /// value split into legal parts. 511 static void getCopyToPartsVector(SelectionDAG &DAG, SDLoc DL, 512 SDValue Val, SDValue *Parts, unsigned NumParts, 513 MVT PartVT, const Value *V) { 514 EVT ValueVT = Val.getValueType(); 515 assert(ValueVT.isVector() && "Not a vector"); 516 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 517 518 if (NumParts == 1) { 519 EVT PartEVT = PartVT; 520 if (PartEVT == ValueVT) { 521 // Nothing to do. 522 } else if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) { 523 // Bitconvert vector->vector case. 524 Val = DAG.getNode(ISD::BITCAST, DL, PartVT, Val); 525 } else if (PartVT.isVector() && 526 PartEVT.getVectorElementType() == ValueVT.getVectorElementType() && 527 PartEVT.getVectorNumElements() > ValueVT.getVectorNumElements()) { 528 EVT ElementVT = PartVT.getVectorElementType(); 529 // Vector widening case, e.g. <2 x float> -> <4 x float>. Shuffle in 530 // undef elements. 531 SmallVector<SDValue, 16> Ops; 532 for (unsigned i = 0, e = ValueVT.getVectorNumElements(); i != e; ++i) 533 Ops.push_back(DAG.getNode( 534 ISD::EXTRACT_VECTOR_ELT, DL, ElementVT, Val, 535 DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout())))); 536 537 for (unsigned i = ValueVT.getVectorNumElements(), 538 e = PartVT.getVectorNumElements(); i != e; ++i) 539 Ops.push_back(DAG.getUNDEF(ElementVT)); 540 541 Val = DAG.getNode(ISD::BUILD_VECTOR, DL, PartVT, Ops); 542 543 // FIXME: Use CONCAT for 2x -> 4x. 544 545 //SDValue UndefElts = DAG.getUNDEF(VectorTy); 546 //Val = DAG.getNode(ISD::CONCAT_VECTORS, DL, PartVT, Val, UndefElts); 547 } else if (PartVT.isVector() && 548 PartEVT.getVectorElementType().bitsGE( 549 ValueVT.getVectorElementType()) && 550 PartEVT.getVectorNumElements() == ValueVT.getVectorNumElements()) { 551 552 // Promoted vector extract 553 Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT); 554 } else{ 555 // Vector -> scalar conversion. 556 assert(ValueVT.getVectorNumElements() == 1 && 557 "Only trivial vector-to-scalar conversions should get here!"); 558 Val = DAG.getNode( 559 ISD::EXTRACT_VECTOR_ELT, DL, PartVT, Val, 560 DAG.getConstant(0, DL, TLI.getVectorIdxTy(DAG.getDataLayout()))); 561 562 Val = DAG.getAnyExtOrTrunc(Val, DL, PartVT); 563 } 564 565 Parts[0] = Val; 566 return; 567 } 568 569 // Handle a multi-element vector. 570 EVT IntermediateVT; 571 MVT RegisterVT; 572 unsigned NumIntermediates; 573 unsigned NumRegs = TLI.getVectorTypeBreakdown(*DAG.getContext(), ValueVT, 574 IntermediateVT, 575 NumIntermediates, RegisterVT); 576 unsigned NumElements = ValueVT.getVectorNumElements(); 577 578 assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); 579 NumParts = NumRegs; // Silence a compiler warning. 580 assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); 581 582 // Split the vector into intermediate operands. 583 SmallVector<SDValue, 8> Ops(NumIntermediates); 584 for (unsigned i = 0; i != NumIntermediates; ++i) { 585 if (IntermediateVT.isVector()) 586 Ops[i] = 587 DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, IntermediateVT, Val, 588 DAG.getConstant(i * (NumElements / NumIntermediates), DL, 589 TLI.getVectorIdxTy(DAG.getDataLayout()))); 590 else 591 Ops[i] = DAG.getNode( 592 ISD::EXTRACT_VECTOR_ELT, DL, IntermediateVT, Val, 593 DAG.getConstant(i, DL, TLI.getVectorIdxTy(DAG.getDataLayout()))); 594 } 595 596 // Split the intermediate operands into legal parts. 597 if (NumParts == NumIntermediates) { 598 // If the register was not expanded, promote or copy the value, 599 // as appropriate. 600 for (unsigned i = 0; i != NumParts; ++i) 601 getCopyToParts(DAG, DL, Ops[i], &Parts[i], 1, PartVT, V); 602 } else if (NumParts > 0) { 603 // If the intermediate type was expanded, split each the value into 604 // legal parts. 605 assert(NumIntermediates != 0 && "division by zero"); 606 assert(NumParts % NumIntermediates == 0 && 607 "Must expand into a divisible number of parts!"); 608 unsigned Factor = NumParts / NumIntermediates; 609 for (unsigned i = 0; i != NumIntermediates; ++i) 610 getCopyToParts(DAG, DL, Ops[i], &Parts[i*Factor], Factor, PartVT, V); 611 } 612 } 613 614 RegsForValue::RegsForValue() {} 615 616 RegsForValue::RegsForValue(const SmallVector<unsigned, 4> ®s, MVT regvt, 617 EVT valuevt) 618 : ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} 619 620 RegsForValue::RegsForValue(LLVMContext &Context, const TargetLowering &TLI, 621 const DataLayout &DL, unsigned Reg, Type *Ty) { 622 ComputeValueVTs(TLI, DL, Ty, ValueVTs); 623 624 for (EVT ValueVT : ValueVTs) { 625 unsigned NumRegs = TLI.getNumRegisters(Context, ValueVT); 626 MVT RegisterVT = TLI.getRegisterType(Context, ValueVT); 627 for (unsigned i = 0; i != NumRegs; ++i) 628 Regs.push_back(Reg + i); 629 RegVTs.push_back(RegisterVT); 630 Reg += NumRegs; 631 } 632 } 633 634 /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from 635 /// this value and returns the result as a ValueVT value. This uses 636 /// Chain/Flag as the input and updates them for the output Chain/Flag. 637 /// If the Flag pointer is NULL, no flag is used. 638 SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, 639 FunctionLoweringInfo &FuncInfo, 640 SDLoc dl, 641 SDValue &Chain, SDValue *Flag, 642 const Value *V) const { 643 // A Value with type {} or [0 x %t] needs no registers. 644 if (ValueVTs.empty()) 645 return SDValue(); 646 647 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 648 649 // Assemble the legal parts into the final values. 650 SmallVector<SDValue, 4> Values(ValueVTs.size()); 651 SmallVector<SDValue, 8> Parts; 652 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { 653 // Copy the legal parts from the registers. 654 EVT ValueVT = ValueVTs[Value]; 655 unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVT); 656 MVT RegisterVT = RegVTs[Value]; 657 658 Parts.resize(NumRegs); 659 for (unsigned i = 0; i != NumRegs; ++i) { 660 SDValue P; 661 if (!Flag) { 662 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); 663 } else { 664 P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); 665 *Flag = P.getValue(2); 666 } 667 668 Chain = P.getValue(1); 669 Parts[i] = P; 670 671 // If the source register was virtual and if we know something about it, 672 // add an assert node. 673 if (!TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) || 674 !RegisterVT.isInteger() || RegisterVT.isVector()) 675 continue; 676 677 const FunctionLoweringInfo::LiveOutInfo *LOI = 678 FuncInfo.GetLiveOutRegInfo(Regs[Part+i]); 679 if (!LOI) 680 continue; 681 682 unsigned RegSize = RegisterVT.getSizeInBits(); 683 unsigned NumSignBits = LOI->NumSignBits; 684 unsigned NumZeroBits = LOI->KnownZero.countLeadingOnes(); 685 686 if (NumZeroBits == RegSize) { 687 // The current value is a zero. 688 // Explicitly express that as it would be easier for 689 // optimizations to kick in. 690 Parts[i] = DAG.getConstant(0, dl, RegisterVT); 691 continue; 692 } 693 694 // FIXME: We capture more information than the dag can represent. For 695 // now, just use the tightest assertzext/assertsext possible. 696 bool isSExt = true; 697 EVT FromVT(MVT::Other); 698 if (NumSignBits == RegSize) { 699 isSExt = true; // ASSERT SEXT 1 700 FromVT = MVT::i1; 701 } else if (NumZeroBits >= RegSize - 1) { 702 isSExt = false; // ASSERT ZEXT 1 703 FromVT = MVT::i1; 704 } else if (NumSignBits > RegSize - 8) { 705 isSExt = true; // ASSERT SEXT 8 706 FromVT = MVT::i8; 707 } else if (NumZeroBits >= RegSize - 8) { 708 isSExt = false; // ASSERT ZEXT 8 709 FromVT = MVT::i8; 710 } else if (NumSignBits > RegSize - 16) { 711 isSExt = true; // ASSERT SEXT 16 712 FromVT = MVT::i16; 713 } else if (NumZeroBits >= RegSize - 16) { 714 isSExt = false; // ASSERT ZEXT 16 715 FromVT = MVT::i16; 716 } else if (NumSignBits > RegSize - 32) { 717 isSExt = true; // ASSERT SEXT 32 718 FromVT = MVT::i32; 719 } else if (NumZeroBits >= RegSize - 32) { 720 isSExt = false; // ASSERT ZEXT 32 721 FromVT = MVT::i32; 722 } else { 723 continue; 724 } 725 // Add an assertion node. 726 assert(FromVT != MVT::Other); 727 Parts[i] = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, 728 RegisterVT, P, DAG.getValueType(FromVT)); 729 } 730 731 Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), 732 NumRegs, RegisterVT, ValueVT, V); 733 Part += NumRegs; 734 Parts.clear(); 735 } 736 737 return DAG.getNode(ISD::MERGE_VALUES, dl, DAG.getVTList(ValueVTs), Values); 738 } 739 740 /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the 741 /// specified value into the registers specified by this object. This uses 742 /// Chain/Flag as the input and updates them for the output Chain/Flag. 743 /// If the Flag pointer is NULL, no flag is used. 744 void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, SDLoc dl, 745 SDValue &Chain, SDValue *Flag, const Value *V, 746 ISD::NodeType PreferredExtendType) const { 747 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 748 ISD::NodeType ExtendKind = PreferredExtendType; 749 750 // Get the list of the values's legal parts. 751 unsigned NumRegs = Regs.size(); 752 SmallVector<SDValue, 8> Parts(NumRegs); 753 for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { 754 EVT ValueVT = ValueVTs[Value]; 755 unsigned NumParts = TLI.getNumRegisters(*DAG.getContext(), ValueVT); 756 MVT RegisterVT = RegVTs[Value]; 757 758 if (ExtendKind == ISD::ANY_EXTEND && TLI.isZExtFree(Val, RegisterVT)) 759 ExtendKind = ISD::ZERO_EXTEND; 760 761 getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), 762 &Parts[Part], NumParts, RegisterVT, V, ExtendKind); 763 Part += NumParts; 764 } 765 766 // Copy the parts into the registers. 767 SmallVector<SDValue, 8> Chains(NumRegs); 768 for (unsigned i = 0; i != NumRegs; ++i) { 769 SDValue Part; 770 if (!Flag) { 771 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); 772 } else { 773 Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); 774 *Flag = Part.getValue(1); 775 } 776 777 Chains[i] = Part.getValue(0); 778 } 779 780 if (NumRegs == 1 || Flag) 781 // If NumRegs > 1 && Flag is used then the use of the last CopyToReg is 782 // flagged to it. That is the CopyToReg nodes and the user are considered 783 // a single scheduling unit. If we create a TokenFactor and return it as 784 // chain, then the TokenFactor is both a predecessor (operand) of the 785 // user as well as a successor (the TF operands are flagged to the user). 786 // c1, f1 = CopyToReg 787 // c2, f2 = CopyToReg 788 // c3 = TokenFactor c1, c2 789 // ... 790 // = op c3, ..., f2 791 Chain = Chains[NumRegs-1]; 792 else 793 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Chains); 794 } 795 796 /// AddInlineAsmOperands - Add this value to the specified inlineasm node 797 /// operand list. This adds the code marker and includes the number of 798 /// values added into it. 799 void RegsForValue::AddInlineAsmOperands(unsigned Code, bool HasMatching, 800 unsigned MatchingIdx, SDLoc dl, 801 SelectionDAG &DAG, 802 std::vector<SDValue> &Ops) const { 803 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 804 805 unsigned Flag = InlineAsm::getFlagWord(Code, Regs.size()); 806 if (HasMatching) 807 Flag = InlineAsm::getFlagWordForMatchingOp(Flag, MatchingIdx); 808 else if (!Regs.empty() && 809 TargetRegisterInfo::isVirtualRegister(Regs.front())) { 810 // Put the register class of the virtual registers in the flag word. That 811 // way, later passes can recompute register class constraints for inline 812 // assembly as well as normal instructions. 813 // Don't do this for tied operands that can use the regclass information 814 // from the def. 815 const MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo(); 816 const TargetRegisterClass *RC = MRI.getRegClass(Regs.front()); 817 Flag = InlineAsm::getFlagWordForRegClass(Flag, RC->getID()); 818 } 819 820 SDValue Res = DAG.getTargetConstant(Flag, dl, MVT::i32); 821 Ops.push_back(Res); 822 823 unsigned SP = TLI.getStackPointerRegisterToSaveRestore(); 824 for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { 825 unsigned NumRegs = TLI.getNumRegisters(*DAG.getContext(), ValueVTs[Value]); 826 MVT RegisterVT = RegVTs[Value]; 827 for (unsigned i = 0; i != NumRegs; ++i) { 828 assert(Reg < Regs.size() && "Mismatch in # registers expected"); 829 unsigned TheReg = Regs[Reg++]; 830 Ops.push_back(DAG.getRegister(TheReg, RegisterVT)); 831 832 if (TheReg == SP && Code == InlineAsm::Kind_Clobber) { 833 // If we clobbered the stack pointer, MFI should know about it. 834 assert(DAG.getMachineFunction().getFrameInfo()-> 835 hasOpaqueSPAdjustment()); 836 } 837 } 838 } 839 } 840 841 void SelectionDAGBuilder::init(GCFunctionInfo *gfi, AliasAnalysis &aa, 842 const TargetLibraryInfo *li) { 843 AA = &aa; 844 GFI = gfi; 845 LibInfo = li; 846 DL = &DAG.getDataLayout(); 847 Context = DAG.getContext(); 848 LPadToCallSiteMap.clear(); 849 } 850 851 /// clear - Clear out the current SelectionDAG and the associated 852 /// state and prepare this SelectionDAGBuilder object to be used 853 /// for a new block. This doesn't clear out information about 854 /// additional blocks that are needed to complete switch lowering 855 /// or PHI node updating; that information is cleared out as it is 856 /// consumed. 857 void SelectionDAGBuilder::clear() { 858 NodeMap.clear(); 859 UnusedArgNodeMap.clear(); 860 PendingLoads.clear(); 861 PendingExports.clear(); 862 CurInst = nullptr; 863 HasTailCall = false; 864 SDNodeOrder = LowestSDNodeOrder; 865 StatepointLowering.clear(); 866 } 867 868 /// clearDanglingDebugInfo - Clear the dangling debug information 869 /// map. This function is separated from the clear so that debug 870 /// information that is dangling in a basic block can be properly 871 /// resolved in a different basic block. This allows the 872 /// SelectionDAG to resolve dangling debug information attached 873 /// to PHI nodes. 874 void SelectionDAGBuilder::clearDanglingDebugInfo() { 875 DanglingDebugInfoMap.clear(); 876 } 877 878 /// getRoot - Return the current virtual root of the Selection DAG, 879 /// flushing any PendingLoad items. This must be done before emitting 880 /// a store or any other node that may need to be ordered after any 881 /// prior load instructions. 882 /// 883 SDValue SelectionDAGBuilder::getRoot() { 884 if (PendingLoads.empty()) 885 return DAG.getRoot(); 886 887 if (PendingLoads.size() == 1) { 888 SDValue Root = PendingLoads[0]; 889 DAG.setRoot(Root); 890 PendingLoads.clear(); 891 return Root; 892 } 893 894 // Otherwise, we have to make a token factor node. 895 SDValue Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, 896 PendingLoads); 897 PendingLoads.clear(); 898 DAG.setRoot(Root); 899 return Root; 900 } 901 902 /// getControlRoot - Similar to getRoot, but instead of flushing all the 903 /// PendingLoad items, flush all the PendingExports items. It is necessary 904 /// to do this before emitting a terminator instruction. 905 /// 906 SDValue SelectionDAGBuilder::getControlRoot() { 907 SDValue Root = DAG.getRoot(); 908 909 if (PendingExports.empty()) 910 return Root; 911 912 // Turn all of the CopyToReg chains into one factored node. 913 if (Root.getOpcode() != ISD::EntryToken) { 914 unsigned i = 0, e = PendingExports.size(); 915 for (; i != e; ++i) { 916 assert(PendingExports[i].getNode()->getNumOperands() > 1); 917 if (PendingExports[i].getNode()->getOperand(0) == Root) 918 break; // Don't add the root if we already indirectly depend on it. 919 } 920 921 if (i == e) 922 PendingExports.push_back(Root); 923 } 924 925 Root = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, 926 PendingExports); 927 PendingExports.clear(); 928 DAG.setRoot(Root); 929 return Root; 930 } 931 932 /// Copy swift error to the final virtual register at end of a basic block, as 933 /// specified by SwiftErrorWorklist, if necessary. 934 static void copySwiftErrorsToFinalVRegs(SelectionDAGBuilder &SDB) { 935 const TargetLowering &TLI = SDB.DAG.getTargetLoweringInfo(); 936 if (!TLI.supportSwiftError()) 937 return; 938 939 if (!SDB.FuncInfo.SwiftErrorWorklist.count(SDB.FuncInfo.MBB)) 940 return; 941 942 // Go through entries in SwiftErrorWorklist, and create copy as necessary. 943 FunctionLoweringInfo::SwiftErrorVRegs &WorklistEntry = 944 SDB.FuncInfo.SwiftErrorWorklist[SDB.FuncInfo.MBB]; 945 FunctionLoweringInfo::SwiftErrorVRegs &MapEntry = 946 SDB.FuncInfo.SwiftErrorMap[SDB.FuncInfo.MBB]; 947 for (unsigned I = 0, E = WorklistEntry.size(); I < E; I++) { 948 unsigned WorkReg = WorklistEntry[I]; 949 950 // Find the swifterror virtual register for the value in SwiftErrorMap. 951 unsigned MapReg = MapEntry[I]; 952 assert(TargetRegisterInfo::isVirtualRegister(MapReg) && 953 "Entries in SwiftErrorMap should be virtual registers"); 954 955 if (WorkReg == MapReg) 956 continue; 957 958 // Create copy from SwiftErrorMap to SwiftWorklist. 959 auto &DL = SDB.DAG.getDataLayout(); 960 SDValue CopyNode = SDB.DAG.getCopyToReg( 961 SDB.getRoot(), SDB.getCurSDLoc(), WorkReg, 962 SDB.DAG.getRegister(MapReg, EVT(TLI.getPointerTy(DL)))); 963 MapEntry[I] = WorkReg; 964 SDB.DAG.setRoot(CopyNode); 965 } 966 } 967 968 void SelectionDAGBuilder::visit(const Instruction &I) { 969 // Set up outgoing PHI node register values before emitting the terminator. 970 if (isa<TerminatorInst>(&I)) { 971 copySwiftErrorsToFinalVRegs(*this); 972 HandlePHINodesInSuccessorBlocks(I.getParent()); 973 } 974 975 ++SDNodeOrder; 976 977 CurInst = &I; 978 979 visit(I.getOpcode(), I); 980 981 if (!isa<TerminatorInst>(&I) && !HasTailCall && 982 !isStatepoint(&I)) // statepoints handle their exports internally 983 CopyToExportRegsIfNeeded(&I); 984 985 CurInst = nullptr; 986 } 987 988 void SelectionDAGBuilder::visitPHI(const PHINode &) { 989 llvm_unreachable("SelectionDAGBuilder shouldn't visit PHI nodes!"); 990 } 991 992 void SelectionDAGBuilder::visit(unsigned Opcode, const User &I) { 993 // Note: this doesn't use InstVisitor, because it has to work with 994 // ConstantExpr's in addition to instructions. 995 switch (Opcode) { 996 default: llvm_unreachable("Unknown instruction type encountered!"); 997 // Build the switch statement using the Instruction.def file. 998 #define HANDLE_INST(NUM, OPCODE, CLASS) \ 999 case Instruction::OPCODE: visit##OPCODE((const CLASS&)I); break; 1000 #include "llvm/IR/Instruction.def" 1001 } 1002 } 1003 1004 // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V, 1005 // generate the debug data structures now that we've seen its definition. 1006 void SelectionDAGBuilder::resolveDanglingDebugInfo(const Value *V, 1007 SDValue Val) { 1008 DanglingDebugInfo &DDI = DanglingDebugInfoMap[V]; 1009 if (DDI.getDI()) { 1010 const DbgValueInst *DI = DDI.getDI(); 1011 DebugLoc dl = DDI.getdl(); 1012 unsigned DbgSDNodeOrder = DDI.getSDNodeOrder(); 1013 DILocalVariable *Variable = DI->getVariable(); 1014 DIExpression *Expr = DI->getExpression(); 1015 assert(Variable->isValidLocationForIntrinsic(dl) && 1016 "Expected inlined-at fields to agree"); 1017 uint64_t Offset = DI->getOffset(); 1018 SDDbgValue *SDV; 1019 if (Val.getNode()) { 1020 if (!EmitFuncArgumentDbgValue(V, Variable, Expr, dl, Offset, false, 1021 Val)) { 1022 SDV = DAG.getDbgValue(Variable, Expr, Val.getNode(), Val.getResNo(), 1023 false, Offset, dl, DbgSDNodeOrder); 1024 DAG.AddDbgValue(SDV, Val.getNode(), false); 1025 } 1026 } else 1027 DEBUG(dbgs() << "Dropping debug info for " << *DI << "\n"); 1028 DanglingDebugInfoMap[V] = DanglingDebugInfo(); 1029 } 1030 } 1031 1032 /// getCopyFromRegs - If there was virtual register allocated for the value V 1033 /// emit CopyFromReg of the specified type Ty. Return empty SDValue() otherwise. 1034 SDValue SelectionDAGBuilder::getCopyFromRegs(const Value *V, Type *Ty) { 1035 DenseMap<const Value *, unsigned>::iterator It = FuncInfo.ValueMap.find(V); 1036 SDValue Result; 1037 1038 if (It != FuncInfo.ValueMap.end()) { 1039 unsigned InReg = It->second; 1040 RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(), 1041 DAG.getDataLayout(), InReg, Ty); 1042 SDValue Chain = DAG.getEntryNode(); 1043 Result = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr, V); 1044 resolveDanglingDebugInfo(V, Result); 1045 } 1046 1047 return Result; 1048 } 1049 1050 /// getValue - Return an SDValue for the given Value. 1051 SDValue SelectionDAGBuilder::getValue(const Value *V) { 1052 // If we already have an SDValue for this value, use it. It's important 1053 // to do this first, so that we don't create a CopyFromReg if we already 1054 // have a regular SDValue. 1055 SDValue &N = NodeMap[V]; 1056 if (N.getNode()) return N; 1057 1058 // If there's a virtual register allocated and initialized for this 1059 // value, use it. 1060 if (SDValue copyFromReg = getCopyFromRegs(V, V->getType())) 1061 return copyFromReg; 1062 1063 // Otherwise create a new SDValue and remember it. 1064 SDValue Val = getValueImpl(V); 1065 NodeMap[V] = Val; 1066 resolveDanglingDebugInfo(V, Val); 1067 return Val; 1068 } 1069 1070 // Return true if SDValue exists for the given Value 1071 bool SelectionDAGBuilder::findValue(const Value *V) const { 1072 return (NodeMap.find(V) != NodeMap.end()) || 1073 (FuncInfo.ValueMap.find(V) != FuncInfo.ValueMap.end()); 1074 } 1075 1076 /// getNonRegisterValue - Return an SDValue for the given Value, but 1077 /// don't look in FuncInfo.ValueMap for a virtual register. 1078 SDValue SelectionDAGBuilder::getNonRegisterValue(const Value *V) { 1079 // If we already have an SDValue for this value, use it. 1080 SDValue &N = NodeMap[V]; 1081 if (N.getNode()) { 1082 if (isa<ConstantSDNode>(N) || isa<ConstantFPSDNode>(N)) { 1083 // Remove the debug location from the node as the node is about to be used 1084 // in a location which may differ from the original debug location. This 1085 // is relevant to Constant and ConstantFP nodes because they can appear 1086 // as constant expressions inside PHI nodes. 1087 N->setDebugLoc(DebugLoc()); 1088 } 1089 return N; 1090 } 1091 1092 // Otherwise create a new SDValue and remember it. 1093 SDValue Val = getValueImpl(V); 1094 NodeMap[V] = Val; 1095 resolveDanglingDebugInfo(V, Val); 1096 return Val; 1097 } 1098 1099 /// getValueImpl - Helper function for getValue and getNonRegisterValue. 1100 /// Create an SDValue for the given value. 1101 SDValue SelectionDAGBuilder::getValueImpl(const Value *V) { 1102 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 1103 1104 if (const Constant *C = dyn_cast<Constant>(V)) { 1105 EVT VT = TLI.getValueType(DAG.getDataLayout(), V->getType(), true); 1106 1107 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C)) 1108 return DAG.getConstant(*CI, getCurSDLoc(), VT); 1109 1110 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) 1111 return DAG.getGlobalAddress(GV, getCurSDLoc(), VT); 1112 1113 if (isa<ConstantPointerNull>(C)) { 1114 unsigned AS = V->getType()->getPointerAddressSpace(); 1115 return DAG.getConstant(0, getCurSDLoc(), 1116 TLI.getPointerTy(DAG.getDataLayout(), AS)); 1117 } 1118 1119 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) 1120 return DAG.getConstantFP(*CFP, getCurSDLoc(), VT); 1121 1122 if (isa<UndefValue>(C) && !V->getType()->isAggregateType()) 1123 return DAG.getUNDEF(VT); 1124 1125 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { 1126 visit(CE->getOpcode(), *CE); 1127 SDValue N1 = NodeMap[V]; 1128 assert(N1.getNode() && "visit didn't populate the NodeMap!"); 1129 return N1; 1130 } 1131 1132 if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { 1133 SmallVector<SDValue, 4> Constants; 1134 for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); 1135 OI != OE; ++OI) { 1136 SDNode *Val = getValue(*OI).getNode(); 1137 // If the operand is an empty aggregate, there are no values. 1138 if (!Val) continue; 1139 // Add each leaf value from the operand to the Constants list 1140 // to form a flattened list of all the values. 1141 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) 1142 Constants.push_back(SDValue(Val, i)); 1143 } 1144 1145 return DAG.getMergeValues(Constants, getCurSDLoc()); 1146 } 1147 1148 if (const ConstantDataSequential *CDS = 1149 dyn_cast<ConstantDataSequential>(C)) { 1150 SmallVector<SDValue, 4> Ops; 1151 for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { 1152 SDNode *Val = getValue(CDS->getElementAsConstant(i)).getNode(); 1153 // Add each leaf value from the operand to the Constants list 1154 // to form a flattened list of all the values. 1155 for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) 1156 Ops.push_back(SDValue(Val, i)); 1157 } 1158 1159 if (isa<ArrayType>(CDS->getType())) 1160 return DAG.getMergeValues(Ops, getCurSDLoc()); 1161 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(), 1162 VT, Ops); 1163 } 1164 1165 if (C->getType()->isStructTy() || C->getType()->isArrayTy()) { 1166 assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && 1167 "Unknown struct or array constant!"); 1168 1169 SmallVector<EVT, 4> ValueVTs; 1170 ComputeValueVTs(TLI, DAG.getDataLayout(), C->getType(), ValueVTs); 1171 unsigned NumElts = ValueVTs.size(); 1172 if (NumElts == 0) 1173 return SDValue(); // empty struct 1174 SmallVector<SDValue, 4> Constants(NumElts); 1175 for (unsigned i = 0; i != NumElts; ++i) { 1176 EVT EltVT = ValueVTs[i]; 1177 if (isa<UndefValue>(C)) 1178 Constants[i] = DAG.getUNDEF(EltVT); 1179 else if (EltVT.isFloatingPoint()) 1180 Constants[i] = DAG.getConstantFP(0, getCurSDLoc(), EltVT); 1181 else 1182 Constants[i] = DAG.getConstant(0, getCurSDLoc(), EltVT); 1183 } 1184 1185 return DAG.getMergeValues(Constants, getCurSDLoc()); 1186 } 1187 1188 if (const BlockAddress *BA = dyn_cast<BlockAddress>(C)) 1189 return DAG.getBlockAddress(BA, VT); 1190 1191 VectorType *VecTy = cast<VectorType>(V->getType()); 1192 unsigned NumElements = VecTy->getNumElements(); 1193 1194 // Now that we know the number and type of the elements, get that number of 1195 // elements into the Ops array based on what kind of constant it is. 1196 SmallVector<SDValue, 16> Ops; 1197 if (const ConstantVector *CV = dyn_cast<ConstantVector>(C)) { 1198 for (unsigned i = 0; i != NumElements; ++i) 1199 Ops.push_back(getValue(CV->getOperand(i))); 1200 } else { 1201 assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); 1202 EVT EltVT = 1203 TLI.getValueType(DAG.getDataLayout(), VecTy->getElementType()); 1204 1205 SDValue Op; 1206 if (EltVT.isFloatingPoint()) 1207 Op = DAG.getConstantFP(0, getCurSDLoc(), EltVT); 1208 else 1209 Op = DAG.getConstant(0, getCurSDLoc(), EltVT); 1210 Ops.assign(NumElements, Op); 1211 } 1212 1213 // Create a BUILD_VECTOR node. 1214 return NodeMap[V] = DAG.getNode(ISD::BUILD_VECTOR, getCurSDLoc(), VT, Ops); 1215 } 1216 1217 // If this is a static alloca, generate it as the frameindex instead of 1218 // computation. 1219 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) { 1220 DenseMap<const AllocaInst*, int>::iterator SI = 1221 FuncInfo.StaticAllocaMap.find(AI); 1222 if (SI != FuncInfo.StaticAllocaMap.end()) 1223 return DAG.getFrameIndex(SI->second, 1224 TLI.getPointerTy(DAG.getDataLayout())); 1225 } 1226 1227 // If this is an instruction which fast-isel has deferred, select it now. 1228 if (const Instruction *Inst = dyn_cast<Instruction>(V)) { 1229 unsigned InReg = FuncInfo.InitializeRegForValue(Inst); 1230 RegsForValue RFV(*DAG.getContext(), TLI, DAG.getDataLayout(), InReg, 1231 Inst->getType()); 1232 SDValue Chain = DAG.getEntryNode(); 1233 return RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), Chain, nullptr, V); 1234 } 1235 1236 llvm_unreachable("Can't get register for value!"); 1237 } 1238 1239 void SelectionDAGBuilder::visitCatchPad(const CatchPadInst &I) { 1240 auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn()); 1241 bool IsMSVCCXX = Pers == EHPersonality::MSVC_CXX; 1242 bool IsCoreCLR = Pers == EHPersonality::CoreCLR; 1243 MachineBasicBlock *CatchPadMBB = FuncInfo.MBB; 1244 // In MSVC C++ and CoreCLR, catchblocks are funclets and need prologues. 1245 if (IsMSVCCXX || IsCoreCLR) 1246 CatchPadMBB->setIsEHFuncletEntry(); 1247 1248 DAG.setRoot(DAG.getNode(ISD::CATCHPAD, getCurSDLoc(), MVT::Other, getControlRoot())); 1249 } 1250 1251 void SelectionDAGBuilder::visitCatchRet(const CatchReturnInst &I) { 1252 // Update machine-CFG edge. 1253 MachineBasicBlock *TargetMBB = FuncInfo.MBBMap[I.getSuccessor()]; 1254 FuncInfo.MBB->addSuccessor(TargetMBB); 1255 1256 auto Pers = classifyEHPersonality(FuncInfo.Fn->getPersonalityFn()); 1257 bool IsSEH = isAsynchronousEHPersonality(Pers); 1258 if (IsSEH) { 1259 // If this is not a fall-through branch or optimizations are switched off, 1260 // emit the branch. 1261 if (TargetMBB != NextBlock(FuncInfo.MBB) || 1262 TM.getOptLevel() == CodeGenOpt::None) 1263 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other, 1264 getControlRoot(), DAG.getBasicBlock(TargetMBB))); 1265 return; 1266 } 1267 1268 // Figure out the funclet membership for the catchret's successor. 1269 // This will be used by the FuncletLayout pass to determine how to order the 1270 // BB's. 1271 // A 'catchret' returns to the outer scope's color. 1272 Value *ParentPad = I.getCatchSwitchParentPad(); 1273 const BasicBlock *SuccessorColor; 1274 if (isa<ConstantTokenNone>(ParentPad)) 1275 SuccessorColor = &FuncInfo.Fn->getEntryBlock(); 1276 else 1277 SuccessorColor = cast<Instruction>(ParentPad)->getParent(); 1278 assert(SuccessorColor && "No parent funclet for catchret!"); 1279 MachineBasicBlock *SuccessorColorMBB = FuncInfo.MBBMap[SuccessorColor]; 1280 assert(SuccessorColorMBB && "No MBB for SuccessorColor!"); 1281 1282 // Create the terminator node. 1283 SDValue Ret = DAG.getNode(ISD::CATCHRET, getCurSDLoc(), MVT::Other, 1284 getControlRoot(), DAG.getBasicBlock(TargetMBB), 1285 DAG.getBasicBlock(SuccessorColorMBB)); 1286 DAG.setRoot(Ret); 1287 } 1288 1289 void SelectionDAGBuilder::visitCleanupPad(const CleanupPadInst &CPI) { 1290 // Don't emit any special code for the cleanuppad instruction. It just marks 1291 // the start of a funclet. 1292 FuncInfo.MBB->setIsEHFuncletEntry(); 1293 FuncInfo.MBB->setIsCleanupFuncletEntry(); 1294 } 1295 1296 /// When an invoke or a cleanupret unwinds to the next EH pad, there are 1297 /// many places it could ultimately go. In the IR, we have a single unwind 1298 /// destination, but in the machine CFG, we enumerate all the possible blocks. 1299 /// This function skips over imaginary basic blocks that hold catchswitch 1300 /// instructions, and finds all the "real" machine 1301 /// basic block destinations. As those destinations may not be successors of 1302 /// EHPadBB, here we also calculate the edge probability to those destinations. 1303 /// The passed-in Prob is the edge probability to EHPadBB. 1304 static void findUnwindDestinations( 1305 FunctionLoweringInfo &FuncInfo, const BasicBlock *EHPadBB, 1306 BranchProbability Prob, 1307 SmallVectorImpl<std::pair<MachineBasicBlock *, BranchProbability>> 1308 &UnwindDests) { 1309 EHPersonality Personality = 1310 classifyEHPersonality(FuncInfo.Fn->getPersonalityFn()); 1311 bool IsMSVCCXX = Personality == EHPersonality::MSVC_CXX; 1312 bool IsCoreCLR = Personality == EHPersonality::CoreCLR; 1313 1314 while (EHPadBB) { 1315 const Instruction *Pad = EHPadBB->getFirstNonPHI(); 1316 BasicBlock *NewEHPadBB = nullptr; 1317 if (isa<LandingPadInst>(Pad)) { 1318 // Stop on landingpads. They are not funclets. 1319 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); 1320 break; 1321 } else if (isa<CleanupPadInst>(Pad)) { 1322 // Stop on cleanup pads. Cleanups are always funclet entries for all known 1323 // personalities. 1324 UnwindDests.emplace_back(FuncInfo.MBBMap[EHPadBB], Prob); 1325 UnwindDests.back().first->setIsEHFuncletEntry(); 1326 break; 1327 } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Pad)) { 1328 // Add the catchpad handlers to the possible destinations. 1329 for (const BasicBlock *CatchPadBB : CatchSwitch->handlers()) { 1330 UnwindDests.emplace_back(FuncInfo.MBBMap[CatchPadBB], Prob); 1331 // For MSVC++ and the CLR, catchblocks are funclets and need prologues. 1332 if (IsMSVCCXX || IsCoreCLR) 1333 UnwindDests.back().first->setIsEHFuncletEntry(); 1334 } 1335 NewEHPadBB = CatchSwitch->getUnwindDest(); 1336 } else { 1337 continue; 1338 } 1339 1340 BranchProbabilityInfo *BPI = FuncInfo.BPI; 1341 if (BPI && NewEHPadBB) 1342 Prob *= BPI->getEdgeProbability(EHPadBB, NewEHPadBB); 1343 EHPadBB = NewEHPadBB; 1344 } 1345 } 1346 1347 void SelectionDAGBuilder::visitCleanupRet(const CleanupReturnInst &I) { 1348 // Update successor info. 1349 SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests; 1350 auto UnwindDest = I.getUnwindDest(); 1351 BranchProbabilityInfo *BPI = FuncInfo.BPI; 1352 BranchProbability UnwindDestProb = 1353 (BPI && UnwindDest) 1354 ? BPI->getEdgeProbability(FuncInfo.MBB->getBasicBlock(), UnwindDest) 1355 : BranchProbability::getZero(); 1356 findUnwindDestinations(FuncInfo, UnwindDest, UnwindDestProb, UnwindDests); 1357 for (auto &UnwindDest : UnwindDests) { 1358 UnwindDest.first->setIsEHPad(); 1359 addSuccessorWithProb(FuncInfo.MBB, UnwindDest.first, UnwindDest.second); 1360 } 1361 FuncInfo.MBB->normalizeSuccProbs(); 1362 1363 // Create the terminator node. 1364 SDValue Ret = 1365 DAG.getNode(ISD::CLEANUPRET, getCurSDLoc(), MVT::Other, getControlRoot()); 1366 DAG.setRoot(Ret); 1367 } 1368 1369 void SelectionDAGBuilder::visitCatchSwitch(const CatchSwitchInst &CSI) { 1370 report_fatal_error("visitCatchSwitch not yet implemented!"); 1371 } 1372 1373 void SelectionDAGBuilder::visitRet(const ReturnInst &I) { 1374 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 1375 auto &DL = DAG.getDataLayout(); 1376 SDValue Chain = getControlRoot(); 1377 SmallVector<ISD::OutputArg, 8> Outs; 1378 SmallVector<SDValue, 8> OutVals; 1379 1380 // Calls to @llvm.experimental.deoptimize don't generate a return value, so 1381 // lower 1382 // 1383 // %val = call <ty> @llvm.experimental.deoptimize() 1384 // ret <ty> %val 1385 // 1386 // differently. 1387 if (I.getParent()->getTerminatingDeoptimizeCall()) { 1388 LowerDeoptimizingReturn(); 1389 return; 1390 } 1391 1392 if (!FuncInfo.CanLowerReturn) { 1393 unsigned DemoteReg = FuncInfo.DemoteRegister; 1394 const Function *F = I.getParent()->getParent(); 1395 1396 // Emit a store of the return value through the virtual register. 1397 // Leave Outs empty so that LowerReturn won't try to load return 1398 // registers the usual way. 1399 SmallVector<EVT, 1> PtrValueVTs; 1400 ComputeValueVTs(TLI, DL, PointerType::getUnqual(F->getReturnType()), 1401 PtrValueVTs); 1402 1403 SDValue RetPtr = DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(), 1404 DemoteReg, PtrValueVTs[0]); 1405 SDValue RetOp = getValue(I.getOperand(0)); 1406 1407 SmallVector<EVT, 4> ValueVTs; 1408 SmallVector<uint64_t, 4> Offsets; 1409 ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs, &Offsets); 1410 unsigned NumValues = ValueVTs.size(); 1411 1412 // An aggregate return value cannot wrap around the address space, so 1413 // offsets to its parts don't wrap either. 1414 SDNodeFlags Flags; 1415 Flags.setNoUnsignedWrap(true); 1416 1417 SmallVector<SDValue, 4> Chains(NumValues); 1418 for (unsigned i = 0; i != NumValues; ++i) { 1419 SDValue Add = DAG.getNode(ISD::ADD, getCurSDLoc(), 1420 RetPtr.getValueType(), RetPtr, 1421 DAG.getIntPtrConstant(Offsets[i], 1422 getCurSDLoc()), 1423 &Flags); 1424 Chains[i] = 1425 DAG.getStore(Chain, getCurSDLoc(), 1426 SDValue(RetOp.getNode(), RetOp.getResNo() + i), 1427 // FIXME: better loc info would be nice. 1428 Add, MachinePointerInfo(), false, false, 0); 1429 } 1430 1431 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), 1432 MVT::Other, Chains); 1433 } else if (I.getNumOperands() != 0) { 1434 SmallVector<EVT, 4> ValueVTs; 1435 ComputeValueVTs(TLI, DL, I.getOperand(0)->getType(), ValueVTs); 1436 unsigned NumValues = ValueVTs.size(); 1437 if (NumValues) { 1438 SDValue RetOp = getValue(I.getOperand(0)); 1439 1440 const Function *F = I.getParent()->getParent(); 1441 1442 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; 1443 if (F->getAttributes().hasAttribute(AttributeSet::ReturnIndex, 1444 Attribute::SExt)) 1445 ExtendKind = ISD::SIGN_EXTEND; 1446 else if (F->getAttributes().hasAttribute(AttributeSet::ReturnIndex, 1447 Attribute::ZExt)) 1448 ExtendKind = ISD::ZERO_EXTEND; 1449 1450 LLVMContext &Context = F->getContext(); 1451 bool RetInReg = F->getAttributes().hasAttribute(AttributeSet::ReturnIndex, 1452 Attribute::InReg); 1453 1454 for (unsigned j = 0; j != NumValues; ++j) { 1455 EVT VT = ValueVTs[j]; 1456 1457 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) 1458 VT = TLI.getTypeForExtReturn(Context, VT, ExtendKind); 1459 1460 unsigned NumParts = TLI.getNumRegisters(Context, VT); 1461 MVT PartVT = TLI.getRegisterType(Context, VT); 1462 SmallVector<SDValue, 4> Parts(NumParts); 1463 getCopyToParts(DAG, getCurSDLoc(), 1464 SDValue(RetOp.getNode(), RetOp.getResNo() + j), 1465 &Parts[0], NumParts, PartVT, &I, ExtendKind); 1466 1467 // 'inreg' on function refers to return value 1468 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); 1469 if (RetInReg) 1470 Flags.setInReg(); 1471 1472 // Propagate extension type if any 1473 if (ExtendKind == ISD::SIGN_EXTEND) 1474 Flags.setSExt(); 1475 else if (ExtendKind == ISD::ZERO_EXTEND) 1476 Flags.setZExt(); 1477 1478 for (unsigned i = 0; i < NumParts; ++i) { 1479 Outs.push_back(ISD::OutputArg(Flags, Parts[i].getValueType(), 1480 VT, /*isfixed=*/true, 0, 0)); 1481 OutVals.push_back(Parts[i]); 1482 } 1483 } 1484 } 1485 } 1486 1487 // Push in swifterror virtual register as the last element of Outs. This makes 1488 // sure swifterror virtual register will be returned in the swifterror 1489 // physical register. 1490 const Function *F = I.getParent()->getParent(); 1491 if (TLI.supportSwiftError() && 1492 F->getAttributes().hasAttrSomewhere(Attribute::SwiftError)) { 1493 ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); 1494 Flags.setSwiftError(); 1495 Outs.push_back(ISD::OutputArg(Flags, EVT(TLI.getPointerTy(DL)) /*vt*/, 1496 EVT(TLI.getPointerTy(DL)) /*argvt*/, 1497 true /*isfixed*/, 1 /*origidx*/, 1498 0 /*partOffs*/)); 1499 // Create SDNode for the swifterror virtual register. 1500 OutVals.push_back(DAG.getRegister(FuncInfo.SwiftErrorMap[FuncInfo.MBB][0], 1501 EVT(TLI.getPointerTy(DL)))); 1502 } 1503 1504 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); 1505 CallingConv::ID CallConv = 1506 DAG.getMachineFunction().getFunction()->getCallingConv(); 1507 Chain = DAG.getTargetLoweringInfo().LowerReturn( 1508 Chain, CallConv, isVarArg, Outs, OutVals, getCurSDLoc(), DAG); 1509 1510 // Verify that the target's LowerReturn behaved as expected. 1511 assert(Chain.getNode() && Chain.getValueType() == MVT::Other && 1512 "LowerReturn didn't return a valid chain!"); 1513 1514 // Update the DAG with the new chain value resulting from return lowering. 1515 DAG.setRoot(Chain); 1516 } 1517 1518 /// CopyToExportRegsIfNeeded - If the given value has virtual registers 1519 /// created for it, emit nodes to copy the value into the virtual 1520 /// registers. 1521 void SelectionDAGBuilder::CopyToExportRegsIfNeeded(const Value *V) { 1522 // Skip empty types 1523 if (V->getType()->isEmptyTy()) 1524 return; 1525 1526 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); 1527 if (VMI != FuncInfo.ValueMap.end()) { 1528 assert(!V->use_empty() && "Unused value assigned virtual registers!"); 1529 CopyValueToVirtualRegister(V, VMI->second); 1530 } 1531 } 1532 1533 /// ExportFromCurrentBlock - If this condition isn't known to be exported from 1534 /// the current basic block, add it to ValueMap now so that we'll get a 1535 /// CopyTo/FromReg. 1536 void SelectionDAGBuilder::ExportFromCurrentBlock(const Value *V) { 1537 // No need to export constants. 1538 if (!isa<Instruction>(V) && !isa<Argument>(V)) return; 1539 1540 // Already exported? 1541 if (FuncInfo.isExportedInst(V)) return; 1542 1543 unsigned Reg = FuncInfo.InitializeRegForValue(V); 1544 CopyValueToVirtualRegister(V, Reg); 1545 } 1546 1547 bool SelectionDAGBuilder::isExportableFromCurrentBlock(const Value *V, 1548 const BasicBlock *FromBB) { 1549 // The operands of the setcc have to be in this block. We don't know 1550 // how to export them from some other block. 1551 if (const Instruction *VI = dyn_cast<Instruction>(V)) { 1552 // Can export from current BB. 1553 if (VI->getParent() == FromBB) 1554 return true; 1555 1556 // Is already exported, noop. 1557 return FuncInfo.isExportedInst(V); 1558 } 1559 1560 // If this is an argument, we can export it if the BB is the entry block or 1561 // if it is already exported. 1562 if (isa<Argument>(V)) { 1563 if (FromBB == &FromBB->getParent()->getEntryBlock()) 1564 return true; 1565 1566 // Otherwise, can only export this if it is already exported. 1567 return FuncInfo.isExportedInst(V); 1568 } 1569 1570 // Otherwise, constants can always be exported. 1571 return true; 1572 } 1573 1574 /// Return branch probability calculated by BranchProbabilityInfo for IR blocks. 1575 BranchProbability 1576 SelectionDAGBuilder::getEdgeProbability(const MachineBasicBlock *Src, 1577 const MachineBasicBlock *Dst) const { 1578 BranchProbabilityInfo *BPI = FuncInfo.BPI; 1579 const BasicBlock *SrcBB = Src->getBasicBlock(); 1580 const BasicBlock *DstBB = Dst->getBasicBlock(); 1581 if (!BPI) { 1582 // If BPI is not available, set the default probability as 1 / N, where N is 1583 // the number of successors. 1584 auto SuccSize = std::max<uint32_t>( 1585 std::distance(succ_begin(SrcBB), succ_end(SrcBB)), 1); 1586 return BranchProbability(1, SuccSize); 1587 } 1588 return BPI->getEdgeProbability(SrcBB, DstBB); 1589 } 1590 1591 void SelectionDAGBuilder::addSuccessorWithProb(MachineBasicBlock *Src, 1592 MachineBasicBlock *Dst, 1593 BranchProbability Prob) { 1594 if (!FuncInfo.BPI) 1595 Src->addSuccessorWithoutProb(Dst); 1596 else { 1597 if (Prob.isUnknown()) 1598 Prob = getEdgeProbability(Src, Dst); 1599 Src->addSuccessor(Dst, Prob); 1600 } 1601 } 1602 1603 static bool InBlock(const Value *V, const BasicBlock *BB) { 1604 if (const Instruction *I = dyn_cast<Instruction>(V)) 1605 return I->getParent() == BB; 1606 return true; 1607 } 1608 1609 /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. 1610 /// This function emits a branch and is used at the leaves of an OR or an 1611 /// AND operator tree. 1612 /// 1613 void 1614 SelectionDAGBuilder::EmitBranchForMergedCondition(const Value *Cond, 1615 MachineBasicBlock *TBB, 1616 MachineBasicBlock *FBB, 1617 MachineBasicBlock *CurBB, 1618 MachineBasicBlock *SwitchBB, 1619 BranchProbability TProb, 1620 BranchProbability FProb) { 1621 const BasicBlock *BB = CurBB->getBasicBlock(); 1622 1623 // If the leaf of the tree is a comparison, merge the condition into 1624 // the caseblock. 1625 if (const CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { 1626 // The operands of the cmp have to be in this block. We don't know 1627 // how to export them from some other block. If this is the first block 1628 // of the sequence, no exporting is needed. 1629 if (CurBB == SwitchBB || 1630 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && 1631 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { 1632 ISD::CondCode Condition; 1633 if (const ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { 1634 Condition = getICmpCondCode(IC->getPredicate()); 1635 } else { 1636 const FCmpInst *FC = cast<FCmpInst>(Cond); 1637 Condition = getFCmpCondCode(FC->getPredicate()); 1638 if (TM.Options.NoNaNsFPMath) 1639 Condition = getFCmpCodeWithoutNaN(Condition); 1640 } 1641 1642 CaseBlock CB(Condition, BOp->getOperand(0), BOp->getOperand(1), nullptr, 1643 TBB, FBB, CurBB, TProb, FProb); 1644 SwitchCases.push_back(CB); 1645 return; 1646 } 1647 } 1648 1649 // Create a CaseBlock record representing this branch. 1650 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()), 1651 nullptr, TBB, FBB, CurBB, TProb, FProb); 1652 SwitchCases.push_back(CB); 1653 } 1654 1655 /// FindMergedConditions - If Cond is an expression like 1656 void SelectionDAGBuilder::FindMergedConditions(const Value *Cond, 1657 MachineBasicBlock *TBB, 1658 MachineBasicBlock *FBB, 1659 MachineBasicBlock *CurBB, 1660 MachineBasicBlock *SwitchBB, 1661 Instruction::BinaryOps Opc, 1662 BranchProbability TProb, 1663 BranchProbability FProb) { 1664 // If this node is not part of the or/and tree, emit it as a branch. 1665 const Instruction *BOp = dyn_cast<Instruction>(Cond); 1666 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || 1667 (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || 1668 BOp->getParent() != CurBB->getBasicBlock() || 1669 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || 1670 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { 1671 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB, SwitchBB, 1672 TProb, FProb); 1673 return; 1674 } 1675 1676 // Create TmpBB after CurBB. 1677 MachineFunction::iterator BBI(CurBB); 1678 MachineFunction &MF = DAG.getMachineFunction(); 1679 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); 1680 CurBB->getParent()->insert(++BBI, TmpBB); 1681 1682 if (Opc == Instruction::Or) { 1683 // Codegen X | Y as: 1684 // BB1: 1685 // jmp_if_X TBB 1686 // jmp TmpBB 1687 // TmpBB: 1688 // jmp_if_Y TBB 1689 // jmp FBB 1690 // 1691 1692 // We have flexibility in setting Prob for BB1 and Prob for TmpBB. 1693 // The requirement is that 1694 // TrueProb for BB1 + (FalseProb for BB1 * TrueProb for TmpBB) 1695 // = TrueProb for original BB. 1696 // Assuming the original probabilities are A and B, one choice is to set 1697 // BB1's probabilities to A/2 and A/2+B, and set TmpBB's probabilities to 1698 // A/(1+B) and 2B/(1+B). This choice assumes that 1699 // TrueProb for BB1 == FalseProb for BB1 * TrueProb for TmpBB. 1700 // Another choice is to assume TrueProb for BB1 equals to TrueProb for 1701 // TmpBB, but the math is more complicated. 1702 1703 auto NewTrueProb = TProb / 2; 1704 auto NewFalseProb = TProb / 2 + FProb; 1705 // Emit the LHS condition. 1706 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc, 1707 NewTrueProb, NewFalseProb); 1708 1709 // Normalize A/2 and B to get A/(1+B) and 2B/(1+B). 1710 SmallVector<BranchProbability, 2> Probs{TProb / 2, FProb}; 1711 BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end()); 1712 // Emit the RHS condition into TmpBB. 1713 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, 1714 Probs[0], Probs[1]); 1715 } else { 1716 assert(Opc == Instruction::And && "Unknown merge op!"); 1717 // Codegen X & Y as: 1718 // BB1: 1719 // jmp_if_X TmpBB 1720 // jmp FBB 1721 // TmpBB: 1722 // jmp_if_Y TBB 1723 // jmp FBB 1724 // 1725 // This requires creation of TmpBB after CurBB. 1726 1727 // We have flexibility in setting Prob for BB1 and Prob for TmpBB. 1728 // The requirement is that 1729 // FalseProb for BB1 + (TrueProb for BB1 * FalseProb for TmpBB) 1730 // = FalseProb for original BB. 1731 // Assuming the original probabilities are A and B, one choice is to set 1732 // BB1's probabilities to A+B/2 and B/2, and set TmpBB's probabilities to 1733 // 2A/(1+A) and B/(1+A). This choice assumes that FalseProb for BB1 == 1734 // TrueProb for BB1 * FalseProb for TmpBB. 1735 1736 auto NewTrueProb = TProb + FProb / 2; 1737 auto NewFalseProb = FProb / 2; 1738 // Emit the LHS condition. 1739 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc, 1740 NewTrueProb, NewFalseProb); 1741 1742 // Normalize A and B/2 to get 2A/(1+A) and B/(1+A). 1743 SmallVector<BranchProbability, 2> Probs{TProb, FProb / 2}; 1744 BranchProbability::normalizeProbabilities(Probs.begin(), Probs.end()); 1745 // Emit the RHS condition into TmpBB. 1746 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, 1747 Probs[0], Probs[1]); 1748 } 1749 } 1750 1751 /// If the set of cases should be emitted as a series of branches, return true. 1752 /// If we should emit this as a bunch of and/or'd together conditions, return 1753 /// false. 1754 bool 1755 SelectionDAGBuilder::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases) { 1756 if (Cases.size() != 2) return true; 1757 1758 // If this is two comparisons of the same values or'd or and'd together, they 1759 // will get folded into a single comparison, so don't emit two blocks. 1760 if ((Cases[0].CmpLHS == Cases[1].CmpLHS && 1761 Cases[0].CmpRHS == Cases[1].CmpRHS) || 1762 (Cases[0].CmpRHS == Cases[1].CmpLHS && 1763 Cases[0].CmpLHS == Cases[1].CmpRHS)) { 1764 return false; 1765 } 1766 1767 // Handle: (X != null) | (Y != null) --> (X|Y) != 0 1768 // Handle: (X == null) & (Y == null) --> (X|Y) == 0 1769 if (Cases[0].CmpRHS == Cases[1].CmpRHS && 1770 Cases[0].CC == Cases[1].CC && 1771 isa<Constant>(Cases[0].CmpRHS) && 1772 cast<Constant>(Cases[0].CmpRHS)->isNullValue()) { 1773 if (Cases[0].CC == ISD::SETEQ && Cases[0].TrueBB == Cases[1].ThisBB) 1774 return false; 1775 if (Cases[0].CC == ISD::SETNE && Cases[0].FalseBB == Cases[1].ThisBB) 1776 return false; 1777 } 1778 1779 return true; 1780 } 1781 1782 void SelectionDAGBuilder::visitBr(const BranchInst &I) { 1783 MachineBasicBlock *BrMBB = FuncInfo.MBB; 1784 1785 // Update machine-CFG edges. 1786 MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; 1787 1788 if (I.isUnconditional()) { 1789 // Update machine-CFG edges. 1790 BrMBB->addSuccessor(Succ0MBB); 1791 1792 // If this is not a fall-through branch or optimizations are switched off, 1793 // emit the branch. 1794 if (Succ0MBB != NextBlock(BrMBB) || TM.getOptLevel() == CodeGenOpt::None) 1795 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), 1796 MVT::Other, getControlRoot(), 1797 DAG.getBasicBlock(Succ0MBB))); 1798 1799 return; 1800 } 1801 1802 // If this condition is one of the special cases we handle, do special stuff 1803 // now. 1804 const Value *CondVal = I.getCondition(); 1805 MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; 1806 1807 // If this is a series of conditions that are or'd or and'd together, emit 1808 // this as a sequence of branches instead of setcc's with and/or operations. 1809 // As long as jumps are not expensive, this should improve performance. 1810 // For example, instead of something like: 1811 // cmp A, B 1812 // C = seteq 1813 // cmp D, E 1814 // F = setle 1815 // or C, F 1816 // jnz foo 1817 // Emit: 1818 // cmp A, B 1819 // je foo 1820 // cmp D, E 1821 // jle foo 1822 // 1823 if (const BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { 1824 Instruction::BinaryOps Opcode = BOp->getOpcode(); 1825 if (!DAG.getTargetLoweringInfo().isJumpExpensive() && BOp->hasOneUse() && 1826 !I.getMetadata(LLVMContext::MD_unpredictable) && 1827 (Opcode == Instruction::And || Opcode == Instruction::Or)) { 1828 FindMergedConditions(BOp, Succ0MBB, Succ1MBB, BrMBB, BrMBB, 1829 Opcode, 1830 getEdgeProbability(BrMBB, Succ0MBB), 1831 getEdgeProbability(BrMBB, Succ1MBB)); 1832 // If the compares in later blocks need to use values not currently 1833 // exported from this block, export them now. This block should always 1834 // be the first entry. 1835 assert(SwitchCases[0].ThisBB == BrMBB && "Unexpected lowering!"); 1836 1837 // Allow some cases to be rejected. 1838 if (ShouldEmitAsBranches(SwitchCases)) { 1839 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { 1840 ExportFromCurrentBlock(SwitchCases[i].CmpLHS); 1841 ExportFromCurrentBlock(SwitchCases[i].CmpRHS); 1842 } 1843 1844 // Emit the branch for this block. 1845 visitSwitchCase(SwitchCases[0], BrMBB); 1846 SwitchCases.erase(SwitchCases.begin()); 1847 return; 1848 } 1849 1850 // Okay, we decided not to do this, remove any inserted MBB's and clear 1851 // SwitchCases. 1852 for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) 1853 FuncInfo.MF->erase(SwitchCases[i].ThisBB); 1854 1855 SwitchCases.clear(); 1856 } 1857 } 1858 1859 // Create a CaseBlock record representing this branch. 1860 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()), 1861 nullptr, Succ0MBB, Succ1MBB, BrMBB); 1862 1863 // Use visitSwitchCase to actually insert the fast branch sequence for this 1864 // cond branch. 1865 visitSwitchCase(CB, BrMBB); 1866 } 1867 1868 /// visitSwitchCase - Emits the necessary code to represent a single node in 1869 /// the binary search tree resulting from lowering a switch instruction. 1870 void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB, 1871 MachineBasicBlock *SwitchBB) { 1872 SDValue Cond; 1873 SDValue CondLHS = getValue(CB.CmpLHS); 1874 SDLoc dl = getCurSDLoc(); 1875 1876 // Build the setcc now. 1877 if (!CB.CmpMHS) { 1878 // Fold "(X == true)" to X and "(X == false)" to !X to 1879 // handle common cases produced by branch lowering. 1880 if (CB.CmpRHS == ConstantInt::getTrue(*DAG.getContext()) && 1881 CB.CC == ISD::SETEQ) 1882 Cond = CondLHS; 1883 else if (CB.CmpRHS == ConstantInt::getFalse(*DAG.getContext()) && 1884 CB.CC == ISD::SETEQ) { 1885 SDValue True = DAG.getConstant(1, dl, CondLHS.getValueType()); 1886 Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); 1887 } else 1888 Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); 1889 } else { 1890 assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); 1891 1892 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); 1893 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); 1894 1895 SDValue CmpOp = getValue(CB.CmpMHS); 1896 EVT VT = CmpOp.getValueType(); 1897 1898 if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { 1899 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, dl, VT), 1900 ISD::SETLE); 1901 } else { 1902 SDValue SUB = DAG.getNode(ISD::SUB, dl, 1903 VT, CmpOp, DAG.getConstant(Low, dl, VT)); 1904 Cond = DAG.getSetCC(dl, MVT::i1, SUB, 1905 DAG.getConstant(High-Low, dl, VT), ISD::SETULE); 1906 } 1907 } 1908 1909 // Update successor info 1910 addSuccessorWithProb(SwitchBB, CB.TrueBB, CB.TrueProb); 1911 // TrueBB and FalseBB are always different unless the incoming IR is 1912 // degenerate. This only happens when running llc on weird IR. 1913 if (CB.TrueBB != CB.FalseBB) 1914 addSuccessorWithProb(SwitchBB, CB.FalseBB, CB.FalseProb); 1915 SwitchBB->normalizeSuccProbs(); 1916 1917 // If the lhs block is the next block, invert the condition so that we can 1918 // fall through to the lhs instead of the rhs block. 1919 if (CB.TrueBB == NextBlock(SwitchBB)) { 1920 std::swap(CB.TrueBB, CB.FalseBB); 1921 SDValue True = DAG.getConstant(1, dl, Cond.getValueType()); 1922 Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); 1923 } 1924 1925 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, 1926 MVT::Other, getControlRoot(), Cond, 1927 DAG.getBasicBlock(CB.TrueBB)); 1928 1929 // Insert the false branch. Do this even if it's a fall through branch, 1930 // this makes it easier to do DAG optimizations which require inverting 1931 // the branch condition. 1932 BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, 1933 DAG.getBasicBlock(CB.FalseBB)); 1934 1935 DAG.setRoot(BrCond); 1936 } 1937 1938 /// visitJumpTable - Emit JumpTable node in the current MBB 1939 void SelectionDAGBuilder::visitJumpTable(JumpTable &JT) { 1940 // Emit the code for the jump table 1941 assert(JT.Reg != -1U && "Should lower JT Header first!"); 1942 EVT PTy = DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout()); 1943 SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurSDLoc(), 1944 JT.Reg, PTy); 1945 SDValue Table = DAG.getJumpTable(JT.JTI, PTy); 1946 SDValue BrJumpTable = DAG.getNode(ISD::BR_JT, getCurSDLoc(), 1947 MVT::Other, Index.getValue(1), 1948 Table, Index); 1949 DAG.setRoot(BrJumpTable); 1950 } 1951 1952 /// visitJumpTableHeader - This function emits necessary code to produce index 1953 /// in the JumpTable from switch case. 1954 void SelectionDAGBuilder::visitJumpTableHeader(JumpTable &JT, 1955 JumpTableHeader &JTH, 1956 MachineBasicBlock *SwitchBB) { 1957 SDLoc dl = getCurSDLoc(); 1958 1959 // Subtract the lowest switch case value from the value being switched on and 1960 // conditional branch to default mbb if the result is greater than the 1961 // difference between smallest and largest cases. 1962 SDValue SwitchOp = getValue(JTH.SValue); 1963 EVT VT = SwitchOp.getValueType(); 1964 SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp, 1965 DAG.getConstant(JTH.First, dl, VT)); 1966 1967 // The SDNode we just created, which holds the value being switched on minus 1968 // the smallest case value, needs to be copied to a virtual register so it 1969 // can be used as an index into the jump table in a subsequent basic block. 1970 // This value may be smaller or larger than the target's pointer type, and 1971 // therefore require extension or truncating. 1972 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 1973 SwitchOp = DAG.getZExtOrTrunc(Sub, dl, TLI.getPointerTy(DAG.getDataLayout())); 1974 1975 unsigned JumpTableReg = 1976 FuncInfo.CreateReg(TLI.getPointerTy(DAG.getDataLayout())); 1977 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl, 1978 JumpTableReg, SwitchOp); 1979 JT.Reg = JumpTableReg; 1980 1981 // Emit the range check for the jump table, and branch to the default block 1982 // for the switch statement if the value being switched on exceeds the largest 1983 // case in the switch. 1984 SDValue CMP = DAG.getSetCC( 1985 dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), 1986 Sub.getValueType()), 1987 Sub, DAG.getConstant(JTH.Last - JTH.First, dl, VT), ISD::SETUGT); 1988 1989 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, 1990 MVT::Other, CopyTo, CMP, 1991 DAG.getBasicBlock(JT.Default)); 1992 1993 // Avoid emitting unnecessary branches to the next block. 1994 if (JT.MBB != NextBlock(SwitchBB)) 1995 BrCond = DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, 1996 DAG.getBasicBlock(JT.MBB)); 1997 1998 DAG.setRoot(BrCond); 1999 } 2000 2001 /// Create a LOAD_STACK_GUARD node, and let it carry the target specific global 2002 /// variable if there exists one. 2003 static SDValue getLoadStackGuard(SelectionDAG &DAG, SDLoc DL, SDValue &Chain) { 2004 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2005 EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout()); 2006 MachineFunction &MF = DAG.getMachineFunction(); 2007 Value *Global = TLI.getSDagStackGuard(*MF.getFunction()->getParent()); 2008 MachineSDNode *Node = 2009 DAG.getMachineNode(TargetOpcode::LOAD_STACK_GUARD, DL, PtrTy, Chain); 2010 if (Global) { 2011 MachinePointerInfo MPInfo(Global); 2012 MachineInstr::mmo_iterator MemRefs = MF.allocateMemRefsArray(1); 2013 unsigned Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOInvariant; 2014 *MemRefs = MF.getMachineMemOperand(MPInfo, Flags, PtrTy.getSizeInBits() / 8, 2015 DAG.getEVTAlignment(PtrTy)); 2016 Node->setMemRefs(MemRefs, MemRefs + 1); 2017 } 2018 return SDValue(Node, 0); 2019 } 2020 2021 /// Codegen a new tail for a stack protector check ParentMBB which has had its 2022 /// tail spliced into a stack protector check success bb. 2023 /// 2024 /// For a high level explanation of how this fits into the stack protector 2025 /// generation see the comment on the declaration of class 2026 /// StackProtectorDescriptor. 2027 void SelectionDAGBuilder::visitSPDescriptorParent(StackProtectorDescriptor &SPD, 2028 MachineBasicBlock *ParentBB) { 2029 2030 // First create the loads to the guard/stack slot for the comparison. 2031 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2032 EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout()); 2033 2034 MachineFrameInfo *MFI = ParentBB->getParent()->getFrameInfo(); 2035 int FI = MFI->getStackProtectorIndex(); 2036 2037 SDValue Guard; 2038 SDLoc dl = getCurSDLoc(); 2039 SDValue StackSlotPtr = DAG.getFrameIndex(FI, PtrTy); 2040 const Module &M = *ParentBB->getParent()->getFunction()->getParent(); 2041 unsigned Align = DL->getPrefTypeAlignment(Type::getInt8PtrTy(M.getContext())); 2042 2043 // If useLoadStackGuardNode returns true, generate LOAD_STACK_GUARD. 2044 // Otherwise, emit a volatile load to retrieve the stack guard value. 2045 SDValue Chain = DAG.getEntryNode(); 2046 if (TLI.useLoadStackGuardNode()) { 2047 Guard = getLoadStackGuard(DAG, dl, Chain); 2048 } else { 2049 const Value *IRGuard = TLI.getSDagStackGuard(M); 2050 SDValue GuardPtr = getValue(IRGuard); 2051 2052 Guard = 2053 DAG.getLoad(PtrTy, dl, Chain, GuardPtr, MachinePointerInfo(IRGuard, 0), 2054 true, false, false, Align); 2055 } 2056 2057 SDValue StackSlot = DAG.getLoad( 2058 PtrTy, dl, DAG.getEntryNode(), StackSlotPtr, 2059 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), FI), true, 2060 false, false, Align); 2061 2062 // Perform the comparison via a subtract/getsetcc. 2063 EVT VT = Guard.getValueType(); 2064 SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, Guard, StackSlot); 2065 2066 SDValue Cmp = DAG.getSetCC(dl, TLI.getSetCCResultType(DAG.getDataLayout(), 2067 *DAG.getContext(), 2068 Sub.getValueType()), 2069 Sub, DAG.getConstant(0, dl, VT), ISD::SETNE); 2070 2071 // If the sub is not 0, then we know the guard/stackslot do not equal, so 2072 // branch to failure MBB. 2073 SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, 2074 MVT::Other, StackSlot.getOperand(0), 2075 Cmp, DAG.getBasicBlock(SPD.getFailureMBB())); 2076 // Otherwise branch to success MBB. 2077 SDValue Br = DAG.getNode(ISD::BR, dl, 2078 MVT::Other, BrCond, 2079 DAG.getBasicBlock(SPD.getSuccessMBB())); 2080 2081 DAG.setRoot(Br); 2082 } 2083 2084 /// Codegen the failure basic block for a stack protector check. 2085 /// 2086 /// A failure stack protector machine basic block consists simply of a call to 2087 /// __stack_chk_fail(). 2088 /// 2089 /// For a high level explanation of how this fits into the stack protector 2090 /// generation see the comment on the declaration of class 2091 /// StackProtectorDescriptor. 2092 void 2093 SelectionDAGBuilder::visitSPDescriptorFailure(StackProtectorDescriptor &SPD) { 2094 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2095 SDValue Chain = 2096 TLI.makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid, 2097 None, false, getCurSDLoc(), false, false).second; 2098 DAG.setRoot(Chain); 2099 } 2100 2101 /// visitBitTestHeader - This function emits necessary code to produce value 2102 /// suitable for "bit tests" 2103 void SelectionDAGBuilder::visitBitTestHeader(BitTestBlock &B, 2104 MachineBasicBlock *SwitchBB) { 2105 SDLoc dl = getCurSDLoc(); 2106 2107 // Subtract the minimum value 2108 SDValue SwitchOp = getValue(B.SValue); 2109 EVT VT = SwitchOp.getValueType(); 2110 SDValue Sub = DAG.getNode(ISD::SUB, dl, VT, SwitchOp, 2111 DAG.getConstant(B.First, dl, VT)); 2112 2113 // Check range 2114 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2115 SDValue RangeCmp = DAG.getSetCC( 2116 dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), 2117 Sub.getValueType()), 2118 Sub, DAG.getConstant(B.Range, dl, VT), ISD::SETUGT); 2119 2120 // Determine the type of the test operands. 2121 bool UsePtrType = false; 2122 if (!TLI.isTypeLegal(VT)) 2123 UsePtrType = true; 2124 else { 2125 for (unsigned i = 0, e = B.Cases.size(); i != e; ++i) 2126 if (!isUIntN(VT.getSizeInBits(), B.Cases[i].Mask)) { 2127 // Switch table case range are encoded into series of masks. 2128 // Just use pointer type, it's guaranteed to fit. 2129 UsePtrType = true; 2130 break; 2131 } 2132 } 2133 if (UsePtrType) { 2134 VT = TLI.getPointerTy(DAG.getDataLayout()); 2135 Sub = DAG.getZExtOrTrunc(Sub, dl, VT); 2136 } 2137 2138 B.RegVT = VT.getSimpleVT(); 2139 B.Reg = FuncInfo.CreateReg(B.RegVT); 2140 SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), dl, B.Reg, Sub); 2141 2142 MachineBasicBlock* MBB = B.Cases[0].ThisBB; 2143 2144 addSuccessorWithProb(SwitchBB, B.Default, B.DefaultProb); 2145 addSuccessorWithProb(SwitchBB, MBB, B.Prob); 2146 SwitchBB->normalizeSuccProbs(); 2147 2148 SDValue BrRange = DAG.getNode(ISD::BRCOND, dl, 2149 MVT::Other, CopyTo, RangeCmp, 2150 DAG.getBasicBlock(B.Default)); 2151 2152 // Avoid emitting unnecessary branches to the next block. 2153 if (MBB != NextBlock(SwitchBB)) 2154 BrRange = DAG.getNode(ISD::BR, dl, MVT::Other, BrRange, 2155 DAG.getBasicBlock(MBB)); 2156 2157 DAG.setRoot(BrRange); 2158 } 2159 2160 /// visitBitTestCase - this function produces one "bit test" 2161 void SelectionDAGBuilder::visitBitTestCase(BitTestBlock &BB, 2162 MachineBasicBlock* NextMBB, 2163 BranchProbability BranchProbToNext, 2164 unsigned Reg, 2165 BitTestCase &B, 2166 MachineBasicBlock *SwitchBB) { 2167 SDLoc dl = getCurSDLoc(); 2168 MVT VT = BB.RegVT; 2169 SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), dl, Reg, VT); 2170 SDValue Cmp; 2171 unsigned PopCount = countPopulation(B.Mask); 2172 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2173 if (PopCount == 1) { 2174 // Testing for a single bit; just compare the shift count with what it 2175 // would need to be to shift a 1 bit in that position. 2176 Cmp = DAG.getSetCC( 2177 dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT), 2178 ShiftOp, DAG.getConstant(countTrailingZeros(B.Mask), dl, VT), 2179 ISD::SETEQ); 2180 } else if (PopCount == BB.Range) { 2181 // There is only one zero bit in the range, test for it directly. 2182 Cmp = DAG.getSetCC( 2183 dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT), 2184 ShiftOp, DAG.getConstant(countTrailingOnes(B.Mask), dl, VT), 2185 ISD::SETNE); 2186 } else { 2187 // Make desired shift 2188 SDValue SwitchVal = DAG.getNode(ISD::SHL, dl, VT, 2189 DAG.getConstant(1, dl, VT), ShiftOp); 2190 2191 // Emit bit tests and jumps 2192 SDValue AndOp = DAG.getNode(ISD::AND, dl, 2193 VT, SwitchVal, DAG.getConstant(B.Mask, dl, VT)); 2194 Cmp = DAG.getSetCC( 2195 dl, TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT), 2196 AndOp, DAG.getConstant(0, dl, VT), ISD::SETNE); 2197 } 2198 2199 // The branch probability from SwitchBB to B.TargetBB is B.ExtraProb. 2200 addSuccessorWithProb(SwitchBB, B.TargetBB, B.ExtraProb); 2201 // The branch probability from SwitchBB to NextMBB is BranchProbToNext. 2202 addSuccessorWithProb(SwitchBB, NextMBB, BranchProbToNext); 2203 // It is not guaranteed that the sum of B.ExtraProb and BranchProbToNext is 2204 // one as they are relative probabilities (and thus work more like weights), 2205 // and hence we need to normalize them to let the sum of them become one. 2206 SwitchBB->normalizeSuccProbs(); 2207 2208 SDValue BrAnd = DAG.getNode(ISD::BRCOND, dl, 2209 MVT::Other, getControlRoot(), 2210 Cmp, DAG.getBasicBlock(B.TargetBB)); 2211 2212 // Avoid emitting unnecessary branches to the next block. 2213 if (NextMBB != NextBlock(SwitchBB)) 2214 BrAnd = DAG.getNode(ISD::BR, dl, MVT::Other, BrAnd, 2215 DAG.getBasicBlock(NextMBB)); 2216 2217 DAG.setRoot(BrAnd); 2218 } 2219 2220 void SelectionDAGBuilder::visitInvoke(const InvokeInst &I) { 2221 MachineBasicBlock *InvokeMBB = FuncInfo.MBB; 2222 2223 // Retrieve successors. Look through artificial IR level blocks like 2224 // catchswitch for successors. 2225 MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; 2226 const BasicBlock *EHPadBB = I.getSuccessor(1); 2227 2228 // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't 2229 // have to do anything here to lower funclet bundles. 2230 assert(!I.hasOperandBundlesOtherThan( 2231 {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) && 2232 "Cannot lower invokes with arbitrary operand bundles yet!"); 2233 2234 const Value *Callee(I.getCalledValue()); 2235 const Function *Fn = dyn_cast<Function>(Callee); 2236 if (isa<InlineAsm>(Callee)) 2237 visitInlineAsm(&I); 2238 else if (Fn && Fn->isIntrinsic()) { 2239 switch (Fn->getIntrinsicID()) { 2240 default: 2241 llvm_unreachable("Cannot invoke this intrinsic"); 2242 case Intrinsic::donothing: 2243 // Ignore invokes to @llvm.donothing: jump directly to the next BB. 2244 break; 2245 case Intrinsic::experimental_patchpoint_void: 2246 case Intrinsic::experimental_patchpoint_i64: 2247 visitPatchpoint(&I, EHPadBB); 2248 break; 2249 case Intrinsic::experimental_gc_statepoint: 2250 LowerStatepoint(ImmutableStatepoint(&I), EHPadBB); 2251 break; 2252 } 2253 } else if (I.countOperandBundlesOfType(LLVMContext::OB_deopt)) { 2254 // Currently we do not lower any intrinsic calls with deopt operand bundles. 2255 // Eventually we will support lowering the @llvm.experimental.deoptimize 2256 // intrinsic, and right now there are no plans to support other intrinsics 2257 // with deopt state. 2258 LowerCallSiteWithDeoptBundle(&I, getValue(Callee), EHPadBB); 2259 } else { 2260 LowerCallTo(&I, getValue(Callee), false, EHPadBB); 2261 } 2262 2263 // If the value of the invoke is used outside of its defining block, make it 2264 // available as a virtual register. 2265 // We already took care of the exported value for the statepoint instruction 2266 // during call to the LowerStatepoint. 2267 if (!isStatepoint(I)) { 2268 CopyToExportRegsIfNeeded(&I); 2269 } 2270 2271 SmallVector<std::pair<MachineBasicBlock *, BranchProbability>, 1> UnwindDests; 2272 BranchProbabilityInfo *BPI = FuncInfo.BPI; 2273 BranchProbability EHPadBBProb = 2274 BPI ? BPI->getEdgeProbability(InvokeMBB->getBasicBlock(), EHPadBB) 2275 : BranchProbability::getZero(); 2276 findUnwindDestinations(FuncInfo, EHPadBB, EHPadBBProb, UnwindDests); 2277 2278 // Update successor info. 2279 addSuccessorWithProb(InvokeMBB, Return); 2280 for (auto &UnwindDest : UnwindDests) { 2281 UnwindDest.first->setIsEHPad(); 2282 addSuccessorWithProb(InvokeMBB, UnwindDest.first, UnwindDest.second); 2283 } 2284 InvokeMBB->normalizeSuccProbs(); 2285 2286 // Drop into normal successor. 2287 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), 2288 MVT::Other, getControlRoot(), 2289 DAG.getBasicBlock(Return))); 2290 } 2291 2292 void SelectionDAGBuilder::visitResume(const ResumeInst &RI) { 2293 llvm_unreachable("SelectionDAGBuilder shouldn't visit resume instructions!"); 2294 } 2295 2296 void SelectionDAGBuilder::visitLandingPad(const LandingPadInst &LP) { 2297 assert(FuncInfo.MBB->isEHPad() && 2298 "Call to landingpad not in landing pad!"); 2299 2300 MachineBasicBlock *MBB = FuncInfo.MBB; 2301 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI(); 2302 AddLandingPadInfo(LP, MMI, MBB); 2303 2304 // If there aren't registers to copy the values into (e.g., during SjLj 2305 // exceptions), then don't bother to create these DAG nodes. 2306 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2307 const Constant *PersonalityFn = FuncInfo.Fn->getPersonalityFn(); 2308 if (TLI.getExceptionPointerRegister(PersonalityFn) == 0 && 2309 TLI.getExceptionSelectorRegister(PersonalityFn) == 0) 2310 return; 2311 2312 // If landingpad's return type is token type, we don't create DAG nodes 2313 // for its exception pointer and selector value. The extraction of exception 2314 // pointer or selector value from token type landingpads is not currently 2315 // supported. 2316 if (LP.getType()->isTokenTy()) 2317 return; 2318 2319 SmallVector<EVT, 2> ValueVTs; 2320 SDLoc dl = getCurSDLoc(); 2321 ComputeValueVTs(TLI, DAG.getDataLayout(), LP.getType(), ValueVTs); 2322 assert(ValueVTs.size() == 2 && "Only two-valued landingpads are supported"); 2323 2324 // Get the two live-in registers as SDValues. The physregs have already been 2325 // copied into virtual registers. 2326 SDValue Ops[2]; 2327 if (FuncInfo.ExceptionPointerVirtReg) { 2328 Ops[0] = DAG.getZExtOrTrunc( 2329 DAG.getCopyFromReg(DAG.getEntryNode(), dl, 2330 FuncInfo.ExceptionPointerVirtReg, 2331 TLI.getPointerTy(DAG.getDataLayout())), 2332 dl, ValueVTs[0]); 2333 } else { 2334 Ops[0] = DAG.getConstant(0, dl, TLI.getPointerTy(DAG.getDataLayout())); 2335 } 2336 Ops[1] = DAG.getZExtOrTrunc( 2337 DAG.getCopyFromReg(DAG.getEntryNode(), dl, 2338 FuncInfo.ExceptionSelectorVirtReg, 2339 TLI.getPointerTy(DAG.getDataLayout())), 2340 dl, ValueVTs[1]); 2341 2342 // Merge into one. 2343 SDValue Res = DAG.getNode(ISD::MERGE_VALUES, dl, 2344 DAG.getVTList(ValueVTs), Ops); 2345 setValue(&LP, Res); 2346 } 2347 2348 void SelectionDAGBuilder::sortAndRangeify(CaseClusterVector &Clusters) { 2349 #ifndef NDEBUG 2350 for (const CaseCluster &CC : Clusters) 2351 assert(CC.Low == CC.High && "Input clusters must be single-case"); 2352 #endif 2353 2354 std::sort(Clusters.begin(), Clusters.end(), 2355 [](const CaseCluster &a, const CaseCluster &b) { 2356 return a.Low->getValue().slt(b.Low->getValue()); 2357 }); 2358 2359 // Merge adjacent clusters with the same destination. 2360 const unsigned N = Clusters.size(); 2361 unsigned DstIndex = 0; 2362 for (unsigned SrcIndex = 0; SrcIndex < N; ++SrcIndex) { 2363 CaseCluster &CC = Clusters[SrcIndex]; 2364 const ConstantInt *CaseVal = CC.Low; 2365 MachineBasicBlock *Succ = CC.MBB; 2366 2367 if (DstIndex != 0 && Clusters[DstIndex - 1].MBB == Succ && 2368 (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) { 2369 // If this case has the same successor and is a neighbour, merge it into 2370 // the previous cluster. 2371 Clusters[DstIndex - 1].High = CaseVal; 2372 Clusters[DstIndex - 1].Prob += CC.Prob; 2373 } else { 2374 std::memmove(&Clusters[DstIndex++], &Clusters[SrcIndex], 2375 sizeof(Clusters[SrcIndex])); 2376 } 2377 } 2378 Clusters.resize(DstIndex); 2379 } 2380 2381 void SelectionDAGBuilder::UpdateSplitBlock(MachineBasicBlock *First, 2382 MachineBasicBlock *Last) { 2383 // Update JTCases. 2384 for (unsigned i = 0, e = JTCases.size(); i != e; ++i) 2385 if (JTCases[i].first.HeaderBB == First) 2386 JTCases[i].first.HeaderBB = Last; 2387 2388 // Update BitTestCases. 2389 for (unsigned i = 0, e = BitTestCases.size(); i != e; ++i) 2390 if (BitTestCases[i].Parent == First) 2391 BitTestCases[i].Parent = Last; 2392 } 2393 2394 void SelectionDAGBuilder::visitIndirectBr(const IndirectBrInst &I) { 2395 MachineBasicBlock *IndirectBrMBB = FuncInfo.MBB; 2396 2397 // Update machine-CFG edges with unique successors. 2398 SmallSet<BasicBlock*, 32> Done; 2399 for (unsigned i = 0, e = I.getNumSuccessors(); i != e; ++i) { 2400 BasicBlock *BB = I.getSuccessor(i); 2401 bool Inserted = Done.insert(BB).second; 2402 if (!Inserted) 2403 continue; 2404 2405 MachineBasicBlock *Succ = FuncInfo.MBBMap[BB]; 2406 addSuccessorWithProb(IndirectBrMBB, Succ); 2407 } 2408 IndirectBrMBB->normalizeSuccProbs(); 2409 2410 DAG.setRoot(DAG.getNode(ISD::BRIND, getCurSDLoc(), 2411 MVT::Other, getControlRoot(), 2412 getValue(I.getAddress()))); 2413 } 2414 2415 void SelectionDAGBuilder::visitUnreachable(const UnreachableInst &I) { 2416 if (DAG.getTarget().Options.TrapUnreachable) 2417 DAG.setRoot( 2418 DAG.getNode(ISD::TRAP, getCurSDLoc(), MVT::Other, DAG.getRoot())); 2419 } 2420 2421 void SelectionDAGBuilder::visitFSub(const User &I) { 2422 // -0.0 - X --> fneg 2423 Type *Ty = I.getType(); 2424 if (isa<Constant>(I.getOperand(0)) && 2425 I.getOperand(0) == ConstantFP::getZeroValueForNegation(Ty)) { 2426 SDValue Op2 = getValue(I.getOperand(1)); 2427 setValue(&I, DAG.getNode(ISD::FNEG, getCurSDLoc(), 2428 Op2.getValueType(), Op2)); 2429 return; 2430 } 2431 2432 visitBinary(I, ISD::FSUB); 2433 } 2434 2435 /// Checks if the given instruction performs a vector reduction, in which case 2436 /// we have the freedom to alter the elements in the result as long as the 2437 /// reduction of them stays unchanged. 2438 static bool isVectorReductionOp(const User *I) { 2439 const Instruction *Inst = dyn_cast<Instruction>(I); 2440 if (!Inst || !Inst->getType()->isVectorTy()) 2441 return false; 2442 2443 auto OpCode = Inst->getOpcode(); 2444 switch (OpCode) { 2445 case Instruction::Add: 2446 case Instruction::Mul: 2447 case Instruction::And: 2448 case Instruction::Or: 2449 case Instruction::Xor: 2450 break; 2451 case Instruction::FAdd: 2452 case Instruction::FMul: 2453 if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst)) 2454 if (FPOp->getFastMathFlags().unsafeAlgebra()) 2455 break; 2456 // Fall through. 2457 default: 2458 return false; 2459 } 2460 2461 unsigned ElemNum = Inst->getType()->getVectorNumElements(); 2462 unsigned ElemNumToReduce = ElemNum; 2463 2464 // Do DFS search on the def-use chain from the given instruction. We only 2465 // allow four kinds of operations during the search until we reach the 2466 // instruction that extracts the first element from the vector: 2467 // 2468 // 1. The reduction operation of the same opcode as the given instruction. 2469 // 2470 // 2. PHI node. 2471 // 2472 // 3. ShuffleVector instruction together with a reduction operation that 2473 // does a partial reduction. 2474 // 2475 // 4. ExtractElement that extracts the first element from the vector, and we 2476 // stop searching the def-use chain here. 2477 // 2478 // 3 & 4 above perform a reduction on all elements of the vector. We push defs 2479 // from 1-3 to the stack to continue the DFS. The given instruction is not 2480 // a reduction operation if we meet any other instructions other than those 2481 // listed above. 2482 2483 SmallVector<const User *, 16> UsersToVisit{Inst}; 2484 SmallPtrSet<const User *, 16> Visited; 2485 bool ReduxExtracted = false; 2486 2487 while (!UsersToVisit.empty()) { 2488 auto User = UsersToVisit.back(); 2489 UsersToVisit.pop_back(); 2490 if (!Visited.insert(User).second) 2491 continue; 2492 2493 for (const auto &U : User->users()) { 2494 auto Inst = dyn_cast<Instruction>(U); 2495 if (!Inst) 2496 return false; 2497 2498 if (Inst->getOpcode() == OpCode || isa<PHINode>(U)) { 2499 if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(Inst)) 2500 if (!isa<PHINode>(FPOp) && !FPOp->getFastMathFlags().unsafeAlgebra()) 2501 return false; 2502 UsersToVisit.push_back(U); 2503 } else if (const ShuffleVectorInst *ShufInst = 2504 dyn_cast<ShuffleVectorInst>(U)) { 2505 // Detect the following pattern: A ShuffleVector instruction together 2506 // with a reduction that do partial reduction on the first and second 2507 // ElemNumToReduce / 2 elements, and store the result in 2508 // ElemNumToReduce / 2 elements in another vector. 2509 2510 unsigned ResultElements = ShufInst->getType()->getVectorNumElements(); 2511 if (ResultElements < ElemNum) 2512 return false; 2513 2514 if (ElemNumToReduce == 1) 2515 return false; 2516 if (!isa<UndefValue>(U->getOperand(1))) 2517 return false; 2518 for (unsigned i = 0; i < ElemNumToReduce / 2; ++i) 2519 if (ShufInst->getMaskValue(i) != int(i + ElemNumToReduce / 2)) 2520 return false; 2521 for (unsigned i = ElemNumToReduce / 2; i < ElemNum; ++i) 2522 if (ShufInst->getMaskValue(i) != -1) 2523 return false; 2524 2525 // There is only one user of this ShuffleVector instruction, which 2526 // must be a reduction operation. 2527 if (!U->hasOneUse()) 2528 return false; 2529 2530 auto U2 = dyn_cast<Instruction>(*U->user_begin()); 2531 if (!U2 || U2->getOpcode() != OpCode) 2532 return false; 2533 2534 // Check operands of the reduction operation. 2535 if ((U2->getOperand(0) == U->getOperand(0) && U2->getOperand(1) == U) || 2536 (U2->getOperand(1) == U->getOperand(0) && U2->getOperand(0) == U)) { 2537 UsersToVisit.push_back(U2); 2538 ElemNumToReduce /= 2; 2539 } else 2540 return false; 2541 } else if (isa<ExtractElementInst>(U)) { 2542 // At this moment we should have reduced all elements in the vector. 2543 if (ElemNumToReduce != 1) 2544 return false; 2545 2546 const ConstantInt *Val = dyn_cast<ConstantInt>(U->getOperand(1)); 2547 if (!Val || Val->getZExtValue() != 0) 2548 return false; 2549 2550 ReduxExtracted = true; 2551 } else 2552 return false; 2553 } 2554 } 2555 return ReduxExtracted; 2556 } 2557 2558 void SelectionDAGBuilder::visitBinary(const User &I, unsigned OpCode) { 2559 SDValue Op1 = getValue(I.getOperand(0)); 2560 SDValue Op2 = getValue(I.getOperand(1)); 2561 2562 bool nuw = false; 2563 bool nsw = false; 2564 bool exact = false; 2565 bool vec_redux = false; 2566 FastMathFlags FMF; 2567 2568 if (const OverflowingBinaryOperator *OFBinOp = 2569 dyn_cast<const OverflowingBinaryOperator>(&I)) { 2570 nuw = OFBinOp->hasNoUnsignedWrap(); 2571 nsw = OFBinOp->hasNoSignedWrap(); 2572 } 2573 if (const PossiblyExactOperator *ExactOp = 2574 dyn_cast<const PossiblyExactOperator>(&I)) 2575 exact = ExactOp->isExact(); 2576 if (const FPMathOperator *FPOp = dyn_cast<const FPMathOperator>(&I)) 2577 FMF = FPOp->getFastMathFlags(); 2578 2579 if (isVectorReductionOp(&I)) { 2580 vec_redux = true; 2581 DEBUG(dbgs() << "Detected a reduction operation:" << I << "\n"); 2582 } 2583 2584 SDNodeFlags Flags; 2585 Flags.setExact(exact); 2586 Flags.setNoSignedWrap(nsw); 2587 Flags.setNoUnsignedWrap(nuw); 2588 Flags.setVectorReduction(vec_redux); 2589 if (EnableFMFInDAG) { 2590 Flags.setAllowReciprocal(FMF.allowReciprocal()); 2591 Flags.setNoInfs(FMF.noInfs()); 2592 Flags.setNoNaNs(FMF.noNaNs()); 2593 Flags.setNoSignedZeros(FMF.noSignedZeros()); 2594 Flags.setUnsafeAlgebra(FMF.unsafeAlgebra()); 2595 } 2596 SDValue BinNodeValue = DAG.getNode(OpCode, getCurSDLoc(), Op1.getValueType(), 2597 Op1, Op2, &Flags); 2598 setValue(&I, BinNodeValue); 2599 } 2600 2601 void SelectionDAGBuilder::visitShift(const User &I, unsigned Opcode) { 2602 SDValue Op1 = getValue(I.getOperand(0)); 2603 SDValue Op2 = getValue(I.getOperand(1)); 2604 2605 EVT ShiftTy = DAG.getTargetLoweringInfo().getShiftAmountTy( 2606 Op2.getValueType(), DAG.getDataLayout()); 2607 2608 // Coerce the shift amount to the right type if we can. 2609 if (!I.getType()->isVectorTy() && Op2.getValueType() != ShiftTy) { 2610 unsigned ShiftSize = ShiftTy.getSizeInBits(); 2611 unsigned Op2Size = Op2.getValueType().getSizeInBits(); 2612 SDLoc DL = getCurSDLoc(); 2613 2614 // If the operand is smaller than the shift count type, promote it. 2615 if (ShiftSize > Op2Size) 2616 Op2 = DAG.getNode(ISD::ZERO_EXTEND, DL, ShiftTy, Op2); 2617 2618 // If the operand is larger than the shift count type but the shift 2619 // count type has enough bits to represent any shift value, truncate 2620 // it now. This is a common case and it exposes the truncate to 2621 // optimization early. 2622 else if (ShiftSize >= Log2_32_Ceil(Op2.getValueType().getSizeInBits())) 2623 Op2 = DAG.getNode(ISD::TRUNCATE, DL, ShiftTy, Op2); 2624 // Otherwise we'll need to temporarily settle for some other convenient 2625 // type. Type legalization will make adjustments once the shiftee is split. 2626 else 2627 Op2 = DAG.getZExtOrTrunc(Op2, DL, MVT::i32); 2628 } 2629 2630 bool nuw = false; 2631 bool nsw = false; 2632 bool exact = false; 2633 2634 if (Opcode == ISD::SRL || Opcode == ISD::SRA || Opcode == ISD::SHL) { 2635 2636 if (const OverflowingBinaryOperator *OFBinOp = 2637 dyn_cast<const OverflowingBinaryOperator>(&I)) { 2638 nuw = OFBinOp->hasNoUnsignedWrap(); 2639 nsw = OFBinOp->hasNoSignedWrap(); 2640 } 2641 if (const PossiblyExactOperator *ExactOp = 2642 dyn_cast<const PossiblyExactOperator>(&I)) 2643 exact = ExactOp->isExact(); 2644 } 2645 SDNodeFlags Flags; 2646 Flags.setExact(exact); 2647 Flags.setNoSignedWrap(nsw); 2648 Flags.setNoUnsignedWrap(nuw); 2649 SDValue Res = DAG.getNode(Opcode, getCurSDLoc(), Op1.getValueType(), Op1, Op2, 2650 &Flags); 2651 setValue(&I, Res); 2652 } 2653 2654 void SelectionDAGBuilder::visitSDiv(const User &I) { 2655 SDValue Op1 = getValue(I.getOperand(0)); 2656 SDValue Op2 = getValue(I.getOperand(1)); 2657 2658 SDNodeFlags Flags; 2659 Flags.setExact(isa<PossiblyExactOperator>(&I) && 2660 cast<PossiblyExactOperator>(&I)->isExact()); 2661 setValue(&I, DAG.getNode(ISD::SDIV, getCurSDLoc(), Op1.getValueType(), Op1, 2662 Op2, &Flags)); 2663 } 2664 2665 void SelectionDAGBuilder::visitICmp(const User &I) { 2666 ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; 2667 if (const ICmpInst *IC = dyn_cast<ICmpInst>(&I)) 2668 predicate = IC->getPredicate(); 2669 else if (const ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) 2670 predicate = ICmpInst::Predicate(IC->getPredicate()); 2671 SDValue Op1 = getValue(I.getOperand(0)); 2672 SDValue Op2 = getValue(I.getOperand(1)); 2673 ISD::CondCode Opcode = getICmpCondCode(predicate); 2674 2675 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2676 I.getType()); 2677 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Opcode)); 2678 } 2679 2680 void SelectionDAGBuilder::visitFCmp(const User &I) { 2681 FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; 2682 if (const FCmpInst *FC = dyn_cast<FCmpInst>(&I)) 2683 predicate = FC->getPredicate(); 2684 else if (const ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) 2685 predicate = FCmpInst::Predicate(FC->getPredicate()); 2686 SDValue Op1 = getValue(I.getOperand(0)); 2687 SDValue Op2 = getValue(I.getOperand(1)); 2688 ISD::CondCode Condition = getFCmpCondCode(predicate); 2689 2690 // FIXME: Fcmp instructions have fast-math-flags in IR, so we should use them. 2691 // FIXME: We should propagate the fast-math-flags to the DAG node itself for 2692 // further optimization, but currently FMF is only applicable to binary nodes. 2693 if (TM.Options.NoNaNsFPMath) 2694 Condition = getFCmpCodeWithoutNaN(Condition); 2695 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2696 I.getType()); 2697 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Condition)); 2698 } 2699 2700 void SelectionDAGBuilder::visitSelect(const User &I) { 2701 SmallVector<EVT, 4> ValueVTs; 2702 ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), I.getType(), 2703 ValueVTs); 2704 unsigned NumValues = ValueVTs.size(); 2705 if (NumValues == 0) return; 2706 2707 SmallVector<SDValue, 4> Values(NumValues); 2708 SDValue Cond = getValue(I.getOperand(0)); 2709 SDValue LHSVal = getValue(I.getOperand(1)); 2710 SDValue RHSVal = getValue(I.getOperand(2)); 2711 auto BaseOps = {Cond}; 2712 ISD::NodeType OpCode = Cond.getValueType().isVector() ? 2713 ISD::VSELECT : ISD::SELECT; 2714 2715 // Min/max matching is only viable if all output VTs are the same. 2716 if (std::equal(ValueVTs.begin(), ValueVTs.end(), ValueVTs.begin())) { 2717 EVT VT = ValueVTs[0]; 2718 LLVMContext &Ctx = *DAG.getContext(); 2719 auto &TLI = DAG.getTargetLoweringInfo(); 2720 2721 // We care about the legality of the operation after it has been type 2722 // legalized. 2723 while (TLI.getTypeAction(Ctx, VT) != TargetLoweringBase::TypeLegal && 2724 VT != TLI.getTypeToTransformTo(Ctx, VT)) 2725 VT = TLI.getTypeToTransformTo(Ctx, VT); 2726 2727 // If the vselect is legal, assume we want to leave this as a vector setcc + 2728 // vselect. Otherwise, if this is going to be scalarized, we want to see if 2729 // min/max is legal on the scalar type. 2730 bool UseScalarMinMax = VT.isVector() && 2731 !TLI.isOperationLegalOrCustom(ISD::VSELECT, VT); 2732 2733 Value *LHS, *RHS; 2734 auto SPR = matchSelectPattern(const_cast<User*>(&I), LHS, RHS); 2735 ISD::NodeType Opc = ISD::DELETED_NODE; 2736 switch (SPR.Flavor) { 2737 case SPF_UMAX: Opc = ISD::UMAX; break; 2738 case SPF_UMIN: Opc = ISD::UMIN; break; 2739 case SPF_SMAX: Opc = ISD::SMAX; break; 2740 case SPF_SMIN: Opc = ISD::SMIN; break; 2741 case SPF_FMINNUM: 2742 switch (SPR.NaNBehavior) { 2743 case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?"); 2744 case SPNB_RETURNS_NAN: Opc = ISD::FMINNAN; break; 2745 case SPNB_RETURNS_OTHER: Opc = ISD::FMINNUM; break; 2746 case SPNB_RETURNS_ANY: { 2747 if (TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT)) 2748 Opc = ISD::FMINNUM; 2749 else if (TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT)) 2750 Opc = ISD::FMINNAN; 2751 else if (UseScalarMinMax) 2752 Opc = TLI.isOperationLegalOrCustom(ISD::FMINNUM, VT.getScalarType()) ? 2753 ISD::FMINNUM : ISD::FMINNAN; 2754 break; 2755 } 2756 } 2757 break; 2758 case SPF_FMAXNUM: 2759 switch (SPR.NaNBehavior) { 2760 case SPNB_NA: llvm_unreachable("No NaN behavior for FP op?"); 2761 case SPNB_RETURNS_NAN: Opc = ISD::FMAXNAN; break; 2762 case SPNB_RETURNS_OTHER: Opc = ISD::FMAXNUM; break; 2763 case SPNB_RETURNS_ANY: 2764 2765 if (TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT)) 2766 Opc = ISD::FMAXNUM; 2767 else if (TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT)) 2768 Opc = ISD::FMAXNAN; 2769 else if (UseScalarMinMax) 2770 Opc = TLI.isOperationLegalOrCustom(ISD::FMAXNUM, VT.getScalarType()) ? 2771 ISD::FMAXNUM : ISD::FMAXNAN; 2772 break; 2773 } 2774 break; 2775 default: break; 2776 } 2777 2778 if (Opc != ISD::DELETED_NODE && 2779 (TLI.isOperationLegalOrCustom(Opc, VT) || 2780 (UseScalarMinMax && 2781 TLI.isOperationLegalOrCustom(Opc, VT.getScalarType()))) && 2782 // If the underlying comparison instruction is used by any other 2783 // instruction, the consumed instructions won't be destroyed, so it is 2784 // not profitable to convert to a min/max. 2785 cast<SelectInst>(&I)->getCondition()->hasOneUse()) { 2786 OpCode = Opc; 2787 LHSVal = getValue(LHS); 2788 RHSVal = getValue(RHS); 2789 BaseOps = {}; 2790 } 2791 } 2792 2793 for (unsigned i = 0; i != NumValues; ++i) { 2794 SmallVector<SDValue, 3> Ops(BaseOps.begin(), BaseOps.end()); 2795 Ops.push_back(SDValue(LHSVal.getNode(), LHSVal.getResNo() + i)); 2796 Ops.push_back(SDValue(RHSVal.getNode(), RHSVal.getResNo() + i)); 2797 Values[i] = DAG.getNode(OpCode, getCurSDLoc(), 2798 LHSVal.getNode()->getValueType(LHSVal.getResNo()+i), 2799 Ops); 2800 } 2801 2802 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(), 2803 DAG.getVTList(ValueVTs), Values)); 2804 } 2805 2806 void SelectionDAGBuilder::visitTrunc(const User &I) { 2807 // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). 2808 SDValue N = getValue(I.getOperand(0)); 2809 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2810 I.getType()); 2811 setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), DestVT, N)); 2812 } 2813 2814 void SelectionDAGBuilder::visitZExt(const User &I) { 2815 // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). 2816 // ZExt also can't be a cast to bool for same reason. So, nothing much to do 2817 SDValue N = getValue(I.getOperand(0)); 2818 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2819 I.getType()); 2820 setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurSDLoc(), DestVT, N)); 2821 } 2822 2823 void SelectionDAGBuilder::visitSExt(const User &I) { 2824 // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). 2825 // SExt also can't be a cast to bool for same reason. So, nothing much to do 2826 SDValue N = getValue(I.getOperand(0)); 2827 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2828 I.getType()); 2829 setValue(&I, DAG.getNode(ISD::SIGN_EXTEND, getCurSDLoc(), DestVT, N)); 2830 } 2831 2832 void SelectionDAGBuilder::visitFPTrunc(const User &I) { 2833 // FPTrunc is never a no-op cast, no need to check 2834 SDValue N = getValue(I.getOperand(0)); 2835 SDLoc dl = getCurSDLoc(); 2836 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2837 EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 2838 setValue(&I, DAG.getNode(ISD::FP_ROUND, dl, DestVT, N, 2839 DAG.getTargetConstant( 2840 0, dl, TLI.getPointerTy(DAG.getDataLayout())))); 2841 } 2842 2843 void SelectionDAGBuilder::visitFPExt(const User &I) { 2844 // FPExt is never a no-op cast, no need to check 2845 SDValue N = getValue(I.getOperand(0)); 2846 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2847 I.getType()); 2848 setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurSDLoc(), DestVT, N)); 2849 } 2850 2851 void SelectionDAGBuilder::visitFPToUI(const User &I) { 2852 // FPToUI is never a no-op cast, no need to check 2853 SDValue N = getValue(I.getOperand(0)); 2854 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2855 I.getType()); 2856 setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurSDLoc(), DestVT, N)); 2857 } 2858 2859 void SelectionDAGBuilder::visitFPToSI(const User &I) { 2860 // FPToSI is never a no-op cast, no need to check 2861 SDValue N = getValue(I.getOperand(0)); 2862 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2863 I.getType()); 2864 setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurSDLoc(), DestVT, N)); 2865 } 2866 2867 void SelectionDAGBuilder::visitUIToFP(const User &I) { 2868 // UIToFP is never a no-op cast, no need to check 2869 SDValue N = getValue(I.getOperand(0)); 2870 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2871 I.getType()); 2872 setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurSDLoc(), DestVT, N)); 2873 } 2874 2875 void SelectionDAGBuilder::visitSIToFP(const User &I) { 2876 // SIToFP is never a no-op cast, no need to check 2877 SDValue N = getValue(I.getOperand(0)); 2878 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2879 I.getType()); 2880 setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurSDLoc(), DestVT, N)); 2881 } 2882 2883 void SelectionDAGBuilder::visitPtrToInt(const User &I) { 2884 // What to do depends on the size of the integer and the size of the pointer. 2885 // We can either truncate, zero extend, or no-op, accordingly. 2886 SDValue N = getValue(I.getOperand(0)); 2887 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2888 I.getType()); 2889 setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT)); 2890 } 2891 2892 void SelectionDAGBuilder::visitIntToPtr(const User &I) { 2893 // What to do depends on the size of the integer and the size of the pointer. 2894 // We can either truncate, zero extend, or no-op, accordingly. 2895 SDValue N = getValue(I.getOperand(0)); 2896 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2897 I.getType()); 2898 setValue(&I, DAG.getZExtOrTrunc(N, getCurSDLoc(), DestVT)); 2899 } 2900 2901 void SelectionDAGBuilder::visitBitCast(const User &I) { 2902 SDValue N = getValue(I.getOperand(0)); 2903 SDLoc dl = getCurSDLoc(); 2904 EVT DestVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 2905 I.getType()); 2906 2907 // BitCast assures us that source and destination are the same size so this is 2908 // either a BITCAST or a no-op. 2909 if (DestVT != N.getValueType()) 2910 setValue(&I, DAG.getNode(ISD::BITCAST, dl, 2911 DestVT, N)); // convert types. 2912 // Check if the original LLVM IR Operand was a ConstantInt, because getValue() 2913 // might fold any kind of constant expression to an integer constant and that 2914 // is not what we are looking for. Only regcognize a bitcast of a genuine 2915 // constant integer as an opaque constant. 2916 else if(ConstantInt *C = dyn_cast<ConstantInt>(I.getOperand(0))) 2917 setValue(&I, DAG.getConstant(C->getValue(), dl, DestVT, /*isTarget=*/false, 2918 /*isOpaque*/true)); 2919 else 2920 setValue(&I, N); // noop cast. 2921 } 2922 2923 void SelectionDAGBuilder::visitAddrSpaceCast(const User &I) { 2924 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2925 const Value *SV = I.getOperand(0); 2926 SDValue N = getValue(SV); 2927 EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 2928 2929 unsigned SrcAS = SV->getType()->getPointerAddressSpace(); 2930 unsigned DestAS = I.getType()->getPointerAddressSpace(); 2931 2932 if (!TLI.isNoopAddrSpaceCast(SrcAS, DestAS)) 2933 N = DAG.getAddrSpaceCast(getCurSDLoc(), DestVT, N, SrcAS, DestAS); 2934 2935 setValue(&I, N); 2936 } 2937 2938 void SelectionDAGBuilder::visitInsertElement(const User &I) { 2939 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2940 SDValue InVec = getValue(I.getOperand(0)); 2941 SDValue InVal = getValue(I.getOperand(1)); 2942 SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(2)), getCurSDLoc(), 2943 TLI.getVectorIdxTy(DAG.getDataLayout())); 2944 setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurSDLoc(), 2945 TLI.getValueType(DAG.getDataLayout(), I.getType()), 2946 InVec, InVal, InIdx)); 2947 } 2948 2949 void SelectionDAGBuilder::visitExtractElement(const User &I) { 2950 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2951 SDValue InVec = getValue(I.getOperand(0)); 2952 SDValue InIdx = DAG.getSExtOrTrunc(getValue(I.getOperand(1)), getCurSDLoc(), 2953 TLI.getVectorIdxTy(DAG.getDataLayout())); 2954 setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurSDLoc(), 2955 TLI.getValueType(DAG.getDataLayout(), I.getType()), 2956 InVec, InIdx)); 2957 } 2958 2959 // Utility for visitShuffleVector - Return true if every element in Mask, 2960 // beginning from position Pos and ending in Pos+Size, falls within the 2961 // specified sequential range [L, L+Pos). or is undef. 2962 static bool isSequentialInRange(const SmallVectorImpl<int> &Mask, 2963 unsigned Pos, unsigned Size, int Low) { 2964 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low) 2965 if (Mask[i] >= 0 && Mask[i] != Low) 2966 return false; 2967 return true; 2968 } 2969 2970 void SelectionDAGBuilder::visitShuffleVector(const User &I) { 2971 SDValue Src1 = getValue(I.getOperand(0)); 2972 SDValue Src2 = getValue(I.getOperand(1)); 2973 2974 SmallVector<int, 8> Mask; 2975 ShuffleVectorInst::getShuffleMask(cast<Constant>(I.getOperand(2)), Mask); 2976 unsigned MaskNumElts = Mask.size(); 2977 2978 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 2979 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 2980 EVT SrcVT = Src1.getValueType(); 2981 unsigned SrcNumElts = SrcVT.getVectorNumElements(); 2982 2983 if (SrcNumElts == MaskNumElts) { 2984 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2, 2985 &Mask[0])); 2986 return; 2987 } 2988 2989 // Normalize the shuffle vector since mask and vector length don't match. 2990 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { 2991 // Mask is longer than the source vectors and is a multiple of the source 2992 // vectors. We can use concatenate vector to make the mask and vectors 2993 // lengths match. 2994 if (SrcNumElts*2 == MaskNumElts) { 2995 // First check for Src1 in low and Src2 in high 2996 if (isSequentialInRange(Mask, 0, SrcNumElts, 0) && 2997 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, SrcNumElts)) { 2998 // The shuffle is concatenating two vectors together. 2999 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurSDLoc(), 3000 VT, Src1, Src2)); 3001 return; 3002 } 3003 // Then check for Src2 in low and Src1 in high 3004 if (isSequentialInRange(Mask, 0, SrcNumElts, SrcNumElts) && 3005 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, 0)) { 3006 // The shuffle is concatenating two vectors together. 3007 setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurSDLoc(), 3008 VT, Src2, Src1)); 3009 return; 3010 } 3011 } 3012 3013 // Pad both vectors with undefs to make them the same length as the mask. 3014 unsigned NumConcat = MaskNumElts / SrcNumElts; 3015 bool Src1U = Src1.isUndef(); 3016 bool Src2U = Src2.isUndef(); 3017 SDValue UndefVal = DAG.getUNDEF(SrcVT); 3018 3019 SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); 3020 SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); 3021 MOps1[0] = Src1; 3022 MOps2[0] = Src2; 3023 3024 Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, 3025 getCurSDLoc(), VT, MOps1); 3026 Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, 3027 getCurSDLoc(), VT, MOps2); 3028 3029 // Readjust mask for new input vector length. 3030 SmallVector<int, 8> MappedOps; 3031 for (unsigned i = 0; i != MaskNumElts; ++i) { 3032 int Idx = Mask[i]; 3033 if (Idx >= (int)SrcNumElts) 3034 Idx -= SrcNumElts - MaskNumElts; 3035 MappedOps.push_back(Idx); 3036 } 3037 3038 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2, 3039 &MappedOps[0])); 3040 return; 3041 } 3042 3043 if (SrcNumElts > MaskNumElts) { 3044 // Analyze the access pattern of the vector to see if we can extract 3045 // two subvectors and do the shuffle. The analysis is done by calculating 3046 // the range of elements the mask access on both vectors. 3047 int MinRange[2] = { static_cast<int>(SrcNumElts), 3048 static_cast<int>(SrcNumElts)}; 3049 int MaxRange[2] = {-1, -1}; 3050 3051 for (unsigned i = 0; i != MaskNumElts; ++i) { 3052 int Idx = Mask[i]; 3053 unsigned Input = 0; 3054 if (Idx < 0) 3055 continue; 3056 3057 if (Idx >= (int)SrcNumElts) { 3058 Input = 1; 3059 Idx -= SrcNumElts; 3060 } 3061 if (Idx > MaxRange[Input]) 3062 MaxRange[Input] = Idx; 3063 if (Idx < MinRange[Input]) 3064 MinRange[Input] = Idx; 3065 } 3066 3067 // Check if the access is smaller than the vector size and can we find 3068 // a reasonable extract index. 3069 int RangeUse[2] = { -1, -1 }; // 0 = Unused, 1 = Extract, -1 = Can not 3070 // Extract. 3071 int StartIdx[2]; // StartIdx to extract from 3072 for (unsigned Input = 0; Input < 2; ++Input) { 3073 if (MinRange[Input] >= (int)SrcNumElts && MaxRange[Input] < 0) { 3074 RangeUse[Input] = 0; // Unused 3075 StartIdx[Input] = 0; 3076 continue; 3077 } 3078 3079 // Find a good start index that is a multiple of the mask length. Then 3080 // see if the rest of the elements are in range. 3081 StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; 3082 if (MaxRange[Input] - StartIdx[Input] < (int)MaskNumElts && 3083 StartIdx[Input] + MaskNumElts <= SrcNumElts) 3084 RangeUse[Input] = 1; // Extract from a multiple of the mask length. 3085 } 3086 3087 if (RangeUse[0] == 0 && RangeUse[1] == 0) { 3088 setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. 3089 return; 3090 } 3091 if (RangeUse[0] >= 0 && RangeUse[1] >= 0) { 3092 // Extract appropriate subvector and generate a vector shuffle 3093 for (unsigned Input = 0; Input < 2; ++Input) { 3094 SDValue &Src = Input == 0 ? Src1 : Src2; 3095 if (RangeUse[Input] == 0) 3096 Src = DAG.getUNDEF(VT); 3097 else { 3098 SDLoc dl = getCurSDLoc(); 3099 Src = DAG.getNode( 3100 ISD::EXTRACT_SUBVECTOR, dl, VT, Src, 3101 DAG.getConstant(StartIdx[Input], dl, 3102 TLI.getVectorIdxTy(DAG.getDataLayout()))); 3103 } 3104 } 3105 3106 // Calculate new mask. 3107 SmallVector<int, 8> MappedOps; 3108 for (unsigned i = 0; i != MaskNumElts; ++i) { 3109 int Idx = Mask[i]; 3110 if (Idx >= 0) { 3111 if (Idx < (int)SrcNumElts) 3112 Idx -= StartIdx[0]; 3113 else 3114 Idx -= SrcNumElts + StartIdx[1] - MaskNumElts; 3115 } 3116 MappedOps.push_back(Idx); 3117 } 3118 3119 setValue(&I, DAG.getVectorShuffle(VT, getCurSDLoc(), Src1, Src2, 3120 &MappedOps[0])); 3121 return; 3122 } 3123 } 3124 3125 // We can't use either concat vectors or extract subvectors so fall back to 3126 // replacing the shuffle with extract and build vector. 3127 // to insert and build vector. 3128 EVT EltVT = VT.getVectorElementType(); 3129 EVT IdxVT = TLI.getVectorIdxTy(DAG.getDataLayout()); 3130 SDLoc dl = getCurSDLoc(); 3131 SmallVector<SDValue,8> Ops; 3132 for (unsigned i = 0; i != MaskNumElts; ++i) { 3133 int Idx = Mask[i]; 3134 SDValue Res; 3135 3136 if (Idx < 0) { 3137 Res = DAG.getUNDEF(EltVT); 3138 } else { 3139 SDValue &Src = Idx < (int)SrcNumElts ? Src1 : Src2; 3140 if (Idx >= (int)SrcNumElts) Idx -= SrcNumElts; 3141 3142 Res = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, 3143 EltVT, Src, DAG.getConstant(Idx, dl, IdxVT)); 3144 } 3145 3146 Ops.push_back(Res); 3147 } 3148 3149 setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops)); 3150 } 3151 3152 void SelectionDAGBuilder::visitInsertValue(const InsertValueInst &I) { 3153 const Value *Op0 = I.getOperand(0); 3154 const Value *Op1 = I.getOperand(1); 3155 Type *AggTy = I.getType(); 3156 Type *ValTy = Op1->getType(); 3157 bool IntoUndef = isa<UndefValue>(Op0); 3158 bool FromUndef = isa<UndefValue>(Op1); 3159 3160 unsigned LinearIndex = ComputeLinearIndex(AggTy, I.getIndices()); 3161 3162 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3163 SmallVector<EVT, 4> AggValueVTs; 3164 ComputeValueVTs(TLI, DAG.getDataLayout(), AggTy, AggValueVTs); 3165 SmallVector<EVT, 4> ValValueVTs; 3166 ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs); 3167 3168 unsigned NumAggValues = AggValueVTs.size(); 3169 unsigned NumValValues = ValValueVTs.size(); 3170 SmallVector<SDValue, 4> Values(NumAggValues); 3171 3172 // Ignore an insertvalue that produces an empty object 3173 if (!NumAggValues) { 3174 setValue(&I, DAG.getUNDEF(MVT(MVT::Other))); 3175 return; 3176 } 3177 3178 SDValue Agg = getValue(Op0); 3179 unsigned i = 0; 3180 // Copy the beginning value(s) from the original aggregate. 3181 for (; i != LinearIndex; ++i) 3182 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : 3183 SDValue(Agg.getNode(), Agg.getResNo() + i); 3184 // Copy values from the inserted value(s). 3185 if (NumValValues) { 3186 SDValue Val = getValue(Op1); 3187 for (; i != LinearIndex + NumValValues; ++i) 3188 Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : 3189 SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); 3190 } 3191 // Copy remaining value(s) from the original aggregate. 3192 for (; i != NumAggValues; ++i) 3193 Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : 3194 SDValue(Agg.getNode(), Agg.getResNo() + i); 3195 3196 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(), 3197 DAG.getVTList(AggValueVTs), Values)); 3198 } 3199 3200 void SelectionDAGBuilder::visitExtractValue(const ExtractValueInst &I) { 3201 const Value *Op0 = I.getOperand(0); 3202 Type *AggTy = Op0->getType(); 3203 Type *ValTy = I.getType(); 3204 bool OutOfUndef = isa<UndefValue>(Op0); 3205 3206 unsigned LinearIndex = ComputeLinearIndex(AggTy, I.getIndices()); 3207 3208 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3209 SmallVector<EVT, 4> ValValueVTs; 3210 ComputeValueVTs(TLI, DAG.getDataLayout(), ValTy, ValValueVTs); 3211 3212 unsigned NumValValues = ValValueVTs.size(); 3213 3214 // Ignore a extractvalue that produces an empty object 3215 if (!NumValValues) { 3216 setValue(&I, DAG.getUNDEF(MVT(MVT::Other))); 3217 return; 3218 } 3219 3220 SmallVector<SDValue, 4> Values(NumValValues); 3221 3222 SDValue Agg = getValue(Op0); 3223 // Copy out the selected value(s). 3224 for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) 3225 Values[i - LinearIndex] = 3226 OutOfUndef ? 3227 DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : 3228 SDValue(Agg.getNode(), Agg.getResNo() + i); 3229 3230 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(), 3231 DAG.getVTList(ValValueVTs), Values)); 3232 } 3233 3234 void SelectionDAGBuilder::visitGetElementPtr(const User &I) { 3235 Value *Op0 = I.getOperand(0); 3236 // Note that the pointer operand may be a vector of pointers. Take the scalar 3237 // element which holds a pointer. 3238 unsigned AS = Op0->getType()->getScalarType()->getPointerAddressSpace(); 3239 SDValue N = getValue(Op0); 3240 SDLoc dl = getCurSDLoc(); 3241 3242 // Normalize Vector GEP - all scalar operands should be converted to the 3243 // splat vector. 3244 unsigned VectorWidth = I.getType()->isVectorTy() ? 3245 cast<VectorType>(I.getType())->getVectorNumElements() : 0; 3246 3247 if (VectorWidth && !N.getValueType().isVector()) { 3248 LLVMContext &Context = *DAG.getContext(); 3249 EVT VT = EVT::getVectorVT(Context, N.getValueType(), VectorWidth); 3250 SmallVector<SDValue, 16> Ops(VectorWidth, N); 3251 N = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops); 3252 } 3253 for (gep_type_iterator GTI = gep_type_begin(&I), E = gep_type_end(&I); 3254 GTI != E; ++GTI) { 3255 const Value *Idx = GTI.getOperand(); 3256 if (StructType *StTy = dyn_cast<StructType>(*GTI)) { 3257 unsigned Field = cast<Constant>(Idx)->getUniqueInteger().getZExtValue(); 3258 if (Field) { 3259 // N = N + Offset 3260 uint64_t Offset = DL->getStructLayout(StTy)->getElementOffset(Field); 3261 3262 // In an inbouds GEP with an offset that is nonnegative even when 3263 // interpreted as signed, assume there is no unsigned overflow. 3264 SDNodeFlags Flags; 3265 if (int64_t(Offset) >= 0 && cast<GEPOperator>(I).isInBounds()) 3266 Flags.setNoUnsignedWrap(true); 3267 3268 N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N, 3269 DAG.getConstant(Offset, dl, N.getValueType()), &Flags); 3270 } 3271 } else { 3272 MVT PtrTy = 3273 DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout(), AS); 3274 unsigned PtrSize = PtrTy.getSizeInBits(); 3275 APInt ElementSize(PtrSize, DL->getTypeAllocSize(GTI.getIndexedType())); 3276 3277 // If this is a scalar constant or a splat vector of constants, 3278 // handle it quickly. 3279 const auto *CI = dyn_cast<ConstantInt>(Idx); 3280 if (!CI && isa<ConstantDataVector>(Idx) && 3281 cast<ConstantDataVector>(Idx)->getSplatValue()) 3282 CI = cast<ConstantInt>(cast<ConstantDataVector>(Idx)->getSplatValue()); 3283 3284 if (CI) { 3285 if (CI->isZero()) 3286 continue; 3287 APInt Offs = ElementSize * CI->getValue().sextOrTrunc(PtrSize); 3288 SDValue OffsVal = VectorWidth ? 3289 DAG.getConstant(Offs, dl, MVT::getVectorVT(PtrTy, VectorWidth)) : 3290 DAG.getConstant(Offs, dl, PtrTy); 3291 3292 // In an inbouds GEP with an offset that is nonnegative even when 3293 // interpreted as signed, assume there is no unsigned overflow. 3294 SDNodeFlags Flags; 3295 if (Offs.isNonNegative() && cast<GEPOperator>(I).isInBounds()) 3296 Flags.setNoUnsignedWrap(true); 3297 3298 N = DAG.getNode(ISD::ADD, dl, N.getValueType(), N, OffsVal, &Flags); 3299 continue; 3300 } 3301 3302 // N = N + Idx * ElementSize; 3303 SDValue IdxN = getValue(Idx); 3304 3305 if (!IdxN.getValueType().isVector() && VectorWidth) { 3306 MVT VT = MVT::getVectorVT(IdxN.getValueType().getSimpleVT(), VectorWidth); 3307 SmallVector<SDValue, 16> Ops(VectorWidth, IdxN); 3308 IdxN = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops); 3309 } 3310 // If the index is smaller or larger than intptr_t, truncate or extend 3311 // it. 3312 IdxN = DAG.getSExtOrTrunc(IdxN, dl, N.getValueType()); 3313 3314 // If this is a multiply by a power of two, turn it into a shl 3315 // immediately. This is a very common case. 3316 if (ElementSize != 1) { 3317 if (ElementSize.isPowerOf2()) { 3318 unsigned Amt = ElementSize.logBase2(); 3319 IdxN = DAG.getNode(ISD::SHL, dl, 3320 N.getValueType(), IdxN, 3321 DAG.getConstant(Amt, dl, IdxN.getValueType())); 3322 } else { 3323 SDValue Scale = DAG.getConstant(ElementSize, dl, IdxN.getValueType()); 3324 IdxN = DAG.getNode(ISD::MUL, dl, 3325 N.getValueType(), IdxN, Scale); 3326 } 3327 } 3328 3329 N = DAG.getNode(ISD::ADD, dl, 3330 N.getValueType(), N, IdxN); 3331 } 3332 } 3333 3334 setValue(&I, N); 3335 } 3336 3337 void SelectionDAGBuilder::visitAlloca(const AllocaInst &I) { 3338 // If this is a fixed sized alloca in the entry block of the function, 3339 // allocate it statically on the stack. 3340 if (FuncInfo.StaticAllocaMap.count(&I)) 3341 return; // getValue will auto-populate this. 3342 3343 SDLoc dl = getCurSDLoc(); 3344 Type *Ty = I.getAllocatedType(); 3345 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3346 auto &DL = DAG.getDataLayout(); 3347 uint64_t TySize = DL.getTypeAllocSize(Ty); 3348 unsigned Align = 3349 std::max((unsigned)DL.getPrefTypeAlignment(Ty), I.getAlignment()); 3350 3351 SDValue AllocSize = getValue(I.getArraySize()); 3352 3353 EVT IntPtr = TLI.getPointerTy(DAG.getDataLayout()); 3354 if (AllocSize.getValueType() != IntPtr) 3355 AllocSize = DAG.getZExtOrTrunc(AllocSize, dl, IntPtr); 3356 3357 AllocSize = DAG.getNode(ISD::MUL, dl, IntPtr, 3358 AllocSize, 3359 DAG.getConstant(TySize, dl, IntPtr)); 3360 3361 // Handle alignment. If the requested alignment is less than or equal to 3362 // the stack alignment, ignore it. If the size is greater than or equal to 3363 // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. 3364 unsigned StackAlign = 3365 DAG.getSubtarget().getFrameLowering()->getStackAlignment(); 3366 if (Align <= StackAlign) 3367 Align = 0; 3368 3369 // Round the size of the allocation up to the stack alignment size 3370 // by add SA-1 to the size. This doesn't overflow because we're computing 3371 // an address inside an alloca. 3372 SDNodeFlags Flags; 3373 Flags.setNoUnsignedWrap(true); 3374 AllocSize = DAG.getNode(ISD::ADD, dl, 3375 AllocSize.getValueType(), AllocSize, 3376 DAG.getIntPtrConstant(StackAlign - 1, dl), &Flags); 3377 3378 // Mask out the low bits for alignment purposes. 3379 AllocSize = DAG.getNode(ISD::AND, dl, 3380 AllocSize.getValueType(), AllocSize, 3381 DAG.getIntPtrConstant(~(uint64_t)(StackAlign - 1), 3382 dl)); 3383 3384 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align, dl) }; 3385 SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); 3386 SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, dl, VTs, Ops); 3387 setValue(&I, DSA); 3388 DAG.setRoot(DSA.getValue(1)); 3389 3390 assert(FuncInfo.MF->getFrameInfo()->hasVarSizedObjects()); 3391 } 3392 3393 void SelectionDAGBuilder::visitLoad(const LoadInst &I) { 3394 if (I.isAtomic()) 3395 return visitAtomicLoad(I); 3396 3397 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3398 const Value *SV = I.getOperand(0); 3399 if (TLI.supportSwiftError()) { 3400 // Swifterror values can come from either a function parameter with 3401 // swifterror attribute or an alloca with swifterror attribute. 3402 if (const Argument *Arg = dyn_cast<Argument>(SV)) { 3403 if (Arg->hasSwiftErrorAttr()) 3404 return visitLoadFromSwiftError(I); 3405 } 3406 3407 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(SV)) { 3408 if (Alloca->isSwiftError()) 3409 return visitLoadFromSwiftError(I); 3410 } 3411 } 3412 3413 SDValue Ptr = getValue(SV); 3414 3415 Type *Ty = I.getType(); 3416 3417 bool isVolatile = I.isVolatile(); 3418 bool isNonTemporal = I.getMetadata(LLVMContext::MD_nontemporal) != nullptr; 3419 3420 // The IR notion of invariant_load only guarantees that all *non-faulting* 3421 // invariant loads result in the same value. The MI notion of invariant load 3422 // guarantees that the load can be legally moved to any location within its 3423 // containing function. The MI notion of invariant_load is stronger than the 3424 // IR notion of invariant_load -- an MI invariant_load is an IR invariant_load 3425 // with a guarantee that the location being loaded from is dereferenceable 3426 // throughout the function's lifetime. 3427 3428 bool isInvariant = I.getMetadata(LLVMContext::MD_invariant_load) != nullptr && 3429 isDereferenceablePointer(SV, DAG.getDataLayout()); 3430 unsigned Alignment = I.getAlignment(); 3431 3432 AAMDNodes AAInfo; 3433 I.getAAMetadata(AAInfo); 3434 const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range); 3435 3436 SmallVector<EVT, 4> ValueVTs; 3437 SmallVector<uint64_t, 4> Offsets; 3438 ComputeValueVTs(TLI, DAG.getDataLayout(), Ty, ValueVTs, &Offsets); 3439 unsigned NumValues = ValueVTs.size(); 3440 if (NumValues == 0) 3441 return; 3442 3443 SDValue Root; 3444 bool ConstantMemory = false; 3445 if (isVolatile || NumValues > MaxParallelChains) 3446 // Serialize volatile loads with other side effects. 3447 Root = getRoot(); 3448 else if (AA->pointsToConstantMemory(MemoryLocation( 3449 SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo))) { 3450 // Do not serialize (non-volatile) loads of constant memory with anything. 3451 Root = DAG.getEntryNode(); 3452 ConstantMemory = true; 3453 } else { 3454 // Do not serialize non-volatile loads against each other. 3455 Root = DAG.getRoot(); 3456 } 3457 3458 SDLoc dl = getCurSDLoc(); 3459 3460 if (isVolatile) 3461 Root = TLI.prepareVolatileOrAtomicLoad(Root, dl, DAG); 3462 3463 // An aggregate load cannot wrap around the address space, so offsets to its 3464 // parts don't wrap either. 3465 SDNodeFlags Flags; 3466 Flags.setNoUnsignedWrap(true); 3467 3468 SmallVector<SDValue, 4> Values(NumValues); 3469 SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues)); 3470 EVT PtrVT = Ptr.getValueType(); 3471 unsigned ChainI = 0; 3472 for (unsigned i = 0; i != NumValues; ++i, ++ChainI) { 3473 // Serializing loads here may result in excessive register pressure, and 3474 // TokenFactor places arbitrary choke points on the scheduler. SD scheduling 3475 // could recover a bit by hoisting nodes upward in the chain by recognizing 3476 // they are side-effect free or do not alias. The optimizer should really 3477 // avoid this case by converting large object/array copies to llvm.memcpy 3478 // (MaxParallelChains should always remain as failsafe). 3479 if (ChainI == MaxParallelChains) { 3480 assert(PendingLoads.empty() && "PendingLoads must be serialized first"); 3481 SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 3482 makeArrayRef(Chains.data(), ChainI)); 3483 Root = Chain; 3484 ChainI = 0; 3485 } 3486 SDValue A = DAG.getNode(ISD::ADD, dl, 3487 PtrVT, Ptr, 3488 DAG.getConstant(Offsets[i], dl, PtrVT), 3489 &Flags); 3490 SDValue L = DAG.getLoad(ValueVTs[i], dl, Root, 3491 A, MachinePointerInfo(SV, Offsets[i]), isVolatile, 3492 isNonTemporal, isInvariant, Alignment, AAInfo, 3493 Ranges); 3494 3495 Values[i] = L; 3496 Chains[ChainI] = L.getValue(1); 3497 } 3498 3499 if (!ConstantMemory) { 3500 SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 3501 makeArrayRef(Chains.data(), ChainI)); 3502 if (isVolatile) 3503 DAG.setRoot(Chain); 3504 else 3505 PendingLoads.push_back(Chain); 3506 } 3507 3508 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, dl, 3509 DAG.getVTList(ValueVTs), Values)); 3510 } 3511 3512 void SelectionDAGBuilder::visitStoreToSwiftError(const StoreInst &I) { 3513 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3514 assert(TLI.supportSwiftError() && 3515 "call visitStoreToSwiftError when backend supports swifterror"); 3516 3517 SmallVector<EVT, 4> ValueVTs; 3518 SmallVector<uint64_t, 4> Offsets; 3519 const Value *SrcV = I.getOperand(0); 3520 ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), 3521 SrcV->getType(), ValueVTs, &Offsets); 3522 assert(ValueVTs.size() == 1 && Offsets[0] == 0 && 3523 "expect a single EVT for swifterror"); 3524 3525 SDValue Src = getValue(SrcV); 3526 // Create a virtual register, then update the virtual register. 3527 auto &DL = DAG.getDataLayout(); 3528 const TargetRegisterClass *RC = TLI.getRegClassFor(TLI.getPointerTy(DL)); 3529 unsigned VReg = FuncInfo.MF->getRegInfo().createVirtualRegister(RC); 3530 // Chain, DL, Reg, N or Chain, DL, Reg, N, Glue 3531 // Chain can be getRoot or getControlRoot. 3532 SDValue CopyNode = DAG.getCopyToReg(getRoot(), getCurSDLoc(), VReg, 3533 SDValue(Src.getNode(), Src.getResNo())); 3534 DAG.setRoot(CopyNode); 3535 FuncInfo.setSwiftErrorVReg(FuncInfo.MBB, I.getOperand(1), VReg); 3536 } 3537 3538 void SelectionDAGBuilder::visitLoadFromSwiftError(const LoadInst &I) { 3539 assert(DAG.getTargetLoweringInfo().supportSwiftError() && 3540 "call visitLoadFromSwiftError when backend supports swifterror"); 3541 3542 assert(!I.isVolatile() && 3543 I.getMetadata(LLVMContext::MD_nontemporal) == nullptr && 3544 I.getMetadata(LLVMContext::MD_invariant_load) == nullptr && 3545 "Support volatile, non temporal, invariant for load_from_swift_error"); 3546 3547 const Value *SV = I.getOperand(0); 3548 Type *Ty = I.getType(); 3549 AAMDNodes AAInfo; 3550 I.getAAMetadata(AAInfo); 3551 assert(!AA->pointsToConstantMemory(MemoryLocation( 3552 SV, DAG.getDataLayout().getTypeStoreSize(Ty), AAInfo)) && 3553 "load_from_swift_error should not be constant memory"); 3554 3555 SmallVector<EVT, 4> ValueVTs; 3556 SmallVector<uint64_t, 4> Offsets; 3557 ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), Ty, 3558 ValueVTs, &Offsets); 3559 assert(ValueVTs.size() == 1 && Offsets[0] == 0 && 3560 "expect a single EVT for swifterror"); 3561 3562 // Chain, DL, Reg, VT, Glue or Chain, DL, Reg, VT 3563 SDValue L = DAG.getCopyFromReg(getRoot(), getCurSDLoc(), 3564 FuncInfo.findSwiftErrorVReg(FuncInfo.MBB, SV), 3565 ValueVTs[0]); 3566 3567 setValue(&I, L); 3568 } 3569 3570 void SelectionDAGBuilder::visitStore(const StoreInst &I) { 3571 if (I.isAtomic()) 3572 return visitAtomicStore(I); 3573 3574 const Value *SrcV = I.getOperand(0); 3575 const Value *PtrV = I.getOperand(1); 3576 3577 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3578 if (TLI.supportSwiftError()) { 3579 // Swifterror values can come from either a function parameter with 3580 // swifterror attribute or an alloca with swifterror attribute. 3581 if (const Argument *Arg = dyn_cast<Argument>(PtrV)) { 3582 if (Arg->hasSwiftErrorAttr()) 3583 return visitStoreToSwiftError(I); 3584 } 3585 3586 if (const AllocaInst *Alloca = dyn_cast<AllocaInst>(PtrV)) { 3587 if (Alloca->isSwiftError()) 3588 return visitStoreToSwiftError(I); 3589 } 3590 } 3591 3592 SmallVector<EVT, 4> ValueVTs; 3593 SmallVector<uint64_t, 4> Offsets; 3594 ComputeValueVTs(DAG.getTargetLoweringInfo(), DAG.getDataLayout(), 3595 SrcV->getType(), ValueVTs, &Offsets); 3596 unsigned NumValues = ValueVTs.size(); 3597 if (NumValues == 0) 3598 return; 3599 3600 // Get the lowered operands. Note that we do this after 3601 // checking if NumResults is zero, because with zero results 3602 // the operands won't have values in the map. 3603 SDValue Src = getValue(SrcV); 3604 SDValue Ptr = getValue(PtrV); 3605 3606 SDValue Root = getRoot(); 3607 SmallVector<SDValue, 4> Chains(std::min(MaxParallelChains, NumValues)); 3608 EVT PtrVT = Ptr.getValueType(); 3609 bool isVolatile = I.isVolatile(); 3610 bool isNonTemporal = I.getMetadata(LLVMContext::MD_nontemporal) != nullptr; 3611 unsigned Alignment = I.getAlignment(); 3612 SDLoc dl = getCurSDLoc(); 3613 3614 AAMDNodes AAInfo; 3615 I.getAAMetadata(AAInfo); 3616 3617 // An aggregate load cannot wrap around the address space, so offsets to its 3618 // parts don't wrap either. 3619 SDNodeFlags Flags; 3620 Flags.setNoUnsignedWrap(true); 3621 3622 unsigned ChainI = 0; 3623 for (unsigned i = 0; i != NumValues; ++i, ++ChainI) { 3624 // See visitLoad comments. 3625 if (ChainI == MaxParallelChains) { 3626 SDValue Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 3627 makeArrayRef(Chains.data(), ChainI)); 3628 Root = Chain; 3629 ChainI = 0; 3630 } 3631 SDValue Add = DAG.getNode(ISD::ADD, dl, PtrVT, Ptr, 3632 DAG.getConstant(Offsets[i], dl, PtrVT), &Flags); 3633 SDValue St = DAG.getStore(Root, dl, 3634 SDValue(Src.getNode(), Src.getResNo() + i), 3635 Add, MachinePointerInfo(PtrV, Offsets[i]), 3636 isVolatile, isNonTemporal, Alignment, AAInfo); 3637 Chains[ChainI] = St; 3638 } 3639 3640 SDValue StoreNode = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, 3641 makeArrayRef(Chains.data(), ChainI)); 3642 DAG.setRoot(StoreNode); 3643 } 3644 3645 void SelectionDAGBuilder::visitMaskedStore(const CallInst &I) { 3646 SDLoc sdl = getCurSDLoc(); 3647 3648 // llvm.masked.store.*(Src0, Ptr, alignment, Mask) 3649 Value *PtrOperand = I.getArgOperand(1); 3650 SDValue Ptr = getValue(PtrOperand); 3651 SDValue Src0 = getValue(I.getArgOperand(0)); 3652 SDValue Mask = getValue(I.getArgOperand(3)); 3653 EVT VT = Src0.getValueType(); 3654 unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(2)))->getZExtValue(); 3655 if (!Alignment) 3656 Alignment = DAG.getEVTAlignment(VT); 3657 3658 AAMDNodes AAInfo; 3659 I.getAAMetadata(AAInfo); 3660 3661 MachineMemOperand *MMO = 3662 DAG.getMachineFunction(). 3663 getMachineMemOperand(MachinePointerInfo(PtrOperand), 3664 MachineMemOperand::MOStore, VT.getStoreSize(), 3665 Alignment, AAInfo); 3666 SDValue StoreNode = DAG.getMaskedStore(getRoot(), sdl, Src0, Ptr, Mask, VT, 3667 MMO, false); 3668 DAG.setRoot(StoreNode); 3669 setValue(&I, StoreNode); 3670 } 3671 3672 // Get a uniform base for the Gather/Scatter intrinsic. 3673 // The first argument of the Gather/Scatter intrinsic is a vector of pointers. 3674 // We try to represent it as a base pointer + vector of indices. 3675 // Usually, the vector of pointers comes from a 'getelementptr' instruction. 3676 // The first operand of the GEP may be a single pointer or a vector of pointers 3677 // Example: 3678 // %gep.ptr = getelementptr i32, <8 x i32*> %vptr, <8 x i32> %ind 3679 // or 3680 // %gep.ptr = getelementptr i32, i32* %ptr, <8 x i32> %ind 3681 // %res = call <8 x i32> @llvm.masked.gather.v8i32(<8 x i32*> %gep.ptr, .. 3682 // 3683 // When the first GEP operand is a single pointer - it is the uniform base we 3684 // are looking for. If first operand of the GEP is a splat vector - we 3685 // extract the spalt value and use it as a uniform base. 3686 // In all other cases the function returns 'false'. 3687 // 3688 static bool getUniformBase(const Value *& Ptr, SDValue& Base, SDValue& Index, 3689 SelectionDAGBuilder* SDB) { 3690 3691 SelectionDAG& DAG = SDB->DAG; 3692 LLVMContext &Context = *DAG.getContext(); 3693 3694 assert(Ptr->getType()->isVectorTy() && "Uexpected pointer type"); 3695 const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr); 3696 if (!GEP || GEP->getNumOperands() > 2) 3697 return false; 3698 3699 const Value *GEPPtr = GEP->getPointerOperand(); 3700 if (!GEPPtr->getType()->isVectorTy()) 3701 Ptr = GEPPtr; 3702 else if (!(Ptr = getSplatValue(GEPPtr))) 3703 return false; 3704 3705 Value *IndexVal = GEP->getOperand(1); 3706 3707 // The operands of the GEP may be defined in another basic block. 3708 // In this case we'll not find nodes for the operands. 3709 if (!SDB->findValue(Ptr) || !SDB->findValue(IndexVal)) 3710 return false; 3711 3712 Base = SDB->getValue(Ptr); 3713 Index = SDB->getValue(IndexVal); 3714 3715 // Suppress sign extension. 3716 if (SExtInst* Sext = dyn_cast<SExtInst>(IndexVal)) { 3717 if (SDB->findValue(Sext->getOperand(0))) { 3718 IndexVal = Sext->getOperand(0); 3719 Index = SDB->getValue(IndexVal); 3720 } 3721 } 3722 if (!Index.getValueType().isVector()) { 3723 unsigned GEPWidth = GEP->getType()->getVectorNumElements(); 3724 EVT VT = EVT::getVectorVT(Context, Index.getValueType(), GEPWidth); 3725 SmallVector<SDValue, 16> Ops(GEPWidth, Index); 3726 Index = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(Index), VT, Ops); 3727 } 3728 return true; 3729 } 3730 3731 void SelectionDAGBuilder::visitMaskedScatter(const CallInst &I) { 3732 SDLoc sdl = getCurSDLoc(); 3733 3734 // llvm.masked.scatter.*(Src0, Ptrs, alignemt, Mask) 3735 const Value *Ptr = I.getArgOperand(1); 3736 SDValue Src0 = getValue(I.getArgOperand(0)); 3737 SDValue Mask = getValue(I.getArgOperand(3)); 3738 EVT VT = Src0.getValueType(); 3739 unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(2)))->getZExtValue(); 3740 if (!Alignment) 3741 Alignment = DAG.getEVTAlignment(VT); 3742 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3743 3744 AAMDNodes AAInfo; 3745 I.getAAMetadata(AAInfo); 3746 3747 SDValue Base; 3748 SDValue Index; 3749 const Value *BasePtr = Ptr; 3750 bool UniformBase = getUniformBase(BasePtr, Base, Index, this); 3751 3752 const Value *MemOpBasePtr = UniformBase ? BasePtr : nullptr; 3753 MachineMemOperand *MMO = DAG.getMachineFunction(). 3754 getMachineMemOperand(MachinePointerInfo(MemOpBasePtr), 3755 MachineMemOperand::MOStore, VT.getStoreSize(), 3756 Alignment, AAInfo); 3757 if (!UniformBase) { 3758 Base = DAG.getTargetConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout())); 3759 Index = getValue(Ptr); 3760 } 3761 SDValue Ops[] = { getRoot(), Src0, Mask, Base, Index }; 3762 SDValue Scatter = DAG.getMaskedScatter(DAG.getVTList(MVT::Other), VT, sdl, 3763 Ops, MMO); 3764 DAG.setRoot(Scatter); 3765 setValue(&I, Scatter); 3766 } 3767 3768 void SelectionDAGBuilder::visitMaskedLoad(const CallInst &I) { 3769 SDLoc sdl = getCurSDLoc(); 3770 3771 // @llvm.masked.load.*(Ptr, alignment, Mask, Src0) 3772 Value *PtrOperand = I.getArgOperand(0); 3773 SDValue Ptr = getValue(PtrOperand); 3774 SDValue Src0 = getValue(I.getArgOperand(3)); 3775 SDValue Mask = getValue(I.getArgOperand(2)); 3776 3777 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3778 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 3779 unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(1)))->getZExtValue(); 3780 if (!Alignment) 3781 Alignment = DAG.getEVTAlignment(VT); 3782 3783 AAMDNodes AAInfo; 3784 I.getAAMetadata(AAInfo); 3785 const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range); 3786 3787 SDValue InChain = DAG.getRoot(); 3788 if (AA->pointsToConstantMemory(MemoryLocation( 3789 PtrOperand, DAG.getDataLayout().getTypeStoreSize(I.getType()), 3790 AAInfo))) { 3791 // Do not serialize (non-volatile) loads of constant memory with anything. 3792 InChain = DAG.getEntryNode(); 3793 } 3794 3795 MachineMemOperand *MMO = 3796 DAG.getMachineFunction(). 3797 getMachineMemOperand(MachinePointerInfo(PtrOperand), 3798 MachineMemOperand::MOLoad, VT.getStoreSize(), 3799 Alignment, AAInfo, Ranges); 3800 3801 SDValue Load = DAG.getMaskedLoad(VT, sdl, InChain, Ptr, Mask, Src0, VT, MMO, 3802 ISD::NON_EXTLOAD); 3803 SDValue OutChain = Load.getValue(1); 3804 DAG.setRoot(OutChain); 3805 setValue(&I, Load); 3806 } 3807 3808 void SelectionDAGBuilder::visitMaskedGather(const CallInst &I) { 3809 SDLoc sdl = getCurSDLoc(); 3810 3811 // @llvm.masked.gather.*(Ptrs, alignment, Mask, Src0) 3812 const Value *Ptr = I.getArgOperand(0); 3813 SDValue Src0 = getValue(I.getArgOperand(3)); 3814 SDValue Mask = getValue(I.getArgOperand(2)); 3815 3816 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3817 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 3818 unsigned Alignment = (cast<ConstantInt>(I.getArgOperand(1)))->getZExtValue(); 3819 if (!Alignment) 3820 Alignment = DAG.getEVTAlignment(VT); 3821 3822 AAMDNodes AAInfo; 3823 I.getAAMetadata(AAInfo); 3824 const MDNode *Ranges = I.getMetadata(LLVMContext::MD_range); 3825 3826 SDValue Root = DAG.getRoot(); 3827 SDValue Base; 3828 SDValue Index; 3829 const Value *BasePtr = Ptr; 3830 bool UniformBase = getUniformBase(BasePtr, Base, Index, this); 3831 bool ConstantMemory = false; 3832 if (UniformBase && 3833 AA->pointsToConstantMemory(MemoryLocation( 3834 BasePtr, DAG.getDataLayout().getTypeStoreSize(I.getType()), 3835 AAInfo))) { 3836 // Do not serialize (non-volatile) loads of constant memory with anything. 3837 Root = DAG.getEntryNode(); 3838 ConstantMemory = true; 3839 } 3840 3841 MachineMemOperand *MMO = 3842 DAG.getMachineFunction(). 3843 getMachineMemOperand(MachinePointerInfo(UniformBase ? BasePtr : nullptr), 3844 MachineMemOperand::MOLoad, VT.getStoreSize(), 3845 Alignment, AAInfo, Ranges); 3846 3847 if (!UniformBase) { 3848 Base = DAG.getTargetConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout())); 3849 Index = getValue(Ptr); 3850 } 3851 SDValue Ops[] = { Root, Src0, Mask, Base, Index }; 3852 SDValue Gather = DAG.getMaskedGather(DAG.getVTList(VT, MVT::Other), VT, sdl, 3853 Ops, MMO); 3854 3855 SDValue OutChain = Gather.getValue(1); 3856 if (!ConstantMemory) 3857 PendingLoads.push_back(OutChain); 3858 setValue(&I, Gather); 3859 } 3860 3861 void SelectionDAGBuilder::visitAtomicCmpXchg(const AtomicCmpXchgInst &I) { 3862 SDLoc dl = getCurSDLoc(); 3863 AtomicOrdering SuccessOrder = I.getSuccessOrdering(); 3864 AtomicOrdering FailureOrder = I.getFailureOrdering(); 3865 SynchronizationScope Scope = I.getSynchScope(); 3866 3867 SDValue InChain = getRoot(); 3868 3869 MVT MemVT = getValue(I.getCompareOperand()).getSimpleValueType(); 3870 SDVTList VTs = DAG.getVTList(MemVT, MVT::i1, MVT::Other); 3871 SDValue L = DAG.getAtomicCmpSwap( 3872 ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS, dl, MemVT, VTs, InChain, 3873 getValue(I.getPointerOperand()), getValue(I.getCompareOperand()), 3874 getValue(I.getNewValOperand()), MachinePointerInfo(I.getPointerOperand()), 3875 /*Alignment=*/ 0, SuccessOrder, FailureOrder, Scope); 3876 3877 SDValue OutChain = L.getValue(2); 3878 3879 setValue(&I, L); 3880 DAG.setRoot(OutChain); 3881 } 3882 3883 void SelectionDAGBuilder::visitAtomicRMW(const AtomicRMWInst &I) { 3884 SDLoc dl = getCurSDLoc(); 3885 ISD::NodeType NT; 3886 switch (I.getOperation()) { 3887 default: llvm_unreachable("Unknown atomicrmw operation"); 3888 case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break; 3889 case AtomicRMWInst::Add: NT = ISD::ATOMIC_LOAD_ADD; break; 3890 case AtomicRMWInst::Sub: NT = ISD::ATOMIC_LOAD_SUB; break; 3891 case AtomicRMWInst::And: NT = ISD::ATOMIC_LOAD_AND; break; 3892 case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break; 3893 case AtomicRMWInst::Or: NT = ISD::ATOMIC_LOAD_OR; break; 3894 case AtomicRMWInst::Xor: NT = ISD::ATOMIC_LOAD_XOR; break; 3895 case AtomicRMWInst::Max: NT = ISD::ATOMIC_LOAD_MAX; break; 3896 case AtomicRMWInst::Min: NT = ISD::ATOMIC_LOAD_MIN; break; 3897 case AtomicRMWInst::UMax: NT = ISD::ATOMIC_LOAD_UMAX; break; 3898 case AtomicRMWInst::UMin: NT = ISD::ATOMIC_LOAD_UMIN; break; 3899 } 3900 AtomicOrdering Order = I.getOrdering(); 3901 SynchronizationScope Scope = I.getSynchScope(); 3902 3903 SDValue InChain = getRoot(); 3904 3905 SDValue L = 3906 DAG.getAtomic(NT, dl, 3907 getValue(I.getValOperand()).getSimpleValueType(), 3908 InChain, 3909 getValue(I.getPointerOperand()), 3910 getValue(I.getValOperand()), 3911 I.getPointerOperand(), 3912 /* Alignment=*/ 0, Order, Scope); 3913 3914 SDValue OutChain = L.getValue(1); 3915 3916 setValue(&I, L); 3917 DAG.setRoot(OutChain); 3918 } 3919 3920 void SelectionDAGBuilder::visitFence(const FenceInst &I) { 3921 SDLoc dl = getCurSDLoc(); 3922 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3923 SDValue Ops[3]; 3924 Ops[0] = getRoot(); 3925 Ops[1] = DAG.getConstant((unsigned)I.getOrdering(), dl, 3926 TLI.getPointerTy(DAG.getDataLayout())); 3927 Ops[2] = DAG.getConstant(I.getSynchScope(), dl, 3928 TLI.getPointerTy(DAG.getDataLayout())); 3929 DAG.setRoot(DAG.getNode(ISD::ATOMIC_FENCE, dl, MVT::Other, Ops)); 3930 } 3931 3932 void SelectionDAGBuilder::visitAtomicLoad(const LoadInst &I) { 3933 SDLoc dl = getCurSDLoc(); 3934 AtomicOrdering Order = I.getOrdering(); 3935 SynchronizationScope Scope = I.getSynchScope(); 3936 3937 SDValue InChain = getRoot(); 3938 3939 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3940 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 3941 3942 if (I.getAlignment() < VT.getSizeInBits() / 8) 3943 report_fatal_error("Cannot generate unaligned atomic load"); 3944 3945 MachineMemOperand *MMO = 3946 DAG.getMachineFunction(). 3947 getMachineMemOperand(MachinePointerInfo(I.getPointerOperand()), 3948 MachineMemOperand::MOVolatile | 3949 MachineMemOperand::MOLoad, 3950 VT.getStoreSize(), 3951 I.getAlignment() ? I.getAlignment() : 3952 DAG.getEVTAlignment(VT)); 3953 3954 InChain = TLI.prepareVolatileOrAtomicLoad(InChain, dl, DAG); 3955 SDValue L = 3956 DAG.getAtomic(ISD::ATOMIC_LOAD, dl, VT, VT, InChain, 3957 getValue(I.getPointerOperand()), MMO, 3958 Order, Scope); 3959 3960 SDValue OutChain = L.getValue(1); 3961 3962 setValue(&I, L); 3963 DAG.setRoot(OutChain); 3964 } 3965 3966 void SelectionDAGBuilder::visitAtomicStore(const StoreInst &I) { 3967 SDLoc dl = getCurSDLoc(); 3968 3969 AtomicOrdering Order = I.getOrdering(); 3970 SynchronizationScope Scope = I.getSynchScope(); 3971 3972 SDValue InChain = getRoot(); 3973 3974 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 3975 EVT VT = 3976 TLI.getValueType(DAG.getDataLayout(), I.getValueOperand()->getType()); 3977 3978 if (I.getAlignment() < VT.getSizeInBits() / 8) 3979 report_fatal_error("Cannot generate unaligned atomic store"); 3980 3981 SDValue OutChain = 3982 DAG.getAtomic(ISD::ATOMIC_STORE, dl, VT, 3983 InChain, 3984 getValue(I.getPointerOperand()), 3985 getValue(I.getValueOperand()), 3986 I.getPointerOperand(), I.getAlignment(), 3987 Order, Scope); 3988 3989 DAG.setRoot(OutChain); 3990 } 3991 3992 /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC 3993 /// node. 3994 void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I, 3995 unsigned Intrinsic) { 3996 bool HasChain = !I.doesNotAccessMemory(); 3997 bool OnlyLoad = HasChain && I.onlyReadsMemory(); 3998 3999 // Build the operand list. 4000 SmallVector<SDValue, 8> Ops; 4001 if (HasChain) { // If this intrinsic has side-effects, chainify it. 4002 if (OnlyLoad) { 4003 // We don't need to serialize loads against other loads. 4004 Ops.push_back(DAG.getRoot()); 4005 } else { 4006 Ops.push_back(getRoot()); 4007 } 4008 } 4009 4010 // Info is set by getTgtMemInstrinsic 4011 TargetLowering::IntrinsicInfo Info; 4012 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 4013 bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); 4014 4015 // Add the intrinsic ID as an integer operand if it's not a target intrinsic. 4016 if (!IsTgtIntrinsic || Info.opc == ISD::INTRINSIC_VOID || 4017 Info.opc == ISD::INTRINSIC_W_CHAIN) 4018 Ops.push_back(DAG.getTargetConstant(Intrinsic, getCurSDLoc(), 4019 TLI.getPointerTy(DAG.getDataLayout()))); 4020 4021 // Add all operands of the call to the operand list. 4022 for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) { 4023 SDValue Op = getValue(I.getArgOperand(i)); 4024 Ops.push_back(Op); 4025 } 4026 4027 SmallVector<EVT, 4> ValueVTs; 4028 ComputeValueVTs(TLI, DAG.getDataLayout(), I.getType(), ValueVTs); 4029 4030 if (HasChain) 4031 ValueVTs.push_back(MVT::Other); 4032 4033 SDVTList VTs = DAG.getVTList(ValueVTs); 4034 4035 // Create the node. 4036 SDValue Result; 4037 if (IsTgtIntrinsic) { 4038 // This is target intrinsic that touches memory 4039 Result = DAG.getMemIntrinsicNode(Info.opc, getCurSDLoc(), 4040 VTs, Ops, Info.memVT, 4041 MachinePointerInfo(Info.ptrVal, Info.offset), 4042 Info.align, Info.vol, 4043 Info.readMem, Info.writeMem, Info.size); 4044 } else if (!HasChain) { 4045 Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurSDLoc(), VTs, Ops); 4046 } else if (!I.getType()->isVoidTy()) { 4047 Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurSDLoc(), VTs, Ops); 4048 } else { 4049 Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurSDLoc(), VTs, Ops); 4050 } 4051 4052 if (HasChain) { 4053 SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); 4054 if (OnlyLoad) 4055 PendingLoads.push_back(Chain); 4056 else 4057 DAG.setRoot(Chain); 4058 } 4059 4060 if (!I.getType()->isVoidTy()) { 4061 if (VectorType *PTy = dyn_cast<VectorType>(I.getType())) { 4062 EVT VT = TLI.getValueType(DAG.getDataLayout(), PTy); 4063 Result = DAG.getNode(ISD::BITCAST, getCurSDLoc(), VT, Result); 4064 } else 4065 Result = lowerRangeToAssertZExt(DAG, I, Result); 4066 4067 setValue(&I, Result); 4068 } 4069 } 4070 4071 /// GetSignificand - Get the significand and build it into a floating-point 4072 /// number with exponent of 1: 4073 /// 4074 /// Op = (Op & 0x007fffff) | 0x3f800000; 4075 /// 4076 /// where Op is the hexadecimal representation of floating point value. 4077 static SDValue 4078 GetSignificand(SelectionDAG &DAG, SDValue Op, SDLoc dl) { 4079 SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, 4080 DAG.getConstant(0x007fffff, dl, MVT::i32)); 4081 SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, 4082 DAG.getConstant(0x3f800000, dl, MVT::i32)); 4083 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, t2); 4084 } 4085 4086 /// GetExponent - Get the exponent: 4087 /// 4088 /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); 4089 /// 4090 /// where Op is the hexadecimal representation of floating point value. 4091 static SDValue 4092 GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, 4093 SDLoc dl) { 4094 SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, 4095 DAG.getConstant(0x7f800000, dl, MVT::i32)); 4096 SDValue t1 = DAG.getNode( 4097 ISD::SRL, dl, MVT::i32, t0, 4098 DAG.getConstant(23, dl, TLI.getPointerTy(DAG.getDataLayout()))); 4099 SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, 4100 DAG.getConstant(127, dl, MVT::i32)); 4101 return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); 4102 } 4103 4104 /// getF32Constant - Get 32-bit floating point constant. 4105 static SDValue 4106 getF32Constant(SelectionDAG &DAG, unsigned Flt, SDLoc dl) { 4107 return DAG.getConstantFP(APFloat(APFloat::IEEEsingle, APInt(32, Flt)), dl, 4108 MVT::f32); 4109 } 4110 4111 static SDValue getLimitedPrecisionExp2(SDValue t0, SDLoc dl, 4112 SelectionDAG &DAG) { 4113 // TODO: What fast-math-flags should be set on the floating-point nodes? 4114 4115 // IntegerPartOfX = ((int32_t)(t0); 4116 SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); 4117 4118 // FractionalPartOfX = t0 - (float)IntegerPartOfX; 4119 SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); 4120 SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); 4121 4122 // IntegerPartOfX <<= 23; 4123 IntegerPartOfX = DAG.getNode( 4124 ISD::SHL, dl, MVT::i32, IntegerPartOfX, 4125 DAG.getConstant(23, dl, DAG.getTargetLoweringInfo().getPointerTy( 4126 DAG.getDataLayout()))); 4127 4128 SDValue TwoToFractionalPartOfX; 4129 if (LimitFloatPrecision <= 6) { 4130 // For floating-point precision of 6: 4131 // 4132 // TwoToFractionalPartOfX = 4133 // 0.997535578f + 4134 // (0.735607626f + 0.252464424f * x) * x; 4135 // 4136 // error 0.0144103317, which is 6 bits 4137 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4138 getF32Constant(DAG, 0x3e814304, dl)); 4139 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, 4140 getF32Constant(DAG, 0x3f3c50c8, dl)); 4141 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4142 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4143 getF32Constant(DAG, 0x3f7f5e7e, dl)); 4144 } else if (LimitFloatPrecision <= 12) { 4145 // For floating-point precision of 12: 4146 // 4147 // TwoToFractionalPartOfX = 4148 // 0.999892986f + 4149 // (0.696457318f + 4150 // (0.224338339f + 0.792043434e-1f * x) * x) * x; 4151 // 4152 // error 0.000107046256, which is 13 to 14 bits 4153 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4154 getF32Constant(DAG, 0x3da235e3, dl)); 4155 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, 4156 getF32Constant(DAG, 0x3e65b8f3, dl)); 4157 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4158 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4159 getF32Constant(DAG, 0x3f324b07, dl)); 4160 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4161 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, 4162 getF32Constant(DAG, 0x3f7ff8fd, dl)); 4163 } else { // LimitFloatPrecision <= 18 4164 // For floating-point precision of 18: 4165 // 4166 // TwoToFractionalPartOfX = 4167 // 0.999999982f + 4168 // (0.693148872f + 4169 // (0.240227044f + 4170 // (0.554906021e-1f + 4171 // (0.961591928e-2f + 4172 // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; 4173 // error 2.47208000*10^(-7), which is better than 18 bits 4174 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4175 getF32Constant(DAG, 0x3924b03e, dl)); 4176 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, 4177 getF32Constant(DAG, 0x3ab24b87, dl)); 4178 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4179 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4180 getF32Constant(DAG, 0x3c1d8c17, dl)); 4181 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4182 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, 4183 getF32Constant(DAG, 0x3d634a1d, dl)); 4184 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); 4185 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, 4186 getF32Constant(DAG, 0x3e75fe14, dl)); 4187 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); 4188 SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, 4189 getF32Constant(DAG, 0x3f317234, dl)); 4190 SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); 4191 TwoToFractionalPartOfX = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, 4192 getF32Constant(DAG, 0x3f800000, dl)); 4193 } 4194 4195 // Add the exponent into the result in integer domain. 4196 SDValue t13 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, TwoToFractionalPartOfX); 4197 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, 4198 DAG.getNode(ISD::ADD, dl, MVT::i32, t13, IntegerPartOfX)); 4199 } 4200 4201 /// expandExp - Lower an exp intrinsic. Handles the special sequences for 4202 /// limited-precision mode. 4203 static SDValue expandExp(SDLoc dl, SDValue Op, SelectionDAG &DAG, 4204 const TargetLowering &TLI) { 4205 if (Op.getValueType() == MVT::f32 && 4206 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { 4207 4208 // Put the exponent in the right bit position for later addition to the 4209 // final result: 4210 // 4211 // #define LOG2OFe 1.4426950f 4212 // t0 = Op * LOG2OFe 4213 4214 // TODO: What fast-math-flags should be set here? 4215 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, 4216 getF32Constant(DAG, 0x3fb8aa3b, dl)); 4217 return getLimitedPrecisionExp2(t0, dl, DAG); 4218 } 4219 4220 // No special expansion. 4221 return DAG.getNode(ISD::FEXP, dl, Op.getValueType(), Op); 4222 } 4223 4224 /// expandLog - Lower a log intrinsic. Handles the special sequences for 4225 /// limited-precision mode. 4226 static SDValue expandLog(SDLoc dl, SDValue Op, SelectionDAG &DAG, 4227 const TargetLowering &TLI) { 4228 4229 // TODO: What fast-math-flags should be set on the floating-point nodes? 4230 4231 if (Op.getValueType() == MVT::f32 && 4232 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { 4233 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op); 4234 4235 // Scale the exponent by log(2) [0.69314718f]. 4236 SDValue Exp = GetExponent(DAG, Op1, TLI, dl); 4237 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, 4238 getF32Constant(DAG, 0x3f317218, dl)); 4239 4240 // Get the significand and build it into a floating-point number with 4241 // exponent of 1. 4242 SDValue X = GetSignificand(DAG, Op1, dl); 4243 4244 SDValue LogOfMantissa; 4245 if (LimitFloatPrecision <= 6) { 4246 // For floating-point precision of 6: 4247 // 4248 // LogofMantissa = 4249 // -1.1609546f + 4250 // (1.4034025f - 0.23903021f * x) * x; 4251 // 4252 // error 0.0034276066, which is better than 8 bits 4253 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4254 getF32Constant(DAG, 0xbe74c456, dl)); 4255 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4256 getF32Constant(DAG, 0x3fb3a2b1, dl)); 4257 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4258 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4259 getF32Constant(DAG, 0x3f949a29, dl)); 4260 } else if (LimitFloatPrecision <= 12) { 4261 // For floating-point precision of 12: 4262 // 4263 // LogOfMantissa = 4264 // -1.7417939f + 4265 // (2.8212026f + 4266 // (-1.4699568f + 4267 // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; 4268 // 4269 // error 0.000061011436, which is 14 bits 4270 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4271 getF32Constant(DAG, 0xbd67b6d6, dl)); 4272 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4273 getF32Constant(DAG, 0x3ee4f4b8, dl)); 4274 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4275 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4276 getF32Constant(DAG, 0x3fbc278b, dl)); 4277 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4278 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4279 getF32Constant(DAG, 0x40348e95, dl)); 4280 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4281 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, 4282 getF32Constant(DAG, 0x3fdef31a, dl)); 4283 } else { // LimitFloatPrecision <= 18 4284 // For floating-point precision of 18: 4285 // 4286 // LogOfMantissa = 4287 // -2.1072184f + 4288 // (4.2372794f + 4289 // (-3.7029485f + 4290 // (2.2781945f + 4291 // (-0.87823314f + 4292 // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; 4293 // 4294 // error 0.0000023660568, which is better than 18 bits 4295 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4296 getF32Constant(DAG, 0xbc91e5ac, dl)); 4297 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4298 getF32Constant(DAG, 0x3e4350aa, dl)); 4299 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4300 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4301 getF32Constant(DAG, 0x3f60d3e3, dl)); 4302 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4303 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4304 getF32Constant(DAG, 0x4011cdf0, dl)); 4305 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4306 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, 4307 getF32Constant(DAG, 0x406cfd1c, dl)); 4308 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); 4309 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, 4310 getF32Constant(DAG, 0x408797cb, dl)); 4311 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); 4312 LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, 4313 getF32Constant(DAG, 0x4006dcab, dl)); 4314 } 4315 4316 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, LogOfMantissa); 4317 } 4318 4319 // No special expansion. 4320 return DAG.getNode(ISD::FLOG, dl, Op.getValueType(), Op); 4321 } 4322 4323 /// expandLog2 - Lower a log2 intrinsic. Handles the special sequences for 4324 /// limited-precision mode. 4325 static SDValue expandLog2(SDLoc dl, SDValue Op, SelectionDAG &DAG, 4326 const TargetLowering &TLI) { 4327 4328 // TODO: What fast-math-flags should be set on the floating-point nodes? 4329 4330 if (Op.getValueType() == MVT::f32 && 4331 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { 4332 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op); 4333 4334 // Get the exponent. 4335 SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); 4336 4337 // Get the significand and build it into a floating-point number with 4338 // exponent of 1. 4339 SDValue X = GetSignificand(DAG, Op1, dl); 4340 4341 // Different possible minimax approximations of significand in 4342 // floating-point for various degrees of accuracy over [1,2]. 4343 SDValue Log2ofMantissa; 4344 if (LimitFloatPrecision <= 6) { 4345 // For floating-point precision of 6: 4346 // 4347 // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; 4348 // 4349 // error 0.0049451742, which is more than 7 bits 4350 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4351 getF32Constant(DAG, 0xbeb08fe0, dl)); 4352 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4353 getF32Constant(DAG, 0x40019463, dl)); 4354 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4355 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4356 getF32Constant(DAG, 0x3fd6633d, dl)); 4357 } else if (LimitFloatPrecision <= 12) { 4358 // For floating-point precision of 12: 4359 // 4360 // Log2ofMantissa = 4361 // -2.51285454f + 4362 // (4.07009056f + 4363 // (-2.12067489f + 4364 // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; 4365 // 4366 // error 0.0000876136000, which is better than 13 bits 4367 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4368 getF32Constant(DAG, 0xbda7262e, dl)); 4369 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4370 getF32Constant(DAG, 0x3f25280b, dl)); 4371 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4372 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4373 getF32Constant(DAG, 0x4007b923, dl)); 4374 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4375 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4376 getF32Constant(DAG, 0x40823e2f, dl)); 4377 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4378 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, 4379 getF32Constant(DAG, 0x4020d29c, dl)); 4380 } else { // LimitFloatPrecision <= 18 4381 // For floating-point precision of 18: 4382 // 4383 // Log2ofMantissa = 4384 // -3.0400495f + 4385 // (6.1129976f + 4386 // (-5.3420409f + 4387 // (3.2865683f + 4388 // (-1.2669343f + 4389 // (0.27515199f - 4390 // 0.25691327e-1f * x) * x) * x) * x) * x) * x; 4391 // 4392 // error 0.0000018516, which is better than 18 bits 4393 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4394 getF32Constant(DAG, 0xbcd2769e, dl)); 4395 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4396 getF32Constant(DAG, 0x3e8ce0b9, dl)); 4397 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4398 SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4399 getF32Constant(DAG, 0x3fa22ae7, dl)); 4400 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4401 SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, 4402 getF32Constant(DAG, 0x40525723, dl)); 4403 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4404 SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, 4405 getF32Constant(DAG, 0x40aaf200, dl)); 4406 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); 4407 SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, 4408 getF32Constant(DAG, 0x40c39dad, dl)); 4409 SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); 4410 Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, 4411 getF32Constant(DAG, 0x4042902c, dl)); 4412 } 4413 4414 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log2ofMantissa); 4415 } 4416 4417 // No special expansion. 4418 return DAG.getNode(ISD::FLOG2, dl, Op.getValueType(), Op); 4419 } 4420 4421 /// expandLog10 - Lower a log10 intrinsic. Handles the special sequences for 4422 /// limited-precision mode. 4423 static SDValue expandLog10(SDLoc dl, SDValue Op, SelectionDAG &DAG, 4424 const TargetLowering &TLI) { 4425 4426 // TODO: What fast-math-flags should be set on the floating-point nodes? 4427 4428 if (Op.getValueType() == MVT::f32 && 4429 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { 4430 SDValue Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Op); 4431 4432 // Scale the exponent by log10(2) [0.30102999f]. 4433 SDValue Exp = GetExponent(DAG, Op1, TLI, dl); 4434 SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, 4435 getF32Constant(DAG, 0x3e9a209a, dl)); 4436 4437 // Get the significand and build it into a floating-point number with 4438 // exponent of 1. 4439 SDValue X = GetSignificand(DAG, Op1, dl); 4440 4441 SDValue Log10ofMantissa; 4442 if (LimitFloatPrecision <= 6) { 4443 // For floating-point precision of 6: 4444 // 4445 // Log10ofMantissa = 4446 // -0.50419619f + 4447 // (0.60948995f - 0.10380950f * x) * x; 4448 // 4449 // error 0.0014886165, which is 6 bits 4450 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4451 getF32Constant(DAG, 0xbdd49a13, dl)); 4452 SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, 4453 getF32Constant(DAG, 0x3f1c0789, dl)); 4454 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4455 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, 4456 getF32Constant(DAG, 0x3f011300, dl)); 4457 } else if (LimitFloatPrecision <= 12) { 4458 // For floating-point precision of 12: 4459 // 4460 // Log10ofMantissa = 4461 // -0.64831180f + 4462 // (0.91751397f + 4463 // (-0.31664806f + 0.47637168e-1f * x) * x) * x; 4464 // 4465 // error 0.00019228036, which is better than 12 bits 4466 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4467 getF32Constant(DAG, 0x3d431f31, dl)); 4468 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, 4469 getF32Constant(DAG, 0x3ea21fb2, dl)); 4470 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4471 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, 4472 getF32Constant(DAG, 0x3f6ae232, dl)); 4473 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4474 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, 4475 getF32Constant(DAG, 0x3f25f7c3, dl)); 4476 } else { // LimitFloatPrecision <= 18 4477 // For floating-point precision of 18: 4478 // 4479 // Log10ofMantissa = 4480 // -0.84299375f + 4481 // (1.5327582f + 4482 // (-1.0688956f + 4483 // (0.49102474f + 4484 // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; 4485 // 4486 // error 0.0000037995730, which is better than 18 bits 4487 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, 4488 getF32Constant(DAG, 0x3c5d51ce, dl)); 4489 SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, 4490 getF32Constant(DAG, 0x3e00685a, dl)); 4491 SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); 4492 SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, 4493 getF32Constant(DAG, 0x3efb6798, dl)); 4494 SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); 4495 SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, 4496 getF32Constant(DAG, 0x3f88d192, dl)); 4497 SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); 4498 SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, 4499 getF32Constant(DAG, 0x3fc4316c, dl)); 4500 SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); 4501 Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, 4502 getF32Constant(DAG, 0x3f57ce70, dl)); 4503 } 4504 4505 return DAG.getNode(ISD::FADD, dl, MVT::f32, LogOfExponent, Log10ofMantissa); 4506 } 4507 4508 // No special expansion. 4509 return DAG.getNode(ISD::FLOG10, dl, Op.getValueType(), Op); 4510 } 4511 4512 /// expandExp2 - Lower an exp2 intrinsic. Handles the special sequences for 4513 /// limited-precision mode. 4514 static SDValue expandExp2(SDLoc dl, SDValue Op, SelectionDAG &DAG, 4515 const TargetLowering &TLI) { 4516 if (Op.getValueType() == MVT::f32 && 4517 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) 4518 return getLimitedPrecisionExp2(Op, dl, DAG); 4519 4520 // No special expansion. 4521 return DAG.getNode(ISD::FEXP2, dl, Op.getValueType(), Op); 4522 } 4523 4524 /// visitPow - Lower a pow intrinsic. Handles the special sequences for 4525 /// limited-precision mode with x == 10.0f. 4526 static SDValue expandPow(SDLoc dl, SDValue LHS, SDValue RHS, 4527 SelectionDAG &DAG, const TargetLowering &TLI) { 4528 bool IsExp10 = false; 4529 if (LHS.getValueType() == MVT::f32 && RHS.getValueType() == MVT::f32 && 4530 LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { 4531 if (ConstantFPSDNode *LHSC = dyn_cast<ConstantFPSDNode>(LHS)) { 4532 APFloat Ten(10.0f); 4533 IsExp10 = LHSC->isExactlyValue(Ten); 4534 } 4535 } 4536 4537 // TODO: What fast-math-flags should be set on the FMUL node? 4538 if (IsExp10) { 4539 // Put the exponent in the right bit position for later addition to the 4540 // final result: 4541 // 4542 // #define LOG2OF10 3.3219281f 4543 // t0 = Op * LOG2OF10; 4544 SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, RHS, 4545 getF32Constant(DAG, 0x40549a78, dl)); 4546 return getLimitedPrecisionExp2(t0, dl, DAG); 4547 } 4548 4549 // No special expansion. 4550 return DAG.getNode(ISD::FPOW, dl, LHS.getValueType(), LHS, RHS); 4551 } 4552 4553 4554 /// ExpandPowI - Expand a llvm.powi intrinsic. 4555 static SDValue ExpandPowI(SDLoc DL, SDValue LHS, SDValue RHS, 4556 SelectionDAG &DAG) { 4557 // If RHS is a constant, we can expand this out to a multiplication tree, 4558 // otherwise we end up lowering to a call to __powidf2 (for example). When 4559 // optimizing for size, we only want to do this if the expansion would produce 4560 // a small number of multiplies, otherwise we do the full expansion. 4561 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) { 4562 // Get the exponent as a positive value. 4563 unsigned Val = RHSC->getSExtValue(); 4564 if ((int)Val < 0) Val = -Val; 4565 4566 // powi(x, 0) -> 1.0 4567 if (Val == 0) 4568 return DAG.getConstantFP(1.0, DL, LHS.getValueType()); 4569 4570 const Function *F = DAG.getMachineFunction().getFunction(); 4571 if (!F->optForSize() || 4572 // If optimizing for size, don't insert too many multiplies. 4573 // This inserts up to 5 multiplies. 4574 countPopulation(Val) + Log2_32(Val) < 7) { 4575 // We use the simple binary decomposition method to generate the multiply 4576 // sequence. There are more optimal ways to do this (for example, 4577 // powi(x,15) generates one more multiply than it should), but this has 4578 // the benefit of being both really simple and much better than a libcall. 4579 SDValue Res; // Logically starts equal to 1.0 4580 SDValue CurSquare = LHS; 4581 // TODO: Intrinsics should have fast-math-flags that propagate to these 4582 // nodes. 4583 while (Val) { 4584 if (Val & 1) { 4585 if (Res.getNode()) 4586 Res = DAG.getNode(ISD::FMUL, DL,Res.getValueType(), Res, CurSquare); 4587 else 4588 Res = CurSquare; // 1.0*CurSquare. 4589 } 4590 4591 CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(), 4592 CurSquare, CurSquare); 4593 Val >>= 1; 4594 } 4595 4596 // If the original was negative, invert the result, producing 1/(x*x*x). 4597 if (RHSC->getSExtValue() < 0) 4598 Res = DAG.getNode(ISD::FDIV, DL, LHS.getValueType(), 4599 DAG.getConstantFP(1.0, DL, LHS.getValueType()), Res); 4600 return Res; 4601 } 4602 } 4603 4604 // Otherwise, expand to a libcall. 4605 return DAG.getNode(ISD::FPOWI, DL, LHS.getValueType(), LHS, RHS); 4606 } 4607 4608 // getUnderlyingArgReg - Find underlying register used for a truncated or 4609 // bitcasted argument. 4610 static unsigned getUnderlyingArgReg(const SDValue &N) { 4611 switch (N.getOpcode()) { 4612 case ISD::CopyFromReg: 4613 return cast<RegisterSDNode>(N.getOperand(1))->getReg(); 4614 case ISD::BITCAST: 4615 case ISD::AssertZext: 4616 case ISD::AssertSext: 4617 case ISD::TRUNCATE: 4618 return getUnderlyingArgReg(N.getOperand(0)); 4619 default: 4620 return 0; 4621 } 4622 } 4623 4624 /// EmitFuncArgumentDbgValue - If the DbgValueInst is a dbg_value of a function 4625 /// argument, create the corresponding DBG_VALUE machine instruction for it now. 4626 /// At the end of instruction selection, they will be inserted to the entry BB. 4627 bool SelectionDAGBuilder::EmitFuncArgumentDbgValue( 4628 const Value *V, DILocalVariable *Variable, DIExpression *Expr, 4629 DILocation *DL, int64_t Offset, bool IsIndirect, const SDValue &N) { 4630 const Argument *Arg = dyn_cast<Argument>(V); 4631 if (!Arg) 4632 return false; 4633 4634 MachineFunction &MF = DAG.getMachineFunction(); 4635 const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo(); 4636 4637 // Ignore inlined function arguments here. 4638 // 4639 // FIXME: Should we be checking DL->inlinedAt() to determine this? 4640 if (!Variable->getScope()->getSubprogram()->describes(MF.getFunction())) 4641 return false; 4642 4643 Optional<MachineOperand> Op; 4644 // Some arguments' frame index is recorded during argument lowering. 4645 if (int FI = FuncInfo.getArgumentFrameIndex(Arg)) 4646 Op = MachineOperand::CreateFI(FI); 4647 4648 if (!Op && N.getNode()) { 4649 unsigned Reg = getUnderlyingArgReg(N); 4650 if (Reg && TargetRegisterInfo::isVirtualRegister(Reg)) { 4651 MachineRegisterInfo &RegInfo = MF.getRegInfo(); 4652 unsigned PR = RegInfo.getLiveInPhysReg(Reg); 4653 if (PR) 4654 Reg = PR; 4655 } 4656 if (Reg) 4657 Op = MachineOperand::CreateReg(Reg, false); 4658 } 4659 4660 if (!Op) { 4661 // Check if ValueMap has reg number. 4662 DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); 4663 if (VMI != FuncInfo.ValueMap.end()) 4664 Op = MachineOperand::CreateReg(VMI->second, false); 4665 } 4666 4667 if (!Op && N.getNode()) 4668 // Check if frame index is available. 4669 if (LoadSDNode *LNode = dyn_cast<LoadSDNode>(N.getNode())) 4670 if (FrameIndexSDNode *FINode = 4671 dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode())) 4672 Op = MachineOperand::CreateFI(FINode->getIndex()); 4673 4674 if (!Op) 4675 return false; 4676 4677 assert(Variable->isValidLocationForIntrinsic(DL) && 4678 "Expected inlined-at fields to agree"); 4679 if (Op->isReg()) 4680 FuncInfo.ArgDbgValues.push_back( 4681 BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsIndirect, 4682 Op->getReg(), Offset, Variable, Expr)); 4683 else 4684 FuncInfo.ArgDbgValues.push_back( 4685 BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE)) 4686 .addOperand(*Op) 4687 .addImm(Offset) 4688 .addMetadata(Variable) 4689 .addMetadata(Expr)); 4690 4691 return true; 4692 } 4693 4694 // VisualStudio defines setjmp as _setjmp 4695 #if defined(_MSC_VER) && defined(setjmp) && \ 4696 !defined(setjmp_undefined_for_msvc) 4697 # pragma push_macro("setjmp") 4698 # undef setjmp 4699 # define setjmp_undefined_for_msvc 4700 #endif 4701 4702 /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If 4703 /// we want to emit this as a call to a named external function, return the name 4704 /// otherwise lower it and return null. 4705 const char * 4706 SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I, unsigned Intrinsic) { 4707 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 4708 SDLoc sdl = getCurSDLoc(); 4709 DebugLoc dl = getCurDebugLoc(); 4710 SDValue Res; 4711 4712 switch (Intrinsic) { 4713 default: 4714 // By default, turn this into a target intrinsic node. 4715 visitTargetIntrinsic(I, Intrinsic); 4716 return nullptr; 4717 case Intrinsic::vastart: visitVAStart(I); return nullptr; 4718 case Intrinsic::vaend: visitVAEnd(I); return nullptr; 4719 case Intrinsic::vacopy: visitVACopy(I); return nullptr; 4720 case Intrinsic::returnaddress: 4721 setValue(&I, DAG.getNode(ISD::RETURNADDR, sdl, 4722 TLI.getPointerTy(DAG.getDataLayout()), 4723 getValue(I.getArgOperand(0)))); 4724 return nullptr; 4725 case Intrinsic::frameaddress: 4726 setValue(&I, DAG.getNode(ISD::FRAMEADDR, sdl, 4727 TLI.getPointerTy(DAG.getDataLayout()), 4728 getValue(I.getArgOperand(0)))); 4729 return nullptr; 4730 case Intrinsic::read_register: { 4731 Value *Reg = I.getArgOperand(0); 4732 SDValue Chain = getRoot(); 4733 SDValue RegName = 4734 DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata())); 4735 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 4736 Res = DAG.getNode(ISD::READ_REGISTER, sdl, 4737 DAG.getVTList(VT, MVT::Other), Chain, RegName); 4738 setValue(&I, Res); 4739 DAG.setRoot(Res.getValue(1)); 4740 return nullptr; 4741 } 4742 case Intrinsic::write_register: { 4743 Value *Reg = I.getArgOperand(0); 4744 Value *RegValue = I.getArgOperand(1); 4745 SDValue Chain = getRoot(); 4746 SDValue RegName = 4747 DAG.getMDNode(cast<MDNode>(cast<MetadataAsValue>(Reg)->getMetadata())); 4748 DAG.setRoot(DAG.getNode(ISD::WRITE_REGISTER, sdl, MVT::Other, Chain, 4749 RegName, getValue(RegValue))); 4750 return nullptr; 4751 } 4752 case Intrinsic::setjmp: 4753 return &"_setjmp"[!TLI.usesUnderscoreSetJmp()]; 4754 case Intrinsic::longjmp: 4755 return &"_longjmp"[!TLI.usesUnderscoreLongJmp()]; 4756 case Intrinsic::memcpy: { 4757 SDValue Op1 = getValue(I.getArgOperand(0)); 4758 SDValue Op2 = getValue(I.getArgOperand(1)); 4759 SDValue Op3 = getValue(I.getArgOperand(2)); 4760 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue(); 4761 if (!Align) 4762 Align = 1; // @llvm.memcpy defines 0 and 1 to both mean no alignment. 4763 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue(); 4764 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget()); 4765 SDValue MC = DAG.getMemcpy(getRoot(), sdl, Op1, Op2, Op3, Align, isVol, 4766 false, isTC, 4767 MachinePointerInfo(I.getArgOperand(0)), 4768 MachinePointerInfo(I.getArgOperand(1))); 4769 updateDAGForMaybeTailCall(MC); 4770 return nullptr; 4771 } 4772 case Intrinsic::memset: { 4773 SDValue Op1 = getValue(I.getArgOperand(0)); 4774 SDValue Op2 = getValue(I.getArgOperand(1)); 4775 SDValue Op3 = getValue(I.getArgOperand(2)); 4776 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue(); 4777 if (!Align) 4778 Align = 1; // @llvm.memset defines 0 and 1 to both mean no alignment. 4779 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue(); 4780 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget()); 4781 SDValue MS = DAG.getMemset(getRoot(), sdl, Op1, Op2, Op3, Align, isVol, 4782 isTC, MachinePointerInfo(I.getArgOperand(0))); 4783 updateDAGForMaybeTailCall(MS); 4784 return nullptr; 4785 } 4786 case Intrinsic::memmove: { 4787 SDValue Op1 = getValue(I.getArgOperand(0)); 4788 SDValue Op2 = getValue(I.getArgOperand(1)); 4789 SDValue Op3 = getValue(I.getArgOperand(2)); 4790 unsigned Align = cast<ConstantInt>(I.getArgOperand(3))->getZExtValue(); 4791 if (!Align) 4792 Align = 1; // @llvm.memmove defines 0 and 1 to both mean no alignment. 4793 bool isVol = cast<ConstantInt>(I.getArgOperand(4))->getZExtValue(); 4794 bool isTC = I.isTailCall() && isInTailCallPosition(&I, DAG.getTarget()); 4795 SDValue MM = DAG.getMemmove(getRoot(), sdl, Op1, Op2, Op3, Align, isVol, 4796 isTC, MachinePointerInfo(I.getArgOperand(0)), 4797 MachinePointerInfo(I.getArgOperand(1))); 4798 updateDAGForMaybeTailCall(MM); 4799 return nullptr; 4800 } 4801 case Intrinsic::dbg_declare: { 4802 const DbgDeclareInst &DI = cast<DbgDeclareInst>(I); 4803 DILocalVariable *Variable = DI.getVariable(); 4804 DIExpression *Expression = DI.getExpression(); 4805 const Value *Address = DI.getAddress(); 4806 assert(Variable && "Missing variable"); 4807 if (!Address) { 4808 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n"); 4809 return nullptr; 4810 } 4811 4812 // Check if address has undef value. 4813 if (isa<UndefValue>(Address) || 4814 (Address->use_empty() && !isa<Argument>(Address))) { 4815 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n"); 4816 return nullptr; 4817 } 4818 4819 SDValue &N = NodeMap[Address]; 4820 if (!N.getNode() && isa<Argument>(Address)) 4821 // Check unused arguments map. 4822 N = UnusedArgNodeMap[Address]; 4823 SDDbgValue *SDV; 4824 if (N.getNode()) { 4825 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address)) 4826 Address = BCI->getOperand(0); 4827 // Parameters are handled specially. 4828 bool isParameter = Variable->isParameter() || isa<Argument>(Address); 4829 auto FINode = dyn_cast<FrameIndexSDNode>(N.getNode()); 4830 if (isParameter && FINode) { 4831 // Byval parameter. We have a frame index at this point. 4832 SDV = DAG.getFrameIndexDbgValue(Variable, Expression, 4833 FINode->getIndex(), 0, dl, SDNodeOrder); 4834 } else if (isa<Argument>(Address)) { 4835 // Address is an argument, so try to emit its dbg value using 4836 // virtual register info from the FuncInfo.ValueMap. 4837 EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, 0, false, 4838 N); 4839 return nullptr; 4840 } else { 4841 SDV = DAG.getDbgValue(Variable, Expression, N.getNode(), N.getResNo(), 4842 true, 0, dl, SDNodeOrder); 4843 } 4844 DAG.AddDbgValue(SDV, N.getNode(), isParameter); 4845 } else { 4846 // If Address is an argument then try to emit its dbg value using 4847 // virtual register info from the FuncInfo.ValueMap. 4848 if (!EmitFuncArgumentDbgValue(Address, Variable, Expression, dl, 0, false, 4849 N)) { 4850 // If variable is pinned by a alloca in dominating bb then 4851 // use StaticAllocaMap. 4852 if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) { 4853 if (AI->getParent() != DI.getParent()) { 4854 DenseMap<const AllocaInst*, int>::iterator SI = 4855 FuncInfo.StaticAllocaMap.find(AI); 4856 if (SI != FuncInfo.StaticAllocaMap.end()) { 4857 SDV = DAG.getFrameIndexDbgValue(Variable, Expression, SI->second, 4858 0, dl, SDNodeOrder); 4859 DAG.AddDbgValue(SDV, nullptr, false); 4860 return nullptr; 4861 } 4862 } 4863 } 4864 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n"); 4865 } 4866 } 4867 return nullptr; 4868 } 4869 case Intrinsic::dbg_value: { 4870 const DbgValueInst &DI = cast<DbgValueInst>(I); 4871 assert(DI.getVariable() && "Missing variable"); 4872 4873 DILocalVariable *Variable = DI.getVariable(); 4874 DIExpression *Expression = DI.getExpression(); 4875 uint64_t Offset = DI.getOffset(); 4876 const Value *V = DI.getValue(); 4877 if (!V) 4878 return nullptr; 4879 4880 SDDbgValue *SDV; 4881 if (isa<ConstantInt>(V) || isa<ConstantFP>(V) || isa<UndefValue>(V)) { 4882 SDV = DAG.getConstantDbgValue(Variable, Expression, V, Offset, dl, 4883 SDNodeOrder); 4884 DAG.AddDbgValue(SDV, nullptr, false); 4885 } else { 4886 // Do not use getValue() in here; we don't want to generate code at 4887 // this point if it hasn't been done yet. 4888 SDValue N = NodeMap[V]; 4889 if (!N.getNode() && isa<Argument>(V)) 4890 // Check unused arguments map. 4891 N = UnusedArgNodeMap[V]; 4892 if (N.getNode()) { 4893 if (!EmitFuncArgumentDbgValue(V, Variable, Expression, dl, Offset, 4894 false, N)) { 4895 SDV = DAG.getDbgValue(Variable, Expression, N.getNode(), N.getResNo(), 4896 false, Offset, dl, SDNodeOrder); 4897 DAG.AddDbgValue(SDV, N.getNode(), false); 4898 } 4899 } else if (!V->use_empty() ) { 4900 // Do not call getValue(V) yet, as we don't want to generate code. 4901 // Remember it for later. 4902 DanglingDebugInfo DDI(&DI, dl, SDNodeOrder); 4903 DanglingDebugInfoMap[V] = DDI; 4904 } else { 4905 // We may expand this to cover more cases. One case where we have no 4906 // data available is an unreferenced parameter. 4907 DEBUG(dbgs() << "Dropping debug info for " << DI << "\n"); 4908 } 4909 } 4910 4911 // Build a debug info table entry. 4912 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(V)) 4913 V = BCI->getOperand(0); 4914 const AllocaInst *AI = dyn_cast<AllocaInst>(V); 4915 // Don't handle byval struct arguments or VLAs, for example. 4916 if (!AI) { 4917 DEBUG(dbgs() << "Dropping debug location info for:\n " << DI << "\n"); 4918 DEBUG(dbgs() << " Last seen at:\n " << *V << "\n"); 4919 return nullptr; 4920 } 4921 DenseMap<const AllocaInst*, int>::iterator SI = 4922 FuncInfo.StaticAllocaMap.find(AI); 4923 if (SI == FuncInfo.StaticAllocaMap.end()) 4924 return nullptr; // VLAs. 4925 return nullptr; 4926 } 4927 4928 case Intrinsic::eh_typeid_for: { 4929 // Find the type id for the given typeinfo. 4930 GlobalValue *GV = ExtractTypeInfo(I.getArgOperand(0)); 4931 unsigned TypeID = DAG.getMachineFunction().getMMI().getTypeIDFor(GV); 4932 Res = DAG.getConstant(TypeID, sdl, MVT::i32); 4933 setValue(&I, Res); 4934 return nullptr; 4935 } 4936 4937 case Intrinsic::eh_return_i32: 4938 case Intrinsic::eh_return_i64: 4939 DAG.getMachineFunction().getMMI().setCallsEHReturn(true); 4940 DAG.setRoot(DAG.getNode(ISD::EH_RETURN, sdl, 4941 MVT::Other, 4942 getControlRoot(), 4943 getValue(I.getArgOperand(0)), 4944 getValue(I.getArgOperand(1)))); 4945 return nullptr; 4946 case Intrinsic::eh_unwind_init: 4947 DAG.getMachineFunction().getMMI().setCallsUnwindInit(true); 4948 return nullptr; 4949 case Intrinsic::eh_dwarf_cfa: { 4950 SDValue CfaArg = DAG.getSExtOrTrunc(getValue(I.getArgOperand(0)), sdl, 4951 TLI.getPointerTy(DAG.getDataLayout())); 4952 SDValue Offset = DAG.getNode(ISD::ADD, sdl, 4953 CfaArg.getValueType(), 4954 DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, sdl, 4955 CfaArg.getValueType()), 4956 CfaArg); 4957 SDValue FA = DAG.getNode( 4958 ISD::FRAMEADDR, sdl, TLI.getPointerTy(DAG.getDataLayout()), 4959 DAG.getConstant(0, sdl, TLI.getPointerTy(DAG.getDataLayout()))); 4960 setValue(&I, DAG.getNode(ISD::ADD, sdl, FA.getValueType(), 4961 FA, Offset)); 4962 return nullptr; 4963 } 4964 case Intrinsic::eh_sjlj_callsite: { 4965 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI(); 4966 ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(0)); 4967 assert(CI && "Non-constant call site value in eh.sjlj.callsite!"); 4968 assert(MMI.getCurrentCallSite() == 0 && "Overlapping call sites!"); 4969 4970 MMI.setCurrentCallSite(CI->getZExtValue()); 4971 return nullptr; 4972 } 4973 case Intrinsic::eh_sjlj_functioncontext: { 4974 // Get and store the index of the function context. 4975 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo(); 4976 AllocaInst *FnCtx = 4977 cast<AllocaInst>(I.getArgOperand(0)->stripPointerCasts()); 4978 int FI = FuncInfo.StaticAllocaMap[FnCtx]; 4979 MFI->setFunctionContextIndex(FI); 4980 return nullptr; 4981 } 4982 case Intrinsic::eh_sjlj_setjmp: { 4983 SDValue Ops[2]; 4984 Ops[0] = getRoot(); 4985 Ops[1] = getValue(I.getArgOperand(0)); 4986 SDValue Op = DAG.getNode(ISD::EH_SJLJ_SETJMP, sdl, 4987 DAG.getVTList(MVT::i32, MVT::Other), Ops); 4988 setValue(&I, Op.getValue(0)); 4989 DAG.setRoot(Op.getValue(1)); 4990 return nullptr; 4991 } 4992 case Intrinsic::eh_sjlj_longjmp: { 4993 DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_LONGJMP, sdl, MVT::Other, 4994 getRoot(), getValue(I.getArgOperand(0)))); 4995 return nullptr; 4996 } 4997 case Intrinsic::eh_sjlj_setup_dispatch: { 4998 DAG.setRoot(DAG.getNode(ISD::EH_SJLJ_SETUP_DISPATCH, sdl, MVT::Other, 4999 getRoot())); 5000 return nullptr; 5001 } 5002 5003 case Intrinsic::masked_gather: 5004 visitMaskedGather(I); 5005 return nullptr; 5006 case Intrinsic::masked_load: 5007 visitMaskedLoad(I); 5008 return nullptr; 5009 case Intrinsic::masked_scatter: 5010 visitMaskedScatter(I); 5011 return nullptr; 5012 case Intrinsic::masked_store: 5013 visitMaskedStore(I); 5014 return nullptr; 5015 case Intrinsic::x86_mmx_pslli_w: 5016 case Intrinsic::x86_mmx_pslli_d: 5017 case Intrinsic::x86_mmx_pslli_q: 5018 case Intrinsic::x86_mmx_psrli_w: 5019 case Intrinsic::x86_mmx_psrli_d: 5020 case Intrinsic::x86_mmx_psrli_q: 5021 case Intrinsic::x86_mmx_psrai_w: 5022 case Intrinsic::x86_mmx_psrai_d: { 5023 SDValue ShAmt = getValue(I.getArgOperand(1)); 5024 if (isa<ConstantSDNode>(ShAmt)) { 5025 visitTargetIntrinsic(I, Intrinsic); 5026 return nullptr; 5027 } 5028 unsigned NewIntrinsic = 0; 5029 EVT ShAmtVT = MVT::v2i32; 5030 switch (Intrinsic) { 5031 case Intrinsic::x86_mmx_pslli_w: 5032 NewIntrinsic = Intrinsic::x86_mmx_psll_w; 5033 break; 5034 case Intrinsic::x86_mmx_pslli_d: 5035 NewIntrinsic = Intrinsic::x86_mmx_psll_d; 5036 break; 5037 case Intrinsic::x86_mmx_pslli_q: 5038 NewIntrinsic = Intrinsic::x86_mmx_psll_q; 5039 break; 5040 case Intrinsic::x86_mmx_psrli_w: 5041 NewIntrinsic = Intrinsic::x86_mmx_psrl_w; 5042 break; 5043 case Intrinsic::x86_mmx_psrli_d: 5044 NewIntrinsic = Intrinsic::x86_mmx_psrl_d; 5045 break; 5046 case Intrinsic::x86_mmx_psrli_q: 5047 NewIntrinsic = Intrinsic::x86_mmx_psrl_q; 5048 break; 5049 case Intrinsic::x86_mmx_psrai_w: 5050 NewIntrinsic = Intrinsic::x86_mmx_psra_w; 5051 break; 5052 case Intrinsic::x86_mmx_psrai_d: 5053 NewIntrinsic = Intrinsic::x86_mmx_psra_d; 5054 break; 5055 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. 5056 } 5057 5058 // The vector shift intrinsics with scalars uses 32b shift amounts but 5059 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits 5060 // to be zero. 5061 // We must do this early because v2i32 is not a legal type. 5062 SDValue ShOps[2]; 5063 ShOps[0] = ShAmt; 5064 ShOps[1] = DAG.getConstant(0, sdl, MVT::i32); 5065 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, sdl, ShAmtVT, ShOps); 5066 EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 5067 ShAmt = DAG.getNode(ISD::BITCAST, sdl, DestVT, ShAmt); 5068 Res = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, sdl, DestVT, 5069 DAG.getConstant(NewIntrinsic, sdl, MVT::i32), 5070 getValue(I.getArgOperand(0)), ShAmt); 5071 setValue(&I, Res); 5072 return nullptr; 5073 } 5074 case Intrinsic::convertff: 5075 case Intrinsic::convertfsi: 5076 case Intrinsic::convertfui: 5077 case Intrinsic::convertsif: 5078 case Intrinsic::convertuif: 5079 case Intrinsic::convertss: 5080 case Intrinsic::convertsu: 5081 case Intrinsic::convertus: 5082 case Intrinsic::convertuu: { 5083 ISD::CvtCode Code = ISD::CVT_INVALID; 5084 switch (Intrinsic) { 5085 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. 5086 case Intrinsic::convertff: Code = ISD::CVT_FF; break; 5087 case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; 5088 case Intrinsic::convertfui: Code = ISD::CVT_FU; break; 5089 case Intrinsic::convertsif: Code = ISD::CVT_SF; break; 5090 case Intrinsic::convertuif: Code = ISD::CVT_UF; break; 5091 case Intrinsic::convertss: Code = ISD::CVT_SS; break; 5092 case Intrinsic::convertsu: Code = ISD::CVT_SU; break; 5093 case Intrinsic::convertus: Code = ISD::CVT_US; break; 5094 case Intrinsic::convertuu: Code = ISD::CVT_UU; break; 5095 } 5096 EVT DestVT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 5097 const Value *Op1 = I.getArgOperand(0); 5098 Res = DAG.getConvertRndSat(DestVT, sdl, getValue(Op1), 5099 DAG.getValueType(DestVT), 5100 DAG.getValueType(getValue(Op1).getValueType()), 5101 getValue(I.getArgOperand(1)), 5102 getValue(I.getArgOperand(2)), 5103 Code); 5104 setValue(&I, Res); 5105 return nullptr; 5106 } 5107 case Intrinsic::powi: 5108 setValue(&I, ExpandPowI(sdl, getValue(I.getArgOperand(0)), 5109 getValue(I.getArgOperand(1)), DAG)); 5110 return nullptr; 5111 case Intrinsic::log: 5112 setValue(&I, expandLog(sdl, getValue(I.getArgOperand(0)), DAG, TLI)); 5113 return nullptr; 5114 case Intrinsic::log2: 5115 setValue(&I, expandLog2(sdl, getValue(I.getArgOperand(0)), DAG, TLI)); 5116 return nullptr; 5117 case Intrinsic::log10: 5118 setValue(&I, expandLog10(sdl, getValue(I.getArgOperand(0)), DAG, TLI)); 5119 return nullptr; 5120 case Intrinsic::exp: 5121 setValue(&I, expandExp(sdl, getValue(I.getArgOperand(0)), DAG, TLI)); 5122 return nullptr; 5123 case Intrinsic::exp2: 5124 setValue(&I, expandExp2(sdl, getValue(I.getArgOperand(0)), DAG, TLI)); 5125 return nullptr; 5126 case Intrinsic::pow: 5127 setValue(&I, expandPow(sdl, getValue(I.getArgOperand(0)), 5128 getValue(I.getArgOperand(1)), DAG, TLI)); 5129 return nullptr; 5130 case Intrinsic::sqrt: 5131 case Intrinsic::fabs: 5132 case Intrinsic::sin: 5133 case Intrinsic::cos: 5134 case Intrinsic::floor: 5135 case Intrinsic::ceil: 5136 case Intrinsic::trunc: 5137 case Intrinsic::rint: 5138 case Intrinsic::nearbyint: 5139 case Intrinsic::round: 5140 case Intrinsic::canonicalize: { 5141 unsigned Opcode; 5142 switch (Intrinsic) { 5143 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. 5144 case Intrinsic::sqrt: Opcode = ISD::FSQRT; break; 5145 case Intrinsic::fabs: Opcode = ISD::FABS; break; 5146 case Intrinsic::sin: Opcode = ISD::FSIN; break; 5147 case Intrinsic::cos: Opcode = ISD::FCOS; break; 5148 case Intrinsic::floor: Opcode = ISD::FFLOOR; break; 5149 case Intrinsic::ceil: Opcode = ISD::FCEIL; break; 5150 case Intrinsic::trunc: Opcode = ISD::FTRUNC; break; 5151 case Intrinsic::rint: Opcode = ISD::FRINT; break; 5152 case Intrinsic::nearbyint: Opcode = ISD::FNEARBYINT; break; 5153 case Intrinsic::round: Opcode = ISD::FROUND; break; 5154 case Intrinsic::canonicalize: Opcode = ISD::FCANONICALIZE; break; 5155 } 5156 5157 setValue(&I, DAG.getNode(Opcode, sdl, 5158 getValue(I.getArgOperand(0)).getValueType(), 5159 getValue(I.getArgOperand(0)))); 5160 return nullptr; 5161 } 5162 case Intrinsic::minnum: { 5163 auto VT = getValue(I.getArgOperand(0)).getValueType(); 5164 unsigned Opc = 5165 I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMINNAN, VT) 5166 ? ISD::FMINNAN 5167 : ISD::FMINNUM; 5168 setValue(&I, DAG.getNode(Opc, sdl, VT, 5169 getValue(I.getArgOperand(0)), 5170 getValue(I.getArgOperand(1)))); 5171 return nullptr; 5172 } 5173 case Intrinsic::maxnum: { 5174 auto VT = getValue(I.getArgOperand(0)).getValueType(); 5175 unsigned Opc = 5176 I.hasNoNaNs() && TLI.isOperationLegalOrCustom(ISD::FMAXNAN, VT) 5177 ? ISD::FMAXNAN 5178 : ISD::FMAXNUM; 5179 setValue(&I, DAG.getNode(Opc, sdl, VT, 5180 getValue(I.getArgOperand(0)), 5181 getValue(I.getArgOperand(1)))); 5182 return nullptr; 5183 } 5184 case Intrinsic::copysign: 5185 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, sdl, 5186 getValue(I.getArgOperand(0)).getValueType(), 5187 getValue(I.getArgOperand(0)), 5188 getValue(I.getArgOperand(1)))); 5189 return nullptr; 5190 case Intrinsic::fma: 5191 setValue(&I, DAG.getNode(ISD::FMA, sdl, 5192 getValue(I.getArgOperand(0)).getValueType(), 5193 getValue(I.getArgOperand(0)), 5194 getValue(I.getArgOperand(1)), 5195 getValue(I.getArgOperand(2)))); 5196 return nullptr; 5197 case Intrinsic::fmuladd: { 5198 EVT VT = TLI.getValueType(DAG.getDataLayout(), I.getType()); 5199 if (TM.Options.AllowFPOpFusion != FPOpFusion::Strict && 5200 TLI.isFMAFasterThanFMulAndFAdd(VT)) { 5201 setValue(&I, DAG.getNode(ISD::FMA, sdl, 5202 getValue(I.getArgOperand(0)).getValueType(), 5203 getValue(I.getArgOperand(0)), 5204 getValue(I.getArgOperand(1)), 5205 getValue(I.getArgOperand(2)))); 5206 } else { 5207 // TODO: Intrinsic calls should have fast-math-flags. 5208 SDValue Mul = DAG.getNode(ISD::FMUL, sdl, 5209 getValue(I.getArgOperand(0)).getValueType(), 5210 getValue(I.getArgOperand(0)), 5211 getValue(I.getArgOperand(1))); 5212 SDValue Add = DAG.getNode(ISD::FADD, sdl, 5213 getValue(I.getArgOperand(0)).getValueType(), 5214 Mul, 5215 getValue(I.getArgOperand(2))); 5216 setValue(&I, Add); 5217 } 5218 return nullptr; 5219 } 5220 case Intrinsic::convert_to_fp16: 5221 setValue(&I, DAG.getNode(ISD::BITCAST, sdl, MVT::i16, 5222 DAG.getNode(ISD::FP_ROUND, sdl, MVT::f16, 5223 getValue(I.getArgOperand(0)), 5224 DAG.getTargetConstant(0, sdl, 5225 MVT::i32)))); 5226 return nullptr; 5227 case Intrinsic::convert_from_fp16: 5228 setValue(&I, DAG.getNode(ISD::FP_EXTEND, sdl, 5229 TLI.getValueType(DAG.getDataLayout(), I.getType()), 5230 DAG.getNode(ISD::BITCAST, sdl, MVT::f16, 5231 getValue(I.getArgOperand(0))))); 5232 return nullptr; 5233 case Intrinsic::pcmarker: { 5234 SDValue Tmp = getValue(I.getArgOperand(0)); 5235 DAG.setRoot(DAG.getNode(ISD::PCMARKER, sdl, MVT::Other, getRoot(), Tmp)); 5236 return nullptr; 5237 } 5238 case Intrinsic::readcyclecounter: { 5239 SDValue Op = getRoot(); 5240 Res = DAG.getNode(ISD::READCYCLECOUNTER, sdl, 5241 DAG.getVTList(MVT::i64, MVT::Other), Op); 5242 setValue(&I, Res); 5243 DAG.setRoot(Res.getValue(1)); 5244 return nullptr; 5245 } 5246 case Intrinsic::bitreverse: 5247 setValue(&I, DAG.getNode(ISD::BITREVERSE, sdl, 5248 getValue(I.getArgOperand(0)).getValueType(), 5249 getValue(I.getArgOperand(0)))); 5250 return nullptr; 5251 case Intrinsic::bswap: 5252 setValue(&I, DAG.getNode(ISD::BSWAP, sdl, 5253 getValue(I.getArgOperand(0)).getValueType(), 5254 getValue(I.getArgOperand(0)))); 5255 return nullptr; 5256 case Intrinsic::cttz: { 5257 SDValue Arg = getValue(I.getArgOperand(0)); 5258 ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1)); 5259 EVT Ty = Arg.getValueType(); 5260 setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTTZ : ISD::CTTZ_ZERO_UNDEF, 5261 sdl, Ty, Arg)); 5262 return nullptr; 5263 } 5264 case Intrinsic::ctlz: { 5265 SDValue Arg = getValue(I.getArgOperand(0)); 5266 ConstantInt *CI = cast<ConstantInt>(I.getArgOperand(1)); 5267 EVT Ty = Arg.getValueType(); 5268 setValue(&I, DAG.getNode(CI->isZero() ? ISD::CTLZ : ISD::CTLZ_ZERO_UNDEF, 5269 sdl, Ty, Arg)); 5270 return nullptr; 5271 } 5272 case Intrinsic::ctpop: { 5273 SDValue Arg = getValue(I.getArgOperand(0)); 5274 EVT Ty = Arg.getValueType(); 5275 setValue(&I, DAG.getNode(ISD::CTPOP, sdl, Ty, Arg)); 5276 return nullptr; 5277 } 5278 case Intrinsic::stacksave: { 5279 SDValue Op = getRoot(); 5280 Res = DAG.getNode( 5281 ISD::STACKSAVE, sdl, 5282 DAG.getVTList(TLI.getPointerTy(DAG.getDataLayout()), MVT::Other), Op); 5283 setValue(&I, Res); 5284 DAG.setRoot(Res.getValue(1)); 5285 return nullptr; 5286 } 5287 case Intrinsic::stackrestore: { 5288 Res = getValue(I.getArgOperand(0)); 5289 DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, sdl, MVT::Other, getRoot(), Res)); 5290 return nullptr; 5291 } 5292 case Intrinsic::get_dynamic_area_offset: { 5293 SDValue Op = getRoot(); 5294 EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout()); 5295 EVT ResTy = TLI.getValueType(DAG.getDataLayout(), I.getType()); 5296 // Result type for @llvm.get.dynamic.area.offset should match PtrTy for 5297 // target. 5298 if (PtrTy != ResTy) 5299 report_fatal_error("Wrong result type for @llvm.get.dynamic.area.offset" 5300 " intrinsic!"); 5301 Res = DAG.getNode(ISD::GET_DYNAMIC_AREA_OFFSET, sdl, DAG.getVTList(ResTy), 5302 Op); 5303 DAG.setRoot(Op); 5304 setValue(&I, Res); 5305 return nullptr; 5306 } 5307 case Intrinsic::stackguard: { 5308 EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout()); 5309 MachineFunction &MF = DAG.getMachineFunction(); 5310 const Module &M = *MF.getFunction()->getParent(); 5311 SDValue Chain = getRoot(); 5312 if (TLI.useLoadStackGuardNode()) { 5313 Res = getLoadStackGuard(DAG, sdl, Chain); 5314 } else { 5315 const Value *Global = TLI.getSDagStackGuard(M); 5316 unsigned Align = DL->getPrefTypeAlignment(Global->getType()); 5317 Res = 5318 DAG.getLoad(PtrTy, sdl, Chain, getValue(Global), 5319 MachinePointerInfo(Global, 0), true, false, false, Align); 5320 } 5321 DAG.setRoot(Chain); 5322 setValue(&I, Res); 5323 return nullptr; 5324 } 5325 case Intrinsic::stackprotector: { 5326 // Emit code into the DAG to store the stack guard onto the stack. 5327 MachineFunction &MF = DAG.getMachineFunction(); 5328 MachineFrameInfo *MFI = MF.getFrameInfo(); 5329 EVT PtrTy = TLI.getPointerTy(DAG.getDataLayout()); 5330 SDValue Src, Chain = getRoot(); 5331 5332 if (TLI.useLoadStackGuardNode()) 5333 Src = getLoadStackGuard(DAG, sdl, Chain); 5334 else 5335 Src = getValue(I.getArgOperand(0)); // The guard's value. 5336 5337 AllocaInst *Slot = cast<AllocaInst>(I.getArgOperand(1)); 5338 5339 int FI = FuncInfo.StaticAllocaMap[Slot]; 5340 MFI->setStackProtectorIndex(FI); 5341 5342 SDValue FIN = DAG.getFrameIndex(FI, PtrTy); 5343 5344 // Store the stack protector onto the stack. 5345 Res = DAG.getStore(Chain, sdl, Src, FIN, MachinePointerInfo::getFixedStack( 5346 DAG.getMachineFunction(), FI), 5347 true, false, 0); 5348 setValue(&I, Res); 5349 DAG.setRoot(Res); 5350 return nullptr; 5351 } 5352 case Intrinsic::objectsize: { 5353 // If we don't know by now, we're never going to know. 5354 ConstantInt *CI = dyn_cast<ConstantInt>(I.getArgOperand(1)); 5355 5356 assert(CI && "Non-constant type in __builtin_object_size?"); 5357 5358 SDValue Arg = getValue(I.getCalledValue()); 5359 EVT Ty = Arg.getValueType(); 5360 5361 if (CI->isZero()) 5362 Res = DAG.getConstant(-1ULL, sdl, Ty); 5363 else 5364 Res = DAG.getConstant(0, sdl, Ty); 5365 5366 setValue(&I, Res); 5367 return nullptr; 5368 } 5369 case Intrinsic::annotation: 5370 case Intrinsic::ptr_annotation: 5371 // Drop the intrinsic, but forward the value 5372 setValue(&I, getValue(I.getOperand(0))); 5373 return nullptr; 5374 case Intrinsic::assume: 5375 case Intrinsic::var_annotation: 5376 // Discard annotate attributes and assumptions 5377 return nullptr; 5378 5379 case Intrinsic::init_trampoline: { 5380 const Function *F = cast<Function>(I.getArgOperand(1)->stripPointerCasts()); 5381 5382 SDValue Ops[6]; 5383 Ops[0] = getRoot(); 5384 Ops[1] = getValue(I.getArgOperand(0)); 5385 Ops[2] = getValue(I.getArgOperand(1)); 5386 Ops[3] = getValue(I.getArgOperand(2)); 5387 Ops[4] = DAG.getSrcValue(I.getArgOperand(0)); 5388 Ops[5] = DAG.getSrcValue(F); 5389 5390 Res = DAG.getNode(ISD::INIT_TRAMPOLINE, sdl, MVT::Other, Ops); 5391 5392 DAG.setRoot(Res); 5393 return nullptr; 5394 } 5395 case Intrinsic::adjust_trampoline: { 5396 setValue(&I, DAG.getNode(ISD::ADJUST_TRAMPOLINE, sdl, 5397 TLI.getPointerTy(DAG.getDataLayout()), 5398 getValue(I.getArgOperand(0)))); 5399 return nullptr; 5400 } 5401 case Intrinsic::gcroot: { 5402 MachineFunction &MF = DAG.getMachineFunction(); 5403 const Function *F = MF.getFunction(); 5404 (void)F; 5405 assert(F->hasGC() && 5406 "only valid in functions with gc specified, enforced by Verifier"); 5407 assert(GFI && "implied by previous"); 5408 const Value *Alloca = I.getArgOperand(0)->stripPointerCasts(); 5409 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); 5410 5411 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); 5412 GFI->addStackRoot(FI->getIndex(), TypeMap); 5413 return nullptr; 5414 } 5415 case Intrinsic::gcread: 5416 case Intrinsic::gcwrite: 5417 llvm_unreachable("GC failed to lower gcread/gcwrite intrinsics!"); 5418 case Intrinsic::flt_rounds: 5419 setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, sdl, MVT::i32)); 5420 return nullptr; 5421 5422 case Intrinsic::expect: { 5423 // Just replace __builtin_expect(exp, c) with EXP. 5424 setValue(&I, getValue(I.getArgOperand(0))); 5425 return nullptr; 5426 } 5427 5428 case Intrinsic::debugtrap: 5429 case Intrinsic::trap: { 5430 StringRef TrapFuncName = 5431 I.getAttributes() 5432 .getAttribute(AttributeSet::FunctionIndex, "trap-func-name") 5433 .getValueAsString(); 5434 if (TrapFuncName.empty()) { 5435 ISD::NodeType Op = (Intrinsic == Intrinsic::trap) ? 5436 ISD::TRAP : ISD::DEBUGTRAP; 5437 DAG.setRoot(DAG.getNode(Op, sdl,MVT::Other, getRoot())); 5438 return nullptr; 5439 } 5440 TargetLowering::ArgListTy Args; 5441 5442 TargetLowering::CallLoweringInfo CLI(DAG); 5443 CLI.setDebugLoc(sdl).setChain(getRoot()).setCallee( 5444 CallingConv::C, I.getType(), 5445 DAG.getExternalSymbol(TrapFuncName.data(), 5446 TLI.getPointerTy(DAG.getDataLayout())), 5447 std::move(Args), 0); 5448 5449 std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI); 5450 DAG.setRoot(Result.second); 5451 return nullptr; 5452 } 5453 5454 case Intrinsic::uadd_with_overflow: 5455 case Intrinsic::sadd_with_overflow: 5456 case Intrinsic::usub_with_overflow: 5457 case Intrinsic::ssub_with_overflow: 5458 case Intrinsic::umul_with_overflow: 5459 case Intrinsic::smul_with_overflow: { 5460 ISD::NodeType Op; 5461 switch (Intrinsic) { 5462 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here. 5463 case Intrinsic::uadd_with_overflow: Op = ISD::UADDO; break; 5464 case Intrinsic::sadd_with_overflow: Op = ISD::SADDO; break; 5465 case Intrinsic::usub_with_overflow: Op = ISD::USUBO; break; 5466 case Intrinsic::ssub_with_overflow: Op = ISD::SSUBO; break; 5467 case Intrinsic::umul_with_overflow: Op = ISD::UMULO; break; 5468 case Intrinsic::smul_with_overflow: Op = ISD::SMULO; break; 5469 } 5470 SDValue Op1 = getValue(I.getArgOperand(0)); 5471 SDValue Op2 = getValue(I.getArgOperand(1)); 5472 5473 SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); 5474 setValue(&I, DAG.getNode(Op, sdl, VTs, Op1, Op2)); 5475 return nullptr; 5476 } 5477 case Intrinsic::prefetch: { 5478 SDValue Ops[5]; 5479 unsigned rw = cast<ConstantInt>(I.getArgOperand(1))->getZExtValue(); 5480 Ops[0] = getRoot(); 5481 Ops[1] = getValue(I.getArgOperand(0)); 5482 Ops[2] = getValue(I.getArgOperand(1)); 5483 Ops[3] = getValue(I.getArgOperand(2)); 5484 Ops[4] = getValue(I.getArgOperand(3)); 5485 DAG.setRoot(DAG.getMemIntrinsicNode(ISD::PREFETCH, sdl, 5486 DAG.getVTList(MVT::Other), Ops, 5487 EVT::getIntegerVT(*Context, 8), 5488 MachinePointerInfo(I.getArgOperand(0)), 5489 0, /* align */ 5490 false, /* volatile */ 5491 rw==0, /* read */ 5492 rw==1)); /* write */ 5493 return nullptr; 5494 } 5495 case Intrinsic::lifetime_start: 5496 case Intrinsic::lifetime_end: { 5497 bool IsStart = (Intrinsic == Intrinsic::lifetime_start); 5498 // Stack coloring is not enabled in O0, discard region information. 5499 if (TM.getOptLevel() == CodeGenOpt::None) 5500 return nullptr; 5501 5502 SmallVector<Value *, 4> Allocas; 5503 GetUnderlyingObjects(I.getArgOperand(1), Allocas, *DL); 5504 5505 for (SmallVectorImpl<Value*>::iterator Object = Allocas.begin(), 5506 E = Allocas.end(); Object != E; ++Object) { 5507 AllocaInst *LifetimeObject = dyn_cast_or_null<AllocaInst>(*Object); 5508 5509 // Could not find an Alloca. 5510 if (!LifetimeObject) 5511 continue; 5512 5513 // First check that the Alloca is static, otherwise it won't have a 5514 // valid frame index. 5515 auto SI = FuncInfo.StaticAllocaMap.find(LifetimeObject); 5516 if (SI == FuncInfo.StaticAllocaMap.end()) 5517 return nullptr; 5518 5519 int FI = SI->second; 5520 5521 SDValue Ops[2]; 5522 Ops[0] = getRoot(); 5523 Ops[1] = 5524 DAG.getFrameIndex(FI, TLI.getPointerTy(DAG.getDataLayout()), true); 5525 unsigned Opcode = (IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END); 5526 5527 Res = DAG.getNode(Opcode, sdl, MVT::Other, Ops); 5528 DAG.setRoot(Res); 5529 } 5530 return nullptr; 5531 } 5532 case Intrinsic::invariant_start: 5533 // Discard region information. 5534 setValue(&I, DAG.getUNDEF(TLI.getPointerTy(DAG.getDataLayout()))); 5535 return nullptr; 5536 case Intrinsic::invariant_end: 5537 // Discard region information. 5538 return nullptr; 5539 case Intrinsic::clear_cache: 5540 return TLI.getClearCacheBuiltinName(); 5541 case Intrinsic::donothing: 5542 // ignore 5543 return nullptr; 5544 case Intrinsic::experimental_stackmap: { 5545 visitStackmap(I); 5546 return nullptr; 5547 } 5548 case Intrinsic::experimental_patchpoint_void: 5549 case Intrinsic::experimental_patchpoint_i64: { 5550 visitPatchpoint(&I); 5551 return nullptr; 5552 } 5553 case Intrinsic::experimental_gc_statepoint: { 5554 LowerStatepoint(ImmutableStatepoint(&I)); 5555 return nullptr; 5556 } 5557 case Intrinsic::experimental_gc_result: { 5558 visitGCResult(cast<GCResultInst>(I)); 5559 return nullptr; 5560 } 5561 case Intrinsic::experimental_gc_relocate: { 5562 visitGCRelocate(cast<GCRelocateInst>(I)); 5563 return nullptr; 5564 } 5565 case Intrinsic::instrprof_increment: 5566 llvm_unreachable("instrprof failed to lower an increment"); 5567 case Intrinsic::instrprof_value_profile: 5568 llvm_unreachable("instrprof failed to lower a value profiling call"); 5569 case Intrinsic::localescape: { 5570 MachineFunction &MF = DAG.getMachineFunction(); 5571 const TargetInstrInfo *TII = DAG.getSubtarget().getInstrInfo(); 5572 5573 // Directly emit some LOCAL_ESCAPE machine instrs. Label assignment emission 5574 // is the same on all targets. 5575 for (unsigned Idx = 0, E = I.getNumArgOperands(); Idx < E; ++Idx) { 5576 Value *Arg = I.getArgOperand(Idx)->stripPointerCasts(); 5577 if (isa<ConstantPointerNull>(Arg)) 5578 continue; // Skip null pointers. They represent a hole in index space. 5579 AllocaInst *Slot = cast<AllocaInst>(Arg); 5580 assert(FuncInfo.StaticAllocaMap.count(Slot) && 5581 "can only escape static allocas"); 5582 int FI = FuncInfo.StaticAllocaMap[Slot]; 5583 MCSymbol *FrameAllocSym = 5584 MF.getMMI().getContext().getOrCreateFrameAllocSymbol( 5585 GlobalValue::getRealLinkageName(MF.getName()), Idx); 5586 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, dl, 5587 TII->get(TargetOpcode::LOCAL_ESCAPE)) 5588 .addSym(FrameAllocSym) 5589 .addFrameIndex(FI); 5590 } 5591 5592 return nullptr; 5593 } 5594 5595 case Intrinsic::localrecover: { 5596 // i8* @llvm.localrecover(i8* %fn, i8* %fp, i32 %idx) 5597 MachineFunction &MF = DAG.getMachineFunction(); 5598 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout(), 0); 5599 5600 // Get the symbol that defines the frame offset. 5601 auto *Fn = cast<Function>(I.getArgOperand(0)->stripPointerCasts()); 5602 auto *Idx = cast<ConstantInt>(I.getArgOperand(2)); 5603 unsigned IdxVal = unsigned(Idx->getLimitedValue(INT_MAX)); 5604 MCSymbol *FrameAllocSym = 5605 MF.getMMI().getContext().getOrCreateFrameAllocSymbol( 5606 GlobalValue::getRealLinkageName(Fn->getName()), IdxVal); 5607 5608 // Create a MCSymbol for the label to avoid any target lowering 5609 // that would make this PC relative. 5610 SDValue OffsetSym = DAG.getMCSymbol(FrameAllocSym, PtrVT); 5611 SDValue OffsetVal = 5612 DAG.getNode(ISD::LOCAL_RECOVER, sdl, PtrVT, OffsetSym); 5613 5614 // Add the offset to the FP. 5615 Value *FP = I.getArgOperand(1); 5616 SDValue FPVal = getValue(FP); 5617 SDValue Add = DAG.getNode(ISD::ADD, sdl, PtrVT, FPVal, OffsetVal); 5618 setValue(&I, Add); 5619 5620 return nullptr; 5621 } 5622 5623 case Intrinsic::eh_exceptionpointer: 5624 case Intrinsic::eh_exceptioncode: { 5625 // Get the exception pointer vreg, copy from it, and resize it to fit. 5626 const auto *CPI = cast<CatchPadInst>(I.getArgOperand(0)); 5627 MVT PtrVT = TLI.getPointerTy(DAG.getDataLayout()); 5628 const TargetRegisterClass *PtrRC = TLI.getRegClassFor(PtrVT); 5629 unsigned VReg = FuncInfo.getCatchPadExceptionPointerVReg(CPI, PtrRC); 5630 SDValue N = 5631 DAG.getCopyFromReg(DAG.getEntryNode(), getCurSDLoc(), VReg, PtrVT); 5632 if (Intrinsic == Intrinsic::eh_exceptioncode) 5633 N = DAG.getZExtOrTrunc(N, getCurSDLoc(), MVT::i32); 5634 setValue(&I, N); 5635 return nullptr; 5636 } 5637 5638 case Intrinsic::experimental_deoptimize: 5639 LowerDeoptimizeCall(&I); 5640 return nullptr; 5641 } 5642 } 5643 5644 std::pair<SDValue, SDValue> 5645 SelectionDAGBuilder::lowerInvokable(TargetLowering::CallLoweringInfo &CLI, 5646 const BasicBlock *EHPadBB) { 5647 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI(); 5648 MCSymbol *BeginLabel = nullptr; 5649 5650 if (EHPadBB) { 5651 // Insert a label before the invoke call to mark the try range. This can be 5652 // used to detect deletion of the invoke via the MachineModuleInfo. 5653 BeginLabel = MMI.getContext().createTempSymbol(); 5654 5655 // For SjLj, keep track of which landing pads go with which invokes 5656 // so as to maintain the ordering of pads in the LSDA. 5657 unsigned CallSiteIndex = MMI.getCurrentCallSite(); 5658 if (CallSiteIndex) { 5659 MMI.setCallSiteBeginLabel(BeginLabel, CallSiteIndex); 5660 LPadToCallSiteMap[FuncInfo.MBBMap[EHPadBB]].push_back(CallSiteIndex); 5661 5662 // Now that the call site is handled, stop tracking it. 5663 MMI.setCurrentCallSite(0); 5664 } 5665 5666 // Both PendingLoads and PendingExports must be flushed here; 5667 // this call might not return. 5668 (void)getRoot(); 5669 DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getControlRoot(), BeginLabel)); 5670 5671 CLI.setChain(getRoot()); 5672 } 5673 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 5674 std::pair<SDValue, SDValue> Result = TLI.LowerCallTo(CLI); 5675 5676 assert((CLI.IsTailCall || Result.second.getNode()) && 5677 "Non-null chain expected with non-tail call!"); 5678 assert((Result.second.getNode() || !Result.first.getNode()) && 5679 "Null value expected with tail call!"); 5680 5681 if (!Result.second.getNode()) { 5682 // As a special case, a null chain means that a tail call has been emitted 5683 // and the DAG root is already updated. 5684 HasTailCall = true; 5685 5686 // Since there's no actual continuation from this block, nothing can be 5687 // relying on us setting vregs for them. 5688 PendingExports.clear(); 5689 } else { 5690 DAG.setRoot(Result.second); 5691 } 5692 5693 if (EHPadBB) { 5694 // Insert a label at the end of the invoke call to mark the try range. This 5695 // can be used to detect deletion of the invoke via the MachineModuleInfo. 5696 MCSymbol *EndLabel = MMI.getContext().createTempSymbol(); 5697 DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getRoot(), EndLabel)); 5698 5699 // Inform MachineModuleInfo of range. 5700 if (MMI.hasEHFunclets()) { 5701 assert(CLI.CS); 5702 WinEHFuncInfo *EHInfo = DAG.getMachineFunction().getWinEHFuncInfo(); 5703 EHInfo->addIPToStateRange(cast<InvokeInst>(CLI.CS->getInstruction()), 5704 BeginLabel, EndLabel); 5705 } else { 5706 MMI.addInvoke(FuncInfo.MBBMap[EHPadBB], BeginLabel, EndLabel); 5707 } 5708 } 5709 5710 return Result; 5711 } 5712 5713 void SelectionDAGBuilder::LowerCallTo(ImmutableCallSite CS, SDValue Callee, 5714 bool isTailCall, 5715 const BasicBlock *EHPadBB) { 5716 auto &DL = DAG.getDataLayout(); 5717 FunctionType *FTy = CS.getFunctionType(); 5718 Type *RetTy = CS.getType(); 5719 5720 TargetLowering::ArgListTy Args; 5721 TargetLowering::ArgListEntry Entry; 5722 Args.reserve(CS.arg_size()); 5723 5724 const Value *SwiftErrorVal = nullptr; 5725 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 5726 for (ImmutableCallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); 5727 i != e; ++i) { 5728 const Value *V = *i; 5729 5730 // Skip empty types 5731 if (V->getType()->isEmptyTy()) 5732 continue; 5733 5734 SDValue ArgNode = getValue(V); 5735 Entry.Node = ArgNode; Entry.Ty = V->getType(); 5736 5737 // Skip the first return-type Attribute to get to params. 5738 Entry.setAttributes(&CS, i - CS.arg_begin() + 1); 5739 5740 // Use swifterror virtual register as input to the call. 5741 if (Entry.isSwiftError && TLI.supportSwiftError()) { 5742 SwiftErrorVal = V; 5743 // We find the virtual register for the actual swifterror argument. 5744 // Instead of using the Value, we use the virtual register instead. 5745 Entry.Node = DAG.getRegister( 5746 FuncInfo.findSwiftErrorVReg(FuncInfo.MBB, V), 5747 EVT(TLI.getPointerTy(DL))); 5748 } 5749 5750 Args.push_back(Entry); 5751 5752 // If we have an explicit sret argument that is an Instruction, (i.e., it 5753 // might point to function-local memory), we can't meaningfully tail-call. 5754 if (Entry.isSRet && isa<Instruction>(V)) 5755 isTailCall = false; 5756 } 5757 5758 // Check if target-independent constraints permit a tail call here. 5759 // Target-dependent constraints are checked within TLI->LowerCallTo. 5760 if (isTailCall && !isInTailCallPosition(CS, DAG.getTarget())) 5761 isTailCall = false; 5762 5763 TargetLowering::CallLoweringInfo CLI(DAG); 5764 CLI.setDebugLoc(getCurSDLoc()) 5765 .setChain(getRoot()) 5766 .setCallee(RetTy, FTy, Callee, std::move(Args), CS) 5767 .setTailCall(isTailCall) 5768 .setConvergent(CS.isConvergent()); 5769 std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB); 5770 5771 if (Result.first.getNode()) { 5772 const Instruction *Inst = CS.getInstruction(); 5773 Result.first = lowerRangeToAssertZExt(DAG, *Inst, Result.first); 5774 setValue(Inst, Result.first); 5775 } 5776 5777 // The last element of CLI.InVals has the SDValue for swifterror return. 5778 // Here we copy it to a virtual register and update SwiftErrorMap for 5779 // book-keeping. 5780 if (SwiftErrorVal && TLI.supportSwiftError()) { 5781 // Get the last element of InVals. 5782 SDValue Src = CLI.InVals.back(); 5783 const TargetRegisterClass *RC = TLI.getRegClassFor(TLI.getPointerTy(DL)); 5784 unsigned VReg = FuncInfo.MF->getRegInfo().createVirtualRegister(RC); 5785 SDValue CopyNode = CLI.DAG.getCopyToReg(Result.second, CLI.DL, VReg, Src); 5786 // We update the virtual register for the actual swifterror argument. 5787 FuncInfo.setSwiftErrorVReg(FuncInfo.MBB, SwiftErrorVal, VReg); 5788 DAG.setRoot(CopyNode); 5789 } 5790 } 5791 5792 /// IsOnlyUsedInZeroEqualityComparison - Return true if it only matters that the 5793 /// value is equal or not-equal to zero. 5794 static bool IsOnlyUsedInZeroEqualityComparison(const Value *V) { 5795 for (const User *U : V->users()) { 5796 if (const ICmpInst *IC = dyn_cast<ICmpInst>(U)) 5797 if (IC->isEquality()) 5798 if (const Constant *C = dyn_cast<Constant>(IC->getOperand(1))) 5799 if (C->isNullValue()) 5800 continue; 5801 // Unknown instruction. 5802 return false; 5803 } 5804 return true; 5805 } 5806 5807 static SDValue getMemCmpLoad(const Value *PtrVal, MVT LoadVT, 5808 Type *LoadTy, 5809 SelectionDAGBuilder &Builder) { 5810 5811 // Check to see if this load can be trivially constant folded, e.g. if the 5812 // input is from a string literal. 5813 if (const Constant *LoadInput = dyn_cast<Constant>(PtrVal)) { 5814 // Cast pointer to the type we really want to load. 5815 LoadInput = ConstantExpr::getBitCast(const_cast<Constant *>(LoadInput), 5816 PointerType::getUnqual(LoadTy)); 5817 5818 if (const Constant *LoadCst = ConstantFoldLoadFromConstPtr( 5819 const_cast<Constant *>(LoadInput), LoadTy, *Builder.DL)) 5820 return Builder.getValue(LoadCst); 5821 } 5822 5823 // Otherwise, we have to emit the load. If the pointer is to unfoldable but 5824 // still constant memory, the input chain can be the entry node. 5825 SDValue Root; 5826 bool ConstantMemory = false; 5827 5828 // Do not serialize (non-volatile) loads of constant memory with anything. 5829 if (Builder.AA->pointsToConstantMemory(PtrVal)) { 5830 Root = Builder.DAG.getEntryNode(); 5831 ConstantMemory = true; 5832 } else { 5833 // Do not serialize non-volatile loads against each other. 5834 Root = Builder.DAG.getRoot(); 5835 } 5836 5837 SDValue Ptr = Builder.getValue(PtrVal); 5838 SDValue LoadVal = Builder.DAG.getLoad(LoadVT, Builder.getCurSDLoc(), Root, 5839 Ptr, MachinePointerInfo(PtrVal), 5840 false /*volatile*/, 5841 false /*nontemporal*/, 5842 false /*isinvariant*/, 1 /* align=1 */); 5843 5844 if (!ConstantMemory) 5845 Builder.PendingLoads.push_back(LoadVal.getValue(1)); 5846 return LoadVal; 5847 } 5848 5849 /// processIntegerCallValue - Record the value for an instruction that 5850 /// produces an integer result, converting the type where necessary. 5851 void SelectionDAGBuilder::processIntegerCallValue(const Instruction &I, 5852 SDValue Value, 5853 bool IsSigned) { 5854 EVT VT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 5855 I.getType(), true); 5856 if (IsSigned) 5857 Value = DAG.getSExtOrTrunc(Value, getCurSDLoc(), VT); 5858 else 5859 Value = DAG.getZExtOrTrunc(Value, getCurSDLoc(), VT); 5860 setValue(&I, Value); 5861 } 5862 5863 /// visitMemCmpCall - See if we can lower a call to memcmp in an optimized form. 5864 /// If so, return true and lower it, otherwise return false and it will be 5865 /// lowered like a normal call. 5866 bool SelectionDAGBuilder::visitMemCmpCall(const CallInst &I) { 5867 // Verify that the prototype makes sense. int memcmp(void*,void*,size_t) 5868 if (I.getNumArgOperands() != 3) 5869 return false; 5870 5871 const Value *LHS = I.getArgOperand(0), *RHS = I.getArgOperand(1); 5872 if (!LHS->getType()->isPointerTy() || !RHS->getType()->isPointerTy() || 5873 !I.getArgOperand(2)->getType()->isIntegerTy() || 5874 !I.getType()->isIntegerTy()) 5875 return false; 5876 5877 const Value *Size = I.getArgOperand(2); 5878 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size); 5879 if (CSize && CSize->getZExtValue() == 0) { 5880 EVT CallVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(), 5881 I.getType(), true); 5882 setValue(&I, DAG.getConstant(0, getCurSDLoc(), CallVT)); 5883 return true; 5884 } 5885 5886 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 5887 std::pair<SDValue, SDValue> Res = 5888 TSI.EmitTargetCodeForMemcmp(DAG, getCurSDLoc(), DAG.getRoot(), 5889 getValue(LHS), getValue(RHS), getValue(Size), 5890 MachinePointerInfo(LHS), 5891 MachinePointerInfo(RHS)); 5892 if (Res.first.getNode()) { 5893 processIntegerCallValue(I, Res.first, true); 5894 PendingLoads.push_back(Res.second); 5895 return true; 5896 } 5897 5898 // memcmp(S1,S2,2) != 0 -> (*(short*)LHS != *(short*)RHS) != 0 5899 // memcmp(S1,S2,4) != 0 -> (*(int*)LHS != *(int*)RHS) != 0 5900 if (CSize && IsOnlyUsedInZeroEqualityComparison(&I)) { 5901 bool ActuallyDoIt = true; 5902 MVT LoadVT; 5903 Type *LoadTy; 5904 switch (CSize->getZExtValue()) { 5905 default: 5906 LoadVT = MVT::Other; 5907 LoadTy = nullptr; 5908 ActuallyDoIt = false; 5909 break; 5910 case 2: 5911 LoadVT = MVT::i16; 5912 LoadTy = Type::getInt16Ty(CSize->getContext()); 5913 break; 5914 case 4: 5915 LoadVT = MVT::i32; 5916 LoadTy = Type::getInt32Ty(CSize->getContext()); 5917 break; 5918 case 8: 5919 LoadVT = MVT::i64; 5920 LoadTy = Type::getInt64Ty(CSize->getContext()); 5921 break; 5922 /* 5923 case 16: 5924 LoadVT = MVT::v4i32; 5925 LoadTy = Type::getInt32Ty(CSize->getContext()); 5926 LoadTy = VectorType::get(LoadTy, 4); 5927 break; 5928 */ 5929 } 5930 5931 // This turns into unaligned loads. We only do this if the target natively 5932 // supports the MVT we'll be loading or if it is small enough (<= 4) that 5933 // we'll only produce a small number of byte loads. 5934 5935 // Require that we can find a legal MVT, and only do this if the target 5936 // supports unaligned loads of that type. Expanding into byte loads would 5937 // bloat the code. 5938 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 5939 if (ActuallyDoIt && CSize->getZExtValue() > 4) { 5940 unsigned DstAS = LHS->getType()->getPointerAddressSpace(); 5941 unsigned SrcAS = RHS->getType()->getPointerAddressSpace(); 5942 // TODO: Handle 5 byte compare as 4-byte + 1 byte. 5943 // TODO: Handle 8 byte compare on x86-32 as two 32-bit loads. 5944 // TODO: Check alignment of src and dest ptrs. 5945 if (!TLI.isTypeLegal(LoadVT) || 5946 !TLI.allowsMisalignedMemoryAccesses(LoadVT, SrcAS) || 5947 !TLI.allowsMisalignedMemoryAccesses(LoadVT, DstAS)) 5948 ActuallyDoIt = false; 5949 } 5950 5951 if (ActuallyDoIt) { 5952 SDValue LHSVal = getMemCmpLoad(LHS, LoadVT, LoadTy, *this); 5953 SDValue RHSVal = getMemCmpLoad(RHS, LoadVT, LoadTy, *this); 5954 5955 SDValue Res = DAG.getSetCC(getCurSDLoc(), MVT::i1, LHSVal, RHSVal, 5956 ISD::SETNE); 5957 processIntegerCallValue(I, Res, false); 5958 return true; 5959 } 5960 } 5961 5962 5963 return false; 5964 } 5965 5966 /// visitMemChrCall -- See if we can lower a memchr call into an optimized 5967 /// form. If so, return true and lower it, otherwise return false and it 5968 /// will be lowered like a normal call. 5969 bool SelectionDAGBuilder::visitMemChrCall(const CallInst &I) { 5970 // Verify that the prototype makes sense. void *memchr(void *, int, size_t) 5971 if (I.getNumArgOperands() != 3) 5972 return false; 5973 5974 const Value *Src = I.getArgOperand(0); 5975 const Value *Char = I.getArgOperand(1); 5976 const Value *Length = I.getArgOperand(2); 5977 if (!Src->getType()->isPointerTy() || 5978 !Char->getType()->isIntegerTy() || 5979 !Length->getType()->isIntegerTy() || 5980 !I.getType()->isPointerTy()) 5981 return false; 5982 5983 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 5984 std::pair<SDValue, SDValue> Res = 5985 TSI.EmitTargetCodeForMemchr(DAG, getCurSDLoc(), DAG.getRoot(), 5986 getValue(Src), getValue(Char), getValue(Length), 5987 MachinePointerInfo(Src)); 5988 if (Res.first.getNode()) { 5989 setValue(&I, Res.first); 5990 PendingLoads.push_back(Res.second); 5991 return true; 5992 } 5993 5994 return false; 5995 } 5996 5997 /// visitStrCpyCall -- See if we can lower a strcpy or stpcpy call into an 5998 /// optimized form. If so, return true and lower it, otherwise return false 5999 /// and it will be lowered like a normal call. 6000 bool SelectionDAGBuilder::visitStrCpyCall(const CallInst &I, bool isStpcpy) { 6001 // Verify that the prototype makes sense. char *strcpy(char *, char *) 6002 if (I.getNumArgOperands() != 2) 6003 return false; 6004 6005 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1); 6006 if (!Arg0->getType()->isPointerTy() || 6007 !Arg1->getType()->isPointerTy() || 6008 !I.getType()->isPointerTy()) 6009 return false; 6010 6011 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 6012 std::pair<SDValue, SDValue> Res = 6013 TSI.EmitTargetCodeForStrcpy(DAG, getCurSDLoc(), getRoot(), 6014 getValue(Arg0), getValue(Arg1), 6015 MachinePointerInfo(Arg0), 6016 MachinePointerInfo(Arg1), isStpcpy); 6017 if (Res.first.getNode()) { 6018 setValue(&I, Res.first); 6019 DAG.setRoot(Res.second); 6020 return true; 6021 } 6022 6023 return false; 6024 } 6025 6026 /// visitStrCmpCall - See if we can lower a call to strcmp in an optimized form. 6027 /// If so, return true and lower it, otherwise return false and it will be 6028 /// lowered like a normal call. 6029 bool SelectionDAGBuilder::visitStrCmpCall(const CallInst &I) { 6030 // Verify that the prototype makes sense. int strcmp(void*,void*) 6031 if (I.getNumArgOperands() != 2) 6032 return false; 6033 6034 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1); 6035 if (!Arg0->getType()->isPointerTy() || 6036 !Arg1->getType()->isPointerTy() || 6037 !I.getType()->isIntegerTy()) 6038 return false; 6039 6040 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 6041 std::pair<SDValue, SDValue> Res = 6042 TSI.EmitTargetCodeForStrcmp(DAG, getCurSDLoc(), DAG.getRoot(), 6043 getValue(Arg0), getValue(Arg1), 6044 MachinePointerInfo(Arg0), 6045 MachinePointerInfo(Arg1)); 6046 if (Res.first.getNode()) { 6047 processIntegerCallValue(I, Res.first, true); 6048 PendingLoads.push_back(Res.second); 6049 return true; 6050 } 6051 6052 return false; 6053 } 6054 6055 /// visitStrLenCall -- See if we can lower a strlen call into an optimized 6056 /// form. If so, return true and lower it, otherwise return false and it 6057 /// will be lowered like a normal call. 6058 bool SelectionDAGBuilder::visitStrLenCall(const CallInst &I) { 6059 // Verify that the prototype makes sense. size_t strlen(char *) 6060 if (I.getNumArgOperands() != 1) 6061 return false; 6062 6063 const Value *Arg0 = I.getArgOperand(0); 6064 if (!Arg0->getType()->isPointerTy() || !I.getType()->isIntegerTy()) 6065 return false; 6066 6067 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 6068 std::pair<SDValue, SDValue> Res = 6069 TSI.EmitTargetCodeForStrlen(DAG, getCurSDLoc(), DAG.getRoot(), 6070 getValue(Arg0), MachinePointerInfo(Arg0)); 6071 if (Res.first.getNode()) { 6072 processIntegerCallValue(I, Res.first, false); 6073 PendingLoads.push_back(Res.second); 6074 return true; 6075 } 6076 6077 return false; 6078 } 6079 6080 /// visitStrNLenCall -- See if we can lower a strnlen call into an optimized 6081 /// form. If so, return true and lower it, otherwise return false and it 6082 /// will be lowered like a normal call. 6083 bool SelectionDAGBuilder::visitStrNLenCall(const CallInst &I) { 6084 // Verify that the prototype makes sense. size_t strnlen(char *, size_t) 6085 if (I.getNumArgOperands() != 2) 6086 return false; 6087 6088 const Value *Arg0 = I.getArgOperand(0), *Arg1 = I.getArgOperand(1); 6089 if (!Arg0->getType()->isPointerTy() || 6090 !Arg1->getType()->isIntegerTy() || 6091 !I.getType()->isIntegerTy()) 6092 return false; 6093 6094 const SelectionDAGTargetInfo &TSI = DAG.getSelectionDAGInfo(); 6095 std::pair<SDValue, SDValue> Res = 6096 TSI.EmitTargetCodeForStrnlen(DAG, getCurSDLoc(), DAG.getRoot(), 6097 getValue(Arg0), getValue(Arg1), 6098 MachinePointerInfo(Arg0)); 6099 if (Res.first.getNode()) { 6100 processIntegerCallValue(I, Res.first, false); 6101 PendingLoads.push_back(Res.second); 6102 return true; 6103 } 6104 6105 return false; 6106 } 6107 6108 /// visitUnaryFloatCall - If a call instruction is a unary floating-point 6109 /// operation (as expected), translate it to an SDNode with the specified opcode 6110 /// and return true. 6111 bool SelectionDAGBuilder::visitUnaryFloatCall(const CallInst &I, 6112 unsigned Opcode) { 6113 // Sanity check that it really is a unary floating-point call. 6114 if (I.getNumArgOperands() != 1 || 6115 !I.getArgOperand(0)->getType()->isFloatingPointTy() || 6116 I.getType() != I.getArgOperand(0)->getType() || 6117 !I.onlyReadsMemory()) 6118 return false; 6119 6120 SDValue Tmp = getValue(I.getArgOperand(0)); 6121 setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), Tmp.getValueType(), Tmp)); 6122 return true; 6123 } 6124 6125 /// visitBinaryFloatCall - If a call instruction is a binary floating-point 6126 /// operation (as expected), translate it to an SDNode with the specified opcode 6127 /// and return true. 6128 bool SelectionDAGBuilder::visitBinaryFloatCall(const CallInst &I, 6129 unsigned Opcode) { 6130 // Sanity check that it really is a binary floating-point call. 6131 if (I.getNumArgOperands() != 2 || 6132 !I.getArgOperand(0)->getType()->isFloatingPointTy() || 6133 I.getType() != I.getArgOperand(0)->getType() || 6134 I.getType() != I.getArgOperand(1)->getType() || 6135 !I.onlyReadsMemory()) 6136 return false; 6137 6138 SDValue Tmp0 = getValue(I.getArgOperand(0)); 6139 SDValue Tmp1 = getValue(I.getArgOperand(1)); 6140 EVT VT = Tmp0.getValueType(); 6141 setValue(&I, DAG.getNode(Opcode, getCurSDLoc(), VT, Tmp0, Tmp1)); 6142 return true; 6143 } 6144 6145 void SelectionDAGBuilder::visitCall(const CallInst &I) { 6146 // Handle inline assembly differently. 6147 if (isa<InlineAsm>(I.getCalledValue())) { 6148 visitInlineAsm(&I); 6149 return; 6150 } 6151 6152 MachineModuleInfo &MMI = DAG.getMachineFunction().getMMI(); 6153 ComputeUsesVAFloatArgument(I, &MMI); 6154 6155 const char *RenameFn = nullptr; 6156 if (Function *F = I.getCalledFunction()) { 6157 if (F->isDeclaration()) { 6158 if (const TargetIntrinsicInfo *II = TM.getIntrinsicInfo()) { 6159 if (unsigned IID = II->getIntrinsicID(F)) { 6160 RenameFn = visitIntrinsicCall(I, IID); 6161 if (!RenameFn) 6162 return; 6163 } 6164 } 6165 if (Intrinsic::ID IID = F->getIntrinsicID()) { 6166 RenameFn = visitIntrinsicCall(I, IID); 6167 if (!RenameFn) 6168 return; 6169 } 6170 } 6171 6172 // Check for well-known libc/libm calls. If the function is internal, it 6173 // can't be a library call. 6174 LibFunc::Func Func; 6175 if (!F->hasLocalLinkage() && F->hasName() && 6176 LibInfo->getLibFunc(F->getName(), Func) && 6177 LibInfo->hasOptimizedCodeGen(Func)) { 6178 switch (Func) { 6179 default: break; 6180 case LibFunc::copysign: 6181 case LibFunc::copysignf: 6182 case LibFunc::copysignl: 6183 if (I.getNumArgOperands() == 2 && // Basic sanity checks. 6184 I.getArgOperand(0)->getType()->isFloatingPointTy() && 6185 I.getType() == I.getArgOperand(0)->getType() && 6186 I.getType() == I.getArgOperand(1)->getType() && 6187 I.onlyReadsMemory()) { 6188 SDValue LHS = getValue(I.getArgOperand(0)); 6189 SDValue RHS = getValue(I.getArgOperand(1)); 6190 setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurSDLoc(), 6191 LHS.getValueType(), LHS, RHS)); 6192 return; 6193 } 6194 break; 6195 case LibFunc::fabs: 6196 case LibFunc::fabsf: 6197 case LibFunc::fabsl: 6198 if (visitUnaryFloatCall(I, ISD::FABS)) 6199 return; 6200 break; 6201 case LibFunc::fmin: 6202 case LibFunc::fminf: 6203 case LibFunc::fminl: 6204 if (visitBinaryFloatCall(I, ISD::FMINNUM)) 6205 return; 6206 break; 6207 case LibFunc::fmax: 6208 case LibFunc::fmaxf: 6209 case LibFunc::fmaxl: 6210 if (visitBinaryFloatCall(I, ISD::FMAXNUM)) 6211 return; 6212 break; 6213 case LibFunc::sin: 6214 case LibFunc::sinf: 6215 case LibFunc::sinl: 6216 if (visitUnaryFloatCall(I, ISD::FSIN)) 6217 return; 6218 break; 6219 case LibFunc::cos: 6220 case LibFunc::cosf: 6221 case LibFunc::cosl: 6222 if (visitUnaryFloatCall(I, ISD::FCOS)) 6223 return; 6224 break; 6225 case LibFunc::sqrt: 6226 case LibFunc::sqrtf: 6227 case LibFunc::sqrtl: 6228 case LibFunc::sqrt_finite: 6229 case LibFunc::sqrtf_finite: 6230 case LibFunc::sqrtl_finite: 6231 if (visitUnaryFloatCall(I, ISD::FSQRT)) 6232 return; 6233 break; 6234 case LibFunc::floor: 6235 case LibFunc::floorf: 6236 case LibFunc::floorl: 6237 if (visitUnaryFloatCall(I, ISD::FFLOOR)) 6238 return; 6239 break; 6240 case LibFunc::nearbyint: 6241 case LibFunc::nearbyintf: 6242 case LibFunc::nearbyintl: 6243 if (visitUnaryFloatCall(I, ISD::FNEARBYINT)) 6244 return; 6245 break; 6246 case LibFunc::ceil: 6247 case LibFunc::ceilf: 6248 case LibFunc::ceill: 6249 if (visitUnaryFloatCall(I, ISD::FCEIL)) 6250 return; 6251 break; 6252 case LibFunc::rint: 6253 case LibFunc::rintf: 6254 case LibFunc::rintl: 6255 if (visitUnaryFloatCall(I, ISD::FRINT)) 6256 return; 6257 break; 6258 case LibFunc::round: 6259 case LibFunc::roundf: 6260 case LibFunc::roundl: 6261 if (visitUnaryFloatCall(I, ISD::FROUND)) 6262 return; 6263 break; 6264 case LibFunc::trunc: 6265 case LibFunc::truncf: 6266 case LibFunc::truncl: 6267 if (visitUnaryFloatCall(I, ISD::FTRUNC)) 6268 return; 6269 break; 6270 case LibFunc::log2: 6271 case LibFunc::log2f: 6272 case LibFunc::log2l: 6273 if (visitUnaryFloatCall(I, ISD::FLOG2)) 6274 return; 6275 break; 6276 case LibFunc::exp2: 6277 case LibFunc::exp2f: 6278 case LibFunc::exp2l: 6279 if (visitUnaryFloatCall(I, ISD::FEXP2)) 6280 return; 6281 break; 6282 case LibFunc::memcmp: 6283 if (visitMemCmpCall(I)) 6284 return; 6285 break; 6286 case LibFunc::memchr: 6287 if (visitMemChrCall(I)) 6288 return; 6289 break; 6290 case LibFunc::strcpy: 6291 if (visitStrCpyCall(I, false)) 6292 return; 6293 break; 6294 case LibFunc::stpcpy: 6295 if (visitStrCpyCall(I, true)) 6296 return; 6297 break; 6298 case LibFunc::strcmp: 6299 if (visitStrCmpCall(I)) 6300 return; 6301 break; 6302 case LibFunc::strlen: 6303 if (visitStrLenCall(I)) 6304 return; 6305 break; 6306 case LibFunc::strnlen: 6307 if (visitStrNLenCall(I)) 6308 return; 6309 break; 6310 } 6311 } 6312 } 6313 6314 SDValue Callee; 6315 if (!RenameFn) 6316 Callee = getValue(I.getCalledValue()); 6317 else 6318 Callee = DAG.getExternalSymbol( 6319 RenameFn, 6320 DAG.getTargetLoweringInfo().getPointerTy(DAG.getDataLayout())); 6321 6322 // Deopt bundles are lowered in LowerCallSiteWithDeoptBundle, and we don't 6323 // have to do anything here to lower funclet bundles. 6324 assert(!I.hasOperandBundlesOtherThan( 6325 {LLVMContext::OB_deopt, LLVMContext::OB_funclet}) && 6326 "Cannot lower calls with arbitrary operand bundles!"); 6327 6328 if (I.countOperandBundlesOfType(LLVMContext::OB_deopt)) 6329 LowerCallSiteWithDeoptBundle(&I, Callee, nullptr); 6330 else 6331 // Check if we can potentially perform a tail call. More detailed checking 6332 // is be done within LowerCallTo, after more information about the call is 6333 // known. 6334 LowerCallTo(&I, Callee, I.isTailCall()); 6335 } 6336 6337 namespace { 6338 6339 /// AsmOperandInfo - This contains information for each constraint that we are 6340 /// lowering. 6341 class SDISelAsmOperandInfo : public TargetLowering::AsmOperandInfo { 6342 public: 6343 /// CallOperand - If this is the result output operand or a clobber 6344 /// this is null, otherwise it is the incoming operand to the CallInst. 6345 /// This gets modified as the asm is processed. 6346 SDValue CallOperand; 6347 6348 /// AssignedRegs - If this is a register or register class operand, this 6349 /// contains the set of register corresponding to the operand. 6350 RegsForValue AssignedRegs; 6351 6352 explicit SDISelAsmOperandInfo(const TargetLowering::AsmOperandInfo &info) 6353 : TargetLowering::AsmOperandInfo(info), CallOperand(nullptr,0) { 6354 } 6355 6356 /// getCallOperandValEVT - Return the EVT of the Value* that this operand 6357 /// corresponds to. If there is no Value* for this operand, it returns 6358 /// MVT::Other. 6359 EVT getCallOperandValEVT(LLVMContext &Context, const TargetLowering &TLI, 6360 const DataLayout &DL) const { 6361 if (!CallOperandVal) return MVT::Other; 6362 6363 if (isa<BasicBlock>(CallOperandVal)) 6364 return TLI.getPointerTy(DL); 6365 6366 llvm::Type *OpTy = CallOperandVal->getType(); 6367 6368 // FIXME: code duplicated from TargetLowering::ParseConstraints(). 6369 // If this is an indirect operand, the operand is a pointer to the 6370 // accessed type. 6371 if (isIndirect) { 6372 llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy); 6373 if (!PtrTy) 6374 report_fatal_error("Indirect operand for inline asm not a pointer!"); 6375 OpTy = PtrTy->getElementType(); 6376 } 6377 6378 // Look for vector wrapped in a struct. e.g. { <16 x i8> }. 6379 if (StructType *STy = dyn_cast<StructType>(OpTy)) 6380 if (STy->getNumElements() == 1) 6381 OpTy = STy->getElementType(0); 6382 6383 // If OpTy is not a single value, it may be a struct/union that we 6384 // can tile with integers. 6385 if (!OpTy->isSingleValueType() && OpTy->isSized()) { 6386 unsigned BitSize = DL.getTypeSizeInBits(OpTy); 6387 switch (BitSize) { 6388 default: break; 6389 case 1: 6390 case 8: 6391 case 16: 6392 case 32: 6393 case 64: 6394 case 128: 6395 OpTy = IntegerType::get(Context, BitSize); 6396 break; 6397 } 6398 } 6399 6400 return TLI.getValueType(DL, OpTy, true); 6401 } 6402 }; 6403 6404 typedef SmallVector<SDISelAsmOperandInfo,16> SDISelAsmOperandInfoVector; 6405 6406 } // end anonymous namespace 6407 6408 /// GetRegistersForValue - Assign registers (virtual or physical) for the 6409 /// specified operand. We prefer to assign virtual registers, to allow the 6410 /// register allocator to handle the assignment process. However, if the asm 6411 /// uses features that we can't model on machineinstrs, we have SDISel do the 6412 /// allocation. This produces generally horrible, but correct, code. 6413 /// 6414 /// OpInfo describes the operand. 6415 /// 6416 static void GetRegistersForValue(SelectionDAG &DAG, 6417 const TargetLowering &TLI, 6418 SDLoc DL, 6419 SDISelAsmOperandInfo &OpInfo) { 6420 LLVMContext &Context = *DAG.getContext(); 6421 6422 MachineFunction &MF = DAG.getMachineFunction(); 6423 SmallVector<unsigned, 4> Regs; 6424 6425 // If this is a constraint for a single physreg, or a constraint for a 6426 // register class, find it. 6427 std::pair<unsigned, const TargetRegisterClass *> PhysReg = 6428 TLI.getRegForInlineAsmConstraint(MF.getSubtarget().getRegisterInfo(), 6429 OpInfo.ConstraintCode, 6430 OpInfo.ConstraintVT); 6431 6432 unsigned NumRegs = 1; 6433 if (OpInfo.ConstraintVT != MVT::Other) { 6434 // If this is a FP input in an integer register (or visa versa) insert a bit 6435 // cast of the input value. More generally, handle any case where the input 6436 // value disagrees with the register class we plan to stick this in. 6437 if (OpInfo.Type == InlineAsm::isInput && 6438 PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { 6439 // Try to convert to the first EVT that the reg class contains. If the 6440 // types are identical size, use a bitcast to convert (e.g. two differing 6441 // vector types). 6442 MVT RegVT = *PhysReg.second->vt_begin(); 6443 if (RegVT.getSizeInBits() == OpInfo.CallOperand.getValueSizeInBits()) { 6444 OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL, 6445 RegVT, OpInfo.CallOperand); 6446 OpInfo.ConstraintVT = RegVT; 6447 } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { 6448 // If the input is a FP value and we want it in FP registers, do a 6449 // bitcast to the corresponding integer type. This turns an f64 value 6450 // into i64, which can be passed with two i32 values on a 32-bit 6451 // machine. 6452 RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); 6453 OpInfo.CallOperand = DAG.getNode(ISD::BITCAST, DL, 6454 RegVT, OpInfo.CallOperand); 6455 OpInfo.ConstraintVT = RegVT; 6456 } 6457 } 6458 6459 NumRegs = TLI.getNumRegisters(Context, OpInfo.ConstraintVT); 6460 } 6461 6462 MVT RegVT; 6463 EVT ValueVT = OpInfo.ConstraintVT; 6464 6465 // If this is a constraint for a specific physical register, like {r17}, 6466 // assign it now. 6467 if (unsigned AssignedReg = PhysReg.first) { 6468 const TargetRegisterClass *RC = PhysReg.second; 6469 if (OpInfo.ConstraintVT == MVT::Other) 6470 ValueVT = *RC->vt_begin(); 6471 6472 // Get the actual register value type. This is important, because the user 6473 // may have asked for (e.g.) the AX register in i32 type. We need to 6474 // remember that AX is actually i16 to get the right extension. 6475 RegVT = *RC->vt_begin(); 6476 6477 // This is a explicit reference to a physical register. 6478 Regs.push_back(AssignedReg); 6479 6480 // If this is an expanded reference, add the rest of the regs to Regs. 6481 if (NumRegs != 1) { 6482 TargetRegisterClass::iterator I = RC->begin(); 6483 for (; *I != AssignedReg; ++I) 6484 assert(I != RC->end() && "Didn't find reg!"); 6485 6486 // Already added the first reg. 6487 --NumRegs; ++I; 6488 for (; NumRegs; --NumRegs, ++I) { 6489 assert(I != RC->end() && "Ran out of registers to allocate!"); 6490 Regs.push_back(*I); 6491 } 6492 } 6493 6494 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT); 6495 return; 6496 } 6497 6498 // Otherwise, if this was a reference to an LLVM register class, create vregs 6499 // for this reference. 6500 if (const TargetRegisterClass *RC = PhysReg.second) { 6501 RegVT = *RC->vt_begin(); 6502 if (OpInfo.ConstraintVT == MVT::Other) 6503 ValueVT = RegVT; 6504 6505 // Create the appropriate number of virtual registers. 6506 MachineRegisterInfo &RegInfo = MF.getRegInfo(); 6507 for (; NumRegs; --NumRegs) 6508 Regs.push_back(RegInfo.createVirtualRegister(RC)); 6509 6510 OpInfo.AssignedRegs = RegsForValue(Regs, RegVT, ValueVT); 6511 return; 6512 } 6513 6514 // Otherwise, we couldn't allocate enough registers for this. 6515 } 6516 6517 /// visitInlineAsm - Handle a call to an InlineAsm object. 6518 /// 6519 void SelectionDAGBuilder::visitInlineAsm(ImmutableCallSite CS) { 6520 const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); 6521 6522 /// ConstraintOperands - Information about all of the constraints. 6523 SDISelAsmOperandInfoVector ConstraintOperands; 6524 6525 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 6526 TargetLowering::AsmOperandInfoVector TargetConstraints = TLI.ParseConstraints( 6527 DAG.getDataLayout(), DAG.getSubtarget().getRegisterInfo(), CS); 6528 6529 bool hasMemory = false; 6530 6531 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. 6532 unsigned ResNo = 0; // ResNo - The result number of the next output. 6533 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) { 6534 ConstraintOperands.push_back(SDISelAsmOperandInfo(TargetConstraints[i])); 6535 SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); 6536 6537 MVT OpVT = MVT::Other; 6538 6539 // Compute the value type for each operand. 6540 switch (OpInfo.Type) { 6541 case InlineAsm::isOutput: 6542 // Indirect outputs just consume an argument. 6543 if (OpInfo.isIndirect) { 6544 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); 6545 break; 6546 } 6547 6548 // The return value of the call is this value. As such, there is no 6549 // corresponding argument. 6550 assert(!CS.getType()->isVoidTy() && "Bad inline asm!"); 6551 if (StructType *STy = dyn_cast<StructType>(CS.getType())) { 6552 OpVT = TLI.getSimpleValueType(DAG.getDataLayout(), 6553 STy->getElementType(ResNo)); 6554 } else { 6555 assert(ResNo == 0 && "Asm only has one result!"); 6556 OpVT = TLI.getSimpleValueType(DAG.getDataLayout(), CS.getType()); 6557 } 6558 ++ResNo; 6559 break; 6560 case InlineAsm::isInput: 6561 OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); 6562 break; 6563 case InlineAsm::isClobber: 6564 // Nothing to do. 6565 break; 6566 } 6567 6568 // If this is an input or an indirect output, process the call argument. 6569 // BasicBlocks are labels, currently appearing only in asm's. 6570 if (OpInfo.CallOperandVal) { 6571 if (const BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { 6572 OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); 6573 } else { 6574 OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); 6575 } 6576 6577 OpVT = OpInfo.getCallOperandValEVT(*DAG.getContext(), TLI, 6578 DAG.getDataLayout()).getSimpleVT(); 6579 } 6580 6581 OpInfo.ConstraintVT = OpVT; 6582 6583 // Indirect operand accesses access memory. 6584 if (OpInfo.isIndirect) 6585 hasMemory = true; 6586 else { 6587 for (unsigned j = 0, ee = OpInfo.Codes.size(); j != ee; ++j) { 6588 TargetLowering::ConstraintType 6589 CType = TLI.getConstraintType(OpInfo.Codes[j]); 6590 if (CType == TargetLowering::C_Memory) { 6591 hasMemory = true; 6592 break; 6593 } 6594 } 6595 } 6596 } 6597 6598 SDValue Chain, Flag; 6599 6600 // We won't need to flush pending loads if this asm doesn't touch 6601 // memory and is nonvolatile. 6602 if (hasMemory || IA->hasSideEffects()) 6603 Chain = getRoot(); 6604 else 6605 Chain = DAG.getRoot(); 6606 6607 // Second pass over the constraints: compute which constraint option to use 6608 // and assign registers to constraints that want a specific physreg. 6609 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { 6610 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; 6611 6612 // If this is an output operand with a matching input operand, look up the 6613 // matching input. If their types mismatch, e.g. one is an integer, the 6614 // other is floating point, or their sizes are different, flag it as an 6615 // error. 6616 if (OpInfo.hasMatchingInput()) { 6617 SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; 6618 6619 if (OpInfo.ConstraintVT != Input.ConstraintVT) { 6620 const TargetRegisterInfo *TRI = DAG.getSubtarget().getRegisterInfo(); 6621 std::pair<unsigned, const TargetRegisterClass *> MatchRC = 6622 TLI.getRegForInlineAsmConstraint(TRI, OpInfo.ConstraintCode, 6623 OpInfo.ConstraintVT); 6624 std::pair<unsigned, const TargetRegisterClass *> InputRC = 6625 TLI.getRegForInlineAsmConstraint(TRI, Input.ConstraintCode, 6626 Input.ConstraintVT); 6627 if ((OpInfo.ConstraintVT.isInteger() != 6628 Input.ConstraintVT.isInteger()) || 6629 (MatchRC.second != InputRC.second)) { 6630 report_fatal_error("Unsupported asm: input constraint" 6631 " with a matching output constraint of" 6632 " incompatible type!"); 6633 } 6634 Input.ConstraintVT = OpInfo.ConstraintVT; 6635 } 6636 } 6637 6638 // Compute the constraint code and ConstraintType to use. 6639 TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, &DAG); 6640 6641 if (OpInfo.ConstraintType == TargetLowering::C_Memory && 6642 OpInfo.Type == InlineAsm::isClobber) 6643 continue; 6644 6645 // If this is a memory input, and if the operand is not indirect, do what we 6646 // need to to provide an address for the memory input. 6647 if (OpInfo.ConstraintType == TargetLowering::C_Memory && 6648 !OpInfo.isIndirect) { 6649 assert((OpInfo.isMultipleAlternative || 6650 (OpInfo.Type == InlineAsm::isInput)) && 6651 "Can only indirectify direct input operands!"); 6652 6653 // Memory operands really want the address of the value. If we don't have 6654 // an indirect input, put it in the constpool if we can, otherwise spill 6655 // it to a stack slot. 6656 // TODO: This isn't quite right. We need to handle these according to 6657 // the addressing mode that the constraint wants. Also, this may take 6658 // an additional register for the computation and we don't want that 6659 // either. 6660 6661 // If the operand is a float, integer, or vector constant, spill to a 6662 // constant pool entry to get its address. 6663 const Value *OpVal = OpInfo.CallOperandVal; 6664 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || 6665 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) { 6666 OpInfo.CallOperand = DAG.getConstantPool( 6667 cast<Constant>(OpVal), TLI.getPointerTy(DAG.getDataLayout())); 6668 } else { 6669 // Otherwise, create a stack slot and emit a store to it before the 6670 // asm. 6671 Type *Ty = OpVal->getType(); 6672 auto &DL = DAG.getDataLayout(); 6673 uint64_t TySize = DL.getTypeAllocSize(Ty); 6674 unsigned Align = DL.getPrefTypeAlignment(Ty); 6675 MachineFunction &MF = DAG.getMachineFunction(); 6676 int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align, false); 6677 SDValue StackSlot = 6678 DAG.getFrameIndex(SSFI, TLI.getPointerTy(DAG.getDataLayout())); 6679 Chain = DAG.getStore( 6680 Chain, getCurSDLoc(), OpInfo.CallOperand, StackSlot, 6681 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(), SSFI), 6682 false, false, 0); 6683 OpInfo.CallOperand = StackSlot; 6684 } 6685 6686 // There is no longer a Value* corresponding to this operand. 6687 OpInfo.CallOperandVal = nullptr; 6688 6689 // It is now an indirect operand. 6690 OpInfo.isIndirect = true; 6691 } 6692 6693 // If this constraint is for a specific register, allocate it before 6694 // anything else. 6695 if (OpInfo.ConstraintType == TargetLowering::C_Register) 6696 GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo); 6697 } 6698 6699 // Second pass - Loop over all of the operands, assigning virtual or physregs 6700 // to register class operands. 6701 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { 6702 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; 6703 6704 // C_Register operands have already been allocated, Other/Memory don't need 6705 // to be. 6706 if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) 6707 GetRegistersForValue(DAG, TLI, getCurSDLoc(), OpInfo); 6708 } 6709 6710 // AsmNodeOperands - The operands for the ISD::INLINEASM node. 6711 std::vector<SDValue> AsmNodeOperands; 6712 AsmNodeOperands.push_back(SDValue()); // reserve space for input chain 6713 AsmNodeOperands.push_back(DAG.getTargetExternalSymbol( 6714 IA->getAsmString().c_str(), TLI.getPointerTy(DAG.getDataLayout()))); 6715 6716 // If we have a !srcloc metadata node associated with it, we want to attach 6717 // this to the ultimately generated inline asm machineinstr. To do this, we 6718 // pass in the third operand as this (potentially null) inline asm MDNode. 6719 const MDNode *SrcLoc = CS.getInstruction()->getMetadata("srcloc"); 6720 AsmNodeOperands.push_back(DAG.getMDNode(SrcLoc)); 6721 6722 // Remember the HasSideEffect, AlignStack, AsmDialect, MayLoad and MayStore 6723 // bits as operand 3. 6724 unsigned ExtraInfo = 0; 6725 if (IA->hasSideEffects()) 6726 ExtraInfo |= InlineAsm::Extra_HasSideEffects; 6727 if (IA->isAlignStack()) 6728 ExtraInfo |= InlineAsm::Extra_IsAlignStack; 6729 // Set the asm dialect. 6730 ExtraInfo |= IA->getDialect() * InlineAsm::Extra_AsmDialect; 6731 6732 // Determine if this InlineAsm MayLoad or MayStore based on the constraints. 6733 for (unsigned i = 0, e = TargetConstraints.size(); i != e; ++i) { 6734 TargetLowering::AsmOperandInfo &OpInfo = TargetConstraints[i]; 6735 6736 // Compute the constraint code and ConstraintType to use. 6737 TLI.ComputeConstraintToUse(OpInfo, SDValue()); 6738 6739 // Ideally, we would only check against memory constraints. However, the 6740 // meaning of an other constraint can be target-specific and we can't easily 6741 // reason about it. Therefore, be conservative and set MayLoad/MayStore 6742 // for other constriants as well. 6743 if (OpInfo.ConstraintType == TargetLowering::C_Memory || 6744 OpInfo.ConstraintType == TargetLowering::C_Other) { 6745 if (OpInfo.Type == InlineAsm::isInput) 6746 ExtraInfo |= InlineAsm::Extra_MayLoad; 6747 else if (OpInfo.Type == InlineAsm::isOutput) 6748 ExtraInfo |= InlineAsm::Extra_MayStore; 6749 else if (OpInfo.Type == InlineAsm::isClobber) 6750 ExtraInfo |= (InlineAsm::Extra_MayLoad | InlineAsm::Extra_MayStore); 6751 } 6752 } 6753 6754 AsmNodeOperands.push_back(DAG.getTargetConstant( 6755 ExtraInfo, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout()))); 6756 6757 // Loop over all of the inputs, copying the operand values into the 6758 // appropriate registers and processing the output regs. 6759 RegsForValue RetValRegs; 6760 6761 // IndirectStoresToEmit - The set of stores to emit after the inline asm node. 6762 std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; 6763 6764 for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { 6765 SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; 6766 6767 switch (OpInfo.Type) { 6768 case InlineAsm::isOutput: { 6769 if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && 6770 OpInfo.ConstraintType != TargetLowering::C_Register) { 6771 // Memory output, or 'other' output (e.g. 'X' constraint). 6772 assert(OpInfo.isIndirect && "Memory output must be indirect operand"); 6773 6774 unsigned ConstraintID = 6775 TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode); 6776 assert(ConstraintID != InlineAsm::Constraint_Unknown && 6777 "Failed to convert memory constraint code to constraint id."); 6778 6779 // Add information to the INLINEASM node to know about this output. 6780 unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1); 6781 OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID); 6782 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlags, getCurSDLoc(), 6783 MVT::i32)); 6784 AsmNodeOperands.push_back(OpInfo.CallOperand); 6785 break; 6786 } 6787 6788 // Otherwise, this is a register or register class output. 6789 6790 // Copy the output from the appropriate register. Find a register that 6791 // we can use. 6792 if (OpInfo.AssignedRegs.Regs.empty()) { 6793 LLVMContext &Ctx = *DAG.getContext(); 6794 Ctx.emitError(CS.getInstruction(), 6795 "couldn't allocate output register for constraint '" + 6796 Twine(OpInfo.ConstraintCode) + "'"); 6797 return; 6798 } 6799 6800 // If this is an indirect operand, store through the pointer after the 6801 // asm. 6802 if (OpInfo.isIndirect) { 6803 IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, 6804 OpInfo.CallOperandVal)); 6805 } else { 6806 // This is the result value of the call. 6807 assert(!CS.getType()->isVoidTy() && "Bad inline asm!"); 6808 // Concatenate this output onto the outputs list. 6809 RetValRegs.append(OpInfo.AssignedRegs); 6810 } 6811 6812 // Add information to the INLINEASM node to know that this register is 6813 // set. 6814 OpInfo.AssignedRegs 6815 .AddInlineAsmOperands(OpInfo.isEarlyClobber 6816 ? InlineAsm::Kind_RegDefEarlyClobber 6817 : InlineAsm::Kind_RegDef, 6818 false, 0, getCurSDLoc(), DAG, AsmNodeOperands); 6819 break; 6820 } 6821 case InlineAsm::isInput: { 6822 SDValue InOperandVal = OpInfo.CallOperand; 6823 6824 if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? 6825 // If this is required to match an output register we have already set, 6826 // just use its register. 6827 unsigned OperandNo = OpInfo.getMatchedOperand(); 6828 6829 // Scan until we find the definition we already emitted of this operand. 6830 // When we find it, create a RegsForValue operand. 6831 unsigned CurOp = InlineAsm::Op_FirstOperand; 6832 for (; OperandNo; --OperandNo) { 6833 // Advance to the next operand. 6834 unsigned OpFlag = 6835 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); 6836 assert((InlineAsm::isRegDefKind(OpFlag) || 6837 InlineAsm::isRegDefEarlyClobberKind(OpFlag) || 6838 InlineAsm::isMemKind(OpFlag)) && "Skipped past definitions?"); 6839 CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; 6840 } 6841 6842 unsigned OpFlag = 6843 cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); 6844 if (InlineAsm::isRegDefKind(OpFlag) || 6845 InlineAsm::isRegDefEarlyClobberKind(OpFlag)) { 6846 // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. 6847 if (OpInfo.isIndirect) { 6848 // This happens on gcc/testsuite/gcc.dg/pr8788-1.c 6849 LLVMContext &Ctx = *DAG.getContext(); 6850 Ctx.emitError(CS.getInstruction(), "inline asm not supported yet:" 6851 " don't know how to handle tied " 6852 "indirect register inputs"); 6853 return; 6854 } 6855 6856 RegsForValue MatchedRegs; 6857 MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); 6858 MVT RegVT = AsmNodeOperands[CurOp+1].getSimpleValueType(); 6859 MatchedRegs.RegVTs.push_back(RegVT); 6860 MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); 6861 for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); 6862 i != e; ++i) { 6863 if (const TargetRegisterClass *RC = TLI.getRegClassFor(RegVT)) 6864 MatchedRegs.Regs.push_back(RegInfo.createVirtualRegister(RC)); 6865 else { 6866 LLVMContext &Ctx = *DAG.getContext(); 6867 Ctx.emitError(CS.getInstruction(), 6868 "inline asm error: This value" 6869 " type register class is not natively supported!"); 6870 return; 6871 } 6872 } 6873 SDLoc dl = getCurSDLoc(); 6874 // Use the produced MatchedRegs object to 6875 MatchedRegs.getCopyToRegs(InOperandVal, DAG, dl, 6876 Chain, &Flag, CS.getInstruction()); 6877 MatchedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse, 6878 true, OpInfo.getMatchedOperand(), dl, 6879 DAG, AsmNodeOperands); 6880 break; 6881 } 6882 6883 assert(InlineAsm::isMemKind(OpFlag) && "Unknown matching constraint!"); 6884 assert(InlineAsm::getNumOperandRegisters(OpFlag) == 1 && 6885 "Unexpected number of operands"); 6886 // Add information to the INLINEASM node to know about this input. 6887 // See InlineAsm.h isUseOperandTiedToDef. 6888 OpFlag = InlineAsm::convertMemFlagWordToMatchingFlagWord(OpFlag); 6889 OpFlag = InlineAsm::getFlagWordForMatchingOp(OpFlag, 6890 OpInfo.getMatchedOperand()); 6891 AsmNodeOperands.push_back(DAG.getTargetConstant( 6892 OpFlag, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout()))); 6893 AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); 6894 break; 6895 } 6896 6897 // Treat indirect 'X' constraint as memory. 6898 if (OpInfo.ConstraintType == TargetLowering::C_Other && 6899 OpInfo.isIndirect) 6900 OpInfo.ConstraintType = TargetLowering::C_Memory; 6901 6902 if (OpInfo.ConstraintType == TargetLowering::C_Other) { 6903 std::vector<SDValue> Ops; 6904 TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode, 6905 Ops, DAG); 6906 if (Ops.empty()) { 6907 LLVMContext &Ctx = *DAG.getContext(); 6908 Ctx.emitError(CS.getInstruction(), 6909 "invalid operand for inline asm constraint '" + 6910 Twine(OpInfo.ConstraintCode) + "'"); 6911 return; 6912 } 6913 6914 // Add information to the INLINEASM node to know about this input. 6915 unsigned ResOpType = 6916 InlineAsm::getFlagWord(InlineAsm::Kind_Imm, Ops.size()); 6917 AsmNodeOperands.push_back(DAG.getTargetConstant( 6918 ResOpType, getCurSDLoc(), TLI.getPointerTy(DAG.getDataLayout()))); 6919 AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); 6920 break; 6921 } 6922 6923 if (OpInfo.ConstraintType == TargetLowering::C_Memory) { 6924 assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); 6925 assert(InOperandVal.getValueType() == 6926 TLI.getPointerTy(DAG.getDataLayout()) && 6927 "Memory operands expect pointer values"); 6928 6929 unsigned ConstraintID = 6930 TLI.getInlineAsmMemConstraint(OpInfo.ConstraintCode); 6931 assert(ConstraintID != InlineAsm::Constraint_Unknown && 6932 "Failed to convert memory constraint code to constraint id."); 6933 6934 // Add information to the INLINEASM node to know about this input. 6935 unsigned ResOpType = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1); 6936 ResOpType = InlineAsm::getFlagWordForMem(ResOpType, ConstraintID); 6937 AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, 6938 getCurSDLoc(), 6939 MVT::i32)); 6940 AsmNodeOperands.push_back(InOperandVal); 6941 break; 6942 } 6943 6944 assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || 6945 OpInfo.ConstraintType == TargetLowering::C_Register) && 6946 "Unknown constraint type!"); 6947 6948 // TODO: Support this. 6949 if (OpInfo.isIndirect) { 6950 LLVMContext &Ctx = *DAG.getContext(); 6951 Ctx.emitError(CS.getInstruction(), 6952 "Don't know how to handle indirect register inputs yet " 6953 "for constraint '" + 6954 Twine(OpInfo.ConstraintCode) + "'"); 6955 return; 6956 } 6957 6958 // Copy the input into the appropriate registers. 6959 if (OpInfo.AssignedRegs.Regs.empty()) { 6960 LLVMContext &Ctx = *DAG.getContext(); 6961 Ctx.emitError(CS.getInstruction(), 6962 "couldn't allocate input reg for constraint '" + 6963 Twine(OpInfo.ConstraintCode) + "'"); 6964 return; 6965 } 6966 6967 SDLoc dl = getCurSDLoc(); 6968 6969 OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, dl, 6970 Chain, &Flag, CS.getInstruction()); 6971 6972 OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_RegUse, false, 0, 6973 dl, DAG, AsmNodeOperands); 6974 break; 6975 } 6976 case InlineAsm::isClobber: { 6977 // Add the clobbered value to the operand list, so that the register 6978 // allocator is aware that the physreg got clobbered. 6979 if (!OpInfo.AssignedRegs.Regs.empty()) 6980 OpInfo.AssignedRegs.AddInlineAsmOperands(InlineAsm::Kind_Clobber, 6981 false, 0, getCurSDLoc(), DAG, 6982 AsmNodeOperands); 6983 break; 6984 } 6985 } 6986 } 6987 6988 // Finish up input operands. Set the input chain and add the flag last. 6989 AsmNodeOperands[InlineAsm::Op_InputChain] = Chain; 6990 if (Flag.getNode()) AsmNodeOperands.push_back(Flag); 6991 6992 Chain = DAG.getNode(ISD::INLINEASM, getCurSDLoc(), 6993 DAG.getVTList(MVT::Other, MVT::Glue), AsmNodeOperands); 6994 Flag = Chain.getValue(1); 6995 6996 // If this asm returns a register value, copy the result from that register 6997 // and set it as the value of the call. 6998 if (!RetValRegs.Regs.empty()) { 6999 SDValue Val = RetValRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), 7000 Chain, &Flag, CS.getInstruction()); 7001 7002 // FIXME: Why don't we do this for inline asms with MRVs? 7003 if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { 7004 EVT ResultType = TLI.getValueType(DAG.getDataLayout(), CS.getType()); 7005 7006 // If any of the results of the inline asm is a vector, it may have the 7007 // wrong width/num elts. This can happen for register classes that can 7008 // contain multiple different value types. The preg or vreg allocated may 7009 // not have the same VT as was expected. Convert it to the right type 7010 // with bit_convert. 7011 if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { 7012 Val = DAG.getNode(ISD::BITCAST, getCurSDLoc(), 7013 ResultType, Val); 7014 7015 } else if (ResultType != Val.getValueType() && 7016 ResultType.isInteger() && Val.getValueType().isInteger()) { 7017 // If a result value was tied to an input value, the computed result may 7018 // have a wider width than the expected result. Extract the relevant 7019 // portion. 7020 Val = DAG.getNode(ISD::TRUNCATE, getCurSDLoc(), ResultType, Val); 7021 } 7022 7023 assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); 7024 } 7025 7026 setValue(CS.getInstruction(), Val); 7027 // Don't need to use this as a chain in this case. 7028 if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) 7029 return; 7030 } 7031 7032 std::vector<std::pair<SDValue, const Value *> > StoresToEmit; 7033 7034 // Process indirect outputs, first output all of the flagged copies out of 7035 // physregs. 7036 for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { 7037 RegsForValue &OutRegs = IndirectStoresToEmit[i].first; 7038 const Value *Ptr = IndirectStoresToEmit[i].second; 7039 SDValue OutVal = OutRegs.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(), 7040 Chain, &Flag, IA); 7041 StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); 7042 } 7043 7044 // Emit the non-flagged stores from the physregs. 7045 SmallVector<SDValue, 8> OutChains; 7046 for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) { 7047 SDValue Val = DAG.getStore(Chain, getCurSDLoc(), 7048 StoresToEmit[i].first, 7049 getValue(StoresToEmit[i].second), 7050 MachinePointerInfo(StoresToEmit[i].second), 7051 false, false, 0); 7052 OutChains.push_back(Val); 7053 } 7054 7055 if (!OutChains.empty()) 7056 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, OutChains); 7057 7058 DAG.setRoot(Chain); 7059 } 7060 7061 void SelectionDAGBuilder::visitVAStart(const CallInst &I) { 7062 DAG.setRoot(DAG.getNode(ISD::VASTART, getCurSDLoc(), 7063 MVT::Other, getRoot(), 7064 getValue(I.getArgOperand(0)), 7065 DAG.getSrcValue(I.getArgOperand(0)))); 7066 } 7067 7068 void SelectionDAGBuilder::visitVAArg(const VAArgInst &I) { 7069 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7070 const DataLayout &DL = DAG.getDataLayout(); 7071 SDValue V = DAG.getVAArg(TLI.getValueType(DAG.getDataLayout(), I.getType()), 7072 getCurSDLoc(), getRoot(), getValue(I.getOperand(0)), 7073 DAG.getSrcValue(I.getOperand(0)), 7074 DL.getABITypeAlignment(I.getType())); 7075 setValue(&I, V); 7076 DAG.setRoot(V.getValue(1)); 7077 } 7078 7079 void SelectionDAGBuilder::visitVAEnd(const CallInst &I) { 7080 DAG.setRoot(DAG.getNode(ISD::VAEND, getCurSDLoc(), 7081 MVT::Other, getRoot(), 7082 getValue(I.getArgOperand(0)), 7083 DAG.getSrcValue(I.getArgOperand(0)))); 7084 } 7085 7086 void SelectionDAGBuilder::visitVACopy(const CallInst &I) { 7087 DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurSDLoc(), 7088 MVT::Other, getRoot(), 7089 getValue(I.getArgOperand(0)), 7090 getValue(I.getArgOperand(1)), 7091 DAG.getSrcValue(I.getArgOperand(0)), 7092 DAG.getSrcValue(I.getArgOperand(1)))); 7093 } 7094 7095 SDValue SelectionDAGBuilder::lowerRangeToAssertZExt(SelectionDAG &DAG, 7096 const Instruction &I, 7097 SDValue Op) { 7098 const MDNode *Range = I.getMetadata(LLVMContext::MD_range); 7099 if (!Range) 7100 return Op; 7101 7102 Constant *Lo = cast<ConstantAsMetadata>(Range->getOperand(0))->getValue(); 7103 if (!Lo->isNullValue()) 7104 return Op; 7105 7106 Constant *Hi = cast<ConstantAsMetadata>(Range->getOperand(1))->getValue(); 7107 unsigned Bits = cast<ConstantInt>(Hi)->getValue().logBase2(); 7108 7109 EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), Bits); 7110 7111 SDLoc SL = getCurSDLoc(); 7112 7113 SDValue ZExt = DAG.getNode(ISD::AssertZext, SL, Op.getValueType(), 7114 Op, DAG.getValueType(SmallVT)); 7115 unsigned NumVals = Op.getNode()->getNumValues(); 7116 if (NumVals == 1) 7117 return ZExt; 7118 7119 SmallVector<SDValue, 4> Ops; 7120 7121 Ops.push_back(ZExt); 7122 for (unsigned I = 1; I != NumVals; ++I) 7123 Ops.push_back(Op.getValue(I)); 7124 7125 return DAG.getMergeValues(Ops, SL); 7126 } 7127 7128 /// \brief Populate a CallLowerinInfo (into \p CLI) based on the properties of 7129 /// the call being lowered. 7130 /// 7131 /// This is a helper for lowering intrinsics that follow a target calling 7132 /// convention or require stack pointer adjustment. Only a subset of the 7133 /// intrinsic's operands need to participate in the calling convention. 7134 void SelectionDAGBuilder::populateCallLoweringInfo( 7135 TargetLowering::CallLoweringInfo &CLI, ImmutableCallSite CS, 7136 unsigned ArgIdx, unsigned NumArgs, SDValue Callee, Type *ReturnTy, 7137 bool IsPatchPoint) { 7138 TargetLowering::ArgListTy Args; 7139 Args.reserve(NumArgs); 7140 7141 // Populate the argument list. 7142 // Attributes for args start at offset 1, after the return attribute. 7143 for (unsigned ArgI = ArgIdx, ArgE = ArgIdx + NumArgs, AttrI = ArgIdx + 1; 7144 ArgI != ArgE; ++ArgI) { 7145 const Value *V = CS->getOperand(ArgI); 7146 7147 assert(!V->getType()->isEmptyTy() && "Empty type passed to intrinsic."); 7148 7149 TargetLowering::ArgListEntry Entry; 7150 Entry.Node = getValue(V); 7151 Entry.Ty = V->getType(); 7152 Entry.setAttributes(&CS, AttrI); 7153 Args.push_back(Entry); 7154 } 7155 7156 CLI.setDebugLoc(getCurSDLoc()) 7157 .setChain(getRoot()) 7158 .setCallee(CS.getCallingConv(), ReturnTy, Callee, std::move(Args), 7159 NumArgs) 7160 .setDiscardResult(CS->use_empty()) 7161 .setIsPatchPoint(IsPatchPoint); 7162 } 7163 7164 /// \brief Add a stack map intrinsic call's live variable operands to a stackmap 7165 /// or patchpoint target node's operand list. 7166 /// 7167 /// Constants are converted to TargetConstants purely as an optimization to 7168 /// avoid constant materialization and register allocation. 7169 /// 7170 /// FrameIndex operands are converted to TargetFrameIndex so that ISEL does not 7171 /// generate addess computation nodes, and so ExpandISelPseudo can convert the 7172 /// TargetFrameIndex into a DirectMemRefOp StackMap location. This avoids 7173 /// address materialization and register allocation, but may also be required 7174 /// for correctness. If a StackMap (or PatchPoint) intrinsic directly uses an 7175 /// alloca in the entry block, then the runtime may assume that the alloca's 7176 /// StackMap location can be read immediately after compilation and that the 7177 /// location is valid at any point during execution (this is similar to the 7178 /// assumption made by the llvm.gcroot intrinsic). If the alloca's location were 7179 /// only available in a register, then the runtime would need to trap when 7180 /// execution reaches the StackMap in order to read the alloca's location. 7181 static void addStackMapLiveVars(ImmutableCallSite CS, unsigned StartIdx, 7182 SDLoc DL, SmallVectorImpl<SDValue> &Ops, 7183 SelectionDAGBuilder &Builder) { 7184 for (unsigned i = StartIdx, e = CS.arg_size(); i != e; ++i) { 7185 SDValue OpVal = Builder.getValue(CS.getArgument(i)); 7186 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) { 7187 Ops.push_back( 7188 Builder.DAG.getTargetConstant(StackMaps::ConstantOp, DL, MVT::i64)); 7189 Ops.push_back( 7190 Builder.DAG.getTargetConstant(C->getSExtValue(), DL, MVT::i64)); 7191 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) { 7192 const TargetLowering &TLI = Builder.DAG.getTargetLoweringInfo(); 7193 Ops.push_back(Builder.DAG.getTargetFrameIndex( 7194 FI->getIndex(), TLI.getPointerTy(Builder.DAG.getDataLayout()))); 7195 } else 7196 Ops.push_back(OpVal); 7197 } 7198 } 7199 7200 /// \brief Lower llvm.experimental.stackmap directly to its target opcode. 7201 void SelectionDAGBuilder::visitStackmap(const CallInst &CI) { 7202 // void @llvm.experimental.stackmap(i32 <id>, i32 <numShadowBytes>, 7203 // [live variables...]) 7204 7205 assert(CI.getType()->isVoidTy() && "Stackmap cannot return a value."); 7206 7207 SDValue Chain, InFlag, Callee, NullPtr; 7208 SmallVector<SDValue, 32> Ops; 7209 7210 SDLoc DL = getCurSDLoc(); 7211 Callee = getValue(CI.getCalledValue()); 7212 NullPtr = DAG.getIntPtrConstant(0, DL, true); 7213 7214 // The stackmap intrinsic only records the live variables (the arguemnts 7215 // passed to it) and emits NOPS (if requested). Unlike the patchpoint 7216 // intrinsic, this won't be lowered to a function call. This means we don't 7217 // have to worry about calling conventions and target specific lowering code. 7218 // Instead we perform the call lowering right here. 7219 // 7220 // chain, flag = CALLSEQ_START(chain, 0) 7221 // chain, flag = STACKMAP(id, nbytes, ..., chain, flag) 7222 // chain, flag = CALLSEQ_END(chain, 0, 0, flag) 7223 // 7224 Chain = DAG.getCALLSEQ_START(getRoot(), NullPtr, DL); 7225 InFlag = Chain.getValue(1); 7226 7227 // Add the <id> and <numBytes> constants. 7228 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); 7229 Ops.push_back(DAG.getTargetConstant( 7230 cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64)); 7231 SDValue NBytesVal = getValue(CI.getOperand(PatchPointOpers::NBytesPos)); 7232 Ops.push_back(DAG.getTargetConstant( 7233 cast<ConstantSDNode>(NBytesVal)->getZExtValue(), DL, 7234 MVT::i32)); 7235 7236 // Push live variables for the stack map. 7237 addStackMapLiveVars(&CI, 2, DL, Ops, *this); 7238 7239 // We are not pushing any register mask info here on the operands list, 7240 // because the stackmap doesn't clobber anything. 7241 7242 // Push the chain and the glue flag. 7243 Ops.push_back(Chain); 7244 Ops.push_back(InFlag); 7245 7246 // Create the STACKMAP node. 7247 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue); 7248 SDNode *SM = DAG.getMachineNode(TargetOpcode::STACKMAP, DL, NodeTys, Ops); 7249 Chain = SDValue(SM, 0); 7250 InFlag = Chain.getValue(1); 7251 7252 Chain = DAG.getCALLSEQ_END(Chain, NullPtr, NullPtr, InFlag, DL); 7253 7254 // Stackmaps don't generate values, so nothing goes into the NodeMap. 7255 7256 // Set the root to the target-lowered call chain. 7257 DAG.setRoot(Chain); 7258 7259 // Inform the Frame Information that we have a stackmap in this function. 7260 FuncInfo.MF->getFrameInfo()->setHasStackMap(); 7261 } 7262 7263 /// \brief Lower llvm.experimental.patchpoint directly to its target opcode. 7264 void SelectionDAGBuilder::visitPatchpoint(ImmutableCallSite CS, 7265 const BasicBlock *EHPadBB) { 7266 // void|i64 @llvm.experimental.patchpoint.void|i64(i64 <id>, 7267 // i32 <numBytes>, 7268 // i8* <target>, 7269 // i32 <numArgs>, 7270 // [Args...], 7271 // [live variables...]) 7272 7273 CallingConv::ID CC = CS.getCallingConv(); 7274 bool IsAnyRegCC = CC == CallingConv::AnyReg; 7275 bool HasDef = !CS->getType()->isVoidTy(); 7276 SDLoc dl = getCurSDLoc(); 7277 SDValue Callee = getValue(CS->getOperand(PatchPointOpers::TargetPos)); 7278 7279 // Handle immediate and symbolic callees. 7280 if (auto* ConstCallee = dyn_cast<ConstantSDNode>(Callee)) 7281 Callee = DAG.getIntPtrConstant(ConstCallee->getZExtValue(), dl, 7282 /*isTarget=*/true); 7283 else if (auto* SymbolicCallee = dyn_cast<GlobalAddressSDNode>(Callee)) 7284 Callee = DAG.getTargetGlobalAddress(SymbolicCallee->getGlobal(), 7285 SDLoc(SymbolicCallee), 7286 SymbolicCallee->getValueType(0)); 7287 7288 // Get the real number of arguments participating in the call <numArgs> 7289 SDValue NArgVal = getValue(CS.getArgument(PatchPointOpers::NArgPos)); 7290 unsigned NumArgs = cast<ConstantSDNode>(NArgVal)->getZExtValue(); 7291 7292 // Skip the four meta args: <id>, <numNopBytes>, <target>, <numArgs> 7293 // Intrinsics include all meta-operands up to but not including CC. 7294 unsigned NumMetaOpers = PatchPointOpers::CCPos; 7295 assert(CS.arg_size() >= NumMetaOpers + NumArgs && 7296 "Not enough arguments provided to the patchpoint intrinsic"); 7297 7298 // For AnyRegCC the arguments are lowered later on manually. 7299 unsigned NumCallArgs = IsAnyRegCC ? 0 : NumArgs; 7300 Type *ReturnTy = 7301 IsAnyRegCC ? Type::getVoidTy(*DAG.getContext()) : CS->getType(); 7302 7303 TargetLowering::CallLoweringInfo CLI(DAG); 7304 populateCallLoweringInfo(CLI, CS, NumMetaOpers, NumCallArgs, Callee, ReturnTy, 7305 true); 7306 std::pair<SDValue, SDValue> Result = lowerInvokable(CLI, EHPadBB); 7307 7308 SDNode *CallEnd = Result.second.getNode(); 7309 if (HasDef && (CallEnd->getOpcode() == ISD::CopyFromReg)) 7310 CallEnd = CallEnd->getOperand(0).getNode(); 7311 7312 /// Get a call instruction from the call sequence chain. 7313 /// Tail calls are not allowed. 7314 assert(CallEnd->getOpcode() == ISD::CALLSEQ_END && 7315 "Expected a callseq node."); 7316 SDNode *Call = CallEnd->getOperand(0).getNode(); 7317 bool HasGlue = Call->getGluedNode(); 7318 7319 // Replace the target specific call node with the patchable intrinsic. 7320 SmallVector<SDValue, 8> Ops; 7321 7322 // Add the <id> and <numBytes> constants. 7323 SDValue IDVal = getValue(CS->getOperand(PatchPointOpers::IDPos)); 7324 Ops.push_back(DAG.getTargetConstant( 7325 cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64)); 7326 SDValue NBytesVal = getValue(CS->getOperand(PatchPointOpers::NBytesPos)); 7327 Ops.push_back(DAG.getTargetConstant( 7328 cast<ConstantSDNode>(NBytesVal)->getZExtValue(), dl, 7329 MVT::i32)); 7330 7331 // Add the callee. 7332 Ops.push_back(Callee); 7333 7334 // Adjust <numArgs> to account for any arguments that have been passed on the 7335 // stack instead. 7336 // Call Node: Chain, Target, {Args}, RegMask, [Glue] 7337 unsigned NumCallRegArgs = Call->getNumOperands() - (HasGlue ? 4 : 3); 7338 NumCallRegArgs = IsAnyRegCC ? NumArgs : NumCallRegArgs; 7339 Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, dl, MVT::i32)); 7340 7341 // Add the calling convention 7342 Ops.push_back(DAG.getTargetConstant((unsigned)CC, dl, MVT::i32)); 7343 7344 // Add the arguments we omitted previously. The register allocator should 7345 // place these in any free register. 7346 if (IsAnyRegCC) 7347 for (unsigned i = NumMetaOpers, e = NumMetaOpers + NumArgs; i != e; ++i) 7348 Ops.push_back(getValue(CS.getArgument(i))); 7349 7350 // Push the arguments from the call instruction up to the register mask. 7351 SDNode::op_iterator e = HasGlue ? Call->op_end()-2 : Call->op_end()-1; 7352 Ops.append(Call->op_begin() + 2, e); 7353 7354 // Push live variables for the stack map. 7355 addStackMapLiveVars(CS, NumMetaOpers + NumArgs, dl, Ops, *this); 7356 7357 // Push the register mask info. 7358 if (HasGlue) 7359 Ops.push_back(*(Call->op_end()-2)); 7360 else 7361 Ops.push_back(*(Call->op_end()-1)); 7362 7363 // Push the chain (this is originally the first operand of the call, but 7364 // becomes now the last or second to last operand). 7365 Ops.push_back(*(Call->op_begin())); 7366 7367 // Push the glue flag (last operand). 7368 if (HasGlue) 7369 Ops.push_back(*(Call->op_end()-1)); 7370 7371 SDVTList NodeTys; 7372 if (IsAnyRegCC && HasDef) { 7373 // Create the return types based on the intrinsic definition 7374 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7375 SmallVector<EVT, 3> ValueVTs; 7376 ComputeValueVTs(TLI, DAG.getDataLayout(), CS->getType(), ValueVTs); 7377 assert(ValueVTs.size() == 1 && "Expected only one return value type."); 7378 7379 // There is always a chain and a glue type at the end 7380 ValueVTs.push_back(MVT::Other); 7381 ValueVTs.push_back(MVT::Glue); 7382 NodeTys = DAG.getVTList(ValueVTs); 7383 } else 7384 NodeTys = DAG.getVTList(MVT::Other, MVT::Glue); 7385 7386 // Replace the target specific call node with a PATCHPOINT node. 7387 MachineSDNode *MN = DAG.getMachineNode(TargetOpcode::PATCHPOINT, 7388 dl, NodeTys, Ops); 7389 7390 // Update the NodeMap. 7391 if (HasDef) { 7392 if (IsAnyRegCC) 7393 setValue(CS.getInstruction(), SDValue(MN, 0)); 7394 else 7395 setValue(CS.getInstruction(), Result.first); 7396 } 7397 7398 // Fixup the consumers of the intrinsic. The chain and glue may be used in the 7399 // call sequence. Furthermore the location of the chain and glue can change 7400 // when the AnyReg calling convention is used and the intrinsic returns a 7401 // value. 7402 if (IsAnyRegCC && HasDef) { 7403 SDValue From[] = {SDValue(Call, 0), SDValue(Call, 1)}; 7404 SDValue To[] = {SDValue(MN, 1), SDValue(MN, 2)}; 7405 DAG.ReplaceAllUsesOfValuesWith(From, To, 2); 7406 } else 7407 DAG.ReplaceAllUsesWith(Call, MN); 7408 DAG.DeleteNode(Call); 7409 7410 // Inform the Frame Information that we have a patchpoint in this function. 7411 FuncInfo.MF->getFrameInfo()->setHasPatchPoint(); 7412 } 7413 7414 /// Returns an AttributeSet representing the attributes applied to the return 7415 /// value of the given call. 7416 static AttributeSet getReturnAttrs(TargetLowering::CallLoweringInfo &CLI) { 7417 SmallVector<Attribute::AttrKind, 2> Attrs; 7418 if (CLI.RetSExt) 7419 Attrs.push_back(Attribute::SExt); 7420 if (CLI.RetZExt) 7421 Attrs.push_back(Attribute::ZExt); 7422 if (CLI.IsInReg) 7423 Attrs.push_back(Attribute::InReg); 7424 7425 return AttributeSet::get(CLI.RetTy->getContext(), AttributeSet::ReturnIndex, 7426 Attrs); 7427 } 7428 7429 /// TargetLowering::LowerCallTo - This is the default LowerCallTo 7430 /// implementation, which just calls LowerCall. 7431 /// FIXME: When all targets are 7432 /// migrated to using LowerCall, this hook should be integrated into SDISel. 7433 std::pair<SDValue, SDValue> 7434 TargetLowering::LowerCallTo(TargetLowering::CallLoweringInfo &CLI) const { 7435 // Handle the incoming return values from the call. 7436 CLI.Ins.clear(); 7437 Type *OrigRetTy = CLI.RetTy; 7438 SmallVector<EVT, 4> RetTys; 7439 SmallVector<uint64_t, 4> Offsets; 7440 auto &DL = CLI.DAG.getDataLayout(); 7441 ComputeValueVTs(*this, DL, CLI.RetTy, RetTys, &Offsets); 7442 7443 SmallVector<ISD::OutputArg, 4> Outs; 7444 GetReturnInfo(CLI.RetTy, getReturnAttrs(CLI), Outs, *this, DL); 7445 7446 bool CanLowerReturn = 7447 this->CanLowerReturn(CLI.CallConv, CLI.DAG.getMachineFunction(), 7448 CLI.IsVarArg, Outs, CLI.RetTy->getContext()); 7449 7450 SDValue DemoteStackSlot; 7451 int DemoteStackIdx = -100; 7452 if (!CanLowerReturn) { 7453 // FIXME: equivalent assert? 7454 // assert(!CS.hasInAllocaArgument() && 7455 // "sret demotion is incompatible with inalloca"); 7456 uint64_t TySize = DL.getTypeAllocSize(CLI.RetTy); 7457 unsigned Align = DL.getPrefTypeAlignment(CLI.RetTy); 7458 MachineFunction &MF = CLI.DAG.getMachineFunction(); 7459 DemoteStackIdx = MF.getFrameInfo()->CreateStackObject(TySize, Align, false); 7460 Type *StackSlotPtrType = PointerType::getUnqual(CLI.RetTy); 7461 7462 DemoteStackSlot = CLI.DAG.getFrameIndex(DemoteStackIdx, getPointerTy(DL)); 7463 ArgListEntry Entry; 7464 Entry.Node = DemoteStackSlot; 7465 Entry.Ty = StackSlotPtrType; 7466 Entry.isSExt = false; 7467 Entry.isZExt = false; 7468 Entry.isInReg = false; 7469 Entry.isSRet = true; 7470 Entry.isNest = false; 7471 Entry.isByVal = false; 7472 Entry.isReturned = false; 7473 Entry.isSwiftSelf = false; 7474 Entry.isSwiftError = false; 7475 Entry.Alignment = Align; 7476 CLI.getArgs().insert(CLI.getArgs().begin(), Entry); 7477 CLI.RetTy = Type::getVoidTy(CLI.RetTy->getContext()); 7478 7479 // sret demotion isn't compatible with tail-calls, since the sret argument 7480 // points into the callers stack frame. 7481 CLI.IsTailCall = false; 7482 } else { 7483 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { 7484 EVT VT = RetTys[I]; 7485 MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), VT); 7486 unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), VT); 7487 for (unsigned i = 0; i != NumRegs; ++i) { 7488 ISD::InputArg MyFlags; 7489 MyFlags.VT = RegisterVT; 7490 MyFlags.ArgVT = VT; 7491 MyFlags.Used = CLI.IsReturnValueUsed; 7492 if (CLI.RetSExt) 7493 MyFlags.Flags.setSExt(); 7494 if (CLI.RetZExt) 7495 MyFlags.Flags.setZExt(); 7496 if (CLI.IsInReg) 7497 MyFlags.Flags.setInReg(); 7498 CLI.Ins.push_back(MyFlags); 7499 } 7500 } 7501 } 7502 7503 // We push in swifterror return as the last element of CLI.Ins. 7504 ArgListTy &Args = CLI.getArgs(); 7505 if (supportSwiftError()) { 7506 for (unsigned i = 0, e = Args.size(); i != e; ++i) { 7507 if (Args[i].isSwiftError) { 7508 ISD::InputArg MyFlags; 7509 MyFlags.VT = getPointerTy(DL); 7510 MyFlags.ArgVT = EVT(getPointerTy(DL)); 7511 MyFlags.Flags.setSwiftError(); 7512 CLI.Ins.push_back(MyFlags); 7513 } 7514 } 7515 } 7516 7517 // Handle all of the outgoing arguments. 7518 CLI.Outs.clear(); 7519 CLI.OutVals.clear(); 7520 for (unsigned i = 0, e = Args.size(); i != e; ++i) { 7521 SmallVector<EVT, 4> ValueVTs; 7522 ComputeValueVTs(*this, DL, Args[i].Ty, ValueVTs); 7523 Type *FinalType = Args[i].Ty; 7524 if (Args[i].isByVal) 7525 FinalType = cast<PointerType>(Args[i].Ty)->getElementType(); 7526 bool NeedsRegBlock = functionArgumentNeedsConsecutiveRegisters( 7527 FinalType, CLI.CallConv, CLI.IsVarArg); 7528 for (unsigned Value = 0, NumValues = ValueVTs.size(); Value != NumValues; 7529 ++Value) { 7530 EVT VT = ValueVTs[Value]; 7531 Type *ArgTy = VT.getTypeForEVT(CLI.RetTy->getContext()); 7532 SDValue Op = SDValue(Args[i].Node.getNode(), 7533 Args[i].Node.getResNo() + Value); 7534 ISD::ArgFlagsTy Flags; 7535 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy); 7536 7537 if (Args[i].isZExt) 7538 Flags.setZExt(); 7539 if (Args[i].isSExt) 7540 Flags.setSExt(); 7541 if (Args[i].isInReg) 7542 Flags.setInReg(); 7543 if (Args[i].isSRet) 7544 Flags.setSRet(); 7545 if (Args[i].isSwiftSelf) 7546 Flags.setSwiftSelf(); 7547 if (Args[i].isSwiftError) 7548 Flags.setSwiftError(); 7549 if (Args[i].isByVal) 7550 Flags.setByVal(); 7551 if (Args[i].isInAlloca) { 7552 Flags.setInAlloca(); 7553 // Set the byval flag for CCAssignFn callbacks that don't know about 7554 // inalloca. This way we can know how many bytes we should've allocated 7555 // and how many bytes a callee cleanup function will pop. If we port 7556 // inalloca to more targets, we'll have to add custom inalloca handling 7557 // in the various CC lowering callbacks. 7558 Flags.setByVal(); 7559 } 7560 if (Args[i].isByVal || Args[i].isInAlloca) { 7561 PointerType *Ty = cast<PointerType>(Args[i].Ty); 7562 Type *ElementTy = Ty->getElementType(); 7563 Flags.setByValSize(DL.getTypeAllocSize(ElementTy)); 7564 // For ByVal, alignment should come from FE. BE will guess if this 7565 // info is not there but there are cases it cannot get right. 7566 unsigned FrameAlign; 7567 if (Args[i].Alignment) 7568 FrameAlign = Args[i].Alignment; 7569 else 7570 FrameAlign = getByValTypeAlignment(ElementTy, DL); 7571 Flags.setByValAlign(FrameAlign); 7572 } 7573 if (Args[i].isNest) 7574 Flags.setNest(); 7575 if (NeedsRegBlock) 7576 Flags.setInConsecutiveRegs(); 7577 Flags.setOrigAlign(OriginalAlignment); 7578 7579 MVT PartVT = getRegisterType(CLI.RetTy->getContext(), VT); 7580 unsigned NumParts = getNumRegisters(CLI.RetTy->getContext(), VT); 7581 SmallVector<SDValue, 4> Parts(NumParts); 7582 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; 7583 7584 if (Args[i].isSExt) 7585 ExtendKind = ISD::SIGN_EXTEND; 7586 else if (Args[i].isZExt) 7587 ExtendKind = ISD::ZERO_EXTEND; 7588 7589 // Conservatively only handle 'returned' on non-vectors for now 7590 if (Args[i].isReturned && !Op.getValueType().isVector()) { 7591 assert(CLI.RetTy == Args[i].Ty && RetTys.size() == NumValues && 7592 "unexpected use of 'returned'"); 7593 // Before passing 'returned' to the target lowering code, ensure that 7594 // either the register MVT and the actual EVT are the same size or that 7595 // the return value and argument are extended in the same way; in these 7596 // cases it's safe to pass the argument register value unchanged as the 7597 // return register value (although it's at the target's option whether 7598 // to do so) 7599 // TODO: allow code generation to take advantage of partially preserved 7600 // registers rather than clobbering the entire register when the 7601 // parameter extension method is not compatible with the return 7602 // extension method 7603 if ((NumParts * PartVT.getSizeInBits() == VT.getSizeInBits()) || 7604 (ExtendKind != ISD::ANY_EXTEND && 7605 CLI.RetSExt == Args[i].isSExt && CLI.RetZExt == Args[i].isZExt)) 7606 Flags.setReturned(); 7607 } 7608 7609 getCopyToParts(CLI.DAG, CLI.DL, Op, &Parts[0], NumParts, PartVT, 7610 CLI.CS ? CLI.CS->getInstruction() : nullptr, ExtendKind); 7611 7612 for (unsigned j = 0; j != NumParts; ++j) { 7613 // if it isn't first piece, alignment must be 1 7614 ISD::OutputArg MyFlags(Flags, Parts[j].getValueType(), VT, 7615 i < CLI.NumFixedArgs, 7616 i, j*Parts[j].getValueType().getStoreSize()); 7617 if (NumParts > 1 && j == 0) 7618 MyFlags.Flags.setSplit(); 7619 else if (j != 0) { 7620 MyFlags.Flags.setOrigAlign(1); 7621 if (j == NumParts - 1) 7622 MyFlags.Flags.setSplitEnd(); 7623 } 7624 7625 CLI.Outs.push_back(MyFlags); 7626 CLI.OutVals.push_back(Parts[j]); 7627 } 7628 7629 if (NeedsRegBlock && Value == NumValues - 1) 7630 CLI.Outs[CLI.Outs.size() - 1].Flags.setInConsecutiveRegsLast(); 7631 } 7632 } 7633 7634 SmallVector<SDValue, 4> InVals; 7635 CLI.Chain = LowerCall(CLI, InVals); 7636 7637 // Update CLI.InVals to use outside of this function. 7638 CLI.InVals = InVals; 7639 7640 // Verify that the target's LowerCall behaved as expected. 7641 assert(CLI.Chain.getNode() && CLI.Chain.getValueType() == MVT::Other && 7642 "LowerCall didn't return a valid chain!"); 7643 assert((!CLI.IsTailCall || InVals.empty()) && 7644 "LowerCall emitted a return value for a tail call!"); 7645 assert((CLI.IsTailCall || InVals.size() == CLI.Ins.size()) && 7646 "LowerCall didn't emit the correct number of values!"); 7647 7648 // For a tail call, the return value is merely live-out and there aren't 7649 // any nodes in the DAG representing it. Return a special value to 7650 // indicate that a tail call has been emitted and no more Instructions 7651 // should be processed in the current block. 7652 if (CLI.IsTailCall) { 7653 CLI.DAG.setRoot(CLI.Chain); 7654 return std::make_pair(SDValue(), SDValue()); 7655 } 7656 7657 #ifndef NDEBUG 7658 for (unsigned i = 0, e = CLI.Ins.size(); i != e; ++i) { 7659 assert(InVals[i].getNode() && "LowerCall emitted a null value!"); 7660 assert(EVT(CLI.Ins[i].VT) == InVals[i].getValueType() && 7661 "LowerCall emitted a value with the wrong type!"); 7662 } 7663 #endif 7664 7665 SmallVector<SDValue, 4> ReturnValues; 7666 if (!CanLowerReturn) { 7667 // The instruction result is the result of loading from the 7668 // hidden sret parameter. 7669 SmallVector<EVT, 1> PVTs; 7670 Type *PtrRetTy = PointerType::getUnqual(OrigRetTy); 7671 7672 ComputeValueVTs(*this, DL, PtrRetTy, PVTs); 7673 assert(PVTs.size() == 1 && "Pointers should fit in one register"); 7674 EVT PtrVT = PVTs[0]; 7675 7676 unsigned NumValues = RetTys.size(); 7677 ReturnValues.resize(NumValues); 7678 SmallVector<SDValue, 4> Chains(NumValues); 7679 7680 // An aggregate return value cannot wrap around the address space, so 7681 // offsets to its parts don't wrap either. 7682 SDNodeFlags Flags; 7683 Flags.setNoUnsignedWrap(true); 7684 7685 for (unsigned i = 0; i < NumValues; ++i) { 7686 SDValue Add = CLI.DAG.getNode(ISD::ADD, CLI.DL, PtrVT, DemoteStackSlot, 7687 CLI.DAG.getConstant(Offsets[i], CLI.DL, 7688 PtrVT), &Flags); 7689 SDValue L = CLI.DAG.getLoad( 7690 RetTys[i], CLI.DL, CLI.Chain, Add, 7691 MachinePointerInfo::getFixedStack(CLI.DAG.getMachineFunction(), 7692 DemoteStackIdx, Offsets[i]), 7693 false, false, false, 1); 7694 ReturnValues[i] = L; 7695 Chains[i] = L.getValue(1); 7696 } 7697 7698 CLI.Chain = CLI.DAG.getNode(ISD::TokenFactor, CLI.DL, MVT::Other, Chains); 7699 } else { 7700 // Collect the legal value parts into potentially illegal values 7701 // that correspond to the original function's return values. 7702 ISD::NodeType AssertOp = ISD::DELETED_NODE; 7703 if (CLI.RetSExt) 7704 AssertOp = ISD::AssertSext; 7705 else if (CLI.RetZExt) 7706 AssertOp = ISD::AssertZext; 7707 unsigned CurReg = 0; 7708 for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { 7709 EVT VT = RetTys[I]; 7710 MVT RegisterVT = getRegisterType(CLI.RetTy->getContext(), VT); 7711 unsigned NumRegs = getNumRegisters(CLI.RetTy->getContext(), VT); 7712 7713 ReturnValues.push_back(getCopyFromParts(CLI.DAG, CLI.DL, &InVals[CurReg], 7714 NumRegs, RegisterVT, VT, nullptr, 7715 AssertOp)); 7716 CurReg += NumRegs; 7717 } 7718 7719 // For a function returning void, there is no return value. We can't create 7720 // such a node, so we just return a null return value in that case. In 7721 // that case, nothing will actually look at the value. 7722 if (ReturnValues.empty()) 7723 return std::make_pair(SDValue(), CLI.Chain); 7724 } 7725 7726 SDValue Res = CLI.DAG.getNode(ISD::MERGE_VALUES, CLI.DL, 7727 CLI.DAG.getVTList(RetTys), ReturnValues); 7728 return std::make_pair(Res, CLI.Chain); 7729 } 7730 7731 void TargetLowering::LowerOperationWrapper(SDNode *N, 7732 SmallVectorImpl<SDValue> &Results, 7733 SelectionDAG &DAG) const { 7734 if (SDValue Res = LowerOperation(SDValue(N, 0), DAG)) 7735 Results.push_back(Res); 7736 } 7737 7738 SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const { 7739 llvm_unreachable("LowerOperation not implemented for this target!"); 7740 } 7741 7742 void 7743 SelectionDAGBuilder::CopyValueToVirtualRegister(const Value *V, unsigned Reg) { 7744 SDValue Op = getNonRegisterValue(V); 7745 assert((Op.getOpcode() != ISD::CopyFromReg || 7746 cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && 7747 "Copy from a reg to the same reg!"); 7748 assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); 7749 7750 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 7751 RegsForValue RFV(V->getContext(), TLI, DAG.getDataLayout(), Reg, 7752 V->getType()); 7753 SDValue Chain = DAG.getEntryNode(); 7754 7755 ISD::NodeType ExtendType = (FuncInfo.PreferredExtendType.find(V) == 7756 FuncInfo.PreferredExtendType.end()) 7757 ? ISD::ANY_EXTEND 7758 : FuncInfo.PreferredExtendType[V]; 7759 RFV.getCopyToRegs(Op, DAG, getCurSDLoc(), Chain, nullptr, V, ExtendType); 7760 PendingExports.push_back(Chain); 7761 } 7762 7763 #include "llvm/CodeGen/SelectionDAGISel.h" 7764 7765 /// isOnlyUsedInEntryBlock - If the specified argument is only used in the 7766 /// entry block, return true. This includes arguments used by switches, since 7767 /// the switch may expand into multiple basic blocks. 7768 static bool isOnlyUsedInEntryBlock(const Argument *A, bool FastISel) { 7769 // With FastISel active, we may be splitting blocks, so force creation 7770 // of virtual registers for all non-dead arguments. 7771 if (FastISel) 7772 return A->use_empty(); 7773 7774 const BasicBlock &Entry = A->getParent()->front(); 7775 for (const User *U : A->users()) 7776 if (cast<Instruction>(U)->getParent() != &Entry || isa<SwitchInst>(U)) 7777 return false; // Use not in entry block. 7778 7779 return true; 7780 } 7781 7782 void SelectionDAGISel::LowerArguments(const Function &F) { 7783 SelectionDAG &DAG = SDB->DAG; 7784 SDLoc dl = SDB->getCurSDLoc(); 7785 const DataLayout &DL = DAG.getDataLayout(); 7786 SmallVector<ISD::InputArg, 16> Ins; 7787 7788 if (!FuncInfo->CanLowerReturn) { 7789 // Put in an sret pointer parameter before all the other parameters. 7790 SmallVector<EVT, 1> ValueVTs; 7791 ComputeValueVTs(*TLI, DAG.getDataLayout(), 7792 PointerType::getUnqual(F.getReturnType()), ValueVTs); 7793 7794 // NOTE: Assuming that a pointer will never break down to more than one VT 7795 // or one register. 7796 ISD::ArgFlagsTy Flags; 7797 Flags.setSRet(); 7798 MVT RegisterVT = TLI->getRegisterType(*DAG.getContext(), ValueVTs[0]); 7799 ISD::InputArg RetArg(Flags, RegisterVT, ValueVTs[0], true, 7800 ISD::InputArg::NoArgIndex, 0); 7801 Ins.push_back(RetArg); 7802 } 7803 7804 // Set up the incoming argument description vector. 7805 unsigned Idx = 1; 7806 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); 7807 I != E; ++I, ++Idx) { 7808 SmallVector<EVT, 4> ValueVTs; 7809 ComputeValueVTs(*TLI, DAG.getDataLayout(), I->getType(), ValueVTs); 7810 bool isArgValueUsed = !I->use_empty(); 7811 unsigned PartBase = 0; 7812 Type *FinalType = I->getType(); 7813 if (F.getAttributes().hasAttribute(Idx, Attribute::ByVal)) 7814 FinalType = cast<PointerType>(FinalType)->getElementType(); 7815 bool NeedsRegBlock = TLI->functionArgumentNeedsConsecutiveRegisters( 7816 FinalType, F.getCallingConv(), F.isVarArg()); 7817 for (unsigned Value = 0, NumValues = ValueVTs.size(); 7818 Value != NumValues; ++Value) { 7819 EVT VT = ValueVTs[Value]; 7820 Type *ArgTy = VT.getTypeForEVT(*DAG.getContext()); 7821 ISD::ArgFlagsTy Flags; 7822 unsigned OriginalAlignment = DL.getABITypeAlignment(ArgTy); 7823 7824 if (F.getAttributes().hasAttribute(Idx, Attribute::ZExt)) 7825 Flags.setZExt(); 7826 if (F.getAttributes().hasAttribute(Idx, Attribute::SExt)) 7827 Flags.setSExt(); 7828 if (F.getAttributes().hasAttribute(Idx, Attribute::InReg)) 7829 Flags.setInReg(); 7830 if (F.getAttributes().hasAttribute(Idx, Attribute::StructRet)) 7831 Flags.setSRet(); 7832 if (F.getAttributes().hasAttribute(Idx, Attribute::SwiftSelf)) 7833 Flags.setSwiftSelf(); 7834 if (F.getAttributes().hasAttribute(Idx, Attribute::SwiftError)) 7835 Flags.setSwiftError(); 7836 if (F.getAttributes().hasAttribute(Idx, Attribute::ByVal)) 7837 Flags.setByVal(); 7838 if (F.getAttributes().hasAttribute(Idx, Attribute::InAlloca)) { 7839 Flags.setInAlloca(); 7840 // Set the byval flag for CCAssignFn callbacks that don't know about 7841 // inalloca. This way we can know how many bytes we should've allocated 7842 // and how many bytes a callee cleanup function will pop. If we port 7843 // inalloca to more targets, we'll have to add custom inalloca handling 7844 // in the various CC lowering callbacks. 7845 Flags.setByVal(); 7846 } 7847 if (F.getCallingConv() == CallingConv::X86_INTR) { 7848 // IA Interrupt passes frame (1st parameter) by value in the stack. 7849 if (Idx == 1) 7850 Flags.setByVal(); 7851 } 7852 if (Flags.isByVal() || Flags.isInAlloca()) { 7853 PointerType *Ty = cast<PointerType>(I->getType()); 7854 Type *ElementTy = Ty->getElementType(); 7855 Flags.setByValSize(DL.getTypeAllocSize(ElementTy)); 7856 // For ByVal, alignment should be passed from FE. BE will guess if 7857 // this info is not there but there are cases it cannot get right. 7858 unsigned FrameAlign; 7859 if (F.getParamAlignment(Idx)) 7860 FrameAlign = F.getParamAlignment(Idx); 7861 else 7862 FrameAlign = TLI->getByValTypeAlignment(ElementTy, DL); 7863 Flags.setByValAlign(FrameAlign); 7864 } 7865 if (F.getAttributes().hasAttribute(Idx, Attribute::Nest)) 7866 Flags.setNest(); 7867 if (NeedsRegBlock) 7868 Flags.setInConsecutiveRegs(); 7869 Flags.setOrigAlign(OriginalAlignment); 7870 7871 MVT RegisterVT = TLI->getRegisterType(*CurDAG->getContext(), VT); 7872 unsigned NumRegs = TLI->getNumRegisters(*CurDAG->getContext(), VT); 7873 for (unsigned i = 0; i != NumRegs; ++i) { 7874 ISD::InputArg MyFlags(Flags, RegisterVT, VT, isArgValueUsed, 7875 Idx-1, PartBase+i*RegisterVT.getStoreSize()); 7876 if (NumRegs > 1 && i == 0) 7877 MyFlags.Flags.setSplit(); 7878 // if it isn't first piece, alignment must be 1 7879 else if (i > 0) { 7880 MyFlags.Flags.setOrigAlign(1); 7881 if (i == NumRegs - 1) 7882 MyFlags.Flags.setSplitEnd(); 7883 } 7884 Ins.push_back(MyFlags); 7885 } 7886 if (NeedsRegBlock && Value == NumValues - 1) 7887 Ins[Ins.size() - 1].Flags.setInConsecutiveRegsLast(); 7888 PartBase += VT.getStoreSize(); 7889 } 7890 } 7891 7892 // Call the target to set up the argument values. 7893 SmallVector<SDValue, 8> InVals; 7894 SDValue NewRoot = TLI->LowerFormalArguments( 7895 DAG.getRoot(), F.getCallingConv(), F.isVarArg(), Ins, dl, DAG, InVals); 7896 7897 // Verify that the target's LowerFormalArguments behaved as expected. 7898 assert(NewRoot.getNode() && NewRoot.getValueType() == MVT::Other && 7899 "LowerFormalArguments didn't return a valid chain!"); 7900 assert(InVals.size() == Ins.size() && 7901 "LowerFormalArguments didn't emit the correct number of values!"); 7902 DEBUG({ 7903 for (unsigned i = 0, e = Ins.size(); i != e; ++i) { 7904 assert(InVals[i].getNode() && 7905 "LowerFormalArguments emitted a null value!"); 7906 assert(EVT(Ins[i].VT) == InVals[i].getValueType() && 7907 "LowerFormalArguments emitted a value with the wrong type!"); 7908 } 7909 }); 7910 7911 // Update the DAG with the new chain value resulting from argument lowering. 7912 DAG.setRoot(NewRoot); 7913 7914 // Set up the argument values. 7915 unsigned i = 0; 7916 Idx = 1; 7917 if (!FuncInfo->CanLowerReturn) { 7918 // Create a virtual register for the sret pointer, and put in a copy 7919 // from the sret argument into it. 7920 SmallVector<EVT, 1> ValueVTs; 7921 ComputeValueVTs(*TLI, DAG.getDataLayout(), 7922 PointerType::getUnqual(F.getReturnType()), ValueVTs); 7923 MVT VT = ValueVTs[0].getSimpleVT(); 7924 MVT RegVT = TLI->getRegisterType(*CurDAG->getContext(), VT); 7925 ISD::NodeType AssertOp = ISD::DELETED_NODE; 7926 SDValue ArgValue = getCopyFromParts(DAG, dl, &InVals[0], 1, 7927 RegVT, VT, nullptr, AssertOp); 7928 7929 MachineFunction& MF = SDB->DAG.getMachineFunction(); 7930 MachineRegisterInfo& RegInfo = MF.getRegInfo(); 7931 unsigned SRetReg = RegInfo.createVirtualRegister(TLI->getRegClassFor(RegVT)); 7932 FuncInfo->DemoteRegister = SRetReg; 7933 NewRoot = 7934 SDB->DAG.getCopyToReg(NewRoot, SDB->getCurSDLoc(), SRetReg, ArgValue); 7935 DAG.setRoot(NewRoot); 7936 7937 // i indexes lowered arguments. Bump it past the hidden sret argument. 7938 // Idx indexes LLVM arguments. Don't touch it. 7939 ++i; 7940 } 7941 7942 for (Function::const_arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; 7943 ++I, ++Idx) { 7944 SmallVector<SDValue, 4> ArgValues; 7945 SmallVector<EVT, 4> ValueVTs; 7946 ComputeValueVTs(*TLI, DAG.getDataLayout(), I->getType(), ValueVTs); 7947 unsigned NumValues = ValueVTs.size(); 7948 7949 // If this argument is unused then remember its value. It is used to generate 7950 // debugging information. 7951 if (I->use_empty() && NumValues) { 7952 SDB->setUnusedArgValue(&*I, InVals[i]); 7953 7954 // Also remember any frame index for use in FastISel. 7955 if (FrameIndexSDNode *FI = 7956 dyn_cast<FrameIndexSDNode>(InVals[i].getNode())) 7957 FuncInfo->setArgumentFrameIndex(&*I, FI->getIndex()); 7958 } 7959 7960 for (unsigned Val = 0; Val != NumValues; ++Val) { 7961 EVT VT = ValueVTs[Val]; 7962 MVT PartVT = TLI->getRegisterType(*CurDAG->getContext(), VT); 7963 unsigned NumParts = TLI->getNumRegisters(*CurDAG->getContext(), VT); 7964 7965 if (!I->use_empty()) { 7966 ISD::NodeType AssertOp = ISD::DELETED_NODE; 7967 if (F.getAttributes().hasAttribute(Idx, Attribute::SExt)) 7968 AssertOp = ISD::AssertSext; 7969 else if (F.getAttributes().hasAttribute(Idx, Attribute::ZExt)) 7970 AssertOp = ISD::AssertZext; 7971 7972 ArgValues.push_back(getCopyFromParts(DAG, dl, &InVals[i], 7973 NumParts, PartVT, VT, 7974 nullptr, AssertOp)); 7975 } 7976 7977 i += NumParts; 7978 } 7979 7980 // We don't need to do anything else for unused arguments. 7981 if (ArgValues.empty()) 7982 continue; 7983 7984 // Note down frame index. 7985 if (FrameIndexSDNode *FI = 7986 dyn_cast<FrameIndexSDNode>(ArgValues[0].getNode())) 7987 FuncInfo->setArgumentFrameIndex(&*I, FI->getIndex()); 7988 7989 SDValue Res = DAG.getMergeValues(makeArrayRef(ArgValues.data(), NumValues), 7990 SDB->getCurSDLoc()); 7991 7992 SDB->setValue(&*I, Res); 7993 if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::BUILD_PAIR) { 7994 if (LoadSDNode *LNode = 7995 dyn_cast<LoadSDNode>(Res.getOperand(0).getNode())) 7996 if (FrameIndexSDNode *FI = 7997 dyn_cast<FrameIndexSDNode>(LNode->getBasePtr().getNode())) 7998 FuncInfo->setArgumentFrameIndex(&*I, FI->getIndex()); 7999 } 8000 8001 // Update SwiftErrorMap. 8002 if (Res.getOpcode() == ISD::CopyFromReg && TLI->supportSwiftError() && 8003 F.getAttributes().hasAttribute(Idx, Attribute::SwiftError)) { 8004 unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg(); 8005 if (TargetRegisterInfo::isVirtualRegister(Reg)) 8006 FuncInfo->SwiftErrorMap[FuncInfo->MBB][0] = Reg; 8007 } 8008 8009 // If this argument is live outside of the entry block, insert a copy from 8010 // wherever we got it to the vreg that other BB's will reference it as. 8011 if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::CopyFromReg) { 8012 // If we can, though, try to skip creating an unnecessary vreg. 8013 // FIXME: This isn't very clean... it would be nice to make this more 8014 // general. It's also subtly incompatible with the hacks FastISel 8015 // uses with vregs. 8016 unsigned Reg = cast<RegisterSDNode>(Res.getOperand(1))->getReg(); 8017 if (TargetRegisterInfo::isVirtualRegister(Reg)) { 8018 FuncInfo->ValueMap[&*I] = Reg; 8019 continue; 8020 } 8021 } 8022 if (!isOnlyUsedInEntryBlock(&*I, TM.Options.EnableFastISel)) { 8023 FuncInfo->InitializeRegForValue(&*I); 8024 SDB->CopyToExportRegsIfNeeded(&*I); 8025 } 8026 } 8027 8028 assert(i == InVals.size() && "Argument register count mismatch!"); 8029 8030 // Finally, if the target has anything special to do, allow it to do so. 8031 EmitFunctionEntryCode(); 8032 } 8033 8034 /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to 8035 /// ensure constants are generated when needed. Remember the virtual registers 8036 /// that need to be added to the Machine PHI nodes as input. We cannot just 8037 /// directly add them, because expansion might result in multiple MBB's for one 8038 /// BB. As such, the start of the BB might correspond to a different MBB than 8039 /// the end. 8040 /// 8041 void 8042 SelectionDAGBuilder::HandlePHINodesInSuccessorBlocks(const BasicBlock *LLVMBB) { 8043 const TerminatorInst *TI = LLVMBB->getTerminator(); 8044 8045 SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; 8046 8047 // Check PHI nodes in successors that expect a value to be available from this 8048 // block. 8049 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { 8050 const BasicBlock *SuccBB = TI->getSuccessor(succ); 8051 if (!isa<PHINode>(SuccBB->begin())) continue; 8052 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; 8053 8054 // If this terminator has multiple identical successors (common for 8055 // switches), only handle each succ once. 8056 if (!SuccsHandled.insert(SuccMBB).second) 8057 continue; 8058 8059 MachineBasicBlock::iterator MBBI = SuccMBB->begin(); 8060 8061 // At this point we know that there is a 1-1 correspondence between LLVM PHI 8062 // nodes and Machine PHI nodes, but the incoming operands have not been 8063 // emitted yet. 8064 for (BasicBlock::const_iterator I = SuccBB->begin(); 8065 const PHINode *PN = dyn_cast<PHINode>(I); ++I) { 8066 // Ignore dead phi's. 8067 if (PN->use_empty()) continue; 8068 8069 // Skip empty types 8070 if (PN->getType()->isEmptyTy()) 8071 continue; 8072 8073 unsigned Reg; 8074 const Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); 8075 8076 if (const Constant *C = dyn_cast<Constant>(PHIOp)) { 8077 unsigned &RegOut = ConstantsOut[C]; 8078 if (RegOut == 0) { 8079 RegOut = FuncInfo.CreateRegs(C->getType()); 8080 CopyValueToVirtualRegister(C, RegOut); 8081 } 8082 Reg = RegOut; 8083 } else { 8084 DenseMap<const Value *, unsigned>::iterator I = 8085 FuncInfo.ValueMap.find(PHIOp); 8086 if (I != FuncInfo.ValueMap.end()) 8087 Reg = I->second; 8088 else { 8089 assert(isa<AllocaInst>(PHIOp) && 8090 FuncInfo.StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && 8091 "Didn't codegen value into a register!??"); 8092 Reg = FuncInfo.CreateRegs(PHIOp->getType()); 8093 CopyValueToVirtualRegister(PHIOp, Reg); 8094 } 8095 } 8096 8097 // Remember that this register needs to added to the machine PHI node as 8098 // the input for this MBB. 8099 SmallVector<EVT, 4> ValueVTs; 8100 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 8101 ComputeValueVTs(TLI, DAG.getDataLayout(), PN->getType(), ValueVTs); 8102 for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { 8103 EVT VT = ValueVTs[vti]; 8104 unsigned NumRegisters = TLI.getNumRegisters(*DAG.getContext(), VT); 8105 for (unsigned i = 0, e = NumRegisters; i != e; ++i) 8106 FuncInfo.PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); 8107 Reg += NumRegisters; 8108 } 8109 } 8110 } 8111 8112 ConstantsOut.clear(); 8113 } 8114 8115 /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB 8116 /// is 0. 8117 MachineBasicBlock * 8118 SelectionDAGBuilder::StackProtectorDescriptor:: 8119 AddSuccessorMBB(const BasicBlock *BB, 8120 MachineBasicBlock *ParentMBB, 8121 bool IsLikely, 8122 MachineBasicBlock *SuccMBB) { 8123 // If SuccBB has not been created yet, create it. 8124 if (!SuccMBB) { 8125 MachineFunction *MF = ParentMBB->getParent(); 8126 MachineFunction::iterator BBI(ParentMBB); 8127 SuccMBB = MF->CreateMachineBasicBlock(BB); 8128 MF->insert(++BBI, SuccMBB); 8129 } 8130 // Add it as a successor of ParentMBB. 8131 ParentMBB->addSuccessor( 8132 SuccMBB, BranchProbabilityInfo::getBranchProbStackProtector(IsLikely)); 8133 return SuccMBB; 8134 } 8135 8136 MachineBasicBlock *SelectionDAGBuilder::NextBlock(MachineBasicBlock *MBB) { 8137 MachineFunction::iterator I(MBB); 8138 if (++I == FuncInfo.MF->end()) 8139 return nullptr; 8140 return &*I; 8141 } 8142 8143 /// During lowering new call nodes can be created (such as memset, etc.). 8144 /// Those will become new roots of the current DAG, but complications arise 8145 /// when they are tail calls. In such cases, the call lowering will update 8146 /// the root, but the builder still needs to know that a tail call has been 8147 /// lowered in order to avoid generating an additional return. 8148 void SelectionDAGBuilder::updateDAGForMaybeTailCall(SDValue MaybeTC) { 8149 // If the node is null, we do have a tail call. 8150 if (MaybeTC.getNode() != nullptr) 8151 DAG.setRoot(MaybeTC); 8152 else 8153 HasTailCall = true; 8154 } 8155 8156 bool SelectionDAGBuilder::isDense(const CaseClusterVector &Clusters, 8157 unsigned *TotalCases, unsigned First, 8158 unsigned Last, 8159 unsigned Density) { 8160 assert(Last >= First); 8161 assert(TotalCases[Last] >= TotalCases[First]); 8162 8163 APInt LowCase = Clusters[First].Low->getValue(); 8164 APInt HighCase = Clusters[Last].High->getValue(); 8165 assert(LowCase.getBitWidth() == HighCase.getBitWidth()); 8166 8167 // FIXME: A range of consecutive cases has 100% density, but only requires one 8168 // comparison to lower. We should discriminate against such consecutive ranges 8169 // in jump tables. 8170 8171 uint64_t Diff = (HighCase - LowCase).getLimitedValue((UINT64_MAX - 1) / 100); 8172 uint64_t Range = Diff + 1; 8173 8174 uint64_t NumCases = 8175 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]); 8176 8177 assert(NumCases < UINT64_MAX / 100); 8178 assert(Range >= NumCases); 8179 8180 return NumCases * 100 >= Range * Density; 8181 } 8182 8183 static inline bool areJTsAllowed(const TargetLowering &TLI, 8184 const SwitchInst *SI) { 8185 const Function *Fn = SI->getParent()->getParent(); 8186 if (Fn->getFnAttribute("no-jump-tables").getValueAsString() == "true") 8187 return false; 8188 8189 return TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || 8190 TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other); 8191 } 8192 8193 bool SelectionDAGBuilder::buildJumpTable(CaseClusterVector &Clusters, 8194 unsigned First, unsigned Last, 8195 const SwitchInst *SI, 8196 MachineBasicBlock *DefaultMBB, 8197 CaseCluster &JTCluster) { 8198 assert(First <= Last); 8199 8200 auto Prob = BranchProbability::getZero(); 8201 unsigned NumCmps = 0; 8202 std::vector<MachineBasicBlock*> Table; 8203 DenseMap<MachineBasicBlock*, BranchProbability> JTProbs; 8204 8205 // Initialize probabilities in JTProbs. 8206 for (unsigned I = First; I <= Last; ++I) 8207 JTProbs[Clusters[I].MBB] = BranchProbability::getZero(); 8208 8209 for (unsigned I = First; I <= Last; ++I) { 8210 assert(Clusters[I].Kind == CC_Range); 8211 Prob += Clusters[I].Prob; 8212 APInt Low = Clusters[I].Low->getValue(); 8213 APInt High = Clusters[I].High->getValue(); 8214 NumCmps += (Low == High) ? 1 : 2; 8215 if (I != First) { 8216 // Fill the gap between this and the previous cluster. 8217 APInt PreviousHigh = Clusters[I - 1].High->getValue(); 8218 assert(PreviousHigh.slt(Low)); 8219 uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1; 8220 for (uint64_t J = 0; J < Gap; J++) 8221 Table.push_back(DefaultMBB); 8222 } 8223 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1; 8224 for (uint64_t J = 0; J < ClusterSize; ++J) 8225 Table.push_back(Clusters[I].MBB); 8226 JTProbs[Clusters[I].MBB] += Clusters[I].Prob; 8227 } 8228 8229 unsigned NumDests = JTProbs.size(); 8230 if (isSuitableForBitTests(NumDests, NumCmps, 8231 Clusters[First].Low->getValue(), 8232 Clusters[Last].High->getValue())) { 8233 // Clusters[First..Last] should be lowered as bit tests instead. 8234 return false; 8235 } 8236 8237 // Create the MBB that will load from and jump through the table. 8238 // Note: We create it here, but it's not inserted into the function yet. 8239 MachineFunction *CurMF = FuncInfo.MF; 8240 MachineBasicBlock *JumpTableMBB = 8241 CurMF->CreateMachineBasicBlock(SI->getParent()); 8242 8243 // Add successors. Note: use table order for determinism. 8244 SmallPtrSet<MachineBasicBlock *, 8> Done; 8245 for (MachineBasicBlock *Succ : Table) { 8246 if (Done.count(Succ)) 8247 continue; 8248 addSuccessorWithProb(JumpTableMBB, Succ, JTProbs[Succ]); 8249 Done.insert(Succ); 8250 } 8251 JumpTableMBB->normalizeSuccProbs(); 8252 8253 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 8254 unsigned JTI = CurMF->getOrCreateJumpTableInfo(TLI.getJumpTableEncoding()) 8255 ->createJumpTableIndex(Table); 8256 8257 // Set up the jump table info. 8258 JumpTable JT(-1U, JTI, JumpTableMBB, nullptr); 8259 JumpTableHeader JTH(Clusters[First].Low->getValue(), 8260 Clusters[Last].High->getValue(), SI->getCondition(), 8261 nullptr, false); 8262 JTCases.emplace_back(std::move(JTH), std::move(JT)); 8263 8264 JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High, 8265 JTCases.size() - 1, Prob); 8266 return true; 8267 } 8268 8269 void SelectionDAGBuilder::findJumpTables(CaseClusterVector &Clusters, 8270 const SwitchInst *SI, 8271 MachineBasicBlock *DefaultMBB) { 8272 #ifndef NDEBUG 8273 // Clusters must be non-empty, sorted, and only contain Range clusters. 8274 assert(!Clusters.empty()); 8275 for (CaseCluster &C : Clusters) 8276 assert(C.Kind == CC_Range); 8277 for (unsigned i = 1, e = Clusters.size(); i < e; ++i) 8278 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); 8279 #endif 8280 8281 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 8282 if (!areJTsAllowed(TLI, SI)) 8283 return; 8284 8285 const int64_t N = Clusters.size(); 8286 const unsigned MinJumpTableSize = TLI.getMinimumJumpTableEntries(); 8287 8288 // TotalCases[i]: Total nbr of cases in Clusters[0..i]. 8289 SmallVector<unsigned, 8> TotalCases(N); 8290 8291 for (unsigned i = 0; i < N; ++i) { 8292 APInt Hi = Clusters[i].High->getValue(); 8293 APInt Lo = Clusters[i].Low->getValue(); 8294 TotalCases[i] = (Hi - Lo).getLimitedValue() + 1; 8295 if (i != 0) 8296 TotalCases[i] += TotalCases[i - 1]; 8297 } 8298 8299 unsigned MinDensity = JumpTableDensity; 8300 if (DefaultMBB->getParent()->getFunction()->optForSize()) 8301 MinDensity = OptsizeJumpTableDensity; 8302 if (N >= MinJumpTableSize 8303 && isDense(Clusters, &TotalCases[0], 0, N - 1, MinDensity)) { 8304 // Cheap case: the whole range might be suitable for jump table. 8305 CaseCluster JTCluster; 8306 if (buildJumpTable(Clusters, 0, N - 1, SI, DefaultMBB, JTCluster)) { 8307 Clusters[0] = JTCluster; 8308 Clusters.resize(1); 8309 return; 8310 } 8311 } 8312 8313 // The algorithm below is not suitable for -O0. 8314 if (TM.getOptLevel() == CodeGenOpt::None) 8315 return; 8316 8317 // Split Clusters into minimum number of dense partitions. The algorithm uses 8318 // the same idea as Kannan & Proebsting "Correction to 'Producing Good Code 8319 // for the Case Statement'" (1994), but builds the MinPartitions array in 8320 // reverse order to make it easier to reconstruct the partitions in ascending 8321 // order. In the choice between two optimal partitionings, it picks the one 8322 // which yields more jump tables. 8323 8324 // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1]. 8325 SmallVector<unsigned, 8> MinPartitions(N); 8326 // LastElement[i] is the last element of the partition starting at i. 8327 SmallVector<unsigned, 8> LastElement(N); 8328 // NumTables[i]: nbr of >= MinJumpTableSize partitions from Clusters[i..N-1]. 8329 SmallVector<unsigned, 8> NumTables(N); 8330 8331 // Base case: There is only one way to partition Clusters[N-1]. 8332 MinPartitions[N - 1] = 1; 8333 LastElement[N - 1] = N - 1; 8334 assert(MinJumpTableSize > 1); 8335 NumTables[N - 1] = 0; 8336 8337 // Note: loop indexes are signed to avoid underflow. 8338 for (int64_t i = N - 2; i >= 0; i--) { 8339 // Find optimal partitioning of Clusters[i..N-1]. 8340 // Baseline: Put Clusters[i] into a partition on its own. 8341 MinPartitions[i] = MinPartitions[i + 1] + 1; 8342 LastElement[i] = i; 8343 NumTables[i] = NumTables[i + 1]; 8344 8345 // Search for a solution that results in fewer partitions. 8346 for (int64_t j = N - 1; j > i; j--) { 8347 // Try building a partition from Clusters[i..j]. 8348 if (isDense(Clusters, &TotalCases[0], i, j, MinDensity)) { 8349 unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]); 8350 bool IsTable = j - i + 1 >= MinJumpTableSize; 8351 unsigned Tables = IsTable + (j == N - 1 ? 0 : NumTables[j + 1]); 8352 8353 // If this j leads to fewer partitions, or same number of partitions 8354 // with more lookup tables, it is a better partitioning. 8355 if (NumPartitions < MinPartitions[i] || 8356 (NumPartitions == MinPartitions[i] && Tables > NumTables[i])) { 8357 MinPartitions[i] = NumPartitions; 8358 LastElement[i] = j; 8359 NumTables[i] = Tables; 8360 } 8361 } 8362 } 8363 } 8364 8365 // Iterate over the partitions, replacing some with jump tables in-place. 8366 unsigned DstIndex = 0; 8367 for (unsigned First = 0, Last; First < N; First = Last + 1) { 8368 Last = LastElement[First]; 8369 assert(Last >= First); 8370 assert(DstIndex <= First); 8371 unsigned NumClusters = Last - First + 1; 8372 8373 CaseCluster JTCluster; 8374 if (NumClusters >= MinJumpTableSize && 8375 buildJumpTable(Clusters, First, Last, SI, DefaultMBB, JTCluster)) { 8376 Clusters[DstIndex++] = JTCluster; 8377 } else { 8378 for (unsigned I = First; I <= Last; ++I) 8379 std::memmove(&Clusters[DstIndex++], &Clusters[I], sizeof(Clusters[I])); 8380 } 8381 } 8382 Clusters.resize(DstIndex); 8383 } 8384 8385 bool SelectionDAGBuilder::rangeFitsInWord(const APInt &Low, const APInt &High) { 8386 // FIXME: Using the pointer type doesn't seem ideal. 8387 uint64_t BW = DAG.getDataLayout().getPointerSizeInBits(); 8388 uint64_t Range = (High - Low).getLimitedValue(UINT64_MAX - 1) + 1; 8389 return Range <= BW; 8390 } 8391 8392 bool SelectionDAGBuilder::isSuitableForBitTests(unsigned NumDests, 8393 unsigned NumCmps, 8394 const APInt &Low, 8395 const APInt &High) { 8396 // FIXME: I don't think NumCmps is the correct metric: a single case and a 8397 // range of cases both require only one branch to lower. Just looking at the 8398 // number of clusters and destinations should be enough to decide whether to 8399 // build bit tests. 8400 8401 // To lower a range with bit tests, the range must fit the bitwidth of a 8402 // machine word. 8403 if (!rangeFitsInWord(Low, High)) 8404 return false; 8405 8406 // Decide whether it's profitable to lower this range with bit tests. Each 8407 // destination requires a bit test and branch, and there is an overall range 8408 // check branch. For a small number of clusters, separate comparisons might be 8409 // cheaper, and for many destinations, splitting the range might be better. 8410 return (NumDests == 1 && NumCmps >= 3) || 8411 (NumDests == 2 && NumCmps >= 5) || 8412 (NumDests == 3 && NumCmps >= 6); 8413 } 8414 8415 bool SelectionDAGBuilder::buildBitTests(CaseClusterVector &Clusters, 8416 unsigned First, unsigned Last, 8417 const SwitchInst *SI, 8418 CaseCluster &BTCluster) { 8419 assert(First <= Last); 8420 if (First == Last) 8421 return false; 8422 8423 BitVector Dests(FuncInfo.MF->getNumBlockIDs()); 8424 unsigned NumCmps = 0; 8425 for (int64_t I = First; I <= Last; ++I) { 8426 assert(Clusters[I].Kind == CC_Range); 8427 Dests.set(Clusters[I].MBB->getNumber()); 8428 NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2; 8429 } 8430 unsigned NumDests = Dests.count(); 8431 8432 APInt Low = Clusters[First].Low->getValue(); 8433 APInt High = Clusters[Last].High->getValue(); 8434 assert(Low.slt(High)); 8435 8436 if (!isSuitableForBitTests(NumDests, NumCmps, Low, High)) 8437 return false; 8438 8439 APInt LowBound; 8440 APInt CmpRange; 8441 8442 const int BitWidth = DAG.getTargetLoweringInfo() 8443 .getPointerTy(DAG.getDataLayout()) 8444 .getSizeInBits(); 8445 assert(rangeFitsInWord(Low, High) && "Case range must fit in bit mask!"); 8446 8447 // Check if the clusters cover a contiguous range such that no value in the 8448 // range will jump to the default statement. 8449 bool ContiguousRange = true; 8450 for (int64_t I = First + 1; I <= Last; ++I) { 8451 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) { 8452 ContiguousRange = false; 8453 break; 8454 } 8455 } 8456 8457 if (Low.isStrictlyPositive() && High.slt(BitWidth)) { 8458 // Optimize the case where all the case values fit in a word without having 8459 // to subtract minValue. In this case, we can optimize away the subtraction. 8460 LowBound = APInt::getNullValue(Low.getBitWidth()); 8461 CmpRange = High; 8462 ContiguousRange = false; 8463 } else { 8464 LowBound = Low; 8465 CmpRange = High - Low; 8466 } 8467 8468 CaseBitsVector CBV; 8469 auto TotalProb = BranchProbability::getZero(); 8470 for (unsigned i = First; i <= Last; ++i) { 8471 // Find the CaseBits for this destination. 8472 unsigned j; 8473 for (j = 0; j < CBV.size(); ++j) 8474 if (CBV[j].BB == Clusters[i].MBB) 8475 break; 8476 if (j == CBV.size()) 8477 CBV.push_back( 8478 CaseBits(0, Clusters[i].MBB, 0, BranchProbability::getZero())); 8479 CaseBits *CB = &CBV[j]; 8480 8481 // Update Mask, Bits and ExtraProb. 8482 uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue(); 8483 uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue(); 8484 assert(Hi >= Lo && Hi < 64 && "Invalid bit case!"); 8485 CB->Mask |= (-1ULL >> (63 - (Hi - Lo))) << Lo; 8486 CB->Bits += Hi - Lo + 1; 8487 CB->ExtraProb += Clusters[i].Prob; 8488 TotalProb += Clusters[i].Prob; 8489 } 8490 8491 BitTestInfo BTI; 8492 std::sort(CBV.begin(), CBV.end(), [](const CaseBits &a, const CaseBits &b) { 8493 // Sort by probability first, number of bits second. 8494 if (a.ExtraProb != b.ExtraProb) 8495 return a.ExtraProb > b.ExtraProb; 8496 return a.Bits > b.Bits; 8497 }); 8498 8499 for (auto &CB : CBV) { 8500 MachineBasicBlock *BitTestBB = 8501 FuncInfo.MF->CreateMachineBasicBlock(SI->getParent()); 8502 BTI.push_back(BitTestCase(CB.Mask, BitTestBB, CB.BB, CB.ExtraProb)); 8503 } 8504 BitTestCases.emplace_back(std::move(LowBound), std::move(CmpRange), 8505 SI->getCondition(), -1U, MVT::Other, false, 8506 ContiguousRange, nullptr, nullptr, std::move(BTI), 8507 TotalProb); 8508 8509 BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High, 8510 BitTestCases.size() - 1, TotalProb); 8511 return true; 8512 } 8513 8514 void SelectionDAGBuilder::findBitTestClusters(CaseClusterVector &Clusters, 8515 const SwitchInst *SI) { 8516 // Partition Clusters into as few subsets as possible, where each subset has a 8517 // range that fits in a machine word and has <= 3 unique destinations. 8518 8519 #ifndef NDEBUG 8520 // Clusters must be sorted and contain Range or JumpTable clusters. 8521 assert(!Clusters.empty()); 8522 assert(Clusters[0].Kind == CC_Range || Clusters[0].Kind == CC_JumpTable); 8523 for (const CaseCluster &C : Clusters) 8524 assert(C.Kind == CC_Range || C.Kind == CC_JumpTable); 8525 for (unsigned i = 1; i < Clusters.size(); ++i) 8526 assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue())); 8527 #endif 8528 8529 // The algorithm below is not suitable for -O0. 8530 if (TM.getOptLevel() == CodeGenOpt::None) 8531 return; 8532 8533 // If target does not have legal shift left, do not emit bit tests at all. 8534 const TargetLowering &TLI = DAG.getTargetLoweringInfo(); 8535 EVT PTy = TLI.getPointerTy(DAG.getDataLayout()); 8536 if (!TLI.isOperationLegal(ISD::SHL, PTy)) 8537 return; 8538 8539 int BitWidth = PTy.getSizeInBits(); 8540 const int64_t N = Clusters.size(); 8541 8542 // MinPartitions[i] is the minimum nbr of partitions of Clusters[i..N-1]. 8543 SmallVector<unsigned, 8> MinPartitions(N); 8544 // LastElement[i] is the last element of the partition starting at i. 8545 SmallVector<unsigned, 8> LastElement(N); 8546 8547 // FIXME: This might not be the best algorithm for finding bit test clusters. 8548 8549 // Base case: There is only one way to partition Clusters[N-1]. 8550 MinPartitions[N - 1] = 1; 8551 LastElement[N - 1] = N - 1; 8552 8553 // Note: loop indexes are signed to avoid underflow. 8554 for (int64_t i = N - 2; i >= 0; --i) { 8555 // Find optimal partitioning of Clusters[i..N-1]. 8556 // Baseline: Put Clusters[i] into a partition on its own. 8557 MinPartitions[i] = MinPartitions[i + 1] + 1; 8558 LastElement[i] = i; 8559 8560 // Search for a solution that results in fewer partitions. 8561 // Note: the search is limited by BitWidth, reducing time complexity. 8562 for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) { 8563 // Try building a partition from Clusters[i..j]. 8564 8565 // Check the range. 8566 if (!rangeFitsInWord(Clusters[i].Low->getValue(), 8567 Clusters[j].High->getValue())) 8568 continue; 8569 8570 // Check nbr of destinations and cluster types. 8571 // FIXME: This works, but doesn't seem very efficient. 8572 bool RangesOnly = true; 8573 BitVector Dests(FuncInfo.MF->getNumBlockIDs()); 8574 for (int64_t k = i; k <= j; k++) { 8575 if (Clusters[k].Kind != CC_Range) { 8576 RangesOnly = false; 8577 break; 8578 } 8579 Dests.set(Clusters[k].MBB->getNumber()); 8580 } 8581 if (!RangesOnly || Dests.count() > 3) 8582 break; 8583 8584 // Check if it's a better partition. 8585 unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]); 8586 if (NumPartitions < MinPartitions[i]) { 8587 // Found a better partition. 8588 MinPartitions[i] = NumPartitions; 8589 LastElement[i] = j; 8590 } 8591 } 8592 } 8593 8594 // Iterate over the partitions, replacing with bit-test clusters in-place. 8595 unsigned DstIndex = 0; 8596 for (unsigned First = 0, Last; First < N; First = Last + 1) { 8597 Last = LastElement[First]; 8598 assert(First <= Last); 8599 assert(DstIndex <= First); 8600 8601 CaseCluster BitTestCluster; 8602 if (buildBitTests(Clusters, First, Last, SI, BitTestCluster)) { 8603 Clusters[DstIndex++] = BitTestCluster; 8604 } else { 8605 size_t NumClusters = Last - First + 1; 8606 std::memmove(&Clusters[DstIndex], &Clusters[First], 8607 sizeof(Clusters[0]) * NumClusters); 8608 DstIndex += NumClusters; 8609 } 8610 } 8611 Clusters.resize(DstIndex); 8612 } 8613 8614 void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W, Value *Cond, 8615 MachineBasicBlock *SwitchMBB, 8616 MachineBasicBlock *DefaultMBB) { 8617 MachineFunction *CurMF = FuncInfo.MF; 8618 MachineBasicBlock *NextMBB = nullptr; 8619 MachineFunction::iterator BBI(W.MBB); 8620 if (++BBI != FuncInfo.MF->end()) 8621 NextMBB = &*BBI; 8622 8623 unsigned Size = W.LastCluster - W.FirstCluster + 1; 8624 8625 BranchProbabilityInfo *BPI = FuncInfo.BPI; 8626 8627 if (Size == 2 && W.MBB == SwitchMBB) { 8628 // If any two of the cases has the same destination, and if one value 8629 // is the same as the other, but has one bit unset that the other has set, 8630 // use bit manipulation to do two compares at once. For example: 8631 // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" 8632 // TODO: This could be extended to merge any 2 cases in switches with 3 8633 // cases. 8634 // TODO: Handle cases where W.CaseBB != SwitchBB. 8635 CaseCluster &Small = *W.FirstCluster; 8636 CaseCluster &Big = *W.LastCluster; 8637 8638 if (Small.Low == Small.High && Big.Low == Big.High && 8639 Small.MBB == Big.MBB) { 8640 const APInt &SmallValue = Small.Low->getValue(); 8641 const APInt &BigValue = Big.Low->getValue(); 8642 8643 // Check that there is only one bit different. 8644 APInt CommonBit = BigValue ^ SmallValue; 8645 if (CommonBit.isPowerOf2()) { 8646 SDValue CondLHS = getValue(Cond); 8647 EVT VT = CondLHS.getValueType(); 8648 SDLoc DL = getCurSDLoc(); 8649 8650 SDValue Or = DAG.getNode(ISD::OR, DL, VT, CondLHS, 8651 DAG.getConstant(CommonBit, DL, VT)); 8652 SDValue Cond = DAG.getSetCC( 8653 DL, MVT::i1, Or, DAG.getConstant(BigValue | SmallValue, DL, VT), 8654 ISD::SETEQ); 8655 8656 // Update successor info. 8657 // Both Small and Big will jump to Small.BB, so we sum up the 8658 // probabilities. 8659 addSuccessorWithProb(SwitchMBB, Small.MBB, Small.Prob + Big.Prob); 8660 if (BPI) 8661 addSuccessorWithProb( 8662 SwitchMBB, DefaultMBB, 8663 // The default destination is the first successor in IR. 8664 BPI->getEdgeProbability(SwitchMBB->getBasicBlock(), (unsigned)0)); 8665 else 8666 addSuccessorWithProb(SwitchMBB, DefaultMBB); 8667 8668 // Insert the true branch. 8669 SDValue BrCond = 8670 DAG.getNode(ISD::BRCOND, DL, MVT::Other, getControlRoot(), Cond, 8671 DAG.getBasicBlock(Small.MBB)); 8672 // Insert the false branch. 8673 BrCond = DAG.getNode(ISD::BR, DL, MVT::Other, BrCond, 8674 DAG.getBasicBlock(DefaultMBB)); 8675 8676 DAG.setRoot(BrCond); 8677 return; 8678 } 8679 } 8680 } 8681 8682 if (TM.getOptLevel() != CodeGenOpt::None) { 8683 // Order cases by probability so the most likely case will be checked first. 8684 std::sort(W.FirstCluster, W.LastCluster + 1, 8685 [](const CaseCluster &a, const CaseCluster &b) { 8686 return a.Prob > b.Prob; 8687 }); 8688 8689 // Rearrange the case blocks so that the last one falls through if possible 8690 // without without changing the order of probabilities. 8691 for (CaseClusterIt I = W.LastCluster; I > W.FirstCluster; ) { 8692 --I; 8693 if (I->Prob > W.LastCluster->Prob) 8694 break; 8695 if (I->Kind == CC_Range && I->MBB == NextMBB) { 8696 std::swap(*I, *W.LastCluster); 8697 break; 8698 } 8699 } 8700 } 8701 8702 // Compute total probability. 8703 BranchProbability DefaultProb = W.DefaultProb; 8704 BranchProbability UnhandledProbs = DefaultProb; 8705 for (CaseClusterIt I = W.FirstCluster; I <= W.LastCluster; ++I) 8706 UnhandledProbs += I->Prob; 8707 8708 MachineBasicBlock *CurMBB = W.MBB; 8709 for (CaseClusterIt I = W.FirstCluster, E = W.LastCluster; I <= E; ++I) { 8710 MachineBasicBlock *Fallthrough; 8711 if (I == W.LastCluster) { 8712 // For the last cluster, fall through to the default destination. 8713 Fallthrough = DefaultMBB; 8714 } else { 8715 Fallthrough = CurMF->CreateMachineBasicBlock(CurMBB->getBasicBlock()); 8716 CurMF->insert(BBI, Fallthrough); 8717 // Put Cond in a virtual register to make it available from the new blocks. 8718 ExportFromCurrentBlock(Cond); 8719 } 8720 UnhandledProbs -= I->Prob; 8721 8722 switch (I->Kind) { 8723 case CC_JumpTable: { 8724 // FIXME: Optimize away range check based on pivot comparisons. 8725 JumpTableHeader *JTH = &JTCases[I->JTCasesIndex].first; 8726 JumpTable *JT = &JTCases[I->JTCasesIndex].second; 8727 8728 // The jump block hasn't been inserted yet; insert it here. 8729 MachineBasicBlock *JumpMBB = JT->MBB; 8730 CurMF->insert(BBI, JumpMBB); 8731 8732 auto JumpProb = I->Prob; 8733 auto FallthroughProb = UnhandledProbs; 8734 8735 // If the default statement is a target of the jump table, we evenly 8736 // distribute the default probability to successors of CurMBB. Also 8737 // update the probability on the edge from JumpMBB to Fallthrough. 8738 for (MachineBasicBlock::succ_iterator SI = JumpMBB->succ_begin(), 8739 SE = JumpMBB->succ_end(); 8740 SI != SE; ++SI) { 8741 if (*SI == DefaultMBB) { 8742 JumpProb += DefaultProb / 2; 8743 FallthroughProb -= DefaultProb / 2; 8744 JumpMBB->setSuccProbability(SI, DefaultProb / 2); 8745 JumpMBB->normalizeSuccProbs(); 8746 break; 8747 } 8748 } 8749 8750 addSuccessorWithProb(CurMBB, Fallthrough, FallthroughProb); 8751 addSuccessorWithProb(CurMBB, JumpMBB, JumpProb); 8752 CurMBB->normalizeSuccProbs(); 8753 8754 // The jump table header will be inserted in our current block, do the 8755 // range check, and fall through to our fallthrough block. 8756 JTH->HeaderBB = CurMBB; 8757 JT->Default = Fallthrough; // FIXME: Move Default to JumpTableHeader. 8758 8759 // If we're in the right place, emit the jump table header right now. 8760 if (CurMBB == SwitchMBB) { 8761 visitJumpTableHeader(*JT, *JTH, SwitchMBB); 8762 JTH->Emitted = true; 8763 } 8764 break; 8765 } 8766 case CC_BitTests: { 8767 // FIXME: Optimize away range check based on pivot comparisons. 8768 BitTestBlock *BTB = &BitTestCases[I->BTCasesIndex]; 8769 8770 // The bit test blocks haven't been inserted yet; insert them here. 8771 for (BitTestCase &BTC : BTB->Cases) 8772 CurMF->insert(BBI, BTC.ThisBB); 8773 8774 // Fill in fields of the BitTestBlock. 8775 BTB->Parent = CurMBB; 8776 BTB->Default = Fallthrough; 8777 8778 BTB->DefaultProb = UnhandledProbs; 8779 // If the cases in bit test don't form a contiguous range, we evenly 8780 // distribute the probability on the edge to Fallthrough to two 8781 // successors of CurMBB. 8782 if (!BTB->ContiguousRange) { 8783 BTB->Prob += DefaultProb / 2; 8784 BTB->DefaultProb -= DefaultProb / 2; 8785 } 8786 8787 // If we're in the right place, emit the bit test header right now. 8788 if (CurMBB == SwitchMBB) { 8789 visitBitTestHeader(*BTB, SwitchMBB); 8790 BTB->Emitted = true; 8791 } 8792 break; 8793 } 8794 case CC_Range: { 8795 const Value *RHS, *LHS, *MHS; 8796 ISD::CondCode CC; 8797 if (I->Low == I->High) { 8798 // Check Cond == I->Low. 8799 CC = ISD::SETEQ; 8800 LHS = Cond; 8801 RHS=I->Low; 8802 MHS = nullptr; 8803 } else { 8804 // Check I->Low <= Cond <= I->High. 8805 CC = ISD::SETLE; 8806 LHS = I->Low; 8807 MHS = Cond; 8808 RHS = I->High; 8809 } 8810 8811 // The false probability is the sum of all unhandled cases. 8812 CaseBlock CB(CC, LHS, RHS, MHS, I->MBB, Fallthrough, CurMBB, I->Prob, 8813 UnhandledProbs); 8814 8815 if (CurMBB == SwitchMBB) 8816 visitSwitchCase(CB, SwitchMBB); 8817 else 8818 SwitchCases.push_back(CB); 8819 8820 break; 8821 } 8822 } 8823 CurMBB = Fallthrough; 8824 } 8825 } 8826 8827 unsigned SelectionDAGBuilder::caseClusterRank(const CaseCluster &CC, 8828 CaseClusterIt First, 8829 CaseClusterIt Last) { 8830 return std::count_if(First, Last + 1, [&](const CaseCluster &X) { 8831 if (X.Prob != CC.Prob) 8832 return X.Prob > CC.Prob; 8833 8834 // Ties are broken by comparing the case value. 8835 return X.Low->getValue().slt(CC.Low->getValue()); 8836 }); 8837 } 8838 8839 void SelectionDAGBuilder::splitWorkItem(SwitchWorkList &WorkList, 8840 const SwitchWorkListItem &W, 8841 Value *Cond, 8842 MachineBasicBlock *SwitchMBB) { 8843 assert(W.FirstCluster->Low->getValue().slt(W.LastCluster->Low->getValue()) && 8844 "Clusters not sorted?"); 8845 8846 assert(W.LastCluster - W.FirstCluster + 1 >= 2 && "Too small to split!"); 8847 8848 // Balance the tree based on branch probabilities to create a near-optimal (in 8849 // terms of search time given key frequency) binary search tree. See e.g. Kurt 8850 // Mehlhorn "Nearly Optimal Binary Search Trees" (1975). 8851 CaseClusterIt LastLeft = W.FirstCluster; 8852 CaseClusterIt FirstRight = W.LastCluster; 8853 auto LeftProb = LastLeft->Prob + W.DefaultProb / 2; 8854 auto RightProb = FirstRight->Prob + W.DefaultProb / 2; 8855 8856 // Move LastLeft and FirstRight towards each other from opposite directions to 8857 // find a partitioning of the clusters which balances the probability on both 8858 // sides. If LeftProb and RightProb are equal, alternate which side is 8859 // taken to ensure 0-probability nodes are distributed evenly. 8860 unsigned I = 0; 8861 while (LastLeft + 1 < FirstRight) { 8862 if (LeftProb < RightProb || (LeftProb == RightProb && (I & 1))) 8863 LeftProb += (++LastLeft)->Prob; 8864 else 8865 RightProb += (--FirstRight)->Prob; 8866 I++; 8867 } 8868 8869 for (;;) { 8870 // Our binary search tree differs from a typical BST in that ours can have up 8871 // to three values in each leaf. The pivot selection above doesn't take that 8872 // into account, which means the tree might require more nodes and be less 8873 // efficient. We compensate for this here. 8874 8875 unsigned NumLeft = LastLeft - W.FirstCluster + 1; 8876 unsigned NumRight = W.LastCluster - FirstRight + 1; 8877 8878 if (std::min(NumLeft, NumRight) < 3 && std::max(NumLeft, NumRight) > 3) { 8879 // If one side has less than 3 clusters, and the other has more than 3, 8880 // consider taking a cluster from the other side. 8881 8882 if (NumLeft < NumRight) { 8883 // Consider moving the first cluster on the right to the left side. 8884 CaseCluster &CC = *FirstRight; 8885 unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster); 8886 unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft); 8887 if (LeftSideRank <= RightSideRank) { 8888 // Moving the cluster to the left does not demote it. 8889 ++LastLeft; 8890 ++FirstRight; 8891 continue; 8892 } 8893 } else { 8894 assert(NumRight < NumLeft); 8895 // Consider moving the last element on the left to the right side. 8896 CaseCluster &CC = *LastLeft; 8897 unsigned LeftSideRank = caseClusterRank(CC, W.FirstCluster, LastLeft); 8898 unsigned RightSideRank = caseClusterRank(CC, FirstRight, W.LastCluster); 8899 if (RightSideRank <= LeftSideRank) { 8900 // Moving the cluster to the right does not demot it. 8901 --LastLeft; 8902 --FirstRight; 8903 continue; 8904 } 8905 } 8906 } 8907 break; 8908 } 8909 8910 assert(LastLeft + 1 == FirstRight); 8911 assert(LastLeft >= W.FirstCluster); 8912 assert(FirstRight <= W.LastCluster); 8913 8914 // Use the first element on the right as pivot since we will make less-than 8915 // comparisons against it. 8916 CaseClusterIt PivotCluster = FirstRight; 8917 assert(PivotCluster > W.FirstCluster); 8918 assert(PivotCluster <= W.LastCluster); 8919 8920 CaseClusterIt FirstLeft = W.FirstCluster; 8921 CaseClusterIt LastRight = W.LastCluster; 8922 8923 const ConstantInt *Pivot = PivotCluster->Low; 8924 8925 // New blocks will be inserted immediately after the current one. 8926 MachineFunction::iterator BBI(W.MBB); 8927 ++BBI; 8928 8929 // We will branch to the LHS if Value < Pivot. If LHS is a single cluster, 8930 // we can branch to its destination directly if it's squeezed exactly in 8931 // between the known lower bound and Pivot - 1. 8932 MachineBasicBlock *LeftMBB; 8933 if (FirstLeft == LastLeft && FirstLeft->Kind == CC_Range && 8934 FirstLeft->Low == W.GE && 8935 (FirstLeft->High->getValue() + 1LL) == Pivot->getValue()) { 8936 LeftMBB = FirstLeft->MBB; 8937 } else { 8938 LeftMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock()); 8939 FuncInfo.MF->insert(BBI, LeftMBB); 8940 WorkList.push_back( 8941 {LeftMBB, FirstLeft, LastLeft, W.GE, Pivot, W.DefaultProb / 2}); 8942 // Put Cond in a virtual register to make it available from the new blocks. 8943 ExportFromCurrentBlock(Cond); 8944 } 8945 8946 // Similarly, we will branch to the RHS if Value >= Pivot. If RHS is a 8947 // single cluster, RHS.Low == Pivot, and we can branch to its destination 8948 // directly if RHS.High equals the current upper bound. 8949 MachineBasicBlock *RightMBB; 8950 if (FirstRight == LastRight && FirstRight->Kind == CC_Range && 8951 W.LT && (FirstRight->High->getValue() + 1ULL) == W.LT->getValue()) { 8952 RightMBB = FirstRight->MBB; 8953 } else { 8954 RightMBB = FuncInfo.MF->CreateMachineBasicBlock(W.MBB->getBasicBlock()); 8955 FuncInfo.MF->insert(BBI, RightMBB); 8956 WorkList.push_back( 8957 {RightMBB, FirstRight, LastRight, Pivot, W.LT, W.DefaultProb / 2}); 8958 // Put Cond in a virtual register to make it available from the new blocks. 8959 ExportFromCurrentBlock(Cond); 8960 } 8961 8962 // Create the CaseBlock record that will be used to lower the branch. 8963 CaseBlock CB(ISD::SETLT, Cond, Pivot, nullptr, LeftMBB, RightMBB, W.MBB, 8964 LeftProb, RightProb); 8965 8966 if (W.MBB == SwitchMBB) 8967 visitSwitchCase(CB, SwitchMBB); 8968 else 8969 SwitchCases.push_back(CB); 8970 } 8971 8972 void SelectionDAGBuilder::visitSwitch(const SwitchInst &SI) { 8973 // Extract cases from the switch. 8974 BranchProbabilityInfo *BPI = FuncInfo.BPI; 8975 CaseClusterVector Clusters; 8976 Clusters.reserve(SI.getNumCases()); 8977 for (auto I : SI.cases()) { 8978 MachineBasicBlock *Succ = FuncInfo.MBBMap[I.getCaseSuccessor()]; 8979 const ConstantInt *CaseVal = I.getCaseValue(); 8980 BranchProbability Prob = 8981 BPI ? BPI->getEdgeProbability(SI.getParent(), I.getSuccessorIndex()) 8982 : BranchProbability(1, SI.getNumCases() + 1); 8983 Clusters.push_back(CaseCluster::range(CaseVal, CaseVal, Succ, Prob)); 8984 } 8985 8986 MachineBasicBlock *DefaultMBB = FuncInfo.MBBMap[SI.getDefaultDest()]; 8987 8988 // Cluster adjacent cases with the same destination. We do this at all 8989 // optimization levels because it's cheap to do and will make codegen faster 8990 // if there are many clusters. 8991 sortAndRangeify(Clusters); 8992 8993 if (TM.getOptLevel() != CodeGenOpt::None) { 8994 // Replace an unreachable default with the most popular destination. 8995 // FIXME: Exploit unreachable default more aggressively. 8996 bool UnreachableDefault = 8997 isa<UnreachableInst>(SI.getDefaultDest()->getFirstNonPHIOrDbg()); 8998 if (UnreachableDefault && !Clusters.empty()) { 8999 DenseMap<const BasicBlock *, unsigned> Popularity; 9000 unsigned MaxPop = 0; 9001 const BasicBlock *MaxBB = nullptr; 9002 for (auto I : SI.cases()) { 9003 const BasicBlock *BB = I.getCaseSuccessor(); 9004 if (++Popularity[BB] > MaxPop) { 9005 MaxPop = Popularity[BB]; 9006 MaxBB = BB; 9007 } 9008 } 9009 // Set new default. 9010 assert(MaxPop > 0 && MaxBB); 9011 DefaultMBB = FuncInfo.MBBMap[MaxBB]; 9012 9013 // Remove cases that were pointing to the destination that is now the 9014 // default. 9015 CaseClusterVector New; 9016 New.reserve(Clusters.size()); 9017 for (CaseCluster &CC : Clusters) { 9018 if (CC.MBB != DefaultMBB) 9019 New.push_back(CC); 9020 } 9021 Clusters = std::move(New); 9022 } 9023 } 9024 9025 // If there is only the default destination, jump there directly. 9026 MachineBasicBlock *SwitchMBB = FuncInfo.MBB; 9027 if (Clusters.empty()) { 9028 SwitchMBB->addSuccessor(DefaultMBB); 9029 if (DefaultMBB != NextBlock(SwitchMBB)) { 9030 DAG.setRoot(DAG.getNode(ISD::BR, getCurSDLoc(), MVT::Other, 9031 getControlRoot(), DAG.getBasicBlock(DefaultMBB))); 9032 } 9033 return; 9034 } 9035 9036 findJumpTables(Clusters, &SI, DefaultMBB); 9037 findBitTestClusters(Clusters, &SI); 9038 9039 DEBUG({ 9040 dbgs() << "Case clusters: "; 9041 for (const CaseCluster &C : Clusters) { 9042 if (C.Kind == CC_JumpTable) dbgs() << "JT:"; 9043 if (C.Kind == CC_BitTests) dbgs() << "BT:"; 9044 9045 C.Low->getValue().print(dbgs(), true); 9046 if (C.Low != C.High) { 9047 dbgs() << '-'; 9048 C.High->getValue().print(dbgs(), true); 9049 } 9050 dbgs() << ' '; 9051 } 9052 dbgs() << '\n'; 9053 }); 9054 9055 assert(!Clusters.empty()); 9056 SwitchWorkList WorkList; 9057 CaseClusterIt First = Clusters.begin(); 9058 CaseClusterIt Last = Clusters.end() - 1; 9059 auto DefaultProb = getEdgeProbability(SwitchMBB, DefaultMBB); 9060 WorkList.push_back({SwitchMBB, First, Last, nullptr, nullptr, DefaultProb}); 9061 9062 while (!WorkList.empty()) { 9063 SwitchWorkListItem W = WorkList.back(); 9064 WorkList.pop_back(); 9065 unsigned NumClusters = W.LastCluster - W.FirstCluster + 1; 9066 9067 if (NumClusters > 3 && TM.getOptLevel() != CodeGenOpt::None) { 9068 // For optimized builds, lower large range as a balanced binary tree. 9069 splitWorkItem(WorkList, W, SI.getCondition(), SwitchMBB); 9070 continue; 9071 } 9072 9073 lowerWorkItem(W, SI.getCondition(), SwitchMBB, DefaultMBB); 9074 } 9075 } 9076