clang 23.0.0git
OMPHintClause Class Reference

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

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for OMPHintClause:
[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 '('.
Expr * getHint () const
 Returns number of threads.
child_range children ()
const_child_range children () const
child_range used_children ()
const_child_range used_children () const

Static Public Member Functions

static bool classof (const OMPClause *T)

Friends

class OMPClauseReader

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 7350 of file OpenMPClause.h.

Constructor & Destructor Documentation

◆ OMPHintClause() [1/2]

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 7369 of file OpenMPClause.h.

◆ OMPHintClause() [2/2]

OMPHintClause::OMPHintClause ( )
inline

Build an empty clause.

Definition at line 7375 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range OMPHintClause::children ( )
inline

Definition at line 7387 of file OpenMPClause.h.

◆ children() [2/2]

const_child_range OMPHintClause::children ( ) const
inline

Definition at line 7389 of file OpenMPClause.h.

◆ classof()

bool OMPHintClause::classof ( const OMPClause * T)
inlinestatic

Definition at line 7400 of file OpenMPClause.h.

◆ getHint()

Expr * OMPHintClause::getHint ( ) const
inline

Returns number of threads.

Definition at line 7385 of file OpenMPClause.h.

◆ getLParenLoc()

SourceLocation OMPHintClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 7382 of file OpenMPClause.h.

◆ setLParenLoc()

void OMPHintClause::setLParenLoc ( SourceLocation Loc)
inline

Sets the location of '('.

Definition at line 7379 of file OpenMPClause.h.

◆ used_children() [1/2]

child_range OMPHintClause::used_children ( )
inline

Definition at line 7393 of file OpenMPClause.h.

◆ used_children() [2/2]

const_child_range OMPHintClause::used_children ( ) const
inline

Definition at line 7396 of file OpenMPClause.h.

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 7351 of file OpenMPClause.h.

References OMPClauseReader.

Referenced by OMPClauseReader.


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