clang 19.0.0git
Public Member Functions | Static Public Member Functions | Friends | List of all members
clang::OMPDepobjClause Class Referencefinal

This represents implicit clause 'depobj' for the '#pragma omp depobj' directive. More...

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for clang::OMPDepobjClause:
Inheritance graph
[legend]

Public Member Functions

ExprgetDepobj ()
 Returns depobj expression associated with the clause.
 
const ExprgetDepobj () const
 
SourceLocation getLParenLoc () const
 Returns the location of '('.
 
child_range children ()
 
const_child_range children () const
 
child_range used_children ()
 
const_child_range used_children () const
 
- 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 OMPDepobjClauseCreate (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, Expr *Depobj)
 Creates clause.
 
static OMPDepobjClauseCreateEmpty (const ASTContext &C)
 Creates an empty clause.
 
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::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::OMPClause
 OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
 

Detailed Description

This represents implicit clause 'depobj' for the '#pragma omp depobj' directive.

This clause does not exist by itself, it can be only as a part of 'omp depobj' directive. This clause is introduced to keep the original structure of OMPExecutableDirective class and its derivatives and to use the existing infrastructure of clauses with the list of variables.

#pragma omp depobj(a) destroy

In this example directive '#pragma omp depobj' has implicit clause 'depobj' with the depobj 'a'.

Definition at line 4837 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPDepobjClause::children ( )
inline

Definition at line 4890 of file OpenMPClause.h.

Referenced by children().

◆ children() [2/2]

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

Definition at line 4895 of file OpenMPClause.h.

References children().

◆ classof()

static bool clang::OMPDepobjClause::classof ( const OMPClause T)
inlinestatic

Definition at line 4907 of file OpenMPClause.h.

References clang::T.

◆ Create()

OMPDepobjClause * OMPDepobjClause::Create ( const ASTContext C,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc,
Expr Depobj 
)
static

Creates clause.

Parameters
CAST context.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.
Depobjdepobj expression associated with the 'depobj' directive.

Definition at line 1040 of file OpenMPClause.cpp.

References clang::C.

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

◆ CreateEmpty()

OMPDepobjClause * OMPDepobjClause::CreateEmpty ( const ASTContext C)
static

Creates an empty clause.

Parameters
CAST context.

Definition at line 1050 of file OpenMPClause.cpp.

References clang::C.

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

◆ getDepobj() [1/2]

Expr * clang::OMPDepobjClause::getDepobj ( )
inline

Returns depobj expression associated with the clause.

Definition at line 4884 of file OpenMPClause.h.

◆ getDepobj() [2/2]

const Expr * clang::OMPDepobjClause::getDepobj ( ) const
inline

Definition at line 4885 of file OpenMPClause.h.

◆ getLParenLoc()

SourceLocation clang::OMPDepobjClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 4888 of file OpenMPClause.h.

◆ used_children() [1/2]

child_range clang::OMPDepobjClause::used_children ( )
inline

Definition at line 4900 of file OpenMPClause.h.

◆ used_children() [2/2]

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

Definition at line 4903 of file OpenMPClause.h.

Friends And Related Function Documentation

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 4838 of file OpenMPClause.h.


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