• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/

Lines Matching refs:GD

1582       GlobalDecl GD = DD ? GlobalDecl(DD, Dtor_Deleting) : GlobalDecl(Method);
1584 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(GD);
1599 .getVirtualFunctionPrologueThisAdjustment(GD)
3269 void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit,
3275 const auto *FD = cast<FunctionDecl>(GD.getDecl());
3279 LinkageName = CGM.getMangledName(GD);
3363 llvm::DISubprogram *CGDebugInfo::getFunctionFwdDeclOrStub(GlobalDecl GD,
3369 SourceLocation Loc = GD.getDecl()->getLocation();
3373 collectFunctionDeclProps(GD, Unit, Name, LinkageName, DContext, TParamsArray,
3375 auto *FD = cast<FunctionDecl>(GD.getDecl());
3395 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags,
3401 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags,
3410 llvm::DISubprogram *CGDebugInfo::getFunctionForwardDeclaration(GlobalDecl GD) {
3411 return getFunctionFwdDeclOrStub(GD, /* Stub = */ false);
3414 llvm::DISubprogram *CGDebugInfo::getFunctionStub(GlobalDecl GD) {
3415 return getFunctionFwdDeclOrStub(GD, /* Stub = */ true);
3611 void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, SourceLocation Loc,
3621 const Decl *D = GD.getDecl();
3643 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
3649 GD.getDynamicInitKind() != DynamicInitKind::NoStub) {
3651 Name = getDynamicInitializerName(cast<VarDecl>(D), GD.getDynamicInitKind(),
3710 void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
3715 const Decl *D = GD.getDecl();
3736 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext,
3800 void CGDebugInfo::EmitInlineFunctionStart(CGBuilderTy &Builder, GlobalDecl GD) {
3801 const auto *FD = cast<FunctionDecl>(GD.getDecl());
3808 SP = getFunctionStub(GD);