clang 19.0.0git
Public Member Functions | Static Public Member Functions | Friends | List of all members
clang::OMPHintClause Class Reference

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

#include "clang/AST/OpenMPClause.h"

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

Public Member Functions

 OMPHintClause (Expr *Hint, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'hint' clause with expression Hint.
 
 OMPHintClause ()
 Build an empty clause.
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('.
 
SourceLocation getLParenLoc () const
 Returns the location of '('.
 
ExprgetHint () const
 Returns number of threads.
 
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 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 'hint' clause in the '#pragma omp ...' directive.

#pragma omp critical (name) hint(6)

In this example directive '#pragma omp critical' has name 'name' and clause 'hint' with argument '6'.

Definition at line 6584 of file OpenMPClause.h.

Constructor & Destructor Documentation

◆ OMPHintClause() [1/2]

clang::OMPHintClause::OMPHintClause ( Expr Hint,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'hint' clause with expression Hint.

Parameters
HintHint expression.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.

Definition at line 6603 of file OpenMPClause.h.

◆ OMPHintClause() [2/2]

clang::OMPHintClause::OMPHintClause ( )
inline

Build an empty clause.

Definition at line 6609 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPHintClause::children ( )
inline

Definition at line 6621 of file OpenMPClause.h.

◆ children() [2/2]

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

Definition at line 6623 of file OpenMPClause.h.

◆ classof()

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

Definition at line 6634 of file OpenMPClause.h.

References clang::T.

◆ getHint()

Expr * clang::OMPHintClause::getHint ( ) const
inline

Returns number of threads.

Definition at line 6619 of file OpenMPClause.h.

◆ getLParenLoc()

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

Returns the location of '('.

Definition at line 6616 of file OpenMPClause.h.

◆ setLParenLoc()

void clang::OMPHintClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 6613 of file OpenMPClause.h.

◆ used_children() [1/2]

child_range clang::OMPHintClause::used_children ( )
inline

Definition at line 6627 of file OpenMPClause.h.

◆ used_children() [2/2]

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

Definition at line 6630 of file OpenMPClause.h.

Friends And Related Function Documentation

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 6585 of file OpenMPClause.h.


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