clang  3.9.0
Public Member Functions | Static Public Member Functions | Friends | List of all members
OMPGrainsizeClause Class Reference

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

#include <OpenMPClause.h>

Inheritance diagram for OMPGrainsizeClause:
[legend]
Collaboration diagram for OMPGrainsizeClause:
[legend]

Public Member Functions

 OMPGrainsizeClause (Expr *Size, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'grainsize' clause. More...
 
 OMPGrainsizeClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
Expr * getGrainsize () const
 Return safe iteration space distance. More...
 
child_range children ()
 

Static Public Member Functions

static bool classof (const OMPClause *T)
 

Friends

class OMPClauseReader
 

Detailed Description

This represents 'grainsize' clause in the '#pragma omp ...' directive.

#pragma omp taskloop grainsize(4)

In this example directive '#pragma omp taskloop' has clause 'grainsize' with single expression '4'.

Definition at line 3624 of file OpenMPClause.h.

Constructor & Destructor Documentation

OMPGrainsizeClause::OMPGrainsizeClause ( Expr *  Size,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'grainsize' clause.

Parameters
SizeExpression associated with this clause.
StartLocStarting location of the clause.
EndLocEnding location of the clause.

Definition at line 3641 of file OpenMPClause.h.

OMPGrainsizeClause::OMPGrainsizeClause ( )
inlineexplicit

Build an empty clause.

Definition at line 3648 of file OpenMPClause.h.

Member Function Documentation

child_range OMPGrainsizeClause::children ( )
inline

Definition at line 3664 of file OpenMPClause.h.

static bool OMPGrainsizeClause::classof ( const OMPClause T)
inlinestatic

Definition at line 3660 of file OpenMPClause.h.

Expr* OMPGrainsizeClause::getGrainsize ( ) const
inline

Return safe iteration space distance.

Definition at line 3658 of file OpenMPClause.h.

SourceLocation OMPGrainsizeClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 3655 of file OpenMPClause.h.

void OMPGrainsizeClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 3653 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 3625 of file OpenMPClause.h.


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