class OMPGenericLoopDirective

Declaration

class OMPGenericLoopDirective : public OMPLoopDirective { /* full declaration omitted */ };

Description

This represents '#pragma omp loop' directive. In this example directive '#pragma omp loop' has clauses 'private' with the variables 'a' and 'b', 'binding' with modifier 'parallel' and 'order(concurrent).

Declared at: clang/include/clang/AST/StmtOpenMP.h:5909

Inherits from: OMPLoopDirective

Member Variables

Inherited from OMPLoopBasedDirective:

protected NumAssociatedLoops = 0

Inherited from OMPExecutableDirective:

protected Data = nullptr

Inherited from Stmt:

protected

Method Overview

  • public static clang::OMPGenericLoopDirective * Create(const clang::ASTContext & C, clang::SourceLocation StartLoc, clang::SourceLocation EndLoc, unsigned int CollapsedNum, ArrayRef<clang::OMPClause *> Clauses, clang::Stmt * AssociatedStmt, const clang::OMPLoopBasedDirective::HelperExprs & Exprs)
  • public static clang::OMPGenericLoopDirective * CreateEmpty(const clang::ASTContext & C, unsigned int NumClauses, unsigned int CollapsedNum, clang::Stmt::EmptyShell)
  • private OMPGenericLoopDirective(clang::SourceLocation StartLoc, clang::SourceLocation EndLoc, unsigned int CollapsedNum)
  • private OMPGenericLoopDirective(unsigned int CollapsedNum)
  • public static bool classof(const clang::Stmt * T)

Inherited from OMPLoopDirective:

Inherited from OMPLoopBasedDirective:

Inherited from OMPExecutableDirective:

Inherited from Stmt:

Methods

static clang::OMPGenericLoopDirective* Create(
    const clang::ASTContext& C,
    clang::SourceLocation StartLoc,
    clang::SourceLocation EndLoc,
    unsigned int CollapsedNum,
    ArrayRef<clang::OMPClause*> Clauses,
    clang::Stmt* AssociatedStmt,
    const clang::OMPLoopBasedDirective::
        HelperExprs& Exprs)

Description

Creates directive with a list of \p Clauses.

Declared at: clang/include/clang/AST/StmtOpenMP.h:5943

Parameters

const clang::ASTContext& C
AST context.
clang::SourceLocation StartLoc
Starting location of the directive kind.
clang::SourceLocation EndLoc
Ending Location of the directive.
unsigned int CollapsedNum
Number of collapsed loops.
ArrayRef<clang::OMPClause*> Clauses
List of clauses.
clang::Stmt* AssociatedStmt
Statement, associated with the directive.
const clang::OMPLoopBasedDirective::HelperExprs& Exprs
Helper expressions for CodeGen.

static clang::OMPGenericLoopDirective*
CreateEmpty(const clang::ASTContext& C,
            unsigned int NumClauses,
            unsigned int CollapsedNum,
            clang::Stmt::EmptyShell)

Description

Creates an empty directive with a place for \a NumClauses clauses.

Declared at: clang/include/clang/AST/StmtOpenMP.h:5953

Parameters

const clang::ASTContext& C
AST context.
unsigned int NumClauses
Number of clauses.
unsigned int CollapsedNum
Number of collapsed nested loops.
clang::Stmt::EmptyShell

OMPGenericLoopDirective(
    clang::SourceLocation StartLoc,
    clang::SourceLocation EndLoc,
    unsigned int CollapsedNum)

Description

Build directive with the given start and end location.

Declared at: clang/include/clang/AST/StmtOpenMP.h:5918

Parameters

clang::SourceLocation StartLoc
Starting location of the directive kind.
clang::SourceLocation EndLoc
Ending location of the directive.
unsigned int CollapsedNum
Number of collapsed nested loops.

OMPGenericLoopDirective(unsigned int CollapsedNum)

Description

Build an empty directive.

Declared at: clang/include/clang/AST/StmtOpenMP.h:5927

Parameters

unsigned int CollapsedNum
Number of collapsed nested loops.

static bool classof(const clang::Stmt* T)

Declared at: clang/include/clang/AST/StmtOpenMP.h:5958

Parameters

const clang::Stmt* T