LLVM
8.0.1
|
Typedefs | |
typedef int | LLVMBool |
typedef struct LLVMOpaqueMemoryBuffer * | LLVMMemoryBufferRef |
LLVM uses a polymorphic type hierarchy which C cannot represent, therefore parameters must be passed as base types. More... | |
typedef struct LLVMOpaqueContext * | LLVMContextRef |
The top-level container for all LLVM global data. More... | |
typedef struct LLVMOpaqueModule * | LLVMModuleRef |
The top-level container for all other LLVM Intermediate Representation (IR) objects. More... | |
typedef struct LLVMOpaqueType * | LLVMTypeRef |
Each value in the LLVM IR has a type, an LLVMTypeRef. More... | |
typedef struct LLVMOpaqueValue * | LLVMValueRef |
Represents an individual value in LLVM IR. More... | |
typedef struct LLVMOpaqueBasicBlock * | LLVMBasicBlockRef |
Represents a basic block of instructions in LLVM IR. More... | |
typedef struct LLVMOpaqueMetadata * | LLVMMetadataRef |
Represents an LLVM Metadata. More... | |
typedef struct LLVMOpaqueNamedMDNode * | LLVMNamedMDNodeRef |
Represents an LLVM Named Metadata Node. More... | |
typedef struct LLVMOpaqueValueMetadataEntry | LLVMValueMetadataEntry |
Represents an entry in a Global Object's metadata attachments. More... | |
typedef struct LLVMOpaqueBuilder * | LLVMBuilderRef |
Represents an LLVM basic block builder. More... | |
typedef struct LLVMOpaqueDIBuilder * | LLVMDIBuilderRef |
Represents an LLVM debug info builder. More... | |
typedef struct LLVMOpaqueModuleProvider * | LLVMModuleProviderRef |
Interface used to provide a module to JIT or interpreter. More... | |
typedef struct LLVMOpaquePassManager * | LLVMPassManagerRef |
typedef struct LLVMOpaquePassRegistry * | LLVMPassRegistryRef |
typedef struct LLVMOpaqueUse * | LLVMUseRef |
Used to get the users and usees of a Value. More... | |
typedef struct LLVMOpaqueAttributeRef * | LLVMAttributeRef |
Used to represent an attributes. More... | |
typedef struct LLVMOpaqueDiagnosticInfo * | LLVMDiagnosticInfoRef |
typedef struct LLVMComdat * | LLVMComdatRef |
typedef struct LLVMOpaqueModuleFlagEntry | LLVMModuleFlagEntry |
typedef struct LLVMOpaqueJITEventListener * | LLVMJITEventListenerRef |
typedef struct LLVMOpaqueAttributeRef* LLVMAttributeRef |
typedef struct LLVMOpaqueBasicBlock* LLVMBasicBlockRef |
Represents a basic block of instructions in LLVM IR.
This models llvm::BasicBlock.
typedef struct LLVMOpaqueBuilder* LLVMBuilderRef |
Represents an LLVM basic block builder.
This models llvm::IRBuilder.
typedef struct LLVMComdat* LLVMComdatRef |
typedef struct LLVMOpaqueContext* LLVMContextRef |
typedef struct LLVMOpaqueDiagnosticInfo* LLVMDiagnosticInfoRef |
typedef struct LLVMOpaqueDIBuilder* LLVMDIBuilderRef |
Represents an LLVM debug info builder.
This models llvm::DIBuilder.
typedef struct LLVMOpaqueJITEventListener* LLVMJITEventListenerRef |
typedef struct LLVMOpaqueMemoryBuffer* LLVMMemoryBufferRef |
LLVM uses a polymorphic type hierarchy which C cannot represent, therefore parameters must be passed as base types.
Despite the declared types, most of the functions provided operate only on branches of the type hierarchy. The declared parameter names are descriptive and specify which type is required. Additionally, each type hierarchy is documented along with the functions that operate upon it. For more detail, refer to LLVM's C++ code. If in doubt, refer to Core.cpp, which performs parameter downcasts in the form unwrap<RequiredType>(Param). Used to pass regions of memory through LLVM interfaces.
typedef struct LLVMOpaqueMetadata* LLVMMetadataRef |
typedef struct LLVMOpaqueModuleFlagEntry LLVMModuleFlagEntry |
typedef struct LLVMOpaqueModuleProvider* LLVMModuleProviderRef |
Interface used to provide a module to JIT or interpreter.
This is now just a synonym for llvm::Module, but we have to keep using the different type to keep binary compatibility.
typedef struct LLVMOpaqueModule* LLVMModuleRef |
The top-level container for all other LLVM Intermediate Representation (IR) objects.
typedef struct LLVMOpaqueNamedMDNode* LLVMNamedMDNodeRef |
Represents an LLVM Named Metadata Node.
This models llvm::NamedMDNode.
typedef struct LLVMOpaquePassManager* LLVMPassManagerRef |
typedef struct LLVMOpaquePassRegistry* LLVMPassRegistryRef |
typedef struct LLVMOpaqueType* LLVMTypeRef |
Each value in the LLVM IR has a type, an LLVMTypeRef.
typedef struct LLVMOpaqueUse* LLVMUseRef |
typedef struct LLVMOpaqueValueMetadataEntry LLVMValueMetadataEntry |
typedef struct LLVMOpaqueValue* LLVMValueRef |
Represents an individual value in LLVM IR.
This models llvm::Value.