Searched refs:OMPSimdDirective (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 82 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()
|
D | StmtProfile.cpp | 561 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
|
D | StmtPrinter.cpp | 995 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
|
/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 789 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,
|
D | RecursiveASTVisitor.h | 2466 DEF_TRAVERSE_STMT(OMPSimdDirective,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 199 def OMPSimdDirective : DStmt<OMPLoopDirective>;
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 188 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
|
D | CodeGenFunction.h | 2468 void EmitOMPSimdDirective(const OMPSimdDirective &S);
|
D | CGStmtOpenMP.cpp | 1589 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2548 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective() 3266 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 2229 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 1939 void VisitOMPSimdDirective(const OMPSimdDirective *D); 2600 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 5503 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()
|
D | TreeTransform.h | 7234 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()
|