clang 22.0.0git
clang::OMPAcquireClause Class Referencefinal

This represents 'acquire' clause in the '#pragma omp atomic|flush' directives. More...

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for clang::OMPAcquireClause:
[legend]

Public Member Functions

 OMPAcquireClause (SourceLocation StartLoc, SourceLocation EndLoc)
 Build 'acquire' clause.
 OMPAcquireClause ()
 Build an empty clause.
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 *)

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 'acquire' clause in the '#pragma omp atomic|flush' directives.

#pragma omp flush acquire

In this example directive '#pragma omp flush' has 'acquire' clause.

Definition at line 2898 of file OpenMPClause.h.

Constructor & Destructor Documentation

◆ OMPAcquireClause() [1/2]

clang::OMPAcquireClause::OMPAcquireClause ( SourceLocation StartLoc,
SourceLocation EndLoc )
inline

Build 'acquire' clause.

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

Definition at line 2904 of file OpenMPClause.h.

References clang::OMPClause::OMPClause().

◆ OMPAcquireClause() [2/2]

clang::OMPAcquireClause::OMPAcquireClause ( )
inline

Build an empty clause.

Definition at line 2908 of file OpenMPClause.h.

References clang::OMPClause::OMPClause().

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPAcquireClause::children ( )
inline

Definition at line 2912 of file OpenMPClause.h.

◆ children() [2/2]

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

Definition at line 2916 of file OpenMPClause.h.

◆ classof()

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

Definition at line 2927 of file OpenMPClause.h.

References clang::OMPClause::OMPClause(), and clang::T.

◆ used_children() [1/2]

child_range clang::OMPAcquireClause::used_children ( )
inline

Definition at line 2920 of file OpenMPClause.h.

◆ used_children() [2/2]

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

Definition at line 2923 of file OpenMPClause.h.


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