1 //===--- CGVTables.cpp - Emit LLVM Code for C++ vtables -------------------===// 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 contains code dealing with C++ code generation of virtual tables. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "CodeGenFunction.h" 15 #include "CGCXXABI.h" 16 #include "CodeGenModule.h" 17 #include "clang/AST/CXXInheritance.h" 18 #include "clang/AST/RecordLayout.h" 19 #include "clang/CodeGen/CGFunctionInfo.h" 20 #include "clang/Frontend/CodeGenOptions.h" 21 #include "llvm/ADT/DenseSet.h" 22 #include "llvm/ADT/SetVector.h" 23 #include "llvm/Support/Compiler.h" 24 #include "llvm/Support/Format.h" 25 #include "llvm/Transforms/Utils/Cloning.h" 26 #include <algorithm> 27 #include <cstdio> 28 29 using namespace clang; 30 using namespace CodeGen; 31 32 CodeGenVTables::CodeGenVTables(CodeGenModule &CGM) 33 : CGM(CGM), VTContext(CGM.getContext().getVTableContext()) {} 34 35 llvm::Constant *CodeGenModule::GetAddrOfThunk(GlobalDecl GD, 36 const ThunkInfo &Thunk) { 37 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 38 39 // Compute the mangled name. 40 SmallString<256> Name; 41 llvm::raw_svector_ostream Out(Name); 42 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD)) 43 getCXXABI().getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(), 44 Thunk.This, Out); 45 else 46 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out); 47 48 llvm::Type *Ty = getTypes().GetFunctionTypeForVTable(GD); 49 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true, 50 /*DontDefer=*/true, /*IsThunk=*/true); 51 } 52 53 static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD, 54 const ThunkInfo &Thunk, llvm::Function *Fn) { 55 CGM.setGlobalVisibility(Fn, MD); 56 } 57 58 static void setThunkProperties(CodeGenModule &CGM, const ThunkInfo &Thunk, 59 llvm::Function *ThunkFn, bool ForVTable, 60 GlobalDecl GD) { 61 CGM.setFunctionLinkage(GD, ThunkFn); 62 CGM.getCXXABI().setThunkLinkage(ThunkFn, ForVTable, GD, 63 !Thunk.Return.isEmpty()); 64 65 // Set the right visibility. 66 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 67 setThunkVisibility(CGM, MD, Thunk, ThunkFn); 68 69 if (CGM.supportsCOMDAT() && ThunkFn->isWeakForLinker()) 70 ThunkFn->setComdat(CGM.getModule().getOrInsertComdat(ThunkFn->getName())); 71 } 72 73 #ifndef NDEBUG 74 static bool similar(const ABIArgInfo &infoL, CanQualType typeL, 75 const ABIArgInfo &infoR, CanQualType typeR) { 76 return (infoL.getKind() == infoR.getKind() && 77 (typeL == typeR || 78 (isa<PointerType>(typeL) && isa<PointerType>(typeR)) || 79 (isa<ReferenceType>(typeL) && isa<ReferenceType>(typeR)))); 80 } 81 #endif 82 83 static RValue PerformReturnAdjustment(CodeGenFunction &CGF, 84 QualType ResultType, RValue RV, 85 const ThunkInfo &Thunk) { 86 // Emit the return adjustment. 87 bool NullCheckValue = !ResultType->isReferenceType(); 88 89 llvm::BasicBlock *AdjustNull = nullptr; 90 llvm::BasicBlock *AdjustNotNull = nullptr; 91 llvm::BasicBlock *AdjustEnd = nullptr; 92 93 llvm::Value *ReturnValue = RV.getScalarVal(); 94 95 if (NullCheckValue) { 96 AdjustNull = CGF.createBasicBlock("adjust.null"); 97 AdjustNotNull = CGF.createBasicBlock("adjust.notnull"); 98 AdjustEnd = CGF.createBasicBlock("adjust.end"); 99 100 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue); 101 CGF.Builder.CreateCondBr(IsNull, AdjustNull, AdjustNotNull); 102 CGF.EmitBlock(AdjustNotNull); 103 } 104 105 auto ClassDecl = ResultType->getPointeeType()->getAsCXXRecordDecl(); 106 auto ClassAlign = CGF.CGM.getClassPointerAlignment(ClassDecl); 107 ReturnValue = CGF.CGM.getCXXABI().performReturnAdjustment(CGF, 108 Address(ReturnValue, ClassAlign), 109 Thunk.Return); 110 111 if (NullCheckValue) { 112 CGF.Builder.CreateBr(AdjustEnd); 113 CGF.EmitBlock(AdjustNull); 114 CGF.Builder.CreateBr(AdjustEnd); 115 CGF.EmitBlock(AdjustEnd); 116 117 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2); 118 PHI->addIncoming(ReturnValue, AdjustNotNull); 119 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()), 120 AdjustNull); 121 ReturnValue = PHI; 122 } 123 124 return RValue::get(ReturnValue); 125 } 126 127 // This function does roughly the same thing as GenerateThunk, but in a 128 // very different way, so that va_start and va_end work correctly. 129 // FIXME: This function assumes "this" is the first non-sret LLVM argument of 130 // a function, and that there is an alloca built in the entry block 131 // for all accesses to "this". 132 // FIXME: This function assumes there is only one "ret" statement per function. 133 // FIXME: Cloning isn't correct in the presence of indirect goto! 134 // FIXME: This implementation of thunks bloats codesize by duplicating the 135 // function definition. There are alternatives: 136 // 1. Add some sort of stub support to LLVM for cases where we can 137 // do a this adjustment, then a sibcall. 138 // 2. We could transform the definition to take a va_list instead of an 139 // actual variable argument list, then have the thunks (including a 140 // no-op thunk for the regular definition) call va_start/va_end. 141 // There's a bit of per-call overhead for this solution, but it's 142 // better for codesize if the definition is long. 143 llvm::Function * 144 CodeGenFunction::GenerateVarArgsThunk(llvm::Function *Fn, 145 const CGFunctionInfo &FnInfo, 146 GlobalDecl GD, const ThunkInfo &Thunk) { 147 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 148 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); 149 QualType ResultType = FPT->getReturnType(); 150 151 // Get the original function 152 assert(FnInfo.isVariadic()); 153 llvm::Type *Ty = CGM.getTypes().GetFunctionType(FnInfo); 154 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); 155 llvm::Function *BaseFn = cast<llvm::Function>(Callee); 156 157 // Clone to thunk. 158 llvm::ValueToValueMapTy VMap; 159 llvm::Function *NewFn = llvm::CloneFunction(BaseFn, VMap, 160 /*ModuleLevelChanges=*/false); 161 CGM.getModule().getFunctionList().push_back(NewFn); 162 Fn->replaceAllUsesWith(NewFn); 163 NewFn->takeName(Fn); 164 Fn->eraseFromParent(); 165 Fn = NewFn; 166 167 // "Initialize" CGF (minimally). 168 CurFn = Fn; 169 170 // Get the "this" value 171 llvm::Function::arg_iterator AI = Fn->arg_begin(); 172 if (CGM.ReturnTypeUsesSRet(FnInfo)) 173 ++AI; 174 175 // Find the first store of "this", which will be to the alloca associated 176 // with "this". 177 Address ThisPtr(&*AI, CGM.getClassPointerAlignment(MD->getParent())); 178 llvm::BasicBlock *EntryBB = &Fn->front(); 179 llvm::BasicBlock::iterator ThisStore = 180 std::find_if(EntryBB->begin(), EntryBB->end(), [&](llvm::Instruction &I) { 181 return isa<llvm::StoreInst>(I) && 182 I.getOperand(0) == ThisPtr.getPointer(); 183 }); 184 assert(ThisStore != EntryBB->end() && 185 "Store of this should be in entry block?"); 186 // Adjust "this", if necessary. 187 Builder.SetInsertPoint(&*ThisStore); 188 llvm::Value *AdjustedThisPtr = 189 CGM.getCXXABI().performThisAdjustment(*this, ThisPtr, Thunk.This); 190 ThisStore->setOperand(0, AdjustedThisPtr); 191 192 if (!Thunk.Return.isEmpty()) { 193 // Fix up the returned value, if necessary. 194 for (llvm::BasicBlock &BB : *Fn) { 195 llvm::Instruction *T = BB.getTerminator(); 196 if (isa<llvm::ReturnInst>(T)) { 197 RValue RV = RValue::get(T->getOperand(0)); 198 T->eraseFromParent(); 199 Builder.SetInsertPoint(&BB); 200 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk); 201 Builder.CreateRet(RV.getScalarVal()); 202 break; 203 } 204 } 205 } 206 207 return Fn; 208 } 209 210 void CodeGenFunction::StartThunk(llvm::Function *Fn, GlobalDecl GD, 211 const CGFunctionInfo &FnInfo) { 212 assert(!CurGD.getDecl() && "CurGD was already set!"); 213 CurGD = GD; 214 CurFuncIsThunk = true; 215 216 // Build FunctionArgs. 217 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 218 QualType ThisType = MD->getThisType(getContext()); 219 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); 220 QualType ResultType = CGM.getCXXABI().HasThisReturn(GD) 221 ? ThisType 222 : CGM.getCXXABI().hasMostDerivedReturn(GD) 223 ? CGM.getContext().VoidPtrTy 224 : FPT->getReturnType(); 225 FunctionArgList FunctionArgs; 226 227 // Create the implicit 'this' parameter declaration. 228 CGM.getCXXABI().buildThisParam(*this, FunctionArgs); 229 230 // Add the rest of the parameters. 231 FunctionArgs.append(MD->param_begin(), MD->param_end()); 232 233 if (isa<CXXDestructorDecl>(MD)) 234 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs); 235 236 // Start defining the function. 237 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs, 238 MD->getLocation(), MD->getLocation()); 239 240 // Since we didn't pass a GlobalDecl to StartFunction, do this ourselves. 241 CGM.getCXXABI().EmitInstanceFunctionProlog(*this); 242 CXXThisValue = CXXABIThisValue; 243 CurCodeDecl = MD; 244 CurFuncDecl = MD; 245 } 246 247 void CodeGenFunction::FinishThunk() { 248 // Clear these to restore the invariants expected by 249 // StartFunction/FinishFunction. 250 CurCodeDecl = nullptr; 251 CurFuncDecl = nullptr; 252 253 FinishFunction(); 254 } 255 256 void CodeGenFunction::EmitCallAndReturnForThunk(llvm::Value *Callee, 257 const ThunkInfo *Thunk) { 258 assert(isa<CXXMethodDecl>(CurGD.getDecl()) && 259 "Please use a new CGF for this thunk"); 260 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CurGD.getDecl()); 261 262 // Adjust the 'this' pointer if necessary 263 llvm::Value *AdjustedThisPtr = 264 Thunk ? CGM.getCXXABI().performThisAdjustment( 265 *this, LoadCXXThisAddress(), Thunk->This) 266 : LoadCXXThis(); 267 268 if (CurFnInfo->usesInAlloca()) { 269 // We don't handle return adjusting thunks, because they require us to call 270 // the copy constructor. For now, fall through and pretend the return 271 // adjustment was empty so we don't crash. 272 if (Thunk && !Thunk->Return.isEmpty()) { 273 CGM.ErrorUnsupported( 274 MD, "non-trivial argument copy for return-adjusting thunk"); 275 } 276 EmitMustTailThunk(MD, AdjustedThisPtr, Callee); 277 return; 278 } 279 280 // Start building CallArgs. 281 CallArgList CallArgs; 282 QualType ThisType = MD->getThisType(getContext()); 283 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); 284 285 if (isa<CXXDestructorDecl>(MD)) 286 CGM.getCXXABI().adjustCallArgsForDestructorThunk(*this, CurGD, CallArgs); 287 288 // Add the rest of the arguments. 289 for (const ParmVarDecl *PD : MD->params()) 290 EmitDelegateCallArg(CallArgs, PD, PD->getLocStart()); 291 292 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>(); 293 294 #ifndef NDEBUG 295 const CGFunctionInfo &CallFnInfo = 296 CGM.getTypes().arrangeCXXMethodCall(CallArgs, FPT, 297 RequiredArgs::forPrototypePlus(FPT, 1)); 298 assert(CallFnInfo.getRegParm() == CurFnInfo->getRegParm() && 299 CallFnInfo.isNoReturn() == CurFnInfo->isNoReturn() && 300 CallFnInfo.getCallingConvention() == CurFnInfo->getCallingConvention()); 301 assert(isa<CXXDestructorDecl>(MD) || // ignore dtor return types 302 similar(CallFnInfo.getReturnInfo(), CallFnInfo.getReturnType(), 303 CurFnInfo->getReturnInfo(), CurFnInfo->getReturnType())); 304 assert(CallFnInfo.arg_size() == CurFnInfo->arg_size()); 305 for (unsigned i = 0, e = CurFnInfo->arg_size(); i != e; ++i) 306 assert(similar(CallFnInfo.arg_begin()[i].info, 307 CallFnInfo.arg_begin()[i].type, 308 CurFnInfo->arg_begin()[i].info, 309 CurFnInfo->arg_begin()[i].type)); 310 #endif 311 312 // Determine whether we have a return value slot to use. 313 QualType ResultType = CGM.getCXXABI().HasThisReturn(CurGD) 314 ? ThisType 315 : CGM.getCXXABI().hasMostDerivedReturn(CurGD) 316 ? CGM.getContext().VoidPtrTy 317 : FPT->getReturnType(); 318 ReturnValueSlot Slot; 319 if (!ResultType->isVoidType() && 320 CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect && 321 !hasScalarEvaluationKind(CurFnInfo->getReturnType())) 322 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified()); 323 324 // Now emit our call. 325 llvm::Instruction *CallOrInvoke; 326 RValue RV = EmitCall(*CurFnInfo, Callee, Slot, CallArgs, MD, &CallOrInvoke); 327 328 // Consider return adjustment if we have ThunkInfo. 329 if (Thunk && !Thunk->Return.isEmpty()) 330 RV = PerformReturnAdjustment(*this, ResultType, RV, *Thunk); 331 else if (llvm::CallInst* Call = dyn_cast<llvm::CallInst>(CallOrInvoke)) 332 Call->setTailCallKind(llvm::CallInst::TCK_Tail); 333 334 // Emit return. 335 if (!ResultType->isVoidType() && Slot.isNull()) 336 CGM.getCXXABI().EmitReturnFromThunk(*this, RV, ResultType); 337 338 // Disable the final ARC autorelease. 339 AutoreleaseResult = false; 340 341 FinishThunk(); 342 } 343 344 void CodeGenFunction::EmitMustTailThunk(const CXXMethodDecl *MD, 345 llvm::Value *AdjustedThisPtr, 346 llvm::Value *Callee) { 347 // Emitting a musttail call thunk doesn't use any of the CGCall.cpp machinery 348 // to translate AST arguments into LLVM IR arguments. For thunks, we know 349 // that the caller prototype more or less matches the callee prototype with 350 // the exception of 'this'. 351 SmallVector<llvm::Value *, 8> Args; 352 for (llvm::Argument &A : CurFn->args()) 353 Args.push_back(&A); 354 355 // Set the adjusted 'this' pointer. 356 const ABIArgInfo &ThisAI = CurFnInfo->arg_begin()->info; 357 if (ThisAI.isDirect()) { 358 const ABIArgInfo &RetAI = CurFnInfo->getReturnInfo(); 359 int ThisArgNo = RetAI.isIndirect() && !RetAI.isSRetAfterThis() ? 1 : 0; 360 llvm::Type *ThisType = Args[ThisArgNo]->getType(); 361 if (ThisType != AdjustedThisPtr->getType()) 362 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); 363 Args[ThisArgNo] = AdjustedThisPtr; 364 } else { 365 assert(ThisAI.isInAlloca() && "this is passed directly or inalloca"); 366 Address ThisAddr = GetAddrOfLocalVar(CXXABIThisDecl); 367 llvm::Type *ThisType = ThisAddr.getElementType(); 368 if (ThisType != AdjustedThisPtr->getType()) 369 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); 370 Builder.CreateStore(AdjustedThisPtr, ThisAddr); 371 } 372 373 // Emit the musttail call manually. Even if the prologue pushed cleanups, we 374 // don't actually want to run them. 375 llvm::CallInst *Call = Builder.CreateCall(Callee, Args); 376 Call->setTailCallKind(llvm::CallInst::TCK_MustTail); 377 378 // Apply the standard set of call attributes. 379 unsigned CallingConv; 380 CodeGen::AttributeListType AttributeList; 381 CGM.ConstructAttributeList(*CurFnInfo, MD, AttributeList, CallingConv, 382 /*AttrOnCallSite=*/true); 383 llvm::AttributeSet Attrs = 384 llvm::AttributeSet::get(getLLVMContext(), AttributeList); 385 Call->setAttributes(Attrs); 386 Call->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv)); 387 388 if (Call->getType()->isVoidTy()) 389 Builder.CreateRetVoid(); 390 else 391 Builder.CreateRet(Call); 392 393 // Finish the function to maintain CodeGenFunction invariants. 394 // FIXME: Don't emit unreachable code. 395 EmitBlock(createBasicBlock()); 396 FinishFunction(); 397 } 398 399 void CodeGenFunction::generateThunk(llvm::Function *Fn, 400 const CGFunctionInfo &FnInfo, 401 GlobalDecl GD, const ThunkInfo &Thunk) { 402 StartThunk(Fn, GD, FnInfo); 403 404 // Get our callee. 405 llvm::Type *Ty = 406 CGM.getTypes().GetFunctionType(CGM.getTypes().arrangeGlobalDeclaration(GD)); 407 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); 408 409 // Make the call and return the result. 410 EmitCallAndReturnForThunk(Callee, &Thunk); 411 } 412 413 void CodeGenVTables::emitThunk(GlobalDecl GD, const ThunkInfo &Thunk, 414 bool ForVTable) { 415 const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeGlobalDeclaration(GD); 416 417 // FIXME: re-use FnInfo in this computation. 418 llvm::Constant *C = CGM.GetAddrOfThunk(GD, Thunk); 419 llvm::GlobalValue *Entry; 420 421 // Strip off a bitcast if we got one back. 422 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(C)) { 423 assert(CE->getOpcode() == llvm::Instruction::BitCast); 424 Entry = cast<llvm::GlobalValue>(CE->getOperand(0)); 425 } else { 426 Entry = cast<llvm::GlobalValue>(C); 427 } 428 429 // There's already a declaration with the same name, check if it has the same 430 // type or if we need to replace it. 431 if (Entry->getType()->getElementType() != 432 CGM.getTypes().GetFunctionTypeForVTable(GD)) { 433 llvm::GlobalValue *OldThunkFn = Entry; 434 435 // If the types mismatch then we have to rewrite the definition. 436 assert(OldThunkFn->isDeclaration() && 437 "Shouldn't replace non-declaration"); 438 439 // Remove the name from the old thunk function and get a new thunk. 440 OldThunkFn->setName(StringRef()); 441 Entry = cast<llvm::GlobalValue>(CGM.GetAddrOfThunk(GD, Thunk)); 442 443 // If needed, replace the old thunk with a bitcast. 444 if (!OldThunkFn->use_empty()) { 445 llvm::Constant *NewPtrForOldDecl = 446 llvm::ConstantExpr::getBitCast(Entry, OldThunkFn->getType()); 447 OldThunkFn->replaceAllUsesWith(NewPtrForOldDecl); 448 } 449 450 // Remove the old thunk. 451 OldThunkFn->eraseFromParent(); 452 } 453 454 llvm::Function *ThunkFn = cast<llvm::Function>(Entry); 455 bool ABIHasKeyFunctions = CGM.getTarget().getCXXABI().hasKeyFunctions(); 456 bool UseAvailableExternallyLinkage = ForVTable && ABIHasKeyFunctions; 457 458 if (!ThunkFn->isDeclaration()) { 459 if (!ABIHasKeyFunctions || UseAvailableExternallyLinkage) { 460 // There is already a thunk emitted for this function, do nothing. 461 return; 462 } 463 464 setThunkProperties(CGM, Thunk, ThunkFn, ForVTable, GD); 465 return; 466 } 467 468 CGM.SetLLVMFunctionAttributesForDefinition(GD.getDecl(), ThunkFn); 469 470 if (ThunkFn->isVarArg()) { 471 // Varargs thunks are special; we can't just generate a call because 472 // we can't copy the varargs. Our implementation is rather 473 // expensive/sucky at the moment, so don't generate the thunk unless 474 // we have to. 475 // FIXME: Do something better here; GenerateVarArgsThunk is extremely ugly. 476 if (UseAvailableExternallyLinkage) 477 return; 478 ThunkFn = 479 CodeGenFunction(CGM).GenerateVarArgsThunk(ThunkFn, FnInfo, GD, Thunk); 480 } else { 481 // Normal thunk body generation. 482 CodeGenFunction(CGM).generateThunk(ThunkFn, FnInfo, GD, Thunk); 483 } 484 485 setThunkProperties(CGM, Thunk, ThunkFn, ForVTable, GD); 486 } 487 488 void CodeGenVTables::maybeEmitThunkForVTable(GlobalDecl GD, 489 const ThunkInfo &Thunk) { 490 // If the ABI has key functions, only the TU with the key function should emit 491 // the thunk. However, we can allow inlining of thunks if we emit them with 492 // available_externally linkage together with vtables when optimizations are 493 // enabled. 494 if (CGM.getTarget().getCXXABI().hasKeyFunctions() && 495 !CGM.getCodeGenOpts().OptimizationLevel) 496 return; 497 498 // We can't emit thunks for member functions with incomplete types. 499 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 500 if (!CGM.getTypes().isFuncTypeConvertible( 501 MD->getType()->castAs<FunctionType>())) 502 return; 503 504 emitThunk(GD, Thunk, /*ForVTable=*/true); 505 } 506 507 void CodeGenVTables::EmitThunks(GlobalDecl GD) 508 { 509 const CXXMethodDecl *MD = 510 cast<CXXMethodDecl>(GD.getDecl())->getCanonicalDecl(); 511 512 // We don't need to generate thunks for the base destructor. 513 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base) 514 return; 515 516 const VTableContextBase::ThunkInfoVectorTy *ThunkInfoVector = 517 VTContext->getThunkInfo(GD); 518 519 if (!ThunkInfoVector) 520 return; 521 522 for (const ThunkInfo& Thunk : *ThunkInfoVector) 523 emitThunk(GD, Thunk, /*ForVTable=*/false); 524 } 525 526 llvm::Constant *CodeGenVTables::CreateVTableInitializer( 527 const CXXRecordDecl *RD, const VTableComponent *Components, 528 unsigned NumComponents, const VTableLayout::VTableThunkTy *VTableThunks, 529 unsigned NumVTableThunks, llvm::Constant *RTTI) { 530 SmallVector<llvm::Constant *, 64> Inits; 531 532 llvm::Type *Int8PtrTy = CGM.Int8PtrTy; 533 534 llvm::Type *PtrDiffTy = 535 CGM.getTypes().ConvertType(CGM.getContext().getPointerDiffType()); 536 537 unsigned NextVTableThunkIndex = 0; 538 539 llvm::Constant *PureVirtualFn = nullptr, *DeletedVirtualFn = nullptr; 540 541 for (unsigned I = 0; I != NumComponents; ++I) { 542 VTableComponent Component = Components[I]; 543 544 llvm::Constant *Init = nullptr; 545 546 switch (Component.getKind()) { 547 case VTableComponent::CK_VCallOffset: 548 Init = llvm::ConstantInt::get(PtrDiffTy, 549 Component.getVCallOffset().getQuantity()); 550 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy); 551 break; 552 case VTableComponent::CK_VBaseOffset: 553 Init = llvm::ConstantInt::get(PtrDiffTy, 554 Component.getVBaseOffset().getQuantity()); 555 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy); 556 break; 557 case VTableComponent::CK_OffsetToTop: 558 Init = llvm::ConstantInt::get(PtrDiffTy, 559 Component.getOffsetToTop().getQuantity()); 560 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy); 561 break; 562 case VTableComponent::CK_RTTI: 563 Init = llvm::ConstantExpr::getBitCast(RTTI, Int8PtrTy); 564 break; 565 case VTableComponent::CK_FunctionPointer: 566 case VTableComponent::CK_CompleteDtorPointer: 567 case VTableComponent::CK_DeletingDtorPointer: { 568 GlobalDecl GD; 569 570 // Get the right global decl. 571 switch (Component.getKind()) { 572 default: 573 llvm_unreachable("Unexpected vtable component kind"); 574 case VTableComponent::CK_FunctionPointer: 575 GD = Component.getFunctionDecl(); 576 break; 577 case VTableComponent::CK_CompleteDtorPointer: 578 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Complete); 579 break; 580 case VTableComponent::CK_DeletingDtorPointer: 581 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Deleting); 582 break; 583 } 584 585 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) { 586 // We have a pure virtual member function. 587 if (!PureVirtualFn) { 588 llvm::FunctionType *Ty = 589 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false); 590 StringRef PureCallName = CGM.getCXXABI().GetPureVirtualCallName(); 591 PureVirtualFn = CGM.CreateRuntimeFunction(Ty, PureCallName); 592 PureVirtualFn = llvm::ConstantExpr::getBitCast(PureVirtualFn, 593 CGM.Int8PtrTy); 594 } 595 Init = PureVirtualFn; 596 } else if (cast<CXXMethodDecl>(GD.getDecl())->isDeleted()) { 597 if (!DeletedVirtualFn) { 598 llvm::FunctionType *Ty = 599 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false); 600 StringRef DeletedCallName = 601 CGM.getCXXABI().GetDeletedVirtualCallName(); 602 DeletedVirtualFn = CGM.CreateRuntimeFunction(Ty, DeletedCallName); 603 DeletedVirtualFn = llvm::ConstantExpr::getBitCast(DeletedVirtualFn, 604 CGM.Int8PtrTy); 605 } 606 Init = DeletedVirtualFn; 607 } else { 608 // Check if we should use a thunk. 609 if (NextVTableThunkIndex < NumVTableThunks && 610 VTableThunks[NextVTableThunkIndex].first == I) { 611 const ThunkInfo &Thunk = VTableThunks[NextVTableThunkIndex].second; 612 613 maybeEmitThunkForVTable(GD, Thunk); 614 Init = CGM.GetAddrOfThunk(GD, Thunk); 615 616 NextVTableThunkIndex++; 617 } else { 618 llvm::Type *Ty = CGM.getTypes().GetFunctionTypeForVTable(GD); 619 620 Init = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); 621 } 622 623 Init = llvm::ConstantExpr::getBitCast(Init, Int8PtrTy); 624 } 625 break; 626 } 627 628 case VTableComponent::CK_UnusedFunctionPointer: 629 Init = llvm::ConstantExpr::getNullValue(Int8PtrTy); 630 break; 631 }; 632 633 Inits.push_back(Init); 634 } 635 636 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents); 637 return llvm::ConstantArray::get(ArrayType, Inits); 638 } 639 640 llvm::GlobalVariable * 641 CodeGenVTables::GenerateConstructionVTable(const CXXRecordDecl *RD, 642 const BaseSubobject &Base, 643 bool BaseIsVirtual, 644 llvm::GlobalVariable::LinkageTypes Linkage, 645 VTableAddressPointsMapTy& AddressPoints) { 646 if (CGDebugInfo *DI = CGM.getModuleDebugInfo()) 647 DI->completeClassData(Base.getBase()); 648 649 std::unique_ptr<VTableLayout> VTLayout( 650 getItaniumVTableContext().createConstructionVTableLayout( 651 Base.getBase(), Base.getBaseOffset(), BaseIsVirtual, RD)); 652 653 // Add the address points. 654 AddressPoints = VTLayout->getAddressPoints(); 655 656 // Get the mangled construction vtable name. 657 SmallString<256> OutName; 658 llvm::raw_svector_ostream Out(OutName); 659 cast<ItaniumMangleContext>(CGM.getCXXABI().getMangleContext()) 660 .mangleCXXCtorVTable(RD, Base.getBaseOffset().getQuantity(), 661 Base.getBase(), Out); 662 StringRef Name = OutName.str(); 663 664 llvm::ArrayType *ArrayType = 665 llvm::ArrayType::get(CGM.Int8PtrTy, VTLayout->getNumVTableComponents()); 666 667 // Construction vtable symbols are not part of the Itanium ABI, so we cannot 668 // guarantee that they actually will be available externally. Instead, when 669 // emitting an available_externally VTT, we provide references to an internal 670 // linkage construction vtable. The ABI only requires complete-object vtables 671 // to be the same for all instances of a type, not construction vtables. 672 if (Linkage == llvm::GlobalVariable::AvailableExternallyLinkage) 673 Linkage = llvm::GlobalVariable::InternalLinkage; 674 675 // Create the variable that will hold the construction vtable. 676 llvm::GlobalVariable *VTable = 677 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage); 678 CGM.setGlobalVisibility(VTable, RD); 679 680 // V-tables are always unnamed_addr. 681 VTable->setUnnamedAddr(true); 682 683 llvm::Constant *RTTI = CGM.GetAddrOfRTTIDescriptor( 684 CGM.getContext().getTagDeclType(Base.getBase())); 685 686 // Create and set the initializer. 687 llvm::Constant *Init = CreateVTableInitializer( 688 Base.getBase(), VTLayout->vtable_component_begin(), 689 VTLayout->getNumVTableComponents(), VTLayout->vtable_thunk_begin(), 690 VTLayout->getNumVTableThunks(), RTTI); 691 VTable->setInitializer(Init); 692 693 CGM.EmitVTableBitSetEntries(VTable, *VTLayout.get()); 694 695 return VTable; 696 } 697 698 static bool shouldEmitAvailableExternallyVTable(const CodeGenModule &CGM, 699 const CXXRecordDecl *RD) { 700 return CGM.getCodeGenOpts().OptimizationLevel > 0 && 701 CGM.getCXXABI().canSpeculativelyEmitVTable(RD); 702 } 703 704 /// Compute the required linkage of the v-table for the given class. 705 /// 706 /// Note that we only call this at the end of the translation unit. 707 llvm::GlobalVariable::LinkageTypes 708 CodeGenModule::getVTableLinkage(const CXXRecordDecl *RD) { 709 if (!RD->isExternallyVisible()) 710 return llvm::GlobalVariable::InternalLinkage; 711 712 // We're at the end of the translation unit, so the current key 713 // function is fully correct. 714 const CXXMethodDecl *keyFunction = Context.getCurrentKeyFunction(RD); 715 if (keyFunction && !RD->hasAttr<DLLImportAttr>()) { 716 // If this class has a key function, use that to determine the 717 // linkage of the vtable. 718 const FunctionDecl *def = nullptr; 719 if (keyFunction->hasBody(def)) 720 keyFunction = cast<CXXMethodDecl>(def); 721 722 switch (keyFunction->getTemplateSpecializationKind()) { 723 case TSK_Undeclared: 724 case TSK_ExplicitSpecialization: 725 assert((def || CodeGenOpts.OptimizationLevel > 0) && 726 "Shouldn't query vtable linkage without key function or " 727 "optimizations"); 728 if (!def && CodeGenOpts.OptimizationLevel > 0) 729 return llvm::GlobalVariable::AvailableExternallyLinkage; 730 731 if (keyFunction->isInlined()) 732 return !Context.getLangOpts().AppleKext ? 733 llvm::GlobalVariable::LinkOnceODRLinkage : 734 llvm::Function::InternalLinkage; 735 736 return llvm::GlobalVariable::ExternalLinkage; 737 738 case TSK_ImplicitInstantiation: 739 return !Context.getLangOpts().AppleKext ? 740 llvm::GlobalVariable::LinkOnceODRLinkage : 741 llvm::Function::InternalLinkage; 742 743 case TSK_ExplicitInstantiationDefinition: 744 return !Context.getLangOpts().AppleKext ? 745 llvm::GlobalVariable::WeakODRLinkage : 746 llvm::Function::InternalLinkage; 747 748 case TSK_ExplicitInstantiationDeclaration: 749 llvm_unreachable("Should not have been asked to emit this"); 750 } 751 } 752 753 // -fapple-kext mode does not support weak linkage, so we must use 754 // internal linkage. 755 if (Context.getLangOpts().AppleKext) 756 return llvm::Function::InternalLinkage; 757 758 llvm::GlobalVariable::LinkageTypes DiscardableODRLinkage = 759 llvm::GlobalValue::LinkOnceODRLinkage; 760 llvm::GlobalVariable::LinkageTypes NonDiscardableODRLinkage = 761 llvm::GlobalValue::WeakODRLinkage; 762 if (RD->hasAttr<DLLExportAttr>()) { 763 // Cannot discard exported vtables. 764 DiscardableODRLinkage = NonDiscardableODRLinkage; 765 } else if (RD->hasAttr<DLLImportAttr>()) { 766 // Imported vtables are available externally. 767 DiscardableODRLinkage = llvm::GlobalVariable::AvailableExternallyLinkage; 768 NonDiscardableODRLinkage = llvm::GlobalVariable::AvailableExternallyLinkage; 769 } 770 771 switch (RD->getTemplateSpecializationKind()) { 772 case TSK_Undeclared: 773 case TSK_ExplicitSpecialization: 774 case TSK_ImplicitInstantiation: 775 return DiscardableODRLinkage; 776 777 case TSK_ExplicitInstantiationDeclaration: 778 return shouldEmitAvailableExternallyVTable(*this, RD) 779 ? llvm::GlobalVariable::AvailableExternallyLinkage 780 : llvm::GlobalVariable::ExternalLinkage; 781 782 case TSK_ExplicitInstantiationDefinition: 783 return NonDiscardableODRLinkage; 784 } 785 786 llvm_unreachable("Invalid TemplateSpecializationKind!"); 787 } 788 789 /// This is a callback from Sema to tell us that that a particular v-table is 790 /// required to be emitted in this translation unit. 791 /// 792 /// This is only called for vtables that _must_ be emitted (mainly due to key 793 /// functions). For weak vtables, CodeGen tracks when they are needed and 794 /// emits them as-needed. 795 void CodeGenModule::EmitVTable(CXXRecordDecl *theClass) { 796 VTables.GenerateClassData(theClass); 797 } 798 799 void 800 CodeGenVTables::GenerateClassData(const CXXRecordDecl *RD) { 801 if (CGDebugInfo *DI = CGM.getModuleDebugInfo()) 802 DI->completeClassData(RD); 803 804 if (RD->getNumVBases()) 805 CGM.getCXXABI().emitVirtualInheritanceTables(RD); 806 807 CGM.getCXXABI().emitVTableDefinitions(*this, RD); 808 } 809 810 /// At this point in the translation unit, does it appear that can we 811 /// rely on the vtable being defined elsewhere in the program? 812 /// 813 /// The response is really only definitive when called at the end of 814 /// the translation unit. 815 /// 816 /// The only semantic restriction here is that the object file should 817 /// not contain a v-table definition when that v-table is defined 818 /// strongly elsewhere. Otherwise, we'd just like to avoid emitting 819 /// v-tables when unnecessary. 820 bool CodeGenVTables::isVTableExternal(const CXXRecordDecl *RD) { 821 assert(RD->isDynamicClass() && "Non-dynamic classes have no VTable."); 822 823 // If we have an explicit instantiation declaration (and not a 824 // definition), the v-table is defined elsewhere. 825 TemplateSpecializationKind TSK = RD->getTemplateSpecializationKind(); 826 if (TSK == TSK_ExplicitInstantiationDeclaration) 827 return true; 828 829 // Otherwise, if the class is an instantiated template, the 830 // v-table must be defined here. 831 if (TSK == TSK_ImplicitInstantiation || 832 TSK == TSK_ExplicitInstantiationDefinition) 833 return false; 834 835 // Otherwise, if the class doesn't have a key function (possibly 836 // anymore), the v-table must be defined here. 837 const CXXMethodDecl *keyFunction = CGM.getContext().getCurrentKeyFunction(RD); 838 if (!keyFunction) 839 return false; 840 841 // Otherwise, if we don't have a definition of the key function, the 842 // v-table must be defined somewhere else. 843 return !keyFunction->hasBody(); 844 } 845 846 /// Given that we're currently at the end of the translation unit, and 847 /// we've emitted a reference to the v-table for this class, should 848 /// we define that v-table? 849 static bool shouldEmitVTableAtEndOfTranslationUnit(CodeGenModule &CGM, 850 const CXXRecordDecl *RD) { 851 // If vtable is internal then it has to be done. 852 if (!CGM.getVTables().isVTableExternal(RD)) 853 return true; 854 855 // If it's external then maybe we will need it as available_externally. 856 return shouldEmitAvailableExternallyVTable(CGM, RD); 857 } 858 859 /// Given that at some point we emitted a reference to one or more 860 /// v-tables, and that we are now at the end of the translation unit, 861 /// decide whether we should emit them. 862 void CodeGenModule::EmitDeferredVTables() { 863 #ifndef NDEBUG 864 // Remember the size of DeferredVTables, because we're going to assume 865 // that this entire operation doesn't modify it. 866 size_t savedSize = DeferredVTables.size(); 867 #endif 868 869 for (const CXXRecordDecl *RD : DeferredVTables) 870 if (shouldEmitVTableAtEndOfTranslationUnit(*this, RD)) 871 VTables.GenerateClassData(RD); 872 873 assert(savedSize == DeferredVTables.size() && 874 "deferred extra v-tables during v-table emission?"); 875 DeferredVTables.clear(); 876 } 877 878 bool CodeGenModule::IsCFIBlacklistedRecord(const CXXRecordDecl *RD) { 879 if (RD->hasAttr<UuidAttr>() && 880 getContext().getSanitizerBlacklist().isBlacklistedType("attr:uuid")) 881 return true; 882 883 return getContext().getSanitizerBlacklist().isBlacklistedType( 884 RD->getQualifiedNameAsString()); 885 } 886 887 void CodeGenModule::EmitVTableBitSetEntries(llvm::GlobalVariable *VTable, 888 const VTableLayout &VTLayout) { 889 if (!LangOpts.Sanitize.has(SanitizerKind::CFIVCall) && 890 !LangOpts.Sanitize.has(SanitizerKind::CFINVCall) && 891 !LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) && 892 !LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast)) 893 return; 894 895 CharUnits PointerWidth = 896 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0)); 897 898 typedef std::pair<const CXXRecordDecl *, unsigned> BSEntry; 899 std::vector<BSEntry> BitsetEntries; 900 // Create a bit set entry for each address point. 901 for (auto &&AP : VTLayout.getAddressPoints()) { 902 if (IsCFIBlacklistedRecord(AP.first.getBase())) 903 continue; 904 905 BitsetEntries.push_back(std::make_pair(AP.first.getBase(), AP.second)); 906 } 907 908 // Sort the bit set entries for determinism. 909 std::sort(BitsetEntries.begin(), BitsetEntries.end(), 910 [this](const BSEntry &E1, const BSEntry &E2) { 911 if (&E1 == &E2) 912 return false; 913 914 std::string S1; 915 llvm::raw_string_ostream O1(S1); 916 getCXXABI().getMangleContext().mangleTypeName( 917 QualType(E1.first->getTypeForDecl(), 0), O1); 918 O1.flush(); 919 920 std::string S2; 921 llvm::raw_string_ostream O2(S2); 922 getCXXABI().getMangleContext().mangleTypeName( 923 QualType(E2.first->getTypeForDecl(), 0), O2); 924 O2.flush(); 925 926 if (S1 < S2) 927 return true; 928 if (S1 != S2) 929 return false; 930 931 return E1.second < E2.second; 932 }); 933 934 llvm::NamedMDNode *BitsetsMD = 935 getModule().getOrInsertNamedMetadata("llvm.bitsets"); 936 for (auto BitsetEntry : BitsetEntries) 937 BitsetsMD->addOperand(CreateVTableBitSetEntry( 938 VTable, PointerWidth * BitsetEntry.second, BitsetEntry.first)); 939 } 940