clang  5.0.0
Public Member Functions | Static Public Member Functions | Friends | List of all members
OMPThreadLimitClause Class Reference

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

#include "clang/AST/OpenMPClause.h"

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

Public Member Functions

 OMPThreadLimitClause (Expr *E, Stmt *HelperE, OpenMPDirectiveKind CaptureRegion, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc)
 Build 'thread_limit' clause. More...
 
 OMPThreadLimitClause ()
 Build an empty clause. More...
 
void setLParenLoc (SourceLocation Loc)
 Sets the location of '('. More...
 
SourceLocation getLParenLoc () const
 Returns the location of '('. More...
 
Expr * getThreadLimit ()
 Return ThreadLimit number. More...
 
Expr * getThreadLimit () const
 Return ThreadLimit number. More...
 
child_range children ()
 

Static Public Member Functions

static bool classof (const OMPClause *T)
 

Friends

class OMPClauseReader
 

Detailed Description

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

#pragma omp teams thread_limit(n)

In this example directive '#pragma omp teams' has clause 'thread_limit' with single expression 'n'.

Definition at line 3756 of file OpenMPClause.h.

Constructor & Destructor Documentation

OMPThreadLimitClause::OMPThreadLimitClause ( Expr *  E,
Stmt *  HelperE,
OpenMPDirectiveKind  CaptureRegion,
SourceLocation  StartLoc,
SourceLocation  LParenLoc,
SourceLocation  EndLoc 
)
inline

Build 'thread_limit' clause.

Parameters
EExpression associated with this clause.
HelperEHelper Expression associated with this clause.
CaptureRegionInnermost OpenMP region where expressions in this clause must be captured.
StartLocStarting location of the clause.
LParenLocLocation of '('.
EndLocEnding location of the clause.

Definition at line 3779 of file OpenMPClause.h.

OMPThreadLimitClause::OMPThreadLimitClause ( )
inline

Build an empty clause.

Definition at line 3790 of file OpenMPClause.h.

Member Function Documentation

child_range OMPThreadLimitClause::children ( )
inline

Definition at line 3807 of file OpenMPClause.h.

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

Definition at line 3803 of file OpenMPClause.h.

SourceLocation OMPThreadLimitClause::getLParenLoc ( ) const
inline

Returns the location of '('.

Definition at line 3797 of file OpenMPClause.h.

Expr* OMPThreadLimitClause::getThreadLimit ( )
inline

Return ThreadLimit number.

Definition at line 3799 of file OpenMPClause.h.

Expr* OMPThreadLimitClause::getThreadLimit ( ) const
inline

Return ThreadLimit number.

Definition at line 3801 of file OpenMPClause.h.

void OMPThreadLimitClause::setLParenLoc ( SourceLocation  Loc)
inline

Sets the location of '('.

Definition at line 3795 of file OpenMPClause.h.

Friends And Related Function Documentation

friend class OMPClauseReader
friend

Definition at line 3757 of file OpenMPClause.h.


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