OpenVDB 10.0.1
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
LLVMType< void * > Struct Reference

#include <openvdb_ax/codegen/Types.h>

Inheritance diagram for LLVMType< void * >:
LLVMType< int_t< sizeof(void *)>::type * >

Static Public Member Functions

static llvm::Type * get (llvm::LLVMContext &C)
 Return an LLVM type which represents T. More...
 
static llvm::Constant * get (llvm::LLVMContext &C, const int_t< sizeof(void *)>::type * V)
 Return an LLVM constant Value which represents T value. More...
 
static llvm::Constant * get (llvm::LLVMContext &C, const int_t< sizeof(void *)>::type * *const V)
 Return an LLVM constant which holds an uintptr_t, representing the current address of the given value. More...
 

Detailed Description

Note
void* implemented as signed int_t* to match clang IR generation

Member Function Documentation

◆ get() [1/3]

static llvm::Type * get ( llvm::LLVMContext &  C)
inlinestaticinherited

Return an LLVM type which represents T.

Parameters
CThe LLVMContext to request the Type from.

◆ get() [2/3]

static llvm::Constant * get ( llvm::LLVMContext &  C,
const int_t< sizeof(void *)>::type * *const  V 
)
inlinestaticinherited

Return an LLVM constant which holds an uintptr_t, representing the current address of the given value.

Parameters
CThe LLVMContext
VThe address of a given type to convert to an LLVM constant

◆ get() [3/3]

static llvm::Constant * get ( llvm::LLVMContext &  C,
const int_t< sizeof(void *)>::type *  V 
)
inlinestaticinherited

Return an LLVM constant Value which represents T value.

Parameters
CThe LLVMContext
VThe value to convert to an LLVM constant
Returns
If successful, returns a pointer to an LLVM constant which holds the value T.