Searched refs:AliasDecl (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGCXX.cpp | 117 GlobalDecl AliasDecl(D, Dtor_Base); in TryEmitBaseDestructorAsAlias() local 122 llvm::GlobalValue::LinkageTypes Linkage = getFunctionLinkage(AliasDecl); in TryEmitBaseDestructorAsAlias() 132 StringRef MangledName = getMangledName(AliasDecl); in TryEmitBaseDestructorAsAlias() 139 llvm::Type *AliasValueType = getTypes().GetFunctionType(AliasDecl); in TryEmitBaseDestructorAsAlias() 201 SetCommonAttributes(AliasDecl, Alias); in TryEmitBaseDestructorAsAlias()
|
H A D | ItaniumCXXABI.cpp | 4613 GlobalDecl AliasDecl; in getCodegenToUse() local 4615 AliasDecl = GlobalDecl(DD, Dtor_Complete); in getCodegenToUse() 4618 AliasDecl = GlobalDecl(CD, Ctor_Complete); in getCodegenToUse() 4620 llvm::GlobalValue::LinkageTypes Linkage = CGM.getFunctionLinkage(AliasDecl); in getCodegenToUse() 4641 GlobalDecl AliasDecl, in emitConstructorDestructorAlias() argument 4643 llvm::GlobalValue::LinkageTypes Linkage = CGM.getFunctionLinkage(AliasDecl); in emitConstructorDestructorAlias() 4645 StringRef MangledName = CGM.getMangledName(AliasDecl); in emitConstructorDestructorAlias() 4670 CGM.SetCommonAttributes(AliasDecl, Alias); in emitConstructorDestructorAlias()
|
H A D | CGDebugInfo.cpp | 1382 const auto *AliasDecl = cast<TypeAliasTemplateDecl>(TD)->getTemplatedDecl(); in CreateType() local 1383 if (AliasDecl->hasAttr<NoDebugAttr>()) in CreateType() 1392 SourceLocation Loc = AliasDecl->getLocation(); in CreateType() 1434 getDeclContextDescriptor(AliasDecl), CollectTemplateParams(Args, Unit)); in CreateType() 1451 getDeclContextDescriptor(AliasDecl)); in CreateType()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | DeclSpec.h | 1875 AliasDecl, // C++11 alias-declaration. enumerator 2146 case DeclaratorContext::AliasDecl: in mayOmitIdentifier() 2193 case DeclaratorContext::AliasDecl: in mayHaveIdentifier() 2233 case DeclaratorContext::AliasDecl: in mayHaveDecompositionDeclarator() 2296 case DeclaratorContext::AliasDecl: in mayBeFollowedByCXXDirectInit() 2526 case DeclaratorContext::AliasDecl: in isFunctionDeclarationContext() 2562 case DeclaratorContext::AliasDecl: in isExpressionContext()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | LowerTypeTests.cpp | 1096 Function *AliasDecl = Function::Create( in importFunction() local 1099 AliasDecl->takeName(A); in importFunction() 1100 A->replaceAllUsesWith(AliasDecl); in importFunction()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaType.cpp | 3251 case DeclaratorContext::AliasDecl: in GetDeclSpecTypeForDeclarator() 3371 case DeclaratorContext::AliasDecl: in GetDeclSpecTypeForDeclarator() 4228 D.getContext() == DeclaratorContext::AliasDecl || in GetFullTypeForDeclarator() 4443 case DeclaratorContext::AliasDecl: in GetFullTypeForDeclarator() 5049 << (D.getContext() == DeclaratorContext::AliasDecl || in GetFullTypeForDeclarator() 5613 case DeclaratorContext::AliasDecl: in GetFullTypeForDeclarator() 6357 D.getContext() != DeclaratorContext::AliasDecl && in ActOnTypeName()
|
H A D | SemaDeclObjC.cpp | 1182 ObjCCompatibleAliasDecl *AliasDecl = ObjCCompatibleAliasDecl::Create( in ActOnCompatibilityAlias() local 1185 if (!CheckObjCDeclScope(AliasDecl)) in ActOnCompatibilityAlias() 1186 SemaRef.PushOnScopeChains(AliasDecl, SemaRef.TUScope); in ActOnCompatibilityAlias() 1188 return AliasDecl; in ActOnCompatibilityAlias()
|
H A D | SemaDeclCXX.cpp | 13586 NamespaceAliasDecl *AliasDecl = in ActOnNamespaceAliasDef() local 13591 AliasDecl->setPreviousDecl(Prev); in ActOnNamespaceAliasDef() 13593 PushOnScopeChains(AliasDecl, S); in ActOnNamespaceAliasDef() 13594 return AliasDecl; in ActOnNamespaceAliasDef()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseDecl.cpp | 3247 case DeclaratorContext::AliasDecl: in getDeclSpecContextFromDeclaratorContext() 7029 else if (D.getContext() == DeclaratorContext::AliasDecl || in ParseDirectDeclarator()
|
H A D | ParseDeclCXX.cpp | 980 : DeclaratorContext::AliasDecl, in ParseAliasDeclarationAfterDeclarator()
|