clang  20.0.0git
Public Member Functions | Friends | List of all members
clang::OMPHoldsClause Class Referencefinal

This represents the 'holds' clause in the '#pragma omp assume' directive. More...

#include "clang/AST/OpenMPClause.h"

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

Public Member Functions

 OMPHoldsClause (Expr *E, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'holds' clause. More...
 
 OMPHoldsClause ()
 Build an empty clause. More...
 
ExprgetExpr () const
 
void setExpr (Expr *E)
 
- Public Member Functions inherited from clang::OMPOneStmtClause< llvm::omp::OMPC_holds, OMPClause >
 OMPOneStmtClause (Stmt *S, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 
 OMPOneStmtClause ()
 
T * getStmtAs () const
 Return the associated statement, potentially casted to T. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
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. More...
 
SourceLocation getEndLoc () const
 Returns the ending location of the clause. More...
 
void setLocStart (SourceLocation Loc)
 Sets the starting location of the clause. More...
 
void setLocEnd (SourceLocation Loc)
 Sets the ending location of the clause. More...
 
OpenMPClauseKind getClauseKind () const
 Returns kind of OpenMP clause (private, shared, reduction, etc.). More...
 
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. More...
 
const_child_range used_children () const
 

Friends

class OMPClauseReader
 

Additional Inherited Members

- Public Types inherited from clang::OMPOneStmtClause< llvm::omp::OMPC_holds, 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 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 inherited from clang::OMPOneStmtClause< llvm::omp::OMPC_holds, OMPClause >
static bool classof (const OMPClause *T)
 
- Static Public Member Functions inherited from clang::OMPClause
static bool classof (const OMPClause *)
 
- Protected Member Functions inherited from clang::OMPOneStmtClause< llvm::omp::OMPC_holds, OMPClause >
void setStmt (Stmt *S)
 
- Protected Member Functions inherited from clang::OMPClause
 OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
 

Detailed Description

This represents the 'holds' clause in the '#pragma omp assume' directive.

#pragma omp assume holds(<expr>)

In this example directive '#pragma omp assume' has a 'holds' clause.

Definition at line 2169 of file OpenMPClause.h.

Constructor & Destructor Documentation

◆ OMPHoldsClause() [1/2]

clang::OMPHoldsClause::OMPHoldsClause ( Expr E,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'holds' clause.

Parameters
StartLocStarting location of the clause.
EndLocEnding location of the clause.

Definition at line 2178 of file OpenMPClause.h.

◆ OMPHoldsClause() [2/2]

clang::OMPHoldsClause::OMPHoldsClause ( )
inline

Build an empty clause.

Definition at line 2183 of file OpenMPClause.h.

Member Function Documentation

◆ getExpr()

Expr* clang::OMPHoldsClause::getExpr ( ) const
inline

Definition at line 2185 of file OpenMPClause.h.

◆ setExpr()

void clang::OMPHoldsClause::setExpr ( Expr E)
inline

Friends And Related Function Documentation

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 2171 of file OpenMPClause.h.


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