clang  3.9.0
Classes | Public Types | Public Member Functions | Protected Member Functions | Friends | List of all members
OMPMappableExprListClause< T > Class Template Reference

This represents clauses with a list of expressions that are mappable. More...

#include <OpenMPClause.h>

Inheritance diagram for OMPMappableExprListClause< T >:
[legend]
Collaboration diagram for OMPMappableExprListClause< T >:
[legend]

Classes

class  const_component_lists_iterator
 Iterator that browse the components by lists. More...
 

Public Types

typedef llvm::iterator_range
< const_component_lists_iterator
const_component_lists_range
 
typedef ArrayRef< ValueDecl * >
::iterator 
const_all_decls_iterator
 Iterators to access all the declarations, number of lists, list sizes, and components. More...
 
typedef llvm::iterator_range
< const_all_decls_iterator
const_all_decls_range
 
typedef ArrayRef< unsigned >
::iterator 
const_all_num_lists_iterator
 
typedef llvm::iterator_range
< const_all_num_lists_iterator
const_all_num_lists_range
 
typedef ArrayRef< unsigned >
::iterator 
const_all_lists_sizes_iterator
 
typedef llvm::iterator_range
< const_all_lists_sizes_iterator
const_all_lists_sizes_range
 
typedef ArrayRef
< MappableComponent >
::iterator 
const_all_components_iterator
 
typedef llvm::iterator_range
< const_all_components_iterator
const_all_components_range
 
- Public Types inherited from OMPClauseMappableExprCommon
typedef SmallVector
< MappableComponent, 8 > 
MappableExprComponentList
 
typedef ArrayRef
< MappableComponent
MappableExprComponentListRef
 
typedef SmallVector
< MappableExprComponentList, 8 > 
MappableExprComponentLists
 
typedef ArrayRef
< MappableExprComponentList
MappableExprComponentListsRef
 

Public Member Functions

unsigned getUniqueDeclarationsNum () const
 Return the number of unique base declarations in this clause. More...
 
unsigned getTotalComponentListNum () const
 Return the number of lists derived from the clause expressions. More...
 
unsigned getTotalComponentsNum () const
 Return the total number of components in all lists derived from the clause. More...
 
const_component_lists_iterator component_lists_begin () const
 Iterators for all component lists. More...
 
const_component_lists_iterator component_lists_end () const
 
const_component_lists_range component_lists () const
 
const_component_lists_iterator decl_component_lists_begin (const ValueDecl *VD) const
 Iterators for component lists associated with the provided declaration. More...
 
const_component_lists_iterator decl_component_lists_end () const
 
const_component_lists_range decl_component_lists (const ValueDecl *VD) const
 
const_all_decls_range all_decls () const
 
const_all_num_lists_range all_num_lists () const
 
const_all_lists_sizes_range all_lists_sizes () const
 
const_all_components_range all_components () const
 

Protected Member Functions

MutableArrayRef< ValueDecl * > getUniqueDeclsRef ()
 Get the unique declarations that are in the trailing objects of the class. More...
 
ArrayRef< ValueDecl * > getUniqueDeclsRef () const
 Get the unique declarations that are in the trailing objects of the class. More...
 
void setUniqueDecls (ArrayRef< ValueDecl * > UDs)
 Set the unique declarations that are in the trailing objects of the class. More...
 
MutableArrayRef< unsignedgetDeclNumListsRef ()
 Get the number of lists per declaration that are in the trailing objects of the class. More...
 
ArrayRef< unsignedgetDeclNumListsRef () const
 Get the number of lists per declaration that are in the trailing objects of the class. More...
 
void setDeclNumLists (ArrayRef< unsigned > DNLs)
 Set the number of lists per declaration that are in the trailing objects of the class. More...
 
MutableArrayRef< unsignedgetComponentListSizesRef ()
 Get the cumulative component lists sizes that are in the trailing objects of the class. More...
 
ArrayRef< unsignedgetComponentListSizesRef () const
 Get the cumulative component lists sizes that are in the trailing objects of the class. More...
 
void setComponentListSizes (ArrayRef< unsigned > CLSs)
 Set the cumulative component lists sizes that are in the trailing objects of the class. More...
 
MutableArrayRef
< MappableComponent
getComponentsRef ()
 Get the components that are in the trailing objects of the class. More...
 
ArrayRef< MappableComponentgetComponentsRef () const
 Get the components that are in the trailing objects of the class. More...
 
void setComponents (ArrayRef< MappableComponent > Components, ArrayRef< unsigned > CLSs)
 Set the components that are in the trailing objects of the class. More...
 
void setClauseInfo (ArrayRef< ValueDecl * > Declarations, MappableExprComponentListsRef ComponentLists)
 Fill the clause information from the list of declarations and associated component lists. More...
 
 OMPMappableExprListClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned NumVars, unsigned NumUniqueDeclarations, unsigned NumComponentLists, unsigned NumComponents)
 Build a clause for NumUniqueDeclarations declarations, NumComponentLists total component lists, and NumComponents total components. More...
 

