1 //===-- FunctionLoweringInfo.cpp ------------------------------------------===// 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 functions from LLVM IR into 11 // Machine IR. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "llvm/CodeGen/FunctionLoweringInfo.h" 16 #include "llvm/CodeGen/Analysis.h" 17 #include "llvm/CodeGen/MachineFrameInfo.h" 18 #include "llvm/CodeGen/MachineFunction.h" 19 #include "llvm/CodeGen/MachineInstrBuilder.h" 20 #include "llvm/CodeGen/MachineRegisterInfo.h" 21 #include "llvm/CodeGen/TargetFrameLowering.h" 22 #include "llvm/CodeGen/TargetInstrInfo.h" 23 #include "llvm/CodeGen/TargetLowering.h" 24 #include "llvm/CodeGen/TargetRegisterInfo.h" 25 #include "llvm/CodeGen/TargetSubtargetInfo.h" 26 #include "llvm/CodeGen/WinEHFuncInfo.h" 27 #include "llvm/IR/DataLayout.h" 28 #include "llvm/IR/DerivedTypes.h" 29 #include "llvm/IR/Function.h" 30 #include "llvm/IR/Instructions.h" 31 #include "llvm/IR/IntrinsicInst.h" 32 #include "llvm/IR/LLVMContext.h" 33 #include "llvm/IR/Module.h" 34 #include "llvm/Support/Debug.h" 35 #include "llvm/Support/ErrorHandling.h" 36 #include "llvm/Support/MathExtras.h" 37 #include "llvm/Support/raw_ostream.h" 38 #include "llvm/Target/TargetOptions.h" 39 #include <algorithm> 40 using namespace llvm; 41 42 #define DEBUG_TYPE "function-lowering-info" 43 44 /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by 45 /// PHI nodes or outside of the basic block that defines it, or used by a 46 /// switch or atomic instruction, which may expand to multiple basic blocks. 47 static bool isUsedOutsideOfDefiningBlock(const Instruction *I) { 48 if (I->use_empty()) return false; 49 if (isa<PHINode>(I)) return true; 50 const BasicBlock *BB = I->getParent(); 51 for (const User *U : I->users()) 52 if (cast<Instruction>(U)->getParent() != BB || isa<PHINode>(U)) 53 return true; 54 55 return false; 56 } 57 58 static ISD::NodeType getPreferredExtendForValue(const Value *V) { 59 // For the users of the source value being used for compare instruction, if 60 // the number of signed predicate is greater than unsigned predicate, we 61 // prefer to use SIGN_EXTEND. 62 // 63 // With this optimization, we would be able to reduce some redundant sign or 64 // zero extension instruction, and eventually more machine CSE opportunities 65 // can be exposed. 66 ISD::NodeType ExtendKind = ISD::ANY_EXTEND; 67 unsigned NumOfSigned = 0, NumOfUnsigned = 0; 68 for (const User *U : V->users()) { 69 if (const auto *CI = dyn_cast<CmpInst>(U)) { 70 NumOfSigned += CI->isSigned(); 71 NumOfUnsigned += CI->isUnsigned(); 72 } 73 } 74 if (NumOfSigned > NumOfUnsigned) 75 ExtendKind = ISD::SIGN_EXTEND; 76 77 return ExtendKind; 78 } 79 80 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, 81 SelectionDAG *DAG) { 82 Fn = &fn; 83 MF = &mf; 84 TLI = MF->getSubtarget().getTargetLowering(); 85 RegInfo = &MF->getRegInfo(); 86 const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering(); 87 unsigned StackAlign = TFI->getStackAlignment(); 88 89 // Check whether the function can return without sret-demotion. 90 SmallVector<ISD::OutputArg, 4> Outs; 91 GetReturnInfo(Fn->getReturnType(), Fn->getAttributes(), Outs, *TLI, 92 mf.getDataLayout()); 93 CanLowerReturn = TLI->CanLowerReturn(Fn->getCallingConv(), *MF, 94 Fn->isVarArg(), Outs, Fn->getContext()); 95 96 // If this personality uses funclets, we need to do a bit more work. 97 DenseMap<const AllocaInst *, TinyPtrVector<int *>> CatchObjects; 98 EHPersonality Personality = classifyEHPersonality( 99 Fn->hasPersonalityFn() ? Fn->getPersonalityFn() : nullptr); 100 if (isFuncletEHPersonality(Personality)) { 101 // Calculate state numbers if we haven't already. 102 WinEHFuncInfo &EHInfo = *MF->getWinEHFuncInfo(); 103 if (Personality == EHPersonality::MSVC_CXX) 104 calculateWinCXXEHStateNumbers(&fn, EHInfo); 105 else if (isAsynchronousEHPersonality(Personality)) 106 calculateSEHStateNumbers(&fn, EHInfo); 107 else if (Personality == EHPersonality::CoreCLR) 108 calculateClrEHStateNumbers(&fn, EHInfo); 109 110 // Map all BB references in the WinEH data to MBBs. 111 for (WinEHTryBlockMapEntry &TBME : EHInfo.TryBlockMap) { 112 for (WinEHHandlerType &H : TBME.HandlerArray) { 113 if (const AllocaInst *AI = H.CatchObj.Alloca) 114 CatchObjects.insert({AI, {}}).first->second.push_back( 115 &H.CatchObj.FrameIndex); 116 else 117 H.CatchObj.FrameIndex = INT_MAX; 118 } 119 } 120 } 121 122 // Initialize the mapping of values to registers. This is only set up for 123 // instruction values that are used outside of the block that defines 124 // them. 125 for (const BasicBlock &BB : *Fn) { 126 for (const Instruction &I : BB) { 127 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { 128 Type *Ty = AI->getAllocatedType(); 129 unsigned Align = 130 std::max((unsigned)MF->getDataLayout().getPrefTypeAlignment(Ty), 131 AI->getAlignment()); 132 133 // Static allocas can be folded into the initial stack frame 134 // adjustment. For targets that don't realign the stack, don't 135 // do this if there is an extra alignment requirement. 136 if (AI->isStaticAlloca() && 137 (TFI->isStackRealignable() || (Align <= StackAlign))) { 138 const ConstantInt *CUI = cast<ConstantInt>(AI->getArraySize()); 139 uint64_t TySize = MF->getDataLayout().getTypeAllocSize(Ty); 140 141 TySize *= CUI->getZExtValue(); // Get total allocated size. 142 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. 143 int FrameIndex = INT_MAX; 144 auto Iter = CatchObjects.find(AI); 145 if (Iter != CatchObjects.end() && TLI->needsFixedCatchObjects()) { 146 FrameIndex = MF->getFrameInfo().CreateFixedObject( 147 TySize, 0, /*Immutable=*/false, /*isAliased=*/true); 148 MF->getFrameInfo().setObjectAlignment(FrameIndex, Align); 149 } else { 150 FrameIndex = 151 MF->getFrameInfo().CreateStackObject(TySize, Align, false, AI); 152 } 153 154 StaticAllocaMap[AI] = FrameIndex; 155 // Update the catch handler information. 156 if (Iter != CatchObjects.end()) { 157 for (int *CatchObjPtr : Iter->second) 158 *CatchObjPtr = FrameIndex; 159 } 160 } else { 161 // FIXME: Overaligned static allocas should be grouped into 162 // a single dynamic allocation instead of using a separate 163 // stack allocation for each one. 164 if (Align <= StackAlign) 165 Align = 0; 166 // Inform the Frame Information that we have variable-sized objects. 167 MF->getFrameInfo().CreateVariableSizedObject(Align ? Align : 1, AI); 168 } 169 } 170 171 // Look for inline asm that clobbers the SP register. 172 if (isa<CallInst>(I) || isa<InvokeInst>(I)) { 173 ImmutableCallSite CS(&I); 174 if (isa<InlineAsm>(CS.getCalledValue())) { 175 unsigned SP = TLI->getStackPointerRegisterToSaveRestore(); 176 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo(); 177 std::vector<TargetLowering::AsmOperandInfo> Ops = 178 TLI->ParseConstraints(Fn->getParent()->getDataLayout(), TRI, CS); 179 for (TargetLowering::AsmOperandInfo &Op : Ops) { 180 if (Op.Type == InlineAsm::isClobber) { 181 // Clobbers don't have SDValue operands, hence SDValue(). 182 TLI->ComputeConstraintToUse(Op, SDValue(), DAG); 183 std::pair<unsigned, const TargetRegisterClass *> PhysReg = 184 TLI->getRegForInlineAsmConstraint(TRI, Op.ConstraintCode, 185 Op.ConstraintVT); 186 if (PhysReg.first == SP) 187 MF->getFrameInfo().setHasOpaqueSPAdjustment(true); 188 } 189 } 190 } 191 } 192 193 // Look for calls to the @llvm.va_start intrinsic. We can omit some 194 // prologue boilerplate for variadic functions that don't examine their 195 // arguments. 196 if (const auto *II = dyn_cast<IntrinsicInst>(&I)) { 197 if (II->getIntrinsicID() == Intrinsic::vastart) 198 MF->getFrameInfo().setHasVAStart(true); 199 } 200 201 // If we have a musttail call in a variadic function, we need to ensure we 202 // forward implicit register parameters. 203 if (const auto *CI = dyn_cast<CallInst>(&I)) { 204 if (CI->isMustTailCall() && Fn->isVarArg()) 205 MF->getFrameInfo().setHasMustTailInVarArgFunc(true); 206 } 207 208 // Mark values used outside their block as exported, by allocating 209 // a virtual register for them. 210 if (isUsedOutsideOfDefiningBlock(&I)) 211 if (!isa<AllocaInst>(I) || !StaticAllocaMap.count(cast<AllocaInst>(&I))) 212 InitializeRegForValue(&I); 213 214 // Decide the preferred extend type for a value. 215 PreferredExtendType[&I] = getPreferredExtendForValue(&I); 216 } 217 } 218 219 // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This 220 // also creates the initial PHI MachineInstrs, though none of the input 221 // operands are populated. 222 for (const BasicBlock &BB : *Fn) { 223 // Don't create MachineBasicBlocks for imaginary EH pad blocks. These blocks 224 // are really data, and no instructions can live here. 225 if (BB.isEHPad()) { 226 const Instruction *PadInst = BB.getFirstNonPHI(); 227 // If this is a non-landingpad EH pad, mark this function as using 228 // funclets. 229 // FIXME: SEH catchpads do not create funclets, so we could avoid setting 230 // this in such cases in order to improve frame layout. 231 if (!isa<LandingPadInst>(PadInst)) { 232 MF->setHasEHFunclets(true); 233 MF->getFrameInfo().setHasOpaqueSPAdjustment(true); 234 } 235 if (isa<CatchSwitchInst>(PadInst)) { 236 assert(&*BB.begin() == PadInst && 237 "WinEHPrepare failed to remove PHIs from imaginary BBs"); 238 continue; 239 } 240 if (isa<FuncletPadInst>(PadInst)) 241 assert(&*BB.begin() == PadInst && "WinEHPrepare failed to demote PHIs"); 242 } 243 244 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(&BB); 245 MBBMap[&BB] = MBB; 246 MF->push_back(MBB); 247 248 // Transfer the address-taken flag. This is necessary because there could 249 // be multiple MachineBasicBlocks corresponding to one BasicBlock, and only 250 // the first one should be marked. 251 if (BB.hasAddressTaken()) 252 MBB->setHasAddressTaken(); 253 254 // Mark landing pad blocks. 255 if (BB.isEHPad()) 256 MBB->setIsEHPad(); 257 258 // Create Machine PHI nodes for LLVM PHI nodes, lowering them as 259 // appropriate. 260 for (const PHINode &PN : BB.phis()) { 261 if (PN.use_empty()) 262 continue; 263 264 // Skip empty types 265 if (PN.getType()->isEmptyTy()) 266 continue; 267 268 DebugLoc DL = PN.getDebugLoc(); 269 unsigned PHIReg = ValueMap[&PN]; 270 assert(PHIReg && "PHI node does not have an assigned virtual register!"); 271 272 SmallVector<EVT, 4> ValueVTs; 273 ComputeValueVTs(*TLI, MF->getDataLayout(), PN.getType(), ValueVTs); 274 for (EVT VT : ValueVTs) { 275 unsigned NumRegisters = TLI->getNumRegisters(Fn->getContext(), VT); 276 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); 277 for (unsigned i = 0; i != NumRegisters; ++i) 278 BuildMI(MBB, DL, TII->get(TargetOpcode::PHI), PHIReg + i); 279 PHIReg += NumRegisters; 280 } 281 } 282 } 283 284 if (!isFuncletEHPersonality(Personality)) 285 return; 286 287 WinEHFuncInfo &EHInfo = *MF->getWinEHFuncInfo(); 288 289 // Map all BB references in the WinEH data to MBBs. 290 for (WinEHTryBlockMapEntry &TBME : EHInfo.TryBlockMap) { 291 for (WinEHHandlerType &H : TBME.HandlerArray) { 292 if (H.Handler) 293 H.Handler = MBBMap[H.Handler.get<const BasicBlock *>()]; 294 } 295 } 296 for (CxxUnwindMapEntry &UME : EHInfo.CxxUnwindMap) 297 if (UME.Cleanup) 298 UME.Cleanup = MBBMap[UME.Cleanup.get<const BasicBlock *>()]; 299 for (SEHUnwindMapEntry &UME : EHInfo.SEHUnwindMap) { 300 const BasicBlock *BB = UME.Handler.get<const BasicBlock *>(); 301 UME.Handler = MBBMap[BB]; 302 } 303 for (ClrEHUnwindMapEntry &CME : EHInfo.ClrEHUnwindMap) { 304 const BasicBlock *BB = CME.Handler.get<const BasicBlock *>(); 305 CME.Handler = MBBMap[BB]; 306 } 307 } 308 309 /// clear - Clear out all the function-specific state. This returns this 310 /// FunctionLoweringInfo to an empty state, ready to be used for a 311 /// different function. 312 void FunctionLoweringInfo::clear() { 313 MBBMap.clear(); 314 ValueMap.clear(); 315 VirtReg2Value.clear(); 316 StaticAllocaMap.clear(); 317 LiveOutRegInfo.clear(); 318 VisitedBBs.clear(); 319 ArgDbgValues.clear(); 320 ByValArgFrameIndexMap.clear(); 321 RegFixups.clear(); 322 RegsWithFixups.clear(); 323 StatepointStackSlots.clear(); 324 StatepointSpillMaps.clear(); 325 PreferredExtendType.clear(); 326 } 327 328 /// CreateReg - Allocate a single virtual register for the given type. 329 unsigned FunctionLoweringInfo::CreateReg(MVT VT) { 330 return RegInfo->createVirtualRegister( 331 MF->getSubtarget().getTargetLowering()->getRegClassFor(VT)); 332 } 333 334 /// CreateRegs - Allocate the appropriate number of virtual registers of 335 /// the correctly promoted or expanded types. Assign these registers 336 /// consecutive vreg numbers and return the first assigned number. 337 /// 338 /// In the case that the given value has struct or array type, this function 339 /// will assign registers for each member or element. 340 /// 341 unsigned FunctionLoweringInfo::CreateRegs(Type *Ty) { 342 const TargetLowering *TLI = MF->getSubtarget().getTargetLowering(); 343 344 SmallVector<EVT, 4> ValueVTs; 345 ComputeValueVTs(*TLI, MF->getDataLayout(), Ty, ValueVTs); 346 347 unsigned FirstReg = 0; 348 for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { 349 EVT ValueVT = ValueVTs[Value]; 350 MVT RegisterVT = TLI->getRegisterType(Ty->getContext(), ValueVT); 351 352 unsigned NumRegs = TLI->getNumRegisters(Ty->getContext(), ValueVT); 353 for (unsigned i = 0; i != NumRegs; ++i) { 354 unsigned R = CreateReg(RegisterVT); 355 if (!FirstReg) FirstReg = R; 356 } 357 } 358 return FirstReg; 359 } 360 361 /// GetLiveOutRegInfo - Gets LiveOutInfo for a register, returning NULL if the 362 /// register is a PHI destination and the PHI's LiveOutInfo is not valid. If 363 /// the register's LiveOutInfo is for a smaller bit width, it is extended to 364 /// the larger bit width by zero extension. The bit width must be no smaller 365 /// than the LiveOutInfo's existing bit width. 366 const FunctionLoweringInfo::LiveOutInfo * 367 FunctionLoweringInfo::GetLiveOutRegInfo(unsigned Reg, unsigned BitWidth) { 368 if (!LiveOutRegInfo.inBounds(Reg)) 369 return nullptr; 370 371 LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; 372 if (!LOI->IsValid) 373 return nullptr; 374 375 if (BitWidth > LOI->Known.getBitWidth()) { 376 LOI->NumSignBits = 1; 377 LOI->Known = LOI->Known.zextOrTrunc(BitWidth); 378 } 379 380 return LOI; 381 } 382 383 /// ComputePHILiveOutRegInfo - Compute LiveOutInfo for a PHI's destination 384 /// register based on the LiveOutInfo of its operands. 385 void FunctionLoweringInfo::ComputePHILiveOutRegInfo(const PHINode *PN) { 386 Type *Ty = PN->getType(); 387 if (!Ty->isIntegerTy() || Ty->isVectorTy()) 388 return; 389 390 SmallVector<EVT, 1> ValueVTs; 391 ComputeValueVTs(*TLI, MF->getDataLayout(), Ty, ValueVTs); 392 assert(ValueVTs.size() == 1 && 393 "PHIs with non-vector integer types should have a single VT."); 394 EVT IntVT = ValueVTs[0]; 395 396 if (TLI->getNumRegisters(PN->getContext(), IntVT) != 1) 397 return; 398 IntVT = TLI->getTypeToTransformTo(PN->getContext(), IntVT); 399 unsigned BitWidth = IntVT.getSizeInBits(); 400 401 unsigned DestReg = ValueMap[PN]; 402 if (!TargetRegisterInfo::isVirtualRegister(DestReg)) 403 return; 404 LiveOutRegInfo.grow(DestReg); 405 LiveOutInfo &DestLOI = LiveOutRegInfo[DestReg]; 406 407 Value *V = PN->getIncomingValue(0); 408 if (isa<UndefValue>(V) || isa<ConstantExpr>(V)) { 409 DestLOI.NumSignBits = 1; 410 DestLOI.Known = KnownBits(BitWidth); 411 return; 412 } 413 414 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 415 APInt Val = CI->getValue().zextOrTrunc(BitWidth); 416 DestLOI.NumSignBits = Val.getNumSignBits(); 417 DestLOI.Known.Zero = ~Val; 418 DestLOI.Known.One = Val; 419 } else { 420 assert(ValueMap.count(V) && "V should have been placed in ValueMap when its" 421 "CopyToReg node was created."); 422 unsigned SrcReg = ValueMap[V]; 423 if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) { 424 DestLOI.IsValid = false; 425 return; 426 } 427 const LiveOutInfo *SrcLOI = GetLiveOutRegInfo(SrcReg, BitWidth); 428 if (!SrcLOI) { 429 DestLOI.IsValid = false; 430 return; 431 } 432 DestLOI = *SrcLOI; 433 } 434 435 assert(DestLOI.Known.Zero.getBitWidth() == BitWidth && 436 DestLOI.Known.One.getBitWidth() == BitWidth && 437 "Masks should have the same bit width as the type."); 438 439 for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) { 440 Value *V = PN->getIncomingValue(i); 441 if (isa<UndefValue>(V) || isa<ConstantExpr>(V)) { 442 DestLOI.NumSignBits = 1; 443 DestLOI.Known = KnownBits(BitWidth); 444 return; 445 } 446 447 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) { 448 APInt Val = CI->getValue().zextOrTrunc(BitWidth); 449 DestLOI.NumSignBits = std::min(DestLOI.NumSignBits, Val.getNumSignBits()); 450 DestLOI.Known.Zero &= ~Val; 451 DestLOI.Known.One &= Val; 452 continue; 453 } 454 455 assert(ValueMap.count(V) && "V should have been placed in ValueMap when " 456 "its CopyToReg node was created."); 457 unsigned SrcReg = ValueMap[V]; 458 if (!TargetRegisterInfo::isVirtualRegister(SrcReg)) { 459 DestLOI.IsValid = false; 460 return; 461 } 462 const LiveOutInfo *SrcLOI = GetLiveOutRegInfo(SrcReg, BitWidth); 463 if (!SrcLOI) { 464 DestLOI.IsValid = false; 465 return; 466 } 467 DestLOI.NumSignBits = std::min(DestLOI.NumSignBits, SrcLOI->NumSignBits); 468 DestLOI.Known.Zero &= SrcLOI->Known.Zero; 469 DestLOI.Known.One &= SrcLOI->Known.One; 470 } 471 } 472 473 /// setArgumentFrameIndex - Record frame index for the byval 474 /// argument. This overrides previous frame index entry for this argument, 475 /// if any. 476 void FunctionLoweringInfo::setArgumentFrameIndex(const Argument *A, 477 int FI) { 478 ByValArgFrameIndexMap[A] = FI; 479 } 480 481 /// getArgumentFrameIndex - Get frame index for the byval argument. 482 /// If the argument does not have any assigned frame index then 0 is 483 /// returned. 484 int FunctionLoweringInfo::getArgumentFrameIndex(const Argument *A) { 485 auto I = ByValArgFrameIndexMap.find(A); 486 if (I != ByValArgFrameIndexMap.end()) 487 return I->second; 488 LLVM_DEBUG(dbgs() << "Argument does not have assigned frame index!\n"); 489 return INT_MAX; 490 } 491 492 unsigned FunctionLoweringInfo::getCatchPadExceptionPointerVReg( 493 const Value *CPI, const TargetRegisterClass *RC) { 494 MachineRegisterInfo &MRI = MF->getRegInfo(); 495 auto I = CatchPadExceptionPointers.insert({CPI, 0}); 496 unsigned &VReg = I.first->second; 497 if (I.second) 498 VReg = MRI.createVirtualRegister(RC); 499 assert(VReg && "null vreg in exception pointer table!"); 500 return VReg; 501 } 502 503 unsigned 504 FunctionLoweringInfo::getOrCreateSwiftErrorVReg(const MachineBasicBlock *MBB, 505 const Value *Val) { 506 auto Key = std::make_pair(MBB, Val); 507 auto It = SwiftErrorVRegDefMap.find(Key); 508 // If this is the first use of this swifterror value in this basic block, 509 // create a new virtual register. 510 // After we processed all basic blocks we will satisfy this "upwards exposed 511 // use" by inserting a copy or phi at the beginning of this block. 512 if (It == SwiftErrorVRegDefMap.end()) { 513 auto &DL = MF->getDataLayout(); 514 const TargetRegisterClass *RC = TLI->getRegClassFor(TLI->getPointerTy(DL)); 515 auto VReg = MF->getRegInfo().createVirtualRegister(RC); 516 SwiftErrorVRegDefMap[Key] = VReg; 517 SwiftErrorVRegUpwardsUse[Key] = VReg; 518 return VReg; 519 } else return It->second; 520 } 521 522 void FunctionLoweringInfo::setCurrentSwiftErrorVReg( 523 const MachineBasicBlock *MBB, const Value *Val, unsigned VReg) { 524 SwiftErrorVRegDefMap[std::make_pair(MBB, Val)] = VReg; 525 } 526 527 std::pair<unsigned, bool> 528 FunctionLoweringInfo::getOrCreateSwiftErrorVRegDefAt(const Instruction *I) { 529 auto Key = PointerIntPair<const Instruction *, 1, bool>(I, true); 530 auto It = SwiftErrorVRegDefUses.find(Key); 531 if (It == SwiftErrorVRegDefUses.end()) { 532 auto &DL = MF->getDataLayout(); 533 const TargetRegisterClass *RC = TLI->getRegClassFor(TLI->getPointerTy(DL)); 534 unsigned VReg = MF->getRegInfo().createVirtualRegister(RC); 535 SwiftErrorVRegDefUses[Key] = VReg; 536 return std::make_pair(VReg, true); 537 } 538 return std::make_pair(It->second, false); 539 } 540 541 std::pair<unsigned, bool> 542 FunctionLoweringInfo::getOrCreateSwiftErrorVRegUseAt(const Instruction *I, const MachineBasicBlock *MBB, const Value *Val) { 543 auto Key = PointerIntPair<const Instruction *, 1, bool>(I, false); 544 auto It = SwiftErrorVRegDefUses.find(Key); 545 if (It == SwiftErrorVRegDefUses.end()) { 546 unsigned VReg = getOrCreateSwiftErrorVReg(MBB, Val); 547 SwiftErrorVRegDefUses[Key] = VReg; 548 return std::make_pair(VReg, true); 549 } 550 return std::make_pair(It->second, false); 551 } 552 553 const Value * 554 FunctionLoweringInfo::getValueFromVirtualReg(unsigned Vreg) { 555 if (VirtReg2Value.empty()) { 556 for (auto &P : ValueMap) { 557 VirtReg2Value[P.second] = P.first; 558 } 559 } 560 return VirtReg2Value[Vreg]; 561 } 562