Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp688 OMPTargetDirective *OMPTargetDirective::Create(const ASTContext &C, in Create()
694 llvm::alignTo(sizeof(OMPTargetDirective), llvm::alignOf<OMPClause *>()); in Create()
697 OMPTargetDirective *Dir = in Create()
698 new (Mem) OMPTargetDirective(StartLoc, EndLoc, Clauses.size()); in Create()
704 OMPTargetDirective *OMPTargetDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
708 llvm::alignTo(sizeof(OMPTargetDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
711 return new (Mem) OMPTargetDirective(NumClauses); in CreateEmpty()
DStmtProfile.cpp641 void StmtProfiler::VisitOMPTargetDirective(const OMPTargetDirective *S) { in VisitOMPTargetDirective()
DStmtPrinter.cpp1098 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { in VisitOMPTargetDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h2016 class OMPTargetDirective : public OMPExecutableDirective {
2024 OMPTargetDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPTargetDirective() function
2033 explicit OMPTargetDirective(unsigned NumClauses) in OMPTargetDirective() function
2047 static OMPTargetDirective *
2057 static OMPTargetDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2531 DEF_TRAVERSE_STMT(OMPTargetDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td218 def OMPTargetDirective : DStmt<OMPExecutableDirective>;
/external/clang/lib/CodeGen/
DCodeGenFunction.h2487 void EmitOMPTargetDirective(const OMPTargetDirective &S);
2516 const OMPTargetDirective &S,
DCGStmt.cpp245 EmitOMPTargetDirective(cast<OMPTargetDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp3245 CodeGenModule &CGM, const OMPTargetDirective &S, StringRef ParentName, in EmitOMPTargetDirectiveOutlinedFunction()
3264 void CodeGenFunction::EmitOMPTargetDirective(const OMPTargetDirective &S) { in EmitOMPTargetDirective()
DCGOpenMPRuntime.cpp5898 bool isTargetDirective = isa<OMPTargetDirective>(S); in scanForTargetRegionsFunctions()
5918 CGM, cast<OMPTargetDirective>(*E), ParentName, in scanForTargetRegionsFunctions()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2669 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
3368 S = OMPTargetDirective::CreateEmpty( in ReadStmtFromStream()
DASTWriterStmt.cpp2323 void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) { in VisitOMPTargetDirective()
/external/clang/tools/libclang/
DCIndex.cpp1961 void VisitOMPTargetDirective(const OMPTargetDirective *D);
2682 void EnqueueVisitor::VisitOMPTargetDirective(const OMPTargetDirective *D) { in VisitOMPTargetDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp6747 return OMPTargetDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt); in ActOnOpenMPTargetDirective()
DTreeTransform.h7442 TreeTransform<Derived>::TransformOMPTargetDirective(OMPTargetDirective *D) { in TransformOMPTargetDirective()