Friends

class OMPClauseReader
 

Additional Inherited Members

- Static Protected Member Functions inherited from OMPClauseMappableExprCommon
static unsigned getComponentsTotalNumber (MappableExprComponentListsRef ComponentLists)
 
static unsigned getUniqueDeclarationsTotalNumber (ArrayRef< ValueDecl * > Declarations)
 

Detailed Description

template<class T>
class OMPMappableExprListClause< T >

This represents clauses with a list of expressions that are mappable.

Examples of these clauses are 'map' in '#pragma omp target [enter|exit] [data]...' directives, and 'to' and 'from in '#pragma omp target update...' directives.

Definition at line 2845 of file OpenMPClause.h.

Member Typedef Documentation

template<class T>
typedef ArrayRef<MappableComponent>::iterator OMPMappableExprListClause< T >::const_all_components_iterator

Definition at line 3264 of file OpenMPClause.h.

template<class T>
typedef llvm::iterator_range<const_all_components_iterator> OMPMappableExprListClause< T >::const_all_components_range

Definition at line 3266 of file OpenMPClause.h.

template<class T>
typedef ArrayRef<ValueDecl *>::iterator OMPMappableExprListClause< T >::const_all_decls_iterator

Iterators to access all the declarations, number of lists, list sizes, and components.

Definition at line 3241 of file OpenMPClause.h.

template<class T>
typedef llvm::iterator_range<const_all_decls_iterator> OMPMappableExprListClause< T >::const_all_decls_range

Definition at line 3242 of file OpenMPClause.h.

template<class T>
typedef ArrayRef<unsigned>::iterator OMPMappableExprListClause< T >::const_all_lists_sizes_iterator

Definition at line 3256 of file OpenMPClause.h.

template<class T>
typedef llvm::iterator_range<const_all_lists_sizes_iterator> OMPMappableExprListClause< T >::const_all_lists_sizes_range

Definition at line 3258 of file OpenMPClause.h.

template<class T>
typedef ArrayRef<unsigned>::iterator OMPMappableExprListClause< T >::const_all_num_lists_iterator

Definition at line 3248 of file OpenMPClause.h.

template<class T>
typedef llvm::iterator_range<const_all_num_lists_iterator> OMPMappableExprListClause< T >::const_all_num_lists_range

Definition at line 3250 of file OpenMPClause.h.

template<class T>
typedef llvm::iterator_range<const_component_lists_iterator> OMPMappableExprListClause< T >::const_component_lists_range

Definition at line 3206 of file OpenMPClause.h.

Constructor & Destructor Documentation

template<class T>
OMPMappableExprListClause< T >::OMPMappableExprListClause ( OpenMPClauseKind  K,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc,
unsigned  NumVars,
unsigned  NumUniqueDeclarations,
unsigned  NumComponentLists,
unsigned  NumComponents 
)
inlineprotected

Build a clause for NumUniqueDeclarations declarations, NumComponentLists total component lists, and NumComponents total components.

Parameters
KKind of the clause.
StartLocStarting location of the clause (the clause keyword).
LParenLocLocation of '('.
EndLocEnding location of the clause.
NumVarsNumber of expressions listed in the clause.
NumUniqueDeclarationsNumber of unique base declarations in this clause.
NumComponentListsNumber of component lists in this clause - one list for each expression in the clause.
NumComponentsTotal number of expression components in the clause.

Definition at line 3053 of file OpenMPClause.h.

Member Function Documentation

template<class T>
const_all_components_range OMPMappableExprListClause< T >::all_components ( ) const
inline

Definition at line 3267 of file OpenMPClause.h.

template<class T>
const_all_decls_range OMPMappableExprListClause< T >::all_decls ( ) const
inline

Definition at line 3243 of file OpenMPClause.h.

template<class T>
const_all_lists_sizes_range OMPMappableExprListClause< T >::all_lists_sizes ( ) const
inline

Definition at line 3259 of file OpenMPClause.h.

template<class T>
const_all_num_lists_range OMPMappableExprListClause< T >::all_num_lists ( ) const
inline

Definition at line 3251 of file OpenMPClause.h.

template<class T>
const_component_lists_range OMPMappableExprListClause< T >::component_lists ( ) const
inline

Definition at line 3220 of file OpenMPClause.h.

template<class T>
const_component_lists_iterator OMPMappableExprListClause< T >::component_lists_begin ( ) const
inline

Iterators for all component lists.

Definition at line 3209 of file OpenMPClause.h.

template<class T>
const_component_lists_iterator OMPMappableExprListClause< T >::component_lists_end ( ) const
inline

Definition at line 3214 of file OpenMPClause.h.

template<class T>
const_component_lists_range OMPMappableExprListClause< T >::decl_component_lists ( const ValueDecl *  VD) const
inline

