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

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

#include <OpenMPClause.h>

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

Public Member Functions

 OMPNumThreadsClause (Expr *NumThreads, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'num_threads' clause with condition NumThreads. More...
 
 OMPNumThreadsClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
ExprgetNumThreads () const
 Returns number of threads. 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 'num_threads' clause in the '#pragma omp ...' directive.

#pragma omp parallel num_threads(6)

In this example directive '#pragma omp parallel' has simple 'num_threads' clause with number of threads '6'.

Definition at line 334 of file OpenMPClause.h.

Constructor & Destructor Documentation

clang::OMPNumThreadsClause::OMPNumThreadsClause ( Expr NumThreads,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'num_threads' clause with condition NumThreads.

Parameters
NumThreadsNumber of threads for the construct.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.

Definition at line 353 of file OpenMPClause.h.

clang::OMPNumThreadsClause::OMPNumThreadsClause ( )
inline

Build an empty clause.

Definition at line 360 of file OpenMPClause.h.

Member Function Documentation

child_range clang::OMPNumThreadsClause::children ( )
inline

Definition at line 376 of file OpenMPClause.h.

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

Definition at line 372 of file OpenMPClause.h.

References clang::OMPClause::getClauseKind().

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

Returns the location of '('.

Definition at line 367 of file OpenMPClause.h.

Expr* clang::OMPNumThreadsClause::getNumThreads ( ) const
inline

Returns number of threads.

Definition at line 370 of file OpenMPClause.h.

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

Sets the location of '('.

Definition at line 365 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 335 of file OpenMPClause.h.


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