clang 20.0.0git
|
This represents clause 'copyin' 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< OMPCopyinClause > | |
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 OMPCopyinClause * | 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 OMPCopyinClause * | 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< OMPCopyinClause > | |
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 'copyin' in the '#pragma omp ...' directives.
In this example directive '#pragma omp parallel' has clause 'copyin' with the variables 'a' and 'b'.
Definition at line 4653 of file OpenMPClause.h.
using clang::OMPCopyinClause::helper_expr_const_iterator = ArrayRef<const Expr *>::iterator |
Definition at line 4766 of file OpenMPClause.h.
using clang::OMPCopyinClause::helper_expr_const_range = llvm::iterator_range<helper_expr_const_iterator> |
Definition at line 4768 of file OpenMPClause.h.
using clang::OMPCopyinClause::helper_expr_iterator = MutableArrayRef<Expr *>::iterator |
Definition at line 4765 of file OpenMPClause.h.
using clang::OMPCopyinClause::helper_expr_range = llvm::iterator_range<helper_expr_iterator> |
Definition at line 4767 of file OpenMPClause.h.
|
inline |
Definition at line 4795 of file OpenMPClause.h.
|
inline |
Definition at line 4790 of file OpenMPClause.h.
|
inline |
Definition at line 4800 of file OpenMPClause.h.
References clang::OMPVarListClause< OMPCopyinClause >::varlist_begin(), and clang::OMPVarListClause< OMPCopyinClause >::varlist_end().
Referenced by children().
|
inline |
Definition at line 4805 of file OpenMPClause.h.
References children().
Definition at line 4817 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 copyin clause. This list represents sources. |
DstExprs | List of helper expressions for proper generation of assignment operation required for copyin clause. This list represents destinations. |
AssignmentOps | List of helper expressions that represents assignment operation: DstExprs = SrcExprs;
|
Definition at line 679 of file OpenMPClause.cpp.
References clang::C, and clang::OMPVarListClause< T >::setVarRefs().
Referenced by clang::SemaOpenMP::ActOnOpenMPCopyinClause().
|
static |
Creates an empty clause with N variables.
C | AST context. |
N | The number of variables. |
Definition at line 693 of file OpenMPClause.cpp.
References clang::C.
Referenced by clang::OMPClauseReader::readClause().
|
inline |
Definition at line 4785 of file OpenMPClause.h.
|
inline |
Definition at line 4780 of file OpenMPClause.h.
|
inline |
Definition at line 4776 of file OpenMPClause.h.
|
inline |
Definition at line 4771 of file OpenMPClause.h.
|
inline |
Definition at line 4810 of file OpenMPClause.h.
|
inline |
Definition at line 4813 of file OpenMPClause.h.
|
friend |
Definition at line 4669 of file OpenMPClause.h.