clang  8.0.0
Public Member Functions | List of all members
clang::CodeGen::LoopInfoStack Class Reference

A stack of loop information corresponding to loop nesting levels. More...

#include "/work/llvm-www-releases/8.0.0/docsbuild/llvm.src/tools/clang/lib/CodeGen/CGLoopInfo.h"

Public Member Functions

 LoopInfoStack ()
 
void push (llvm::BasicBlock *Header, const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc)
 Begin a new structured loop. More...
 
void push (llvm::BasicBlock *Header, clang::ASTContext &Ctx, llvm::ArrayRef< const Attr *> Attrs, const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc)
 Begin a new structured loop. More...
 
void pop ()
 End the current loop. More...
 
llvm::MDNode * getCurLoopID () const
 Return the top loop id metadata. More...
 
bool getCurLoopParallel () const
 Return true if the top loop is parallel. More...
 
void InsertHelper (llvm::Instruction *I) const
 Function called by the CodeGenFunction when an instruction is created. More...
 
void setParallel (bool Enable=true)
 Set the next pushed loop as parallel. More...
 
void setVectorizeEnable (bool Enable=true)
 Set the next pushed loop 'vectorize.enable'. More...
 
void setDistributeState (bool Enable=true)
 Set the next pushed loop as a distribution candidate. More...
 
void setUnrollState (const LoopAttributes::LVEnableState &State)
 Set the next pushed loop unroll state. More...
 
void setUnrollAndJamState (const LoopAttributes::LVEnableState &State)
 Set the next pushed loop unroll_and_jam state. More...
 
void setVectorizeWidth (unsigned W)
 Set the vectorize width for the next loop pushed. More...
 
void setInterleaveCount (unsigned C)
 Set the interleave count for the next loop pushed. More...
 
void setUnrollCount (unsigned C)
 Set the unroll count for the next loop pushed. More...
 
void setUnrollAndJamCount (unsigned C)
 Set the unroll count for the next loop pushed. More...
 
void setPipelineDisabled (bool S)
 Set the pipeline disabled state. More...
 
void setPipelineInitiationInterval (unsigned C)
 Set the pipeline initiation interval. More...
 

Detailed Description

A stack of loop information corresponding to loop nesting levels.

This stack can be used to prepare attributes which are applied when a loop is emitted.

Definition at line 110 of file CGLoopInfo.h.

Constructor & Destructor Documentation

◆ LoopInfoStack()

clang::CodeGen::LoopInfoStack::LoopInfoStack ( )
inline

Definition at line 115 of file CGLoopInfo.h.

Member Function Documentation

◆ getCurLoopID()

llvm::MDNode* clang::CodeGen::LoopInfoStack::getCurLoopID ( ) const
inline

Return the top loop id metadata.

Definition at line 132 of file CGLoopInfo.h.

References getInfo().

◆ getCurLoopParallel()

bool clang::CodeGen::LoopInfoStack::getCurLoopParallel ( ) const
inline

Return true if the top loop is parallel.

Definition at line 135 of file CGLoopInfo.h.

References getInfo().

◆ InsertHelper()

void LoopInfoStack::InsertHelper ( llvm::Instruction *  I) const

Function called by the CodeGenFunction when an instruction is created.

Definition at line 371 of file CGLoopInfo.cpp.

References clang::CodeGen::LoopInfo::getHeader(), getInfo(), and clang::CodeGen::LoopInfo::getLoopID().

◆ pop()

void LoopInfoStack::pop ( )

End the current loop.

Definition at line 366 of file CGLoopInfo.cpp.

◆ push() [1/2]

void clang::CodeGen::LoopInfoStack::push ( llvm::BasicBlock *  Header,
const llvm::DebugLoc &  StartLoc,
const llvm::DebugLoc &  EndLoc 
)

Begin a new structured loop.

The set of staged attributes will be applied to the loop and then cleared.

Referenced by clang::CodeGen::LoopInfo::LoopInfo().

◆ push() [2/2]

void clang::CodeGen::LoopInfoStack::push ( llvm::BasicBlock *  Header,
clang::ASTContext Ctx,
llvm::ArrayRef< const Attr *>  Attrs,
const llvm::DebugLoc &  StartLoc,
const llvm::DebugLoc &  EndLoc 
)

Begin a new structured loop.

Stage attributes from the Attrs list. The staged attributes are applied to the loop and then cleared.

◆ setDistributeState()

void clang::CodeGen::LoopInfoStack::setDistributeState ( bool  Enable = true)
inline

Set the next pushed loop as a distribution candidate.

Definition at line 153 of file CGLoopInfo.h.

◆ setInterleaveCount()

void clang::CodeGen::LoopInfoStack::setInterleaveCount ( unsigned  C)
inline

Set the interleave count for the next loop pushed.

Definition at line 172 of file CGLoopInfo.h.

◆ setParallel()

void clang::CodeGen::LoopInfoStack::setParallel ( bool  Enable = true)
inline

Set the next pushed loop as parallel.

Definition at line 144 of file CGLoopInfo.h.

Referenced by emitSimdlenSafelenClause().

◆ setPipelineDisabled()

void clang::CodeGen::LoopInfoStack::setPipelineDisabled ( bool  S)
inline

Set the pipeline disabled state.

Definition at line 181 of file CGLoopInfo.h.

◆ setPipelineInitiationInterval()

void clang::CodeGen::LoopInfoStack::setPipelineInitiationInterval ( unsigned  C)
inline

Set the pipeline initiation interval.

Definition at line 184 of file CGLoopInfo.h.

References getInfo().

◆ setUnrollAndJamCount()

void clang::CodeGen::LoopInfoStack::setUnrollAndJamCount ( unsigned  C)
inline

Set the unroll count for the next loop pushed.

Definition at line 178 of file CGLoopInfo.h.

◆ setUnrollAndJamState()

void clang::CodeGen::LoopInfoStack::setUnrollAndJamState ( const LoopAttributes::LVEnableState State)
inline

Set the next pushed loop unroll_and_jam state.

Definition at line 164 of file CGLoopInfo.h.

References State.

◆ setUnrollCount()

void clang::CodeGen::LoopInfoStack::setUnrollCount ( unsigned  C)
inline

Set the unroll count for the next loop pushed.

Definition at line 175 of file CGLoopInfo.h.

◆ setUnrollState()

void clang::CodeGen::LoopInfoStack::setUnrollState ( const LoopAttributes::LVEnableState State)
inline

Set the next pushed loop unroll state.

Definition at line 159 of file CGLoopInfo.h.

References State.

◆ setVectorizeEnable()

void clang::CodeGen::LoopInfoStack::setVectorizeEnable ( bool  Enable = true)
inline

Set the next pushed loop 'vectorize.enable'.

Definition at line 147 of file CGLoopInfo.h.

◆ setVectorizeWidth()

void clang::CodeGen::LoopInfoStack::setVectorizeWidth ( unsigned  W)
inline

Set the vectorize width for the next loop pushed.

Definition at line 169 of file CGLoopInfo.h.

Referenced by emitSimdlenSafelenClause().


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