1 /*===-- llvm-c/Support.h - C Interface Types declarations ---------*- C -*-===*\
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
5 |* See https://llvm.org/LICENSE.txt for license information. *|
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
8 |*===----------------------------------------------------------------------===*|
10 |* This file defines types used by the C interface to LLVM. *|
12 \*===----------------------------------------------------------------------===*/
14 #ifndef LLVM_C_TYPES_H
15 #define LLVM_C_TYPES_H
17 #include "llvm-c/DataTypes.h"
24 * @defgroup LLVMCSupportTypes Types and Enumerations
34 * LLVM uses a polymorphic type hierarchy which C cannot represent, therefore
35 * parameters must be passed as base types. Despite the declared types, most
36 * of the functions provided operate only on branches of the type hierarchy.
37 * The declared parameter names are descriptive and specify which type is
38 * required. Additionally, each type hierarchy is documented along with the
39 * functions that operate upon it. For more detail, refer to LLVM's C++ code.
40 * If in doubt, refer to Core.cpp, which performs parameter downcasts in the
41 * form unwrap<RequiredType>(Param).
45 * Used to pass regions of memory through LLVM interfaces.
47 * @see llvm::MemoryBuffer
49 typedef struct LLVMOpaqueMemoryBuffer
*LLVMMemoryBufferRef
;
52 * The top-level container for all LLVM global data. See the LLVMContext class.
54 typedef struct LLVMOpaqueContext
*LLVMContextRef
;
57 * The top-level container for all other LLVM Intermediate Representation (IR)
62 typedef struct LLVMOpaqueModule
*LLVMModuleRef
;
65 * Each value in the LLVM IR has a type, an LLVMTypeRef.
69 typedef struct LLVMOpaqueType
*LLVMTypeRef
;
72 * Represents an individual value in LLVM IR.
74 * This models llvm::Value.
76 typedef struct LLVMOpaqueValue
*LLVMValueRef
;
79 * Represents a basic block of instructions in LLVM IR.
81 * This models llvm::BasicBlock.
83 typedef struct LLVMOpaqueBasicBlock
*LLVMBasicBlockRef
;
86 * Represents an LLVM Metadata.
88 * This models llvm::Metadata.
90 typedef struct LLVMOpaqueMetadata
*LLVMMetadataRef
;
93 * Represents an LLVM Named Metadata Node.
95 * This models llvm::NamedMDNode.
97 typedef struct LLVMOpaqueNamedMDNode
*LLVMNamedMDNodeRef
;
100 * Represents an entry in a Global Object's metadata attachments.
102 * This models std::pair<unsigned, MDNode *>
104 typedef struct LLVMOpaqueValueMetadataEntry LLVMValueMetadataEntry
;
107 * Represents an LLVM basic block builder.
109 * This models llvm::IRBuilder.
111 typedef struct LLVMOpaqueBuilder
*LLVMBuilderRef
;
114 * Represents an LLVM debug info builder.
116 * This models llvm::DIBuilder.
118 typedef struct LLVMOpaqueDIBuilder
*LLVMDIBuilderRef
;
121 * Interface used to provide a module to JIT or interpreter.
122 * This is now just a synonym for llvm::Module, but we have to keep using the
123 * different type to keep binary compatibility.
125 typedef struct LLVMOpaqueModuleProvider
*LLVMModuleProviderRef
;
127 /** @see llvm::PassManagerBase */
128 typedef struct LLVMOpaquePassManager
*LLVMPassManagerRef
;
130 /** @see llvm::PassRegistry */
131 typedef struct LLVMOpaquePassRegistry
*LLVMPassRegistryRef
;
134 * Used to get the users and usees of a Value.
137 typedef struct LLVMOpaqueUse
*LLVMUseRef
;
140 * Used to represent an attributes.
142 * @see llvm::Attribute
144 typedef struct LLVMOpaqueAttributeRef
*LLVMAttributeRef
;
147 * @see llvm::DiagnosticInfo
149 typedef struct LLVMOpaqueDiagnosticInfo
*LLVMDiagnosticInfoRef
;
154 typedef struct LLVMComdat
*LLVMComdatRef
;
157 * @see llvm::Module::ModuleFlagEntry
159 typedef struct LLVMOpaqueModuleFlagEntry LLVMModuleFlagEntry
;
162 * @see llvm::JITEventListener
164 typedef struct LLVMOpaqueJITEventListener
*LLVMJITEventListenerRef
;
167 * @see llvm::object::Binary
169 typedef struct LLVMOpaqueBinary
*LLVMBinaryRef
;