Home
last modified time | relevance | path

Searched refs:OMPForSimdDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp171 OMPForSimdDirective *
172 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
177 llvm::alignTo(sizeof(OMPForSimdDirective), alignof(OMPClause *)); in Create()
181 OMPForSimdDirective *Dir = new (Mem) in Create()
182 OMPForSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
209 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
214 llvm::alignTo(sizeof(OMPForSimdDirective), alignof(OMPClause *)); in CreateEmpty()
218 return new (Mem) OMPForSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp785 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
H A DStmtPrinter.cpp657 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1181 class OMPForSimdDirective : public OMPLoopDirective {
1190 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
1200 explicit OMPForSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForSimdDirective() function
1216 static OMPForSimdDirective *
1228 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2648 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td210 def OMPForSimdDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2002 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
2846 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1966 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp203 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3112 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
H A DCGStmtOpenMP.cpp2490 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7792 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()
H A DSemaOpenMP.cpp5875 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()