Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp1274 OMPTargetSimdDirective *
1275 OMPTargetSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
1280 llvm::alignTo(sizeof(OMPTargetSimdDirective), alignof(OMPClause *)); in Create()
1284 OMPTargetSimdDirective *Dir = new (Mem) in Create()
1285 OMPTargetSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
1304 OMPTargetSimdDirective *
1305 OMPTargetSimdDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
1308 llvm::alignTo(sizeof(OMPTargetSimdDirective), alignof(OMPClause *)); in CreateEmpty()
1312 return new (Mem) OMPTargetSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp949 const OMPTargetSimdDirective *S) { in VisitOMPTargetSimdDirective()
H A DStmtPrinter.cpp847 void StmtPrinter::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *Node) { in VisitOMPTargetSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h3384 class OMPTargetSimdDirective final : public OMPLoopDirective {
3394 OMPTargetSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetSimdDirective() function
3405 explicit OMPTargetSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPTargetSimdDirective() function
3421 static OMPTargetSimdDirective *
3432 static OMPTargetSimdDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2752 DEF_TRAVERSE_STMT(OMPTargetSimdDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td244 def OMPTargetSimdDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2218 void ASTStmtReader::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) { in VisitOMPTargetSimdDirective()
3044 S = OMPTargetSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2204 void ASTStmtWriter::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) { in VisitOMPTargetSimdDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.h3152 void EmitOMPTargetSimdDirective(const OMPTargetSimdDirective &S);
3200 const OMPTargetSimdDirective &S);
H A DCGStmt.cpp308 EmitOMPTargetSimdDirective(cast<OMPTargetSimdDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp2189 CodeGenModule &CGM, StringRef ParentName, const OMPTargetSimdDirective &S) { in EmitOMPTargetSimdDeviceFunction()
2203 const OMPTargetSimdDirective &S) { in EmitOMPTargetSimdDirective()
H A DCGOpenMPRuntime.cpp8572 CGM, ParentName, cast<OMPTargetSimdDirective>(E)); in scanForTargetRegionsFunctions()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h8166 OMPTargetSimdDirective *D) { in TransformOMPTargetSimdDirective()
H A DSemaOpenMP.cpp7742 return OMPTargetSimdDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPTargetSimdDirective()