clang 20.0.0git
|
This represents clause 'copyprivate' in the '#pragma omp ...' directives. More...
#include "clang/AST/OpenMPClause.h"
Public Types | |
using | helper_expr_iterator = MutableArrayRef< Expr * >::iterator |
using | helper_expr_const_iterator = ArrayRef< const Expr * >::iterator |
using | helper_expr_range = llvm::iterator_range< helper_expr_iterator > |
using | helper_expr_const_range = llvm::iterator_range< helper_expr_const_iterator > |
Public Types inherited from clang::OMPVarListClause< OMPCopyprivateClause > | |
using | varlist_iterator = MutableArrayRef< Expr * >::iterator |
using | varlist_const_iterator = ArrayRef< const Expr * >::iterator |
using | varlist_range = llvm::iterator_range< varlist_iterator > |
using | varlist_const_range = llvm::iterator_range< varlist_const_iterator > |
Public Types inherited from clang::OMPClause | |
using | child_iterator = StmtIterator |
using | const_child_iterator = ConstStmtIterator |
using | child_range = llvm::iterator_range< child_iterator > |
using | const_child_range = llvm::iterator_range< const_child_iterator > |
Static Public Member Functions | |
static OMPCopyprivateClause * | Create (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL, ArrayRef< Expr * > SrcExprs, ArrayRef< Expr * > DstExprs, ArrayRef< Expr * > AssignmentOps) |
Creates clause with a list of variables VL. | |
static OMPCopyprivateClause * | CreateEmpty (const ASTContext &C, unsigned N) |
Creates an empty clause with N variables. | |
static bool | classof (const OMPClause *T) |
Static Public Member Functions inherited from clang::OMPClause | |
static bool | classof (const OMPClause *) |
Friends | |
class | OMPClauseReader |
Additional Inherited Members | |
Protected Member Functions inherited from clang::OMPVarListClause< OMPCopyprivateClause > | |
OMPVarListClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N) | |
Build a clause with N variables. | |
MutableArrayRef< Expr * > | getVarRefs () |
Fetches list of variables associated with this clause. | |
void | setVarRefs (ArrayRef< Expr * > VL) |
Sets the list of variables for this clause. | |
Protected Member Functions inherited from clang::OMPClause | |
OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc) | |
This represents clause 'copyprivate' in the '#pragma omp ...' directives.
In this example directive '#pragma omp single' has clause 'copyprivate' with the variables 'a' and 'b'.
Definition at line 4830 of file OpenMPClause.h.
using clang::OMPCopyprivateClause::helper_expr_const_iterator = ArrayRef<const Expr *>::iterator |
Definition at line 4930 of file OpenMPClause.h.
using clang::OMPCopyprivateClause::helper_expr_const_range = llvm::iterator_range<helper_expr_const_iterator> |
Definition at line 4932 of file OpenMPClause.h.
using clang::OMPCopyprivateClause::helper_expr_iterator = MutableArrayRef<Expr *>::iterator |
Definition at line 4929 of file OpenMPClause.h.
using clang::OMPCopyprivateClause::helper_expr_range = llvm::iterator_range<helper_expr_iterator> |
Definition at line 4931 of file OpenMPClause.h.
|
inline |
Definition at line 4959 of file OpenMPClause.h.
|
inline |
Definition at line 4954 of file OpenMPClause.h.
|
inline |
Definition at line 4964 of file OpenMPClause.h.
References clang::OMPVarListClause< OMPCopyprivateClause >::varlist_begin(), and clang::OMPVarListClause< OMPCopyprivateClause >::varlist_end().
Referenced by children().
|
inline |
Definition at line 4969 of file OpenMPClause.h.
References children().
Definition at line 4981 of file OpenMPClause.h.
References clang::T.
|
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. |
SrcExprs | List of helper expressions for proper generation of assignment operation required for copyprivate clause. This list represents sources. |
DstExprs | List of helper expressions for proper generation of assignment operation required for copyprivate clause. This list represents destinations. |
AssignmentOps | List of helper expressions that represents assignment operation: DstExprs = SrcExprs;
|
Definition at line 720 of file OpenMPClause.cpp.
References clang::C, and clang::OMPVarListClause< T >::setVarRefs().
Referenced by clang::SemaOpenMP::ActOnOpenMPCopyprivateClause().
|
static |
Creates an empty clause with N variables.
C | AST context. |
N | The number of variables. |
Definition at line 734 of file OpenMPClause.cpp.
References clang::C.
Referenced by clang::OMPClauseReader::readClause().
|
inline |
Definition at line 4949 of file OpenMPClause.h.
|
inline |
Definition at line 4944 of file OpenMPClause.h.
|
inline |
Definition at line 4940 of file OpenMPClause.h.
|
inline |
Definition at line 4935 of file OpenMPClause.h.
|
inline |
Definition at line 4974 of file OpenMPClause.h.
|
inline |
Definition at line 4977 of file OpenMPClause.h.
|
friend |
Definition at line 4833 of file OpenMPClause.h.