]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h
MFC r345703:
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / StaticAnalyzer / Checkers / SelectorExtras.h
1 //=== SelectorExtras.h - Helpers for checkers using selectors -----*- C++ -*-=//
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 #ifndef LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_SELECTOREXTRAS_H
11 #define LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_SELECTOREXTRAS_H
12
13 #include "clang/AST/ASTContext.h"
14
15 namespace clang {
16 namespace ento {
17
18 template <typename... IdentifierInfos>
19 static inline Selector getKeywordSelector(ASTContext &Ctx,
20                                           IdentifierInfos *... IIs) {
21   static_assert(sizeof...(IdentifierInfos),
22                 "keyword selectors must have at least one argument");
23   SmallVector<IdentifierInfo *, 10> II({&Ctx.Idents.get(IIs)...});
24
25   return Ctx.Selectors.getSelector(II.size(), &II[0]);
26 }
27
28 template <typename... IdentifierInfos>
29 static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx,
30                                            IdentifierInfos *... IIs) {
31   if (!Sel.isNull())
32     return;
33   Sel = getKeywordSelector(Ctx, IIs...);
34 }
35
36 static inline void lazyInitNullarySelector(Selector &Sel, ASTContext &Ctx,
37                                            const char *Name) {
38   if (!Sel.isNull())
39     return;
40   Sel = GetNullarySelector(Name, Ctx);
41 }
42
43 } // end namespace ento
44 } // end namespace clang
45
46 #endif