Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp857 OMPBarrierDirective *OMPBarrierDirective::Create(const ASTContext &C, in Create()
860 return new (C) OMPBarrierDirective(StartLoc, EndLoc); in Create()
863 OMPBarrierDirective *OMPBarrierDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
865 return new (C) OMPBarrierDirective(); in CreateEmpty()
H A DStmtProfile.cpp1095 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
H A DStmtPrinter.cpp876 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td249 def OMPBarrierDirective : StmtNode<OMPExecutableDirective>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h2625 class OMPBarrierDirective : public OMPExecutableDirective {
2633 OMPBarrierDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPBarrierDirective() function
2639 explicit OMPBarrierDirective() in OMPBarrierDirective() function
2651 static OMPBarrierDirective *
2658 static OMPBarrierDirective *CreateEmpty(const ASTContext &C, EmptyShell);
H A DRecursiveASTVisitor.h3143 DEF_TRAVERSE_STMT(OMPBarrierDirective,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2551 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
3703 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2626 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp280 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3878 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
H A DCGStmtOpenMP.cpp5553 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
H A DCGOpenMPRuntime.cpp6241 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h9853 TreeTransform<Derived>::TransformOMPBarrierDirective(OMPBarrierDirective *D) { in TransformOMPBarrierDirective()
H A DSemaOpenMP.cpp11066 return OMPBarrierDirective::Create(getASTContext(), StartLoc, EndLoc); in ActOnOpenMPBarrierDirective()