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