Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmtOpenMP.cpp177 OMPForSimdDirective *
178 OMPForSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
183 llvm::alignTo(sizeof(OMPForSimdDirective), llvm::alignOf<OMPClause *>()); in Create()
187 OMPForSimdDirective *Dir = new (Mem) in Create()
188 OMPForSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
217 OMPForSimdDirective *OMPForSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
222 llvm::alignTo(sizeof(OMPForSimdDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
226 return new (Mem) OMPForSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp569 void StmtProfiler::VisitOMPForSimdDirective(const OMPForSimdDirective *S) { in VisitOMPForSimdDirective()
DStmtPrinter.cpp1005 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { in VisitOMPForSimdDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h931 class OMPForSimdDirective : public OMPLoopDirective {
940 OMPForSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForSimdDirective() function
950 explicit OMPForSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForSimdDirective() function
966 static OMPForSimdDirective *
978 static OMPForSimdDirective *CreateEmpty(const ASTContext &C,
DRecursiveASTVisitor.h2472 DEF_TRAVERSE_STMT(OMPForSimdDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td201 def OMPForSimdDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp194 EmitOMPForSimdDirective(cast<OMPForSimdDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2470 void EmitOMPForSimdDirective(const OMPForSimdDirective &S);
DCGStmtOpenMP.cpp2127 void CodeGenFunction::EmitOMPForSimdDirective(const OMPForSimdDirective &S) { in EmitOMPForSimdDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2557 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
3282 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2240 void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/external/clang/tools/libclang/
DCIndex.cpp1941 void VisitOMPForSimdDirective(const OMPForSimdDirective *D);
2608 void EnqueueVisitor::VisitOMPForSimdDirective(const OMPForSimdDirective *D) { in VisitOMPForSimdDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5594 return OMPForSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForSimdDirective()
DTreeTransform.h7256 TreeTransform<Derived>::TransformOMPForSimdDirective(OMPForSimdDirective *D) { in TransformOMPForSimdDirective()