Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDStmtOpenMP.h1771 class OMPTargetDirective : public OMPExecutableDirective {
1779 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDirective() function
1788 explicit OMPTargetDirective(unsigned NumClauses) in OMPTargetDirective() function
1802 static OMPTargetDirective *
1812 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
HDDataRecursiveASTVisitor.h2405 DEF_TRAVERSE_STMT(OMPTargetDirective,
HDRecursiveASTVisitor.h2437 DEF_TRAVERSE_STMT(OMPTargetDirective,
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp2215 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create()
2220 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in Create()
2224 OMPTargetDirective *Dir = in Create()
2225 new (Mem) OMPTargetDirective(StartLoc, EndLoc, Clauses.size()); in Create()
2231 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
2234 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPTargetDirective), in CreateEmpty()
2238 return new (Mem) OMPTargetDirective(NumClauses); in CreateEmpty()
HDStmtProfile.cpp532 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
HDStmtPrinter.cpp944 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td206 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
/NextBSD/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp2242 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
2863 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
HDASTWriterStmt.cpp2062 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGStmt.cpp238 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
HDCGStmtOpenMP.cpp2090 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &) { in EmitOMPTargetDirective() argument
HDCodeGenFunction.h2215 void EmitOMPTargetDirective(const OMPTargetDirective &S);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaOpenMP.cpp4511 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTargetDirective()
HDTreeTransform.h7108 TreeTransform<Derived>::TransformOMPTargetDirective(OMPTargetDirective *D) { in TransformOMPTargetDirective()