Lines Matching defs:GD

2069       GlobalDecl GD = DD ? GlobalDecl(DD, Dtor_Deleting) : GlobalDecl(Method);
2071 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(GD);
2086 .getVirtualFunctionPrologueThisAdjustment(GD)
2296 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) {
2297 V = CGM.GetAddrOfMSGuidDecl(GD).getPointer();
3987 void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
3993 const auto *FD = cast<FunctionDecl>(GD.getCanonicalDecl().getDecl());
3997 LinkageName = CGM.getMangledName(GD);
4089 llvm::DISubprogram *CGDebugInfo::getFunctionFwdDeclOrStub(GlobalDecl GD,
4095 SourceLocation Loc = GD.getDecl()->getLocation();
4099 collectFunctionDeclProps(GD, Unit, Name, LinkageName, DContext, TParamsArray,
4101 auto *FD = cast<FunctionDecl>(GD.getDecl());
4121 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags,
4127 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags,
4136 llvm::DISubprogram *CGDebugInfo::getFunctionForwardDeclaration(GlobalDecl GD) {
4137 return getFunctionFwdDeclOrStub(GD, /* Stub = */ false);
4140 llvm::DISubprogram *CGDebugInfo::getFunctionStub(GlobalDecl GD) {
4141 return getFunctionFwdDeclOrStub(GD, /* Stub = */ true);
4366 void CGDebugInfo::emitFunctionStart(GlobalDecl GD, SourceLocation Loc,
4374 const Decl *D = GD.getDecl();
4396 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
4402 GD.getDynamicInitKind() != DynamicInitKind::NoStub) {
4404 Name = getDynamicInitializerName(cast<VarDecl>(D), GD.getDynamicInitKind(),
4418 GD.getDynamicInitKind() != DynamicInitKind::NoStub) &&
4475 void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
4480 const Decl *D = GD.getDecl();
4496 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
4572 void CGDebugInfo::EmitInlineFunctionStart(CGBuilderTy &Builder, GlobalDecl GD) {
4573 const auto *FD = cast<FunctionDecl>(GD.getDecl());
4580 SP = getFunctionStub(GD);
5823 const GlobalDecl GD) {
5830 const auto *D = cast<ValueDecl>(GD.getDecl());
5860 ImportedDeclCache[GD.getCanonicalDecl().getDecl()].reset(ImportDI);