Searched refs:ASTCtx (Results 1 - 17 of 17) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIFunctionClassifier.cpp21 void MPIFunctionClassifier::identifierInit(ASTContext &ASTCtx) { argument
23 initPointToPointIdentifiers(ASTCtx);
24 initCollectiveIdentifiers(ASTCtx);
25 initAdditionalIdentifiers(ASTCtx);
28 void MPIFunctionClassifier::initPointToPointIdentifiers(ASTContext &ASTCtx) { argument
30 IdentInfo_MPI_Send = &ASTCtx.Idents.get("MPI_Send");
35 IdentInfo_MPI_Isend = &ASTCtx.Idents.get("MPI_Isend");
41 IdentInfo_MPI_Ssend = &ASTCtx.Idents.get("MPI_Ssend");
46 IdentInfo_MPI_Issend = &ASTCtx.Idents.get("MPI_Issend");
52 IdentInfo_MPI_Bsend = &ASTCtx
85 initCollectiveIdentifiers(ASTContext &ASTCtx) argument
179 initAdditionalIdentifiers(ASTContext &ASTCtx) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Checkers/
H A DMPIFunctionClassifier.h25 MPIFunctionClassifier(ASTContext &ASTCtx) { identifierInit(ASTCtx); } argument
51 void identifierInit(ASTContext &ASTCtx);
52 void initPointToPointIdentifiers(ASTContext &ASTCtx);
53 void initCollectiveIdentifiers(ASTContext &ASTCtx);
54 void initAdditionalIdentifiers(ASTContext &ASTCtx);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DLoopUnrolling.h38 ProgramStateRef updateLoopStack(const Stmt *LoopStmt, ASTContext &ASTCtx,
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DAnalysisManager.cpp16 AnalysisManager::AnalysisManager(ASTContext &ASTCtx, Preprocessor &PP, argument
24 ASTCtx, Options.UnoptimizedCFG,
41 Ctx(ASTCtx), PP(PP), LangOpts(ASTCtx.getLangOpts()),
H A DLoopWidening.cpp57 ASTContext &ASTCtx = LCtx->getAnalysisDeclContext()->getASTContext(); local
73 *LCtx->getDecl()->getBody(), ASTCtx);
H A DLoopUnrolling.cpp190 ASTContext &ASTCtx = local
195 *S, ASTCtx);
209 bool shouldCompletelyUnroll(const Stmt *LoopStmt, ASTContext &ASTCtx, argument
217 auto Matches = match(forLoopMatcher(), *LoopStmt, ASTCtx);
261 ProgramStateRef updateLoopStack(const Stmt *LoopStmt, ASTContext &ASTCtx, argument
280 if (!shouldCompletelyUnroll(LoopStmt, ASTCtx, Pred, maxStep)) {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DParentMapContext.h70 ASTContext &ASTCtx; member in class:clang::ParentMapContext
80 TraversalKindScope(ASTContext &ASTCtx, llvm::Optional<TraversalKind> ScopeTK) argument
81 : Ctx(ASTCtx.getParentMapContext()) {
H A DOpenMPClause.h8410 void getAsVariantMatchInfo(ASTContext &ASTCtx,
8442 TargetOMPContext(ASTContext &ASTCtx,
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DUncountedLocalVarsChecker.cpp35 auto &ASTCtx = Var->getASTContext(); local
36 auto parent = ASTCtx.getParents(*Var);
40 DynTypedNodeList grandParent = ASTCtx.getParents(*DS);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DProgram.cpp123 auto &ASTCtx = Ctx.getASTContext(); local
127 QualType Ty = ASTCtx.getIncompleteArrayType(ElemTy, ArrayType::Normal, 0);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DParentMapContext.cpp22 ParentMapContext::ParentMapContext(ASTContext &Ctx) : ASTCtx(Ctx) {}
456 Parents = std::make_unique<ParentMap>(ASTCtx);
H A DOpenMPClause.cpp2256 void OMPTraitInfo::getAsVariantMatchInfo(ASTContext &ASTCtx,
2271 Selector.ScoreOrCondition->getIntegerConstantExpr(ASTCtx))
2284 if ((Score = Selector.ScoreOrCondition->getIntegerConstantExpr(ASTCtx)))
2434 ASTContext &ASTCtx, std::function<void(StringRef)> &&DiagUnknownTrait,
2436 : OMPContext(ASTCtx.getLangOpts().OpenMPIsDevice,
2437 ASTCtx.getTargetInfo().getTriple()),
2439 return ASTCtx.getTargetInfo().isValidFeatureName(FeatureName);
2442 ASTCtx.getFunctionFeatureMap(FeatureMap, CurrentFunctionDecl);
H A DItaniumMangle.cpp3707 auto &ASTCtx = getASTContext(); local
3708 unsigned BitWidth = ASTCtx.getTypeSize(ASTCtx.getSizeType());
3711 mangleIntegerLiteral(ASTCtx.getSizeType(), Rows);
3714 mangleIntegerLiteral(ASTCtx.getSizeType(), Columns);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp69 ASTContext &ASTCtx, bool useUnoptimizedCFG, bool addImplicitDtors,
75 : Injector(injector), FunctionBodyFarm(ASTCtx, injector),
68 AnalysisDeclContextManager( ASTContext &ASTCtx, bool useUnoptimizedCFG, bool addImplicitDtors, bool addInitializers, bool addTemporaryDtors, bool addLifetime, bool addLoopExit, bool addScopes, bool synthesizeBodies, bool addStaticInitBranch, bool addCXXNewAllocator, bool addRichCXXConstructors, bool markElidedCXXConstructors, bool addVirtualBaseBranches, CodeInjector *injector) argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h441 ASTContext &ASTCtx, bool useUnoptimizedCFG = false,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseOpenMP.cpp1403 ASTContext &ASTCtx = Actions.getASTContext(); local
1404 OMPTraitInfo &TI = ASTCtx.getNewOMPTraitInfo();
2027 ASTContext &ASTCtx = Actions.getASTContext(); local
2028 OMPTraitInfo &TI = ASTCtx.getNewOMPTraitInfo();
2038 TI.getAsVariantMatchInfo(ASTCtx, VMI);
2046 TargetOMPContext OMPCtx(ASTCtx, std::move(DiagUnknownTrait),
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp1060 DeclContext *CurSemaContext, ASTContext &ASTCtx) {
1118 return ASTCtx.getPointerType(ClassType);
1159 return ASTCtx.getPointerType(ClassType);
1166 return ASTCtx.getPointerType(ClassType);
1058 adjustCVQualifiersForCXXThisWithinLambda( ArrayRef<FunctionScopeInfo *> FunctionScopes, QualType ThisTy, DeclContext *CurSemaContext, ASTContext &ASTCtx) argument

Completed in 207 milliseconds