clang
10.0.0git
|
Struct with the values to be passed to the static runtime function. More...
#include "/work/www-prereleases/10.0.0/rc2/docsbuild/clang/lib/CodeGen/CGOpenMPRuntime.h"
Public Member Functions | |
StaticRTInput (unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk=nullptr) | |
Public Attributes | |
unsigned | IVSize = 0 |
Size of the iteration variable in bits. More... | |
bool | IVSigned = false |
Sign of the iteration variable. More... | |
bool | Ordered = false |
true if loop is ordered, false otherwise. More... | |
Address | IL = Address::invalid() |
Address of the output variable in which the flag of the last iteration is returned. More... | |
Address | LB = Address::invalid() |
Address of the output variable in which the lower iteration number is returned. More... | |
Address | UB = Address::invalid() |
Address of the output variable in which the upper iteration number is returned. More... | |
Address | ST = Address::invalid() |
Address of the output variable in which the stride value is returned necessary to generated the static_chunked scheduled loop. More... | |
llvm::Value * | Chunk = nullptr |
Value of the chunk for the static_chunked scheduled loop. More... | |
Struct with the values to be passed to the static runtime function.
Definition at line 1062 of file CGOpenMPRuntime.h.
|
inline |
Definition at line 1084 of file CGOpenMPRuntime.h.
References clang::CodeGen::emitDeclareTargetVarDefinition(), clang::CodeGen::emitDistributeStaticInit(), clang::CodeGen::emitForNext(), clang::CodeGen::emitForOrderedIterationEnd(), clang::CodeGen::emitForStaticFinish(), clang::CodeGen::emitForStaticInit(), clang::CodeGen::emitNumThreadsClause(), clang::CodeGen::emitProcBindClause(), clang::CodeGen::emitThreadPrivateVarDefinition(), clang::CodeGen::getAddrOfArtificialThreadPrivate(), clang::CodeGen::getAddrOfDeclareTargetVar(), and clang::CodeGen::getAddrOfThreadPrivate().
llvm::Value* clang::CodeGen::StaticRTInput::Chunk = nullptr |
Value of the chunk for the static_chunked scheduled loop.
For the default (nullptr) value, the chunk 1 will be used.
Definition at line 1083 of file CGOpenMPRuntime.h.
Referenced by emitForStaticInitCall().
Address clang::CodeGen::StaticRTInput::IL = Address::invalid() |
Address of the output variable in which the flag of the last iteration is returned.
Definition at line 1071 of file CGOpenMPRuntime.h.
Sign of the iteration variable.
Definition at line 1066 of file CGOpenMPRuntime.h.
Referenced by emitForStaticInitCall().
unsigned clang::CodeGen::StaticRTInput::IVSize = 0 |
Size of the iteration variable in bits.
Definition at line 1064 of file CGOpenMPRuntime.h.
Referenced by emitForStaticInitCall().
Address clang::CodeGen::StaticRTInput::LB = Address::invalid() |
Address of the output variable in which the lower iteration number is returned.
Definition at line 1074 of file CGOpenMPRuntime.h.
true if loop is ordered, false otherwise.
Definition at line 1068 of file CGOpenMPRuntime.h.
Referenced by emitForStaticInitCall().
Address clang::CodeGen::StaticRTInput::ST = Address::invalid() |
Address of the output variable in which the stride value is returned necessary to generated the static_chunked scheduled loop.
Definition at line 1080 of file CGOpenMPRuntime.h.
Address clang::CodeGen::StaticRTInput::UB = Address::invalid() |
Address of the output variable in which the upper iteration number is returned.
Definition at line 1077 of file CGOpenMPRuntime.h.