Home
last modified time | relevance | path

Searched refs:OMPParallelDirective (Results 1 – 15 of 15) sorted by relevance

/external/clang/lib/AST/
DStmtOpenMP.cpp57 OMPParallelDirective *OMPParallelDirective::Create( in Create()
61 llvm::alignTo(sizeof(OMPParallelDirective), llvm::alignOf<OMPClause *>()); in Create()
64 OMPParallelDirective *Dir = in Create()
65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create()
72 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
76 llvm::alignTo(sizeof(OMPParallelDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
79 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp557 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
DStmtPrinter.cpp990 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h231 class OMPParallelDirective : public OMPExecutableDirective {
241 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function
251 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function
270 static OMPParallelDirective *
279 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2463 DEF_TRAVERSE_STMT(OMPParallelDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td198 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp185 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2467 void EmitOMPParallelDirective(const OMPParallelDirective &S);
DCGStmtOpenMP.cpp1226 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
DCGOpenMPRuntime.cpp849 if (auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2540 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
3258 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp2221 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/external/clang/tools/libclang/
DCIndex.cpp1938 void VisitOMPParallelDirective(const OMPParallelDirective *D);
2596 void EnqueueVisitor::VisitOMPParallelDirective(const OMPParallelDirective *D) { in VisitOMPParallelDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3893 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()
DTreeTransform.h7223 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()