clang  9.0.0
Public Member Functions | Public Attributes | List of all members
clang::CodeGen::StaticRTInput Struct Reference

Struct with the values to be passed to the static runtime function. More...

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

Collaboration diagram for clang::CodeGen::StaticRTInput:
[legend]

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::ValueChunk = nullptr
 Value of the chunk for the static_chunked scheduled loop. More...
 

Detailed Description

Struct with the values to be passed to the static runtime function.

Definition at line 998 of file CGOpenMPRuntime.h.

Constructor & Destructor Documentation

◆ StaticRTInput()

clang::CodeGen::StaticRTInput::StaticRTInput ( unsigned  IVSize,
bool  IVSigned,
bool  Ordered,
Address  IL,
Address  LB,
Address  UB,
Address  ST,
llvm::Value Chunk = nullptr 
)
inline

Member Data Documentation

◆ Chunk

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 1019 of file CGOpenMPRuntime.h.

Referenced by emitForStaticInitCall().

◆ IL

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 1007 of file CGOpenMPRuntime.h.

◆ IVSigned

bool clang::CodeGen::StaticRTInput::IVSigned = false

Sign of the iteration variable.

Definition at line 1002 of file CGOpenMPRuntime.h.

Referenced by emitForStaticInitCall().

◆ IVSize

unsigned clang::CodeGen::StaticRTInput::IVSize = 0

Size of the iteration variable in bits.

Definition at line 1000 of file CGOpenMPRuntime.h.

Referenced by emitForStaticInitCall().

◆ LB

Address clang::CodeGen::StaticRTInput::LB = Address::invalid()

Address of the output variable in which the lower iteration number is returned.

Definition at line 1010 of file CGOpenMPRuntime.h.

◆ Ordered

bool clang::CodeGen::StaticRTInput::Ordered = false

true if loop is ordered, false otherwise.

Definition at line 1004 of file CGOpenMPRuntime.h.

Referenced by emitForStaticInitCall().

◆ ST

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 1016 of file CGOpenMPRuntime.h.

◆ UB

Address clang::CodeGen::StaticRTInput::UB = Address::invalid()

Address of the output variable in which the upper iteration number is returned.

Definition at line 1013 of file CGOpenMPRuntime.h.


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