Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmtOpenMP.h1036 class OMPCriticalDirective : public OMPExecutableDirective {
1046 OMPCriticalDirective(const DeclarationNameInfo &Name, SourceLocation StartLoc, in OMPCriticalDirective() function
1054 explicit OMPCriticalDirective() in OMPCriticalDirective() function
1074 static OMPCriticalDirective *
1082 static OMPCriticalDirective *CreateEmpty(const ASTContext &C, EmptyShell);
HDDataRecursiveASTVisitor.h2361 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
HDRecursiveASTVisitor.h2393 DEF_TRAVERSE_STMT(OMPCriticalDirective, {
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp1877 OMPCriticalDirective *OMPCriticalDirective::Create( in Create()
1880 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in Create()
1883 OMPCriticalDirective *Dir = in Create()
1884 new (Mem) OMPCriticalDirective(Name, StartLoc, EndLoc); in Create()
1889 OMPCriticalDirective *OMPCriticalDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1891 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPCriticalDirective), in CreateEmpty()
1894 return new (Mem) OMPCriticalDirective(); in CreateEmpty()
HDStmtProfile.cpp480 void StmtProfiler::VisitOMPCriticalDirective(const OMPCriticalDirective *S) { in VisitOMPCriticalDirective()
HDStmtPrinter.cpp877 void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) { in VisitOMPCriticalDirective()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td194 def OMPCriticalDirective : DStmt<OMPExecutableDirective>;
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp2167 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
2803 S = OMPCriticalDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
HDASTWriterStmt.cpp2016 void ASTStmtWriter::VisitOMPCriticalDirective(OMPCriticalDirective *D) { in VisitOMPCriticalDirective()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmt.cpp202 EmitOMPCriticalDirective(cast<OMPCriticalDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp1429 void CodeGenFunction::EmitOMPCriticalDirective(const OMPCriticalDirective &S) { in EmitOMPCriticalDirective()
HDCodeGenFunction.h2203 void EmitOMPCriticalDirective(const OMPCriticalDirective &S);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDTreeTransform.h6872 DirName = cast<OMPCriticalDirective>(D)->getDirectiveName(); in TransformOMPExecutableDirective()
6977 TreeTransform<Derived>::TransformOMPCriticalDirective(OMPCriticalDirective *D) { in TransformOMPCriticalDirective()
HDSemaOpenMP.cpp3650 return OMPCriticalDirective::Create(Context, DirName, StartLoc, EndLoc, in ActOnOpenMPCriticalDirective()