Searched refs:OMPSimdDirective (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp188 OMPSimdDirective *
189 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc,
193 unsigned Size = llvm::alignTo(sizeof(OMPSimdDirective), alignof(OMPClause *));
197 OMPSimdDirective *Dir = new (Mem)
198 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size());
220 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C,
224 unsigned Size = llvm::alignTo(sizeof(OMPSimdDirective), alignof(OMPClause *));
228 return new (Mem) OMPSimdDirective(CollapsedNum, NumClauses);
H A DStmtProfile.cpp799 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) {
H A DStmtPrinter.cpp661 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1194 class OMPSimdDirective : public OMPLoopDirective { class in namespace:clang
1203 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, function in class:clang::OMPSimdDirective
1213 explicit OMPSimdDirective(unsigned CollapsedNum, unsigned NumClauses) function in class:clang::OMPSimdDirective
1229 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1242 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2783 DEF_TRAVERSE_STMT(OMPSimdDirective,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2236 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) {
3079 S = OMPSimdDirective::CreateEmpty(Context, NumClauses,
H A DASTWriterStmt.cpp2139 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp196 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S));
H A DCodeGenFunction.h3134 void EmitOMPSimdDirective(const OMPSimdDirective &S);
H A DCGStmtOpenMP.cpp2033 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8058 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) {
H A DSemaOpenMP.cpp8055 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount,

Completed in 490 milliseconds