clang 22.0.0git
clang::OMPInitClause Class Referencefinal

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

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for clang::OMPInitClause:
[legend]

Public Types

using prefs_iterator = MutableArrayRef<Expr *>::iterator
using const_prefs_iterator = ArrayRef<const Expr *>::iterator
using prefs_range = llvm::iterator_range<prefs_iterator>
using const_prefs_range = llvm::iterator_range<const_prefs_iterator>
Public Types inherited from clang::OMPVarListClause< OMPInitClause >
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>

Public Member Functions

SourceLocation getVarLoc () const
 Returns the location of the interop variable.
ExprgetInteropVar ()
 Returns the interop variable.
const ExprgetInteropVar () const
bool getIsTarget () const
 Returns true is interop-type 'target' is used.
bool getIsTargetSync () const
 Returns true is interop-type 'targetsync' is used.
child_range children ()
const_child_range children () const
child_range used_children ()
const_child_range used_children () const
prefs_range prefs ()
const_prefs_range prefs () const
Public Member Functions inherited from clang::OMPVarListClause< OMPInitClause >
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 OMPInitClauseCreate (const ASTContext &C, Expr *InteropVar, OMPInteropInfo &InteropInfo, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation VarLoc, SourceLocation EndLoc)
 Creates a fully specified clause.
static OMPInitClauseCreateEmpty (const ASTContext &C, unsigned N)
 Creates an empty clause with N expressions.
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< OMPInitClause >
 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 the 'init' clause in '#pragma omp ...' directives.

#pragma omp interop init(target:obj)

Definition at line 8542 of file OpenMPClause.h.

Member Typedef Documentation

◆ const_prefs_iterator

Definition at line 8639 of file OpenMPClause.h.

◆ const_prefs_range

Definition at line 8641 of file OpenMPClause.h.

◆ prefs_iterator

Definition at line 8638 of file OpenMPClause.h.

◆ prefs_range

using clang::OMPInitClause::prefs_range = llvm::iterator_range<prefs_iterator>

Definition at line 8640 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPInitClause::children ( )
inline

◆ children() [2/2]

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

Definition at line 8626 of file OpenMPClause.h.

References Children, and children().

◆ classof()

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

Definition at line 8653 of file OpenMPClause.h.

References clang::T.

◆ Create()

OMPInitClause * OMPInitClause::Create ( const ASTContext & C,
Expr * InteropVar,
OMPInteropInfo & InteropInfo,
SourceLocation StartLoc,
SourceLocation LParenLoc,
SourceLocation VarLoc,
SourceLocation EndLoc )
static

Creates a fully specified clause.

Parameters
CAST context.
InteropVarThe interop variable.
InteropInfoThe interop-type and prefer_type list.
StartLocStarting location of the clause.
LParenLocLocation of '('.
VarLocLocation of the interop variable.
EndLocEnding location of the clause.

Definition at line 1665 of file OpenMPClause.cpp.

References clang::C, clang::OMPInteropInfo::IsTarget, clang::OMPInteropInfo::IsTargetSync, and clang::OMPInteropInfo::PreferTypes.

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

◆ CreateEmpty()

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

Creates an empty clause with N expressions.

Parameters
CAST context.
NNumber of expression items.

Definition at line 1682 of file OpenMPClause.cpp.

References clang::C.

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

◆ getInteropVar() [1/2]

Expr * clang::OMPInitClause::getInteropVar ( )
inline

Returns the interop variable.

Definition at line 8612 of file OpenMPClause.h.

References clang::OMPVarListClause< OMPInitClause >::varlist_begin().

◆ getInteropVar() [2/2]

const Expr * clang::OMPInitClause::getInteropVar ( ) const
inline

◆ getIsTarget()

bool clang::OMPInitClause::getIsTarget ( ) const
inline

Returns true is interop-type 'target' is used.

Definition at line 8616 of file OpenMPClause.h.

◆ getIsTargetSync()

bool clang::OMPInitClause::getIsTargetSync ( ) const
inline

Returns true is interop-type 'targetsync' is used.

Definition at line 8619 of file OpenMPClause.h.

◆ getVarLoc()

SourceLocation clang::OMPInitClause::getVarLoc ( ) const
inline

Returns the location of the interop variable.

Definition at line 8609 of file OpenMPClause.h.

◆ prefs() [1/2]

prefs_range clang::OMPInitClause::prefs ( )
inline

◆ prefs() [2/2]

const_prefs_range clang::OMPInitClause::prefs ( ) const
inline

Definition at line 8648 of file OpenMPClause.h.

References prefs().

◆ used_children() [1/2]

child_range clang::OMPInitClause::used_children ( )
inline

Definition at line 8631 of file OpenMPClause.h.

◆ used_children() [2/2]

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

Definition at line 8634 of file OpenMPClause.h.

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 8545 of file OpenMPClause.h.

References OMPClauseReader.

Referenced by OMPClauseReader.


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