Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp82 OMPSimdDirective *
83 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
88 llvm::alignTo(sizeof(OMPSimdDirective), llvm::alignOf<OMPClause *>()); in Create()
92 OMPSimdDirective *Dir = new (Mem) in Create()
93 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
112 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
117 llvm::alignTo(sizeof(OMPSimdDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
121 return new (Mem) OMPSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp561 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
DStmtPrinter.cpp995 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h789 class OMPSimdDirective : public OMPLoopDirective {
798 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function
808 explicit OMPSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPSimdDirective() function
824 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
837 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DRecursiveASTVisitor.h2466 DEF_TRAVERSE_STMT(OMPSimdDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td199 def OMPSimdDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp188 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2468 void EmitOMPSimdDirective(const OMPSimdDirective &S);
DCGStmtOpenMP.cpp1589 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2548 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
3266 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp2229 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
/external/clang/tools/libclang/
DCIndex.cpp1939 void VisitOMPSimdDirective(const OMPSimdDirective *D);
2600 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5503 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()
DTreeTransform.h7234 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()