Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtOpenMP.h629 class OMPSimdDirective : public OMPLoopDirective {
638 OMPSimdDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPSimdDirective() function
648 explicit OMPSimdDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPSimdDirective() function
664 static OMPSimdDirective *Create(const ASTContext &C, SourceLocation StartLoc,
677 static OMPSimdDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DDataRecursiveASTVisitor.h2312 DEF_TRAVERSE_STMT(OMPSimdDirective,
DRecursiveASTVisitor.h2342 DEF_TRAVERSE_STMT(OMPSimdDirective,
/external/clang/lib/AST/
DStmt.cpp1624 OMPSimdDirective *
1625 OMPSimdDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
1629 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSimdDirective), in Create()
1634 OMPSimdDirective *Dir = new (Mem) in Create()
1635 OMPSimdDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
1651 OMPSimdDirective *OMPSimdDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
1655 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPSimdDirective), in CreateEmpty()
1660 return new (Mem) OMPSimdDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp445 void StmtProfiler::VisitOMPSimdDirective(const OMPSimdDirective *S) { in VisitOMPSimdDirective()
DStmtPrinter.cpp829 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { in VisitOMPSimdDirective()
/external/clang/include/clang/Basic/
DStmtNodes.td185 def OMPSimdDirective : DStmt<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp700 void CodeGenFunction::EmitOMPSimdDirective(const OMPSimdDirective &S) { in EmitOMPSimdDirective()
DCGStmt.cpp181 EmitOMPSimdDirective(cast<OMPSimdDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2121 void EmitOMPSimdDirective(const OMPSimdDirective &S);
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2102 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
2708 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
DASTWriterStmt.cpp1950 void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) { in VisitOMPSimdDirective()
/external/clang/tools/libclang/
DCIndex.cpp1867 void VisitOMPSimdDirective(const OMPSimdDirective *D);
2415 void EnqueueVisitor::VisitOMPSimdDirective(const OMPSimdDirective *D) { in VisitOMPSimdDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3015 return OMPSimdDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPSimdDirective()
DTreeTransform.h6716 TreeTransform<Derived>::TransformOMPSimdDirective(OMPSimdDirective *D) { in TransformOMPSimdDirective()