clang API Documentation
This represents clause 'shared' in the '#pragma omp ...' directives. More...
#include <OpenMPClause.h>
Public Member Functions | |
StmtRange | children () |
Static Public Member Functions | |
static OMPSharedClause * | Create (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL) |
Creates clause with a list of variables VL. | |
static OMPSharedClause * | CreateEmpty (const ASTContext &C, unsigned N) |
Creates an empty clause with N variables. | |
static bool | classof (const OMPClause *T) |
This represents clause 'shared' in the '#pragma omp ...' directives.
#pragma omp parallel shared(a,b)
In this example directive '#pragma omp parallel' has clause 'shared' with the variables 'a' and 'b'.
Definition at line 1200 of file OpenMPClause.h.
StmtRange clang::OMPSharedClause::children | ( | ) | [inline] |
Reimplemented from clang::OMPClause.
Definition at line 1241 of file OpenMPClause.h.
References clang::OMPVarListClause< OMPSharedClause >::varlist_begin(), and clang::OMPVarListClause< OMPSharedClause >::varlist_end().
static bool clang::OMPSharedClause::classof | ( | const OMPClause * | T | ) | [inline, static] |
Reimplemented from clang::OMPClause.
Definition at line 1246 of file OpenMPClause.h.
References clang::OMPClause::getClauseKind().
OMPSharedClause * OMPSharedClause::Create | ( | const ASTContext & | C, |
SourceLocation | StartLoc, | ||
SourceLocation | LParenLoc, | ||
SourceLocation | EndLoc, | ||
ArrayRef< Expr * > | VL | ||
) | [static] |
Creates clause with a list of variables VL.
C | AST context. |
StartLoc | Starting location of the clause. |
LParenLoc | Location of '('. |
EndLoc | Ending location of the clause. |
VL | List of references to the variables. |
Definition at line 1266 of file Stmt.cpp.
References clang::ASTContext::Allocate(), and clang::OMPVarListClause< T >::setVarRefs().
Referenced by clang::Sema::ActOnOpenMPSharedClause().
OMPSharedClause * OMPSharedClause::CreateEmpty | ( | const ASTContext & | C, |
unsigned | N | ||
) | [static] |
Creates an empty clause with N variables.
C | AST context. |
N | The number of variables. |
Definition at line 1280 of file Stmt.cpp.
References clang::ASTContext::Allocate().
Referenced by clang::OMPClauseReader::readClause().