Definition at line 3235 of file OpenMPClause.h.

template<class T>
const_component_lists_iterator OMPMappableExprListClause< T >::decl_component_lists_begin ( const ValueDecl *  VD) const
inline

Iterators for component lists associated with the provided declaration.

Definition at line 3227 of file OpenMPClause.h.

template<class T>
const_component_lists_iterator OMPMappableExprListClause< T >::decl_component_lists_end ( ) const
inline

Definition at line 3232 of file OpenMPClause.h.

template<class T>
MutableArrayRef<unsigned> OMPMappableExprListClause< T >::getComponentListSizesRef ( )
inlineprotected

Get the cumulative component lists sizes that are in the trailing objects of the class.

They are appended after the number of lists.

Definition at line 2910 of file OpenMPClause.h.

template<class T>
ArrayRef<unsigned> OMPMappableExprListClause< T >::getComponentListSizesRef ( ) const
inlineprotected

Get the cumulative component lists sizes that are in the trailing objects of the class.

They are appended after the number of lists.

Definition at line 2919 of file OpenMPClause.h.

template<class T>
MutableArrayRef<MappableComponent> OMPMappableExprListClause< T >::getComponentsRef ( )
inlineprotected

Get the components that are in the trailing objects of the class.

Definition at line 2935 of file OpenMPClause.h.

template<class T>
ArrayRef<MappableComponent> OMPMappableExprListClause< T >::getComponentsRef ( ) const
inlineprotected

Get the components that are in the trailing objects of the class.

Definition at line 2943 of file OpenMPClause.h.

template<class T>
MutableArrayRef<unsigned> OMPMappableExprListClause< T >::getDeclNumListsRef ( )
inlineprotected

Get the number of lists per declaration that are in the trailing objects of the class.

Definition at line 2886 of file OpenMPClause.h.

template<class T>
ArrayRef<unsigned> OMPMappableExprListClause< T >::getDeclNumListsRef ( ) const
inlineprotected

Get the number of lists per declaration that are in the trailing objects of the class.

Definition at line 2894 of file OpenMPClause.h.

template<class T>
unsigned OMPMappableExprListClause< T >::getTotalComponentListNum ( ) const
inline

Return the number of lists derived from the clause expressions.

Definition at line 3065 of file OpenMPClause.h.

template<class T>
unsigned OMPMappableExprListClause< T >::getTotalComponentsNum ( ) const
inline

Return the total number of components in all lists derived from the clause.

Definition at line 3068 of file OpenMPClause.h.

template<class T>
unsigned OMPMappableExprListClause< T >::getUniqueDeclarationsNum ( ) const
inline

Return the number of unique base declarations in this clause.

Definition at line 3063 of file OpenMPClause.h.

template<class T>
MutableArrayRef<ValueDecl *> OMPMappableExprListClause< T >::getUniqueDeclsRef ( )
inlineprotected

Get the unique declarations that are in the trailing objects of the class.

Definition at line 2861 of file OpenMPClause.h.

template<class T>
ArrayRef<ValueDecl *> OMPMappableExprListClause< T >::getUniqueDeclsRef ( ) const
inlineprotected

Get the unique declarations that are in the trailing objects of the class.

Definition at line 2869 of file OpenMPClause.h.

template<class T>
void OMPMappableExprListClause< T >::setClauseInfo ( ArrayRef< ValueDecl * >  Declarations,
MappableExprComponentListsRef  ComponentLists 
)
inlineprotected

Fill the clause information from the list of declarations and associated component lists.

Definition at line 2964 of file OpenMPClause.h.

Referenced by OMPMapClause::Create(), OMPToClause::Create(), and OMPFromClause::Create().

template<class T>
void OMPMappableExprListClause< T >::setComponentListSizes ( ArrayRef< unsigned CLSs)
inlineprotected

Set the cumulative component lists sizes that are in the trailing objects of the class.

Definition at line 2928 of file OpenMPClause.h.

template<class T>
void OMPMappableExprListClause< T >::setComponents ( ArrayRef< MappableComponent Components,
ArrayRef< unsigned CLSs 
)
inlineprotected

Set the components that are in the trailing objects of the class.

This requires the list sizes so that it can also fill the original expressions, which are the first component of each list.

Definition at line 2953 of file OpenMPClause.h.

template<class T>
void OMPMappableExprListClause< T >::setDeclNumLists ( ArrayRef< unsigned DNLs)
inlineprotected

Set the number of lists per declaration that are in the trailing objects of the class.

Definition at line 2902 of file OpenMPClause.h.

template<class T>
void OMPMappableExprListClause< T >::setUniqueDecls ( ArrayRef< ValueDecl * >  UDs)
inlineprotected

Set the unique declarations that are in the trailing objects of the class.

Definition at line 2878 of file OpenMPClause.h.

Friends And Related Function Documentation

template<class T>
friend class OMPClauseReader
friend

Definition at line 2847 of file OpenMPClause.h.


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