clang 22.0.0git
clang::OMPUsesAllocatorsClause Class Referencefinal

This represents clause 'uses_allocators' in the '#pragma omp target'-based directives. More...

#include "clang/AST/OpenMPClause.h"

Inheritance diagram for clang::OMPUsesAllocatorsClause:
[legend]

Classes

struct  Data
 Data for list of allocators. More...

Public Member Functions

SourceLocation getLParenLoc () const
 Returns the location of '('.
unsigned getNumberOfAllocators () const
 Returns number of allocators associated with the clause.
OMPUsesAllocatorsClause::Data getAllocatorData (unsigned I) const
 Returns data for the specified allocator.
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 OMPUsesAllocatorsClauseCreate (const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, ArrayRef< OMPUsesAllocatorsClause::Data > Data)
 Creates clause with a list of allocators Data.
static OMPUsesAllocatorsClauseCreateEmpty (const ASTContext &C, unsigned N)
 Creates an empty clause with the place for N allocators.
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 clause 'uses_allocators' in the '#pragma omp target'-based directives.

#pragma omp target uses_allocators(default_allocator, my_allocator(traits))

In this example directive '#pragma omp target' has clause 'uses_allocators' with the allocators 'default_allocator' and user-defined 'my_allocator'.

Definition at line 9099 of file OpenMPClause.h.

Member Function Documentation

◆ children() [1/2]

child_range clang::OMPUsesAllocatorsClause::children ( )
inline

Definition at line 9192 of file OpenMPClause.h.

◆ children() [2/2]

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

Definition at line 9197 of file OpenMPClause.h.

◆ classof()

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

Definition at line 9211 of file OpenMPClause.h.

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

◆ Create()

OMPUsesAllocatorsClause * OMPUsesAllocatorsClause::Create ( const ASTContext & C,
SourceLocation StartLoc,
SourceLocation LParenLoc,
SourceLocation EndLoc,
ArrayRef< OMPUsesAllocatorsClause::Data > Data )
static

Creates clause with a list of allocators Data.

Parameters
CAST context.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.
DataList of allocators.

Definition at line 1626 of file OpenMPClause.cpp.

References clang::C.

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

◆ CreateEmpty()

OMPUsesAllocatorsClause * OMPUsesAllocatorsClause::CreateEmpty ( const ASTContext & C,
unsigned N )
static

Creates an empty clause with the place for N allocators.

Parameters
CAST context.
NThe number of allocators.

Definition at line 1639 of file OpenMPClause.cpp.

References clang::C.

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

◆ getAllocatorData()

◆ getLParenLoc()

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

Returns the location of '('.

Definition at line 9183 of file OpenMPClause.h.

◆ getNumberOfAllocators()

unsigned clang::OMPUsesAllocatorsClause::getNumberOfAllocators ( ) const
inline

Returns number of allocators associated with the clause.

Definition at line 9186 of file OpenMPClause.h.

◆ used_children() [1/2]

child_range clang::OMPUsesAllocatorsClause::used_children ( )
inline

Definition at line 9204 of file OpenMPClause.h.

◆ used_children() [2/2]

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

Definition at line 9207 of file OpenMPClause.h.

◆ OMPClauseReader

friend class OMPClauseReader
friend

Definition at line 9115 of file OpenMPClause.h.

References OMPClauseReader.

Referenced by OMPClauseReader.


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