Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmtOpenMP.h1534 class OMPFlushDirective : public OMPExecutableDirective {
1542 OMPFlushDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPFlushDirective() function
1551 explicit OMPFlushDirective(unsigned NumClauses) in OMPFlushDirective() function
1565 static OMPFlushDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1575 static OMPFlushDirective *CreateEmpty(const ASTContext &C,
HDDataRecursiveASTVisitor.h2396 DEF_TRAVERSE_STMT(OMPFlushDirective,
HDRecursiveASTVisitor.h2428 DEF_TRAVERSE_STMT(OMPFlushDirective,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp2142 OMPFlushDirective *OMPFlushDirective::Create(const ASTContext &C, in Create()
2146 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in Create()
2149 OMPFlushDirective *Dir = in Create()
2150 new (Mem) OMPFlushDirective(StartLoc, EndLoc, Clauses.size()); in Create()
2155 OMPFlushDirective *OMPFlushDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2158 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPFlushDirective), in CreateEmpty()
2161 return new (Mem) OMPFlushDirective(NumClauses); in CreateEmpty()
HDStmtProfile.cpp520 void StmtProfiler::VisitOMPFlushDirective(const OMPFlushDirective *S) { in VisitOMPFlushDirective()
HDStmtPrinter.cpp929 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { in VisitOMPFlushDirective()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td203 def OMPFlushDirective : DStmt<OMPExecutableDirective>;
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp2217 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
2849 S = OMPFlushDirective::CreateEmpty( in ReadStmtFromStream()
HDASTWriterStmt.cpp2093 void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) { in VisitOMPFlushDirective()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmt.cpp229 EmitOMPFlushDirective(cast<OMPFlushDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp1637 void CodeGenFunction::EmitOMPFlushDirective(const OMPFlushDirective &S) { in EmitOMPFlushDirective()
HDCodeGenFunction.h2212 void EmitOMPFlushDirective(const OMPFlushDirective &S);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp3799 return OMPFlushDirective::Create(Context, StartLoc, EndLoc, Clauses); in ActOnOpenMPFlushDirective()
HDTreeTransform.h7075 TreeTransform<Derived>::TransformOMPFlushDirective(OMPFlushDirective *D) { in TransformOMPFlushDirective()