blob: e0eaf9b5cbae574d83b2490baeb75a0f718b84f7 [file] [log] [blame]
Gordon Henriksen76a03742007-09-18 03:18:57 +00001/*===-- llvm-c/Core.h - Core Library C Interface ------------------*- C -*-===*\
2|* *|
3|* The LLVM Compiler Infrastructure *|
4|* *|
Chris Lattnere9cc7422007-12-29 19:59:42 +00005|* This file is distributed under the University of Illinois Open Source *|
6|* License. See LICENSE.TXT for details. *|
Gordon Henriksen76a03742007-09-18 03:18:57 +00007|* *|
8|*===----------------------------------------------------------------------===*|
9|* *|
10|* This header declares the C interface to libLLVMCore.a, which implements *|
11|* the LLVM intermediate representation. *|
12|* *|
13|* LLVM uses a polymorphic type hierarchy which C cannot represent, therefore *|
14|* parameters must be passed as base types. Despite the declared types, most *|
15|* of the functions provided operate only on branches of the type hierarchy. *|
16|* The declared parameter names are descriptive and specify which type is *|
17|* required. Additionally, each type hierarchy is documented along with the *|
18|* functions that operate upon it. For more detail, refer to LLVM's C++ code. *|
19|* If in doubt, refer to Core.cpp, which performs paramter downcasts in the *|
20|* form unwrap<RequiredType>(Param). *|
21|* *|
22|* Many exotic languages can interoperate with C code but have a harder time *|
23|* with C++ due to name mangling. So in addition to C, this interface enables *|
24|* tools written in such languages. *|
25|* *|
Gordon Henriksen7330acd2007-10-05 23:59:36 +000026|* When included into a C++ source file, also declares 'wrap' and 'unwrap' *|
27|* helpers to perform opaque reference<-->pointer conversions. These helpers *|
28|* are shorter and more tightly typed than writing the casts by hand when *|
29|* authoring bindings. In assert builds, they will do runtime type checking. *|
30|* *|
Gordon Henriksen76a03742007-09-18 03:18:57 +000031\*===----------------------------------------------------------------------===*/
32
33#ifndef LLVM_C_CORE_H
34#define LLVM_C_CORE_H
35
36#ifdef __cplusplus
Gordon Henriksen7330acd2007-10-05 23:59:36 +000037
38/* Need these includes to support the LLVM 'cast' template for the C++ 'wrap'
39 and 'unwrap' conversion functions. */
40#include "llvm/Module.h"
Duncan Sandsa07136e2008-04-13 06:22:09 +000041#include "llvm/Support/IRBuilder.h"
Gordon Henriksen7330acd2007-10-05 23:59:36 +000042
Gordon Henriksen76a03742007-09-18 03:18:57 +000043extern "C" {
44#endif
45
46
47/* Opaque types. */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000048
49/**
Owen Anderson6773d382009-07-01 16:58:40 +000050 * The top-level container for all LLVM global data. See the LLVMContext class.
51 */
52typedef struct LLVMCtxt *LLVMContextRef;
53
54/**
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000055 * The top-level container for all other LLVM Intermediate Representation (IR)
56 * objects. See the llvm::Module class.
57 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000058typedef struct LLVMOpaqueModule *LLVMModuleRef;
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000059
60/**
Gordon Henriksena49d4352008-03-07 19:13:06 +000061 * Each value in the LLVM IR has a type, an LLVMTypeRef. See the llvm::Type
62 * class.
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000063 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000064typedef struct LLVMOpaqueType *LLVMTypeRef;
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000065
66/**
Gordon Henriksena49d4352008-03-07 19:13:06 +000067 * When building recursive types using LLVMRefineType, LLVMTypeRef values may
68 * become invalid; use LLVMTypeHandleRef to resolve this problem. See the
69 * llvm::AbstractTypeHolder class.
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000070 */
Gordon Henriksenffb48762007-10-07 00:13:35 +000071typedef struct LLVMOpaqueTypeHandle *LLVMTypeHandleRef;
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000072
Gordon Henriksen76a03742007-09-18 03:18:57 +000073typedef struct LLVMOpaqueValue *LLVMValueRef;
Gordon Henriksenc23b66c2007-09-26 20:56:12 +000074typedef struct LLVMOpaqueBasicBlock *LLVMBasicBlockRef;
75typedef struct LLVMOpaqueBuilder *LLVMBuilderRef;
Gordon Henriksen34eb6d82007-12-19 22:30:40 +000076
77/* Used to provide a module to JIT or interpreter.
78 * See the llvm::ModuleProvider class.
79 */
Gordon Henriksen0a68fe22007-12-12 01:04:30 +000080typedef struct LLVMOpaqueModuleProvider *LLVMModuleProviderRef;
Gordon Henriksen76a03742007-09-18 03:18:57 +000081
Gordon Henriksen34eb6d82007-12-19 22:30:40 +000082/* Used to provide a module to JIT or interpreter.
83 * See the llvm::MemoryBuffer class.
84 */
85typedef struct LLVMOpaqueMemoryBuffer *LLVMMemoryBufferRef;
86
Gordon Henriksen878114b2008-03-16 04:20:44 +000087/** See the llvm::PassManagerBase class. */
88typedef struct LLVMOpaquePassManager *LLVMPassManagerRef;
89
Gordon Henriksen76a03742007-09-18 03:18:57 +000090typedef enum {
Devang Patel4c758ea2008-09-25 21:00:45 +000091 LLVMZExtAttribute = 1<<0,
92 LLVMSExtAttribute = 1<<1,
93 LLVMNoReturnAttribute = 1<<2,
94 LLVMInRegAttribute = 1<<3,
95 LLVMStructRetAttribute = 1<<4,
96 LLVMNoUnwindAttribute = 1<<5,
97 LLVMNoAliasAttribute = 1<<6,
98 LLVMByValAttribute = 1<<7,
99 LLVMNestAttribute = 1<<8,
100 LLVMReadNoneAttribute = 1<<9,
101 LLVMReadOnlyAttribute = 1<<10
102} LLVMAttribute;
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000103
104typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000105 LLVMVoidTypeKind, /**< type with no size */
106 LLVMFloatTypeKind, /**< 32 bit floating point type */
107 LLVMDoubleTypeKind, /**< 64 bit floating point type */
108 LLVMX86_FP80TypeKind, /**< 80 bit floating point type (X87) */
109 LLVMFP128TypeKind, /**< 128 bit floating point type (112-bit mantissa)*/
110 LLVMPPC_FP128TypeKind, /**< 128 bit floating point type (two 64-bits) */
111 LLVMLabelTypeKind, /**< Labels */
112 LLVMIntegerTypeKind, /**< Arbitrary bit width integers */
113 LLVMFunctionTypeKind, /**< Functions */
114 LLVMStructTypeKind, /**< Structures */
115 LLVMArrayTypeKind, /**< Arrays */
116 LLVMPointerTypeKind, /**< Pointers */
117 LLVMOpaqueTypeKind, /**< Opaque: type with unknown structure */
118 LLVMVectorTypeKind /**< SIMD 'packed' format, or other vector type */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000119} LLVMTypeKind;
120
121typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000122 LLVMExternalLinkage, /**< Externally visible function */
Chris Lattner2dba0f02009-04-13 06:25:37 +0000123 LLVMAvailableExternallyLinkage,
Duncan Sands12da8ce2009-03-07 15:45:40 +0000124 LLVMLinkOnceAnyLinkage, /**< Keep one copy of function when linking (inline)*/
125 LLVMLinkOnceODRLinkage, /**< Same, but only replaced by something
126 equivalent. */
127 LLVMWeakAnyLinkage, /**< Keep one copy of function when linking (weak) */
128 LLVMWeakODRLinkage, /**< Same, but only replaced by something
129 equivalent. */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000130 LLVMAppendingLinkage, /**< Special purpose, only applies to global arrays */
131 LLVMInternalLinkage, /**< Rename collisions when linking (static
132 functions) */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000133 LLVMPrivateLinkage, /**< Like Internal, but omit from symbol table */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000134 LLVMDLLImportLinkage, /**< Function to be imported from DLL */
135 LLVMDLLExportLinkage, /**< Function to be accessible from DLL */
Duncan Sandse2881052009-03-11 08:08:06 +0000136 LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000137 LLVMGhostLinkage, /**< Stand-in functions for streaming fns from
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000138 bitcode */
Duncan Sands4581beb2009-03-11 20:14:15 +0000139 LLVMCommonLinkage /**< Tentative definitions */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000140} LLVMLinkage;
141
142typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000143 LLVMDefaultVisibility, /**< The GV is visible */
144 LLVMHiddenVisibility, /**< The GV is hidden */
145 LLVMProtectedVisibility /**< The GV is protected */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000146} LLVMVisibility;
147
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000148typedef enum {
149 LLVMCCallConv = 0,
150 LLVMFastCallConv = 8,
151 LLVMColdCallConv = 9,
152 LLVMX86StdcallCallConv = 64,
153 LLVMX86FastcallCallConv = 65
154} LLVMCallConv;
155
156typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000157 LLVMIntEQ = 32, /**< equal */
158 LLVMIntNE, /**< not equal */
159 LLVMIntUGT, /**< unsigned greater than */
160 LLVMIntUGE, /**< unsigned greater or equal */
161 LLVMIntULT, /**< unsigned less than */
162 LLVMIntULE, /**< unsigned less or equal */
163 LLVMIntSGT, /**< signed greater than */
164 LLVMIntSGE, /**< signed greater or equal */
165 LLVMIntSLT, /**< signed less than */
166 LLVMIntSLE /**< signed less or equal */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000167} LLVMIntPredicate;
168
169typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000170 LLVMRealPredicateFalse, /**< Always false (always folded) */
171 LLVMRealOEQ, /**< True if ordered and equal */
172 LLVMRealOGT, /**< True if ordered and greater than */
173 LLVMRealOGE, /**< True if ordered and greater than or equal */
174 LLVMRealOLT, /**< True if ordered and less than */
175 LLVMRealOLE, /**< True if ordered and less than or equal */
176 LLVMRealONE, /**< True if ordered and operands are unequal */
177 LLVMRealORD, /**< True if ordered (no nans) */
178 LLVMRealUNO, /**< True if unordered: isnan(X) | isnan(Y) */
179 LLVMRealUEQ, /**< True if unordered or equal */
180 LLVMRealUGT, /**< True if unordered or greater than */
181 LLVMRealUGE, /**< True if unordered, greater than, or equal */
182 LLVMRealULT, /**< True if unordered or less than */
183 LLVMRealULE, /**< True if unordered, less than, or equal */
184 LLVMRealUNE, /**< True if unordered or not equal */
185 LLVMRealPredicateTrue /**< Always true (always folded) */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000186} LLVMRealPredicate;
187
Gordon Henriksen76a03742007-09-18 03:18:57 +0000188
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000189/*===-- Error handling ----------------------------------------------------===*/
190
191void LLVMDisposeMessage(char *Message);
192
193
Gordon Henriksen76a03742007-09-18 03:18:57 +0000194/*===-- Modules -----------------------------------------------------------===*/
195
Owen Anderson6773d382009-07-01 16:58:40 +0000196/* Create and destroy contexts. */
197LLVMContextRef LLVMContextCreate();
Owen Andersonf7691d32009-07-02 00:16:38 +0000198LLVMContextRef LLVMGetGlobalContext();
Owen Anderson6773d382009-07-01 16:58:40 +0000199void LLVMContextDispose(LLVMContextRef C);
200
Gordon Henriksen76a03742007-09-18 03:18:57 +0000201/* Create and destroy modules. */
Gordon Henriksena49d4352008-03-07 19:13:06 +0000202/** See llvm::Module::Module. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000203LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
Owen Anderson31d44e42009-07-02 07:17:57 +0000204LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
205 LLVMContextRef C);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000206
207/** See llvm::Module::~Module. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000208void LLVMDisposeModule(LLVMModuleRef M);
209
Gordon Henriksena49d4352008-03-07 19:13:06 +0000210/** Data layout. See Module::getDataLayout. */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000211const char *LLVMGetDataLayout(LLVMModuleRef M);
212void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
213
Gordon Henriksena49d4352008-03-07 19:13:06 +0000214/** Target triple. See Module::getTargetTriple. */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000215const char *LLVMGetTarget(LLVMModuleRef M);
216void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
217
Gordon Henriksena49d4352008-03-07 19:13:06 +0000218/** See Module::addTypeName. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000219int LLVMAddTypeName(LLVMModuleRef M, const char *Name, LLVMTypeRef Ty);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000220void LLVMDeleteTypeName(LLVMModuleRef M, const char *Name);
Chris Lattner7f318242009-07-06 17:29:59 +0000221LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000222
Gordon Henriksen6c6075e2008-03-14 23:58:56 +0000223/** See Module::dump. */
224void LLVMDumpModule(LLVMModuleRef M);
225
Gordon Henriksen76a03742007-09-18 03:18:57 +0000226
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000227/*===-- Types -------------------------------------------------------------===*/
Gordon Henriksen76a03742007-09-18 03:18:57 +0000228
229/* LLVM types conform to the following hierarchy:
230 *
231 * types:
232 * integer type
233 * real type
234 * function type
235 * sequence types:
236 * array type
237 * pointer type
238 * vector type
239 * void type
240 * label type
241 * opaque type
242 */
243
Gordon Henriksena49d4352008-03-07 19:13:06 +0000244/** See llvm::LLVMTypeKind::getTypeID. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000245LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000246
Gordon Henriksen76a03742007-09-18 03:18:57 +0000247/* Operations on integer types */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000248LLVMTypeRef LLVMInt1Type(void);
249LLVMTypeRef LLVMInt8Type(void);
250LLVMTypeRef LLVMInt16Type(void);
251LLVMTypeRef LLVMInt32Type(void);
252LLVMTypeRef LLVMInt64Type(void);
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000253LLVMTypeRef LLVMIntType(unsigned NumBits);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000254unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000255
256/* Operations on real types */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000257LLVMTypeRef LLVMFloatType(void);
258LLVMTypeRef LLVMDoubleType(void);
259LLVMTypeRef LLVMX86FP80Type(void);
260LLVMTypeRef LLVMFP128Type(void);
261LLVMTypeRef LLVMPPCFP128Type(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000262
263/* Operations on function types */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000264LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
265 LLVMTypeRef *ParamTypes, unsigned ParamCount,
266 int IsVarArg);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000267int LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000268LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
269unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
270void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000271
272/* Operations on struct types */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000273LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
274 int Packed);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000275unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000276void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
277int LLVMIsPackedStruct(LLVMTypeRef StructTy);
278
279/* Operations on array, pointer, and vector types (sequence types) */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000280LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
Gordon Henriksen5a3fe032007-12-17 16:08:32 +0000281LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000282LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000283
284LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty);
285unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy);
Gordon Henriksen5a3fe032007-12-17 16:08:32 +0000286unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000287unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
288
289/* Operations on other types */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000290LLVMTypeRef LLVMVoidType(void);
291LLVMTypeRef LLVMLabelType(void);
292LLVMTypeRef LLVMOpaqueType(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000293
Gordon Henriksenffb48762007-10-07 00:13:35 +0000294/* Operations on type handles */
295LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy);
296void LLVMRefineType(LLVMTypeRef AbstractTy, LLVMTypeRef ConcreteTy);
297LLVMTypeRef LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle);
298void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle);
299
Gordon Henriksen76a03742007-09-18 03:18:57 +0000300
301/*===-- Values ------------------------------------------------------------===*/
302
303/* The bulk of LLVM's object model consists of values, which comprise a very
304 * rich type hierarchy.
Gordon Henriksen76a03742007-09-18 03:18:57 +0000305 */
306
Gordon Henriksen29e38942008-12-19 18:39:45 +0000307#define LLVM_FOR_EACH_VALUE_SUBCLASS(macro) \
308 macro(Argument) \
309 macro(BasicBlock) \
310 macro(InlineAsm) \
311 macro(User) \
312 macro(Constant) \
313 macro(ConstantAggregateZero) \
314 macro(ConstantArray) \
315 macro(ConstantExpr) \
316 macro(ConstantFP) \
317 macro(ConstantInt) \
318 macro(ConstantPointerNull) \
319 macro(ConstantStruct) \
320 macro(ConstantVector) \
321 macro(GlobalValue) \
322 macro(Function) \
323 macro(GlobalAlias) \
324 macro(GlobalVariable) \
325 macro(UndefValue) \
326 macro(Instruction) \
327 macro(BinaryOperator) \
328 macro(CallInst) \
329 macro(IntrinsicInst) \
330 macro(DbgInfoIntrinsic) \
331 macro(DbgDeclareInst) \
332 macro(DbgFuncStartInst) \
333 macro(DbgRegionEndInst) \
334 macro(DbgRegionStartInst) \
335 macro(DbgStopPointInst) \
336 macro(EHSelectorInst) \
337 macro(MemIntrinsic) \
338 macro(MemCpyInst) \
339 macro(MemMoveInst) \
340 macro(MemSetInst) \
341 macro(CmpInst) \
342 macro(FCmpInst) \
343 macro(ICmpInst) \
344 macro(VFCmpInst) \
345 macro(VICmpInst) \
346 macro(ExtractElementInst) \
347 macro(GetElementPtrInst) \
348 macro(InsertElementInst) \
349 macro(InsertValueInst) \
350 macro(PHINode) \
351 macro(SelectInst) \
352 macro(ShuffleVectorInst) \
353 macro(StoreInst) \
354 macro(TerminatorInst) \
355 macro(BranchInst) \
356 macro(InvokeInst) \
357 macro(ReturnInst) \
358 macro(SwitchInst) \
359 macro(UnreachableInst) \
360 macro(UnwindInst) \
361 macro(UnaryInstruction) \
362 macro(AllocationInst) \
Gordon Henriksen05a868f2008-12-19 18:51:17 +0000363 macro(AllocaInst) \
364 macro(MallocInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +0000365 macro(CastInst) \
Gordon Henriksen05a868f2008-12-19 18:51:17 +0000366 macro(BitCastInst) \
367 macro(FPExtInst) \
368 macro(FPToSIInst) \
369 macro(FPToUIInst) \
370 macro(FPTruncInst) \
371 macro(IntToPtrInst) \
372 macro(PtrToIntInst) \
373 macro(SExtInst) \
374 macro(SIToFPInst) \
375 macro(TruncInst) \
376 macro(UIToFPInst) \
377 macro(ZExtInst) \
378 macro(ExtractValueInst) \
379 macro(FreeInst) \
380 macro(LoadInst) \
381 macro(VAArgInst)
Gordon Henriksen29e38942008-12-19 18:39:45 +0000382
Gordon Henriksen76a03742007-09-18 03:18:57 +0000383/* Operations on all values */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000384LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000385const char *LLVMGetValueName(LLVMValueRef Val);
386void LLVMSetValueName(LLVMValueRef Val, const char *Name);
Gordon Henriksen1d0d24c2007-10-06 00:08:49 +0000387void LLVMDumpValue(LLVMValueRef Val);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000388
Gordon Henriksen29e38942008-12-19 18:39:45 +0000389/* Conversion functions. Return the input value if it is an instance of the
390 specified class, otherwise NULL. See llvm::dyn_cast_or_null<>. */
391#define LLVM_DECLARE_VALUE_CAST(name) \
392 LLVMValueRef LLVMIsA##name(LLVMValueRef Val);
393LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DECLARE_VALUE_CAST)
394
Gordon Henriksen76a03742007-09-18 03:18:57 +0000395/* Operations on constants of any type */
Gordon Henriksen1046c732007-10-06 15:11:06 +0000396LLVMValueRef LLVMConstNull(LLVMTypeRef Ty); /* all zeroes */
397LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty); /* only for int/vector */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000398LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty);
Gordon Henriksendc88c062007-09-18 18:07:51 +0000399int LLVMIsConstant(LLVMValueRef Val);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000400int LLVMIsNull(LLVMValueRef Val);
Gordon Henriksendc88c062007-09-18 18:07:51 +0000401int LLVMIsUndef(LLVMValueRef Val);
Chris Lattner7f318242009-07-06 17:29:59 +0000402LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000403
404/* Operations on scalar constants */
Gordon Henriksen1046c732007-10-06 15:11:06 +0000405LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
406 int SignExtend);
407LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N);
Gordon Henriksen931e1212008-02-02 01:07:50 +0000408LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000409
410/* Operations on composite constants */
Gordon Henriksen1046c732007-10-06 15:11:06 +0000411LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
412 int DontNullTerminate);
Gordon Henriksen2ad5aef2008-04-25 03:21:19 +0000413LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
Gordon Henriksen1046c732007-10-06 15:11:06 +0000414 LLVMValueRef *ConstantVals, unsigned Length);
415LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
416 int packed);
417LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000418
Gordon Henriksen7ce31762007-10-06 14:29:36 +0000419/* Constant expressions */
420LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty);
421LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal);
422LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal);
423LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
424LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
425LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
426LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
427LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
428LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
429LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
430LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
431LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
432LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
433LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
434LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
435LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
436 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
437LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
438 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
439LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
440LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
441LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
442LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
443 LLVMValueRef *ConstantIndices, unsigned NumIndices);
444LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
445LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
446LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
447LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
448LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
449LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
450LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
451LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
452LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
453LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
454LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
455LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
456LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
457 LLVMValueRef ConstantIfTrue,
458 LLVMValueRef ConstantIfFalse);
459LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
460 LLVMValueRef IndexConstant);
461LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
462 LLVMValueRef ElementValueConstant,
463 LLVMValueRef IndexConstant);
464LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
465 LLVMValueRef VectorBConstant,
466 LLVMValueRef MaskConstant);
Dan Gohmand5104a52008-11-03 22:55:43 +0000467LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
468 unsigned NumIdx);
469LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
470 LLVMValueRef ElementValueConstant,
471 unsigned *IdxList, unsigned NumIdx);
Chris Lattner3d1f5522008-12-17 21:39:50 +0000472LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty,
473 const char *AsmString, const char *Constraints,
474 int HasSideEffects);
Gordon Henriksen7ce31762007-10-06 14:29:36 +0000475
Gordon Henriksen76a03742007-09-18 03:18:57 +0000476/* Operations on global variables, functions, and aliases (globals) */
Gordon Henriksen265f7802008-03-19 01:11:35 +0000477LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000478int LLVMIsDeclaration(LLVMValueRef Global);
479LLVMLinkage LLVMGetLinkage(LLVMValueRef Global);
480void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage);
481const char *LLVMGetSection(LLVMValueRef Global);
482void LLVMSetSection(LLVMValueRef Global, const char *Section);
483LLVMVisibility LLVMGetVisibility(LLVMValueRef Global);
484void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
485unsigned LLVMGetAlignment(LLVMValueRef Global);
486void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes);
487
488/* Operations on global variables */
489LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name);
Gordon Henriksen783f7bb2007-10-08 03:45:09 +0000490LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name);
Gordon Henriksen07a45f42008-03-23 22:21:29 +0000491LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M);
492LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M);
493LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar);
494LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000495void LLVMDeleteGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000496LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar);
497void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal);
498int LLVMIsThreadLocal(LLVMValueRef GlobalVar);
499void LLVMSetThreadLocal(LLVMValueRef GlobalVar, int IsThreadLocal);
Gordon Henriksen751ebf72007-10-07 17:31:42 +0000500int LLVMIsGlobalConstant(LLVMValueRef GlobalVar);
501void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, int IsConstant);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000502
Chris Lattner3d1f5522008-12-17 21:39:50 +0000503/* Operations on aliases */
504LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
505 const char *Name);
506
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000507/* Operations on functions */
508LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
509 LLVMTypeRef FunctionTy);
Gordon Henriksen783f7bb2007-10-08 03:45:09 +0000510LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name);
Gordon Henriksen054817c2008-03-19 03:47:18 +0000511LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M);
512LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M);
513LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn);
514LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000515void LLVMDeleteFunction(LLVMValueRef Fn);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000516unsigned LLVMGetIntrinsicID(LLVMValueRef Fn);
517unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn);
518void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC);
Gordon Henriksend930f912008-08-17 18:44:35 +0000519const char *LLVMGetGC(LLVMValueRef Fn);
520void LLVMSetGC(LLVMValueRef Fn, const char *Name);
Duncan Sands7374a012009-05-06 12:21:17 +0000521void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
522void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000523
Gordon Henriksen265f7802008-03-19 01:11:35 +0000524/* Operations on parameters */
525unsigned LLVMCountParams(LLVMValueRef Fn);
526void LLVMGetParams(LLVMValueRef Fn, LLVMValueRef *Params);
527LLVMValueRef LLVMGetParam(LLVMValueRef Fn, unsigned Index);
528LLVMValueRef LLVMGetParamParent(LLVMValueRef Inst);
Gordon Henriksen07a45f42008-03-23 22:21:29 +0000529LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn);
530LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn);
531LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg);
532LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg);
Devang Patel4c758ea2008-09-25 21:00:45 +0000533void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA);
534void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA);
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000535void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align);
Gordon Henriksen265f7802008-03-19 01:11:35 +0000536
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000537/* Operations on basic blocks */
Gordon Henriksen07a45f42008-03-23 22:21:29 +0000538LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000539int LLVMValueIsBasicBlock(LLVMValueRef Val);
540LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val);
Gordon Henriksen07a45f42008-03-23 22:21:29 +0000541LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000542unsigned LLVMCountBasicBlocks(LLVMValueRef Fn);
543void LLVMGetBasicBlocks(LLVMValueRef Fn, LLVMBasicBlockRef *BasicBlocks);
Gordon Henriksen054817c2008-03-19 03:47:18 +0000544LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn);
545LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn);
546LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB);
547LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000548LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn);
549LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef Fn, const char *Name);
550LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBB,
551 const char *Name);
552void LLVMDeleteBasicBlock(LLVMBasicBlockRef BB);
553
Gordon Henriksen265f7802008-03-19 01:11:35 +0000554/* Operations on instructions */
555LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst);
Gordon Henriksen054817c2008-03-19 03:47:18 +0000556LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB);
557LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB);
558LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst);
559LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst);
Gordon Henriksen265f7802008-03-19 01:11:35 +0000560
Gordon Henriksen1158c532007-12-29 20:45:00 +0000561/* Operations on call sites */
562void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC);
563unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr);
Devang Patel4c758ea2008-09-25 21:00:45 +0000564void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute);
565void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
566 LLVMAttribute);
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000567void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
568 unsigned align);
Gordon Henriksen1158c532007-12-29 20:45:00 +0000569
Gordon Henrikseneeb65372008-08-30 16:34:54 +0000570/* Operations on call instructions (only) */
571int LLVMIsTailCall(LLVMValueRef CallInst);
572void LLVMSetTailCall(LLVMValueRef CallInst, int IsTailCall);
573
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +0000574/* Operations on phi nodes */
575void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
576 LLVMBasicBlockRef *IncomingBlocks, unsigned Count);
577unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
578LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
579LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000580
581/*===-- Instruction builders ----------------------------------------------===*/
582
583/* An instruction builder represents a point within a basic block, and is the
584 * exclusive means of building instructions using the C interface.
585 */
586
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000587LLVMBuilderRef LLVMCreateBuilder(void);
Gordon Henriksen054817c2008-03-19 03:47:18 +0000588void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
589 LLVMValueRef Instr);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000590void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
591void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block);
Gordon Henriksen265f7802008-03-19 01:11:35 +0000592LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder);
Chris Lattner3d1f5522008-12-17 21:39:50 +0000593void LLVMClearInsertionPosition(LLVMBuilderRef Builder);
594void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000595void LLVMDisposeBuilder(LLVMBuilderRef Builder);
596
597/* Terminators */
598LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef);
599LLVMValueRef LLVMBuildRet(LLVMBuilderRef, LLVMValueRef V);
600LLVMValueRef LLVMBuildBr(LLVMBuilderRef, LLVMBasicBlockRef Dest);
601LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef, LLVMValueRef If,
602 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
603LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef, LLVMValueRef V,
604 LLVMBasicBlockRef Else, unsigned NumCases);
605LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef, LLVMValueRef Fn,
606 LLVMValueRef *Args, unsigned NumArgs,
607 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
608 const char *Name);
609LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef);
610LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef);
611
Gordon Henriksen097102c2008-01-01 05:50:53 +0000612/* Add a case to the switch instruction */
613void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
614 LLVMBasicBlockRef Dest);
615
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000616/* Arithmetic */
617LLVMValueRef LLVMBuildAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
618 const char *Name);
619LLVMValueRef LLVMBuildSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
620 const char *Name);
621LLVMValueRef LLVMBuildMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
622 const char *Name);
623LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
624 const char *Name);
625LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
626 const char *Name);
627LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
628 const char *Name);
629LLVMValueRef LLVMBuildURem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
630 const char *Name);
631LLVMValueRef LLVMBuildSRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
632 const char *Name);
633LLVMValueRef LLVMBuildFRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
634 const char *Name);
635LLVMValueRef LLVMBuildShl(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
636 const char *Name);
637LLVMValueRef LLVMBuildLShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
638 const char *Name);
639LLVMValueRef LLVMBuildAShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
640 const char *Name);
641LLVMValueRef LLVMBuildAnd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
642 const char *Name);
643LLVMValueRef LLVMBuildOr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
644 const char *Name);
645LLVMValueRef LLVMBuildXor(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
646 const char *Name);
647LLVMValueRef LLVMBuildNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
648LLVMValueRef LLVMBuildNot(LLVMBuilderRef, LLVMValueRef V, const char *Name);
649
650/* Memory */
651LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
652LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef, LLVMTypeRef Ty,
653 LLVMValueRef Val, const char *Name);
654LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
655LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef, LLVMTypeRef Ty,
656 LLVMValueRef Val, const char *Name);
657LLVMValueRef LLVMBuildFree(LLVMBuilderRef, LLVMValueRef PointerVal);
658LLVMValueRef LLVMBuildLoad(LLVMBuilderRef, LLVMValueRef PointerVal,
659 const char *Name);
660LLVMValueRef LLVMBuildStore(LLVMBuilderRef, LLVMValueRef Val, LLVMValueRef Ptr);
661LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
662 LLVMValueRef *Indices, unsigned NumIndices,
663 const char *Name);
664
665/* Casts */
666LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef, LLVMValueRef Val,
667 LLVMTypeRef DestTy, const char *Name);
668LLVMValueRef LLVMBuildZExt(LLVMBuilderRef, LLVMValueRef Val,
669 LLVMTypeRef DestTy, const char *Name);
670LLVMValueRef LLVMBuildSExt(LLVMBuilderRef, LLVMValueRef Val,
671 LLVMTypeRef DestTy, const char *Name);
672LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef, LLVMValueRef Val,
673 LLVMTypeRef DestTy, const char *Name);
674LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef, LLVMValueRef Val,
675 LLVMTypeRef DestTy, const char *Name);
676LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef, LLVMValueRef Val,
677 LLVMTypeRef DestTy, const char *Name);
678LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef, LLVMValueRef Val,
679 LLVMTypeRef DestTy, const char *Name);
680LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef, LLVMValueRef Val,
681 LLVMTypeRef DestTy, const char *Name);
682LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef, LLVMValueRef Val,
683 LLVMTypeRef DestTy, const char *Name);
684LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef, LLVMValueRef Val,
685 LLVMTypeRef DestTy, const char *Name);
686LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef, LLVMValueRef Val,
687 LLVMTypeRef DestTy, const char *Name);
688LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef, LLVMValueRef Val,
689 LLVMTypeRef DestTy, const char *Name);
690
691/* Comparisons */
692LLVMValueRef LLVMBuildICmp(LLVMBuilderRef, LLVMIntPredicate Op,
693 LLVMValueRef LHS, LLVMValueRef RHS,
694 const char *Name);
695LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef, LLVMRealPredicate Op,
696 LLVMValueRef LHS, LLVMValueRef RHS,
697 const char *Name);
698
699/* Miscellaneous instructions */
700LLVMValueRef LLVMBuildPhi(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
701LLVMValueRef LLVMBuildCall(LLVMBuilderRef, LLVMValueRef Fn,
702 LLVMValueRef *Args, unsigned NumArgs,
703 const char *Name);
704LLVMValueRef LLVMBuildSelect(LLVMBuilderRef, LLVMValueRef If,
705 LLVMValueRef Then, LLVMValueRef Else,
706 const char *Name);
707LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef, LLVMValueRef List, LLVMTypeRef Ty,
708 const char *Name);
709LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef, LLVMValueRef VecVal,
710 LLVMValueRef Index, const char *Name);
711LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef, LLVMValueRef VecVal,
712 LLVMValueRef EltVal, LLVMValueRef Index,
713 const char *Name);
714LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef, LLVMValueRef V1,
715 LLVMValueRef V2, LLVMValueRef Mask,
716 const char *Name);
Dan Gohmand5104a52008-11-03 22:55:43 +0000717LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef, LLVMValueRef AggVal,
718 unsigned Index, const char *Name);
719LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef, LLVMValueRef AggVal,
720 LLVMValueRef EltVal, unsigned Index,
721 const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000722
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000723
Gordon Henriksen0a68fe22007-12-12 01:04:30 +0000724/*===-- Module providers --------------------------------------------------===*/
725
726/* Encapsulates the module M in a module provider, taking ownership of the
727 * module.
728 * See the constructor llvm::ExistingModuleProvider::ExistingModuleProvider.
729 */
730LLVMModuleProviderRef
731LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M);
732
733/* Destroys the module provider MP as well as the contained module.
734 * See the destructor llvm::ModuleProvider::~ModuleProvider.
735 */
736void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP);
737
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000738
739/*===-- Memory buffers ----------------------------------------------------===*/
740
741int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
742 LLVMMemoryBufferRef *OutMemBuf,
743 char **OutMessage);
744int LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
745 char **OutMessage);
746void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf);
747
Gordon Henriksen878114b2008-03-16 04:20:44 +0000748
749/*===-- Pass Managers -----------------------------------------------------===*/
750
751/** Constructs a new whole-module pass pipeline. This type of pipeline is
752 suitable for link-time optimization and whole-module transformations.
753 See llvm::PassManager::PassManager. */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000754LLVMPassManagerRef LLVMCreatePassManager(void);
Gordon Henriksen878114b2008-03-16 04:20:44 +0000755
756/** Constructs a new function-by-function pass pipeline over the module
757 provider. It does not take ownership of the module provider. This type of
758 pipeline is suitable for code generation and JIT compilation tasks.
759 See llvm::FunctionPassManager::FunctionPassManager. */
760LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef MP);
761
762/** Initializes, executes on the provided module, and finalizes all of the
763 passes scheduled in the pass manager. Returns 1 if any of the passes
764 modified the module, 0 otherwise. See llvm::PassManager::run(Module&). */
765int LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M);
766
767/** Initializes all of the function passes scheduled in the function pass
768 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
769 See llvm::FunctionPassManager::doInitialization. */
770int LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM);
771
772/** Executes all of the function passes scheduled in the function pass manager
773 on the provided function. Returns 1 if any of the passes modified the
774 function, false otherwise.
775 See llvm::FunctionPassManager::run(Function&). */
776int LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F);
777
778/** Finalizes all of the function passes scheduled in in the function pass
779 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
780 See llvm::FunctionPassManager::doFinalization. */
781int LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM);
782
783/** Frees the memory of a pass pipeline. For function pipelines, does not free
784 the module provider.
785 See llvm::PassManagerBase::~PassManagerBase. */
786void LLVMDisposePassManager(LLVMPassManagerRef PM);
787
788
Gordon Henriksen76a03742007-09-18 03:18:57 +0000789#ifdef __cplusplus
790}
Gordon Henriksen76a03742007-09-18 03:18:57 +0000791
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000792namespace llvm {
Gordon Henriksen0a68fe22007-12-12 01:04:30 +0000793 class ModuleProvider;
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000794 class MemoryBuffer;
Gordon Henriksen96571492008-03-16 15:55:43 +0000795 class PassManagerBase;
Gordon Henriksen0a68fe22007-12-12 01:04:30 +0000796
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000797 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
798 inline ty *unwrap(ref P) { \
799 return reinterpret_cast<ty*>(P); \
800 } \
801 \
802 inline ref wrap(const ty *P) { \
803 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
804 }
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000805
Gordon Henriksen878114b2008-03-16 04:20:44 +0000806 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \
807 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
808 \
809 template<typename T> \
810 inline T *unwrap(ref P) { \
811 return cast<T>(unwrap(P)); \
812 }
813
814 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
815 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
816 \
817 template<typename T> \
818 inline T *unwrap(ref P) { \
819 T *Q = dynamic_cast<T*>(unwrap(P)); \
820 assert(Q && "Invalid cast!"); \
821 return Q; \
822 }
823
824 DEFINE_ISA_CONVERSION_FUNCTIONS (Type, LLVMTypeRef )
825 DEFINE_ISA_CONVERSION_FUNCTIONS (Value, LLVMValueRef )
Gordon Henriksen823f9732007-12-27 18:25:59 +0000826 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Module, LLVMModuleRef )
827 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef )
Eric Christopher59278832008-08-08 19:39:37 +0000828 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(IRBuilder<>, LLVMBuilderRef )
Gordon Henriksen823f9732007-12-27 18:25:59 +0000829 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(PATypeHolder, LLVMTypeHandleRef )
830 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ModuleProvider, LLVMModuleProviderRef)
831 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(MemoryBuffer, LLVMMemoryBufferRef )
Owen Anderson6773d382009-07-01 16:58:40 +0000832 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(LLVMContext, LLVMContextRef )
Gordon Henriksen878114b2008-03-16 04:20:44 +0000833 DEFINE_STDCXX_CONVERSION_FUNCTIONS(PassManagerBase, LLVMPassManagerRef )
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000834
Gordon Henriksen878114b2008-03-16 04:20:44 +0000835 #undef DEFINE_STDCXX_CONVERSION_FUNCTIONS
836 #undef DEFINE_ISA_CONVERSION_FUNCTIONS
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000837 #undef DEFINE_SIMPLE_CONVERSION_FUNCTIONS
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000838
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000839 /* Specialized opaque type conversions.
840 */
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000841 inline Type **unwrap(LLVMTypeRef* Tys) {
842 return reinterpret_cast<Type**>(Tys);
843 }
844
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000845 inline LLVMTypeRef *wrap(const Type **Tys) {
846 return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
847 }
848
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000849 /* Specialized opaque value conversions.
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000850 */
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000851 inline Value **unwrap(LLVMValueRef *Vals) {
852 return reinterpret_cast<Value**>(Vals);
853 }
854
855 template<typename T>
856 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) {
857 #if DEBUG
858 for (LLVMValueRef *I = Vals, E = Vals + Length; I != E; ++I)
859 cast<T>(*I);
860 #endif
861 return reinterpret_cast<T**>(Vals);
862 }
863
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000864 inline LLVMValueRef *wrap(const Value **Vals) {
865 return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
866 }
Gordon Henriksen7330acd2007-10-05 23:59:36 +0000867}
868
869#endif /* !defined(__cplusplus) */
870
871#endif /* !defined(LLVM_C_CORE_H) */