Home
last modified time | relevance | path

Searched refs:OMPCriticalDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp310 OMPCriticalDirective *OMPCriticalDirective::Create( in Create()
315 llvm::alignTo(sizeof(OMPCriticalDirective), alignof(OMPClause *)); in Create()
318 OMPCriticalDirective *Dir = in Create()
319 new (Mem) OMPCriticalDirective(Name, StartLoc, EndLoc, Clauses.size()); in Create()
325 OMPCriticalDirective *OMPCriticalDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
329 llvm::alignTo(sizeof(OMPCriticalDirective), alignof(OMPClause *)); in CreateEmpty()
332 return new (Mem) OMPCriticalDirective(NumClauses); in CreateEmpty()
H A DStmtProfile.cpp805 void StmtProfiler::VisitOMPCriticalDirective(const OMPCriticalDirective *S) { in VisitOMPCriticalDirective()
H A DStmtPrinter.cpp682 void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) { in VisitOMPCriticalDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1478 class OMPCriticalDirective : public OMPExecutableDirective {
1489 OMPCriticalDirective(const DeclarationNameInfo &Name, SourceLocation StartLoc, in OMPCriticalDirective() function
1499 explicit OMPCriticalDirective(unsigned NumClauses) in OMPCriticalDirective() function
1521 static OMPCriticalDirective *
1531 static OMPCriticalDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2663 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td215 def OMPCriticalDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2032 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
2870 S = OMPCriticalDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp1999 void ASTStmtWriter::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp218 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3117 void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
H A DCGStmtOpenMP.cpp2731 void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) { in EmitOMPCriticalDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp102 llvm::StringMap<std::pair<const OMPCriticalDirective *, llvm::APSInt>>;
273 void addCriticalWithHint(const OMPCriticalDirective *D, llvm::APSInt Hint) { in addCriticalWithHint()
276 const std::pair<const OMPCriticalDirective *, llvm::APSInt>
6028 auto *Dir = OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc, in ActOnOpenMPCriticalDirective()
H A DTreeTransform.h7742 DirName = cast<OMPCriticalDirective>(D)->getDirectiveName(); in TransformOMPExecutableDirective()
7847 TreeTransform<Derived>::TransformOMPCriticalDirective(OMPCriticalDirective *D) { in TransformOMPCriticalDirective()