Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp774 OMPTargetDataDirective *OMPTargetDataDirective::Create( in Create()
778 llvm::alignTo(sizeof(OMPTargetDataDirective), alignof(OMPClause *)) + in Create()
780 OMPTargetDataDirective *Dir = in Create()
781 new (Mem) OMPTargetDataDirective(StartLoc, EndLoc, Clauses.size()); in Create()
787 OMPTargetDataDirective *OMPTargetDataDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
791 llvm::alignTo(sizeof(OMPTargetDataDirective), alignof(OMPClause *)) + in CreateEmpty()
793 return new (Mem) OMPTargetDataDirective(N); in CreateEmpty()
H A DStmtProfile.cpp863 void StmtProfiler::VisitOMPTargetDataDirective(const OMPTargetDataDirective *S) { in VisitOMPTargetDataDirective()
H A DStmtPrinter.cpp754 void StmtPrinter::VisitOMPTargetDataDirective(OMPTargetDataDirective *Node) { in VisitOMPTargetDataDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h2346 class OMPTargetDataDirective : public OMPExecutableDirective {
2354 OMPTargetDataDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDataDirective() function
2364 explicit OMPTargetDataDirective(unsigned NumClauses) in OMPTargetDataDirective() function
2378 static OMPTargetDataDirective *
2387 static OMPTargetDataDirective *CreateEmpty(const ASTContext &C, unsigned N,
H A DRecursiveASTVisitor.h2710 DEF_TRAVERSE_STMT(OMPTargetDataDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td228 def OMPTargetDataDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2124 void ASTStmtReader::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) { in VisitOMPTargetDataDirective()
2938 S = OMPTargetDataDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2056 void ASTStmtWriter::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) { in VisitOMPTargetDataDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp266 EmitOMPTargetDataDirective(cast<OMPTargetDataDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3130 void EmitOMPTargetDataDirective(const OMPTargetDataDirective &S);
H A DCGStmtOpenMP.cpp4595 const OMPTargetDataDirective &S) { in EmitOMPTargetDataDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7989 OMPTargetDataDirective *D) { in TransformOMPTargetDataDirective()
H A DSemaOpenMP.cpp7152 return OMPTargetDataDirective::Create(Context, StartLoc, EndLoc, Clauses, in ActOnOpenMPTargetDataDirective()