Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDStmtOpenMP.cpp642 OMPBarrierDirective *OMPBarrierDirective::Create(const ASTContext &C, in Create()
645 void *Mem = C.Allocate(sizeof(OMPBarrierDirective)); in Create()
646 OMPBarrierDirective *Dir = new (Mem) OMPBarrierDirective(StartLoc, EndLoc); in Create()
650 OMPBarrierDirective *OMPBarrierDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
652 void *Mem = C.Allocate(sizeof(OMPBarrierDirective)); in CreateEmpty()
653 return new (Mem) OMPBarrierDirective(); in CreateEmpty()
HDStmtProfile.cpp860 void StmtProfiler::VisitOMPBarrierDirective(const OMPBarrierDirective *S) { in VisitOMPBarrierDirective()
HDStmtPrinter.cpp739 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { in VisitOMPBarrierDirective()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtOpenMP.h2101 class OMPBarrierDirective : public OMPExecutableDirective {
2108 OMPBarrierDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPBarrierDirective() function
2115 explicit OMPBarrierDirective() in OMPBarrierDirective() function
2127 static OMPBarrierDirective *
2134 static OMPBarrierDirective *CreateEmpty(const ASTContext &C, EmptyShell);
HDRecursiveASTVisitor.h2827 DEF_TRAVERSE_STMT(OMPBarrierDirective,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td231 def OMPBarrierDirective : StmtNode<OMPExecutableDirective>;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp2323 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
3159 S = OMPBarrierDirective::CreateEmpty(Context, Empty); in ReadStmtFromStream()
HDASTWriterStmt.cpp2292 void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) { in VisitOMPBarrierDirective()
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp238 EmitOMPBarrierDirective(cast<OMPBarrierDirective>(*S)); in EmitStmt()
HDCodeGenFunction.h3148 void EmitOMPBarrierDirective(const OMPBarrierDirective &S);
HDCGStmtOpenMP.cpp3548 void CodeGenFunction::EmitOMPBarrierDirective(const OMPBarrierDirective &S) { in EmitOMPBarrierDirective()
HDCGOpenMPRuntime.cpp6544 isa<OMPBarrierDirective>(S) || isa<OMPTaskyieldDirective>(S)) in getSingleCompoundChild()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDTreeTransform.h8211 TreeTransform<Derived>::TransformOMPBarrierDirective(OMPBarrierDirective *D) { in TransformOMPBarrierDirective()
HDSemaOpenMP.cpp8465 return OMPBarrierDirective::Create(Context, StartLoc, EndLoc); in ActOnOpenMPBarrierDirective()