Project Alice
Loading...
Searching...
No Matches
Collaboration diagram for Structure Types:

Functions

LLVMTypeRef LLVMStructTypeInContext (LLVMContextRef C, LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed)
 
LLVMTypeRef LLVMStructType (LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed)
 
LLVMTypeRef LLVMStructCreateNamed (LLVMContextRef C, const char *Name)
 
const char * LLVMGetStructName (LLVMTypeRef Ty)
 
void LLVMStructSetBody (LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes, unsigned ElementCount, LLVMBool Packed)
 
unsigned LLVMCountStructElementTypes (LLVMTypeRef StructTy)
 
void LLVMGetStructElementTypes (LLVMTypeRef StructTy, LLVMTypeRef *Dest)
 
LLVMTypeRef LLVMStructGetTypeAtIndex (LLVMTypeRef StructTy, unsigned i)
 
LLVMBool LLVMIsPackedStruct (LLVMTypeRef StructTy)
 
LLVMBool LLVMIsOpaqueStruct (LLVMTypeRef StructTy)
 
LLVMBool LLVMIsLiteralStruct (LLVMTypeRef StructTy)
 

Detailed Description

These functions relate to LLVMTypeRef instances.

See also
llvm::StructType

Function Documentation

◆ LLVMCountStructElementTypes()

unsigned LLVMCountStructElementTypes ( LLVMTypeRef  StructTy)

Get the number of elements defined inside the structure.

See also
llvm::StructType::getNumElements()

◆ LLVMGetStructElementTypes()

void LLVMGetStructElementTypes ( LLVMTypeRef  StructTy,
LLVMTypeRef Dest 
)

Get the elements within a structure.

The function is passed the address of a pre-allocated array of LLVMTypeRef at least LLVMCountStructElementTypes() long. After invocation, this array will be populated with the structure's elements. The objects in the destination array will have a lifetime of the structure type itself, which is the lifetime of the context it is contained in.

◆ LLVMGetStructName()

const char * LLVMGetStructName ( LLVMTypeRef  Ty)

Obtain the name of a structure.

See also
llvm::StructType::getName()

◆ LLVMIsLiteralStruct()

LLVMBool LLVMIsLiteralStruct ( LLVMTypeRef  StructTy)

Determine whether a structure is literal.

See also
llvm::StructType::isLiteral()

◆ LLVMIsOpaqueStruct()

LLVMBool LLVMIsOpaqueStruct ( LLVMTypeRef  StructTy)

Determine whether a structure is opaque.

See also
llvm::StructType::isOpaque()

◆ LLVMIsPackedStruct()

LLVMBool LLVMIsPackedStruct ( LLVMTypeRef  StructTy)

Determine whether a structure is packed.

See also
llvm::StructType::isPacked()

◆ LLVMStructCreateNamed()

LLVMTypeRef LLVMStructCreateNamed ( LLVMContextRef  C,
const char *  Name 
)

Create an empty structure in a context having a specified name.

See also
llvm::StructType::create()
Here is the caller graph for this function:

◆ LLVMStructGetTypeAtIndex()

LLVMTypeRef LLVMStructGetTypeAtIndex ( LLVMTypeRef  StructTy,
unsigned  i 
)

Get the type of the element at a given index in the structure.

See also
llvm::StructType::getTypeAtIndex()

◆ LLVMStructSetBody()

void LLVMStructSetBody ( LLVMTypeRef  StructTy,
LLVMTypeRef ElementTypes,
unsigned  ElementCount,
LLVMBool  Packed 
)

Set the contents of a structure type.

See also
llvm::StructType::setBody()
Here is the caller graph for this function:

◆ LLVMStructType()

LLVMTypeRef LLVMStructType ( LLVMTypeRef ElementTypes,
unsigned  ElementCount,
LLVMBool  Packed 
)

Create a new structure type in the global context.

See also
llvm::StructType::create()

◆ LLVMStructTypeInContext()

LLVMTypeRef LLVMStructTypeInContext ( LLVMContextRef  C,
LLVMTypeRef ElementTypes,
unsigned  ElementCount,
LLVMBool  Packed 
)

Create a new structure type in a context.

A structure is specified by a list of inner elements/types and whether these can be packed together.

See also
llvm::StructType::create()