clang API Documentation
This represents '#pragma omp for' directive. More...
#include <StmtOpenMP.h>
Static Public Member Functions | |
static OMPForDirective * | Create (const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, unsigned CollapsedNum, ArrayRef< OMPClause * > Clauses, Stmt *AssociatedStmt, Expr *IV, Expr *LastIteration, Expr *CalcLastIteration, Expr *PreCond, Expr *Cond, Expr *SeparatedCond, Expr *Init, Expr *Inc, ArrayRef< Expr * > Counters, ArrayRef< Expr * > Updates, ArrayRef< Expr * > Finals) |
Creates directive with a list of Clauses. | |
static OMPForDirective * | CreateEmpty (const ASTContext &C, unsigned NumClauses, unsigned CollapsedNum, EmptyShell) |
Creates an empty directive with the place for NumClauses clauses. | |
static bool | classof (const Stmt *T) |
Friends | |
class | ASTStmtReader |
This represents '#pragma omp for' directive.
#pragma omp for private(a,b) reduction(+:c,d)
In this example directive '#pragma omp for' has clauses 'private' with the variables 'a' and 'b' and 'reduction' with operator '+' and variables 'c' and 'd'.
Definition at line 495 of file StmtOpenMP.h.
static bool clang::OMPForDirective::classof | ( | const Stmt * | T | ) | [inline, static] |
Reimplemented from clang::OMPLoopDirective.
Definition at line 556 of file StmtOpenMP.h.
References clang::Stmt::getStmtClass().
OMPForDirective * OMPForDirective::Create | ( | const ASTContext & | C, |
SourceLocation | StartLoc, | ||
SourceLocation | EndLoc, | ||
unsigned | CollapsedNum, | ||
ArrayRef< OMPClause * > | Clauses, | ||
Stmt * | AssociatedStmt, | ||
Expr * | IV, | ||
Expr * | LastIteration, | ||
Expr * | CalcLastIteration, | ||
Expr * | PreCond, | ||
Expr * | Cond, | ||
Expr * | SeparatedCond, | ||
Expr * | Init, | ||
Expr * | Inc, | ||
ArrayRef< Expr * > | Counters, | ||
ArrayRef< Expr * > | Updates, | ||
ArrayRef< Expr * > | Finals | ||
) | [static] |
Creates directive with a list of Clauses.
C | AST context. |
StartLoc | Starting location of the directive kind. |
EndLoc | Ending Location of the directive. |
CollapsedNum | Number of collapsed loops. |
Clauses | List of clauses. |
AssociatedStmt | Statement, associated with the directive. |
IV | Loop iteration variable for CodeGen. |
LastIteration | Loop last iteration number for CodeGen. |
CalcLastIteration | Calculation of last iteration. |
PreCond | Pre-condition. |
Cond | Condition. |
SeparatedCond | Condition with 1 iteration separated. |
Inc | Loop increment. |
Counters | Loop counters. |
Updates | Expressions for loop counters update for CodeGen. |
Finals | Final loop counter values for GodeGen. |
Definition at line 1527 of file Stmt.cpp.
References clang::ASTContext::Allocate(), clang::OMPLoopDirective::numLoopChildren(), clang::OMPExecutableDirective::setAssociatedStmt(), clang::OMPLoopDirective::setCalcLastIteration(), clang::OMPExecutableDirective::setClauses(), clang::OMPLoopDirective::setCond(), clang::OMPLoopDirective::setCounters(), clang::OMPLoopDirective::setFinals(), clang::OMPLoopDirective::setInc(), clang::OMPLoopDirective::setInit(), clang::OMPLoopDirective::setIterationVariable(), clang::OMPLoopDirective::setLastIteration(), clang::OMPLoopDirective::setPreCond(), and clang::OMPLoopDirective::setUpdates().
Referenced by clang::Sema::ActOnOpenMPForDirective().
OMPForDirective * OMPForDirective::CreateEmpty | ( | const ASTContext & | C, |
unsigned | NumClauses, | ||
unsigned | CollapsedNum, | ||
EmptyShell | |||
) | [static] |
Creates an empty directive with the place for NumClauses clauses.
C | AST context. |
CollapsedNum | Number of collapsed nested loops. |
NumClauses | Number of clauses. |
Definition at line 1555 of file Stmt.cpp.
References clang::ASTContext::Allocate(), and clang::OMPLoopDirective::numLoopChildren().
friend class ASTStmtReader [friend] |
Reimplemented from clang::OMPLoopDirective.
Definition at line 496 of file StmtOpenMP.h.