|
clang 23.0.0git
|
This represents clause 'nontemporal' in the '#pragma omp ...' directives. More...
#include "clang/AST/OpenMPClause.h"
Public Member Functions | |
| void | setPrivateRefs (ArrayRef< Expr * > VL) |
| Sets the list of references to private copies created in private clauses. | |
| child_range | children () |
| const_child_range | children () const |
| child_range | private_refs () |
| const_child_range | private_refs () const |
| child_range | used_children () |
| const_child_range | used_children () const |
Static Public Member Functions | |
| static OMPNontemporalClause * | Create (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL) |
| Creates clause with a list of variables VL. | |
| static OMPNontemporalClause * | CreateEmpty (const ASTContext &C, unsigned N) |
| Creates an empty clause with the place for N variables. | |
| static bool | classof (const OMPClause *T) |
Friends | |
| class | OMPClauseReader |
This represents clause 'nontemporal' in the '#pragma omp ...' directives.
In this example directive '#pragma omp simd' has clause 'nontemporal' for the variable 'a'.
Definition at line 8548 of file OpenMPClause.h.
|
inline |
Definition at line 8606 of file OpenMPClause.h.
Referenced by children().
|
inline |
Definition at line 8611 of file OpenMPClause.h.
References children().
Definition at line 8631 of file OpenMPClause.h.
|
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 1634 of file OpenMPClause.cpp.
References clang::C.
Referenced by clang::SemaOpenMP::ActOnOpenMPNontemporalClause().
|
static |
Creates an empty clause with the place for N variables.
| C | AST context. |
| N | The number of variables. |
Definition at line 1647 of file OpenMPClause.cpp.
References clang::C.
Referenced by clang::OMPClauseReader::readClause().
|
inline |
Definition at line 8615 of file OpenMPClause.h.
Referenced by private_refs().
|
inline |
Definition at line 8620 of file OpenMPClause.h.
References private_refs().
Sets the list of references to private copies created in private clauses.
| VL | List of references. |
Definition at line 1653 of file OpenMPClause.cpp.
|
inline |
Definition at line 8624 of file OpenMPClause.h.
|
inline |
Definition at line 8627 of file OpenMPClause.h.
|
friend |
Definition at line 8551 of file OpenMPClause.h.
References OMPClauseReader.
Referenced by OMPClauseReader.