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

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

#include <OpenMPClause.h>

Inheritance diagram for clang::OMPSafelenClause:
[legend]
Collaboration diagram for clang::OMPSafelenClause:
[legend]

Public Member Functions

 OMPSafelenClause (Expr *Len, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'safelen' clause. More...
 
 OMPSafelenClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
ExprgetSafelen () const
 Return safe iteration space distance. More...
 
child_range children ()
 
- Public Member Functions inherited from clang::OMPClause
SourceLocation getLocStart () const
 Returns the starting location of the clause. More...
 
SourceLocation getLocEnd () const
 Returns the ending location of the clause. More...
 
void setLocStart (SourceLocation Loc)
 Sets the starting location of the clause. More...
 
void setLocEnd (SourceLocation Loc)
 Sets the ending location of the clause. More...
 
OpenMPClauseKind getClauseKind () const
 Returns kind of OpenMP clause (private, shared, reduction, etc.). More...
 
bool isImplicit () const
 
child_range children ()
 
const_child_range 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 *)
 

Friends

class OMPClauseReader
 

Additional Inherited Members

- Public Types inherited from clang::OMPClause
typedef StmtIterator child_iterator
 
typedef ConstStmtIterator const_child_iterator
 
typedef llvm::iterator_range
< child_iterator
child_range
 
typedef llvm::iterator_range
< const_child_iterator
const_child_range
 
- Protected Member Functions inherited from clang::OMPClause
 OMPClause (OpenMPClauseKind K, SourceLocation StartLoc, SourceLocation EndLoc)
 

Detailed Description

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

#pragma omp simd safelen(4)

In this example directive '#pragma omp simd' has clause 'safelen' with single expression '4'. If the safelen clause is used then no two iterations executed concurrently with SIMD instructions can have a greater distance in the logical iteration space than its value. The parameter of the safelen clause must be a constant positive integer expression.

Definition at line 392 of file OpenMPClause.h.

Constructor & Destructor Documentation

clang::OMPSafelenClause::OMPSafelenClause ( Expr Len,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'safelen' clause.

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

Definition at line 409 of file OpenMPClause.h.

clang::OMPSafelenClause::OMPSafelenClause ( )
inlineexplicit

Build an empty clause.

Definition at line 416 of file OpenMPClause.h.

Member Function Documentation

child_range clang::OMPSafelenClause::children ( )
inline

Definition at line 432 of file OpenMPClause.h.

static bool clang::OMPSafelenClause::classof ( const OMPClause T)
inlinestatic

Definition at line 428 of file OpenMPClause.h.

References clang::OMPClause::getClauseKind().

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

Returns the location of '('.

Definition at line 423 of file OpenMPClause.h.

Expr* clang::OMPSafelenClause::getSafelen ( ) const
inline

Return safe iteration space distance.

Definition at line 426 of file OpenMPClause.h.

Referenced by checkSimdlenSafelenSpecified().

void clang::OMPSafelenClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 421 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 393 of file OpenMPClause.h.


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