clang 22.0.0git
clang::OMPNontemporalClause Class Referencefinal

This represents clause 'nontemporal' in the '#pragma omp ...' directives. More...

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for clang::OMPNontemporalClause:
[legend]

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
Public Member Functions inherited from clang::OMPVarListClause< OMPNontemporalClause >
unsigned varlist_size () const
bool varlist_empty () const
varlist_range varlist ()
varlist_iterator varlist_begin ()
varlist_iterator varlist_end ()
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('.
SourceLocation getLParenLoc () const
 Returns the location of '('.
Public Member Functions inherited from clang::OMPClause
SourceLocation getBeginLoc () const
 Returns the starting location of the clause.
SourceLocation getEndLoc () const
 Returns the ending location of the clause.
void setLocStart (SourceLocation Loc)
 Sets the starting location of the clause.
void setLocEnd (SourceLocation Loc)
 Sets the ending location of the clause.
OpenMPClauseKind getClauseKind () const
 Returns kind of OpenMP clause (private, shared, reduction, etc.).
bool isImplicit () const
child_range children ()
const_child_range children () const
child_range used_children ()
 Get the iterator range for the expressions used in the clauses.
const_child_range used_children () const

Static Public Member Functions

static OMPNontemporalClauseCreate (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< Expr * > VL)
 Creates clause with a list of variables VL.
static OMPNontemporalClauseCreateEmpty (const ASTContext &C, unsigned N)
 Creates an empty clause with the place for 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

Public Types inherited from clang::OMPVarListClause< OMPNontemporalClause >
using varlist_iterator
using varlist_const_iterator
using varlist_range
using varlist_const_range
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>
Protected Member Functions inherited from clang::OMPVarListClause< OMPNontemporalClause >
 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)

Detailed Description

This represents clause 'nontemporal' in the '#pragma omp ...' directives.

#pragma omp simd nontemporal(a)

In this example directive '#pragma omp simd' has clause 'nontemporal' for the variable 'a'.

Definition at line 8342 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPNontemporalClause::children ( )
inline

◆ children() [2/2]

const_child_range clang::OMPNontemporalClause::children ( ) const
inline

Definition at line 8405 of file OpenMPClause.h.

References Children, and children().

◆ classof()

bool clang::OMPNontemporalClause::classof ( const OMPClause * T)
inlinestatic

Definition at line 8427 of file OpenMPClause.h.

References clang::T.

◆ Create()

OMPNontemporalClause * OMPNontemporalClause::Create ( const ASTContext & C,
SourceLocation StartLoc,
SourceLocation LParenLoc,
SourceLocation EndLoc,
ArrayRef< Expr * > VL )
static

Creates clause with a list of variables VL.

Parameters
CAST context.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.
VLList of references to the variables.

Definition at line 1521 of file OpenMPClause.cpp.

References clang::C.

Referenced by clang::SemaOpenMP::ActOnOpenMPNontemporalClause().

◆ CreateEmpty()

OMPNontemporalClause * OMPNontemporalClause::CreateEmpty ( const ASTContext & C,
unsigned N )
static

Creates an empty clause with the place for N variables.

Parameters
CAST context.
NThe number of variables.

Definition at line 1534 of file OpenMPClause.cpp.

References clang::C.

Referenced by clang::OMPClauseReader::readClause().

◆ private_refs() [1/2]

child_range clang::OMPNontemporalClause::private_refs ( )
inline

Definition at line 8410 of file OpenMPClause.h.

Referenced by private_refs().

◆ private_refs() [2/2]

const_child_range clang::OMPNontemporalClause::private_refs ( ) const
inline

Definition at line 8415 of file OpenMPClause.h.

References Children, and private_refs().

◆ setPrivateRefs()

void OMPNontemporalClause::setPrivateRefs ( ArrayRef< Expr * > VL)

Sets the list of references to private copies created in private clauses.

Parameters
VLList of references.

Definition at line 1540 of file OpenMPClause.cpp.

References clang::OMPVarListClause< OMPNontemporalClause >::varlist_end(), and clang::OMPVarListClause< OMPNontemporalClause >::varlist_size().

◆ used_children() [1/2]

child_range clang::OMPNontemporalClause::used_children ( )
inline

Definition at line 8420 of file OpenMPClause.h.

◆ used_children() [2/2]

const_child_range clang::OMPNontemporalClause::used_children ( ) const
inline

Definition at line 8423 of file OpenMPClause.h.

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 8345 of file OpenMPClause.h.

References OMPClauseReader.

Referenced by OMPClauseReader.


The documentation for this class was generated from the following files: