Home
last modified time | relevance | path

Searched refs:AliasDecl (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCXX.cpp112 GlobalDecl AliasDecl(D, Dtor_Base); in TryEmitBaseDestructorAsAlias() local
117 llvm::GlobalValue::LinkageTypes Linkage = getFunctionLinkage(AliasDecl); in TryEmitBaseDestructorAsAlias()
127 StringRef MangledName = getMangledName(AliasDecl); in TryEmitBaseDestructorAsAlias()
135 llvm::Type *AliasValueType = getTypes().GetFunctionType(AliasDecl); in TryEmitBaseDestructorAsAlias()
202 SetCommonAttributes(AliasDecl, Alias); in TryEmitBaseDestructorAsAlias()
H A DItaniumCXXABI.cpp4264 GlobalDecl AliasDecl; in getCodegenToUse() local
4266 AliasDecl = GlobalDecl(DD, Dtor_Complete); in getCodegenToUse()
4269 AliasDecl = GlobalDecl(CD, Ctor_Complete); in getCodegenToUse()
4271 llvm::GlobalValue::LinkageTypes Linkage = CGM.getFunctionLinkage(AliasDecl); in getCodegenToUse()
4292 GlobalDecl AliasDecl, in emitConstructorDestructorAlias() argument
4294 llvm::GlobalValue::LinkageTypes Linkage = CGM.getFunctionLinkage(AliasDecl); in emitConstructorDestructorAlias()
4296 StringRef MangledName = CGM.getMangledName(AliasDecl); in emitConstructorDestructorAlias()
4321 CGM.SetCommonAttributes(AliasDecl, Alias); in emitConstructorDestructorAlias()
H A DCGDebugInfo.cpp1285 const auto *AliasDecl = cast<TypeAliasTemplateDecl>(TD)->getTemplatedDecl(); in CreateType() local
1286 if (AliasDecl->hasAttr<NoDebugAttr>()) in CreateType()
1307 SourceLocation Loc = AliasDecl->getLocation(); in CreateType()
1310 getDeclContextDescriptor(AliasDecl)); in CreateType()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h1809 AliasDecl, // C++11 alias-declaration. enumerator
2067 case DeclaratorContext::AliasDecl: in mayOmitIdentifier()
2114 case DeclaratorContext::AliasDecl: in mayHaveIdentifier()
2154 case DeclaratorContext::AliasDecl: in mayHaveDecompositionDeclarator()
2217 case DeclaratorContext::AliasDecl: in mayBeFollowedByCXXDirectInit()
2431 case DeclaratorContext::AliasDecl: in isFunctionDeclarationContext()
2467 case DeclaratorContext::AliasDecl: in isExpressionContext()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1075 Function *AliasDecl = Function::Create( in importFunction() local
1078 AliasDecl->takeName(A); in importFunction()
1079 A->replaceAllUsesWith(AliasDecl); in importFunction()
/openbsd-src/gnu/llvm/llvm/tools/llvm-c-test/
H A Decho.cpp1007 goto AliasDecl; in declare_symbols()
1047 AliasDecl: in declare_symbols()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclObjC.cpp1184 ObjCCompatibleAliasDecl *AliasDecl = in ActOnCompatibilityAlias() local
1187 if (!CheckObjCDeclScope(AliasDecl)) in ActOnCompatibilityAlias()
1188 PushOnScopeChains(AliasDecl, TUScope); in ActOnCompatibilityAlias()
1190 return AliasDecl; in ActOnCompatibilityAlias()
H A DSemaType.cpp3614 case DeclaratorContext::AliasDecl: in GetDeclSpecTypeForDeclarator()
3734 case DeclaratorContext::AliasDecl: in GetDeclSpecTypeForDeclarator()
4608 D.getContext() == DeclaratorContext::AliasDecl || in GetFullTypeForDeclarator()
4824 case DeclaratorContext::AliasDecl: in GetFullTypeForDeclarator()
5355 << (D.getContext() == DeclaratorContext::AliasDecl || in GetFullTypeForDeclarator()
5885 case DeclaratorContext::AliasDecl: in GetFullTypeForDeclarator()
6609 D.getContext() != DeclaratorContext::AliasDecl && in ActOnTypeName()
H A DSemaDeclCXX.cpp13280 NamespaceAliasDecl *AliasDecl = in ActOnNamespaceAliasDef() local
13285 AliasDecl->setPreviousDecl(Prev); in ActOnNamespaceAliasDef()
13287 PushOnScopeChains(AliasDecl, S); in ActOnNamespaceAliasDef()
13288 return AliasDecl; in ActOnNamespaceAliasDef()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDecl.cpp2911 case DeclaratorContext::AliasDecl: in getDeclSpecContextFromDeclaratorContext()
6399 else if (D.getContext() == DeclaratorContext::AliasDecl || in ParseDirectDeclarator()
H A DParseDeclCXX.cpp925 : DeclaratorContext::AliasDecl, in ParseAliasDeclarationAfterDeclarator()