blob: 50c5e3ac46fdbeae11e30919dd5b8721a1f88b8e [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|* *|
Gordon Henriksen76a03742007-09-18 03:18:57 +000013\*===----------------------------------------------------------------------===*/
14
15#ifndef LLVM_C_CORE_H
16#define LLVM_C_CORE_H
17
Chandler Carruth3c57aa42014-03-06 04:13:12 +000018#include "llvm-c/Support.h"
Erick Tryzelaardd991352009-08-16 23:36:46 +000019
Evan Cheng2e254d02013-04-04 17:40:53 +000020#ifdef __cplusplus
Gordon Henriksen76a03742007-09-18 03:18:57 +000021extern "C" {
22#endif
23
Gregory Szorc34c863a2012-03-21 03:54:29 +000024/**
25 * @defgroup LLVMC LLVM-C: C interface to LLVM
26 *
27 * This module exposes parts of the LLVM library as a C API.
28 *
29 * @{
30 */
31
32/**
33 * @defgroup LLVMCTransforms Transforms
34 */
35
36/**
37 * @defgroup LLVMCCore Core
38 *
39 * This modules provide an interface to libLLVMCore, which implements
40 * the LLVM intermediate representation as well as other related types
41 * and utilities.
42 *
43 * LLVM uses a polymorphic type hierarchy which C cannot represent, therefore
44 * parameters must be passed as base types. Despite the declared types, most
45 * of the functions provided operate only on branches of the type hierarchy.
46 * The declared parameter names are descriptive and specify which type is
47 * required. Additionally, each type hierarchy is documented along with the
48 * functions that operate upon it. For more detail, refer to LLVM's C++ code.
Eli Bendersky870d0572012-08-10 18:26:20 +000049 * If in doubt, refer to Core.cpp, which performs parameter downcasts in the
Gregory Szorc34c863a2012-03-21 03:54:29 +000050 * form unwrap<RequiredType>(Param).
51 *
52 * Many exotic languages can interoperate with C code but have a harder time
53 * with C++ due to name mangling. So in addition to C, this interface enables
54 * tools written in such languages.
55 *
Gregory Szorc34c863a2012-03-21 03:54:29 +000056 * @{
57 */
58
59/**
60 * @defgroup LLVMCCoreTypes Types and Enumerations
61 *
62 * @{
63 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000064
65/* Opaque types. */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000066
67/**
Gregory Szorc34c863a2012-03-21 03:54:29 +000068 * The top-level container for all LLVM global data. See the LLVMContext class.
Owen Anderson6773d382009-07-01 16:58:40 +000069 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +000070typedef struct LLVMOpaqueContext *LLVMContextRef;
Owen Anderson6773d382009-07-01 16:58:40 +000071
72/**
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000073 * The top-level container for all other LLVM Intermediate Representation (IR)
Gregory Szorc34c863a2012-03-21 03:54:29 +000074 * objects.
75 *
76 * @see llvm::Module
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000077 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000078typedef struct LLVMOpaqueModule *LLVMModuleRef;
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000079
80/**
Gregory Szorc34c863a2012-03-21 03:54:29 +000081 * Each value in the LLVM IR has a type, an LLVMTypeRef.
82 *
83 * @see llvm::Type
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000084 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000085typedef struct LLVMOpaqueType *LLVMTypeRef;
Gordon Henriksen4a4d7352007-12-30 17:46:33 +000086
Gregory Szorc34c863a2012-03-21 03:54:29 +000087/**
88 * Represents an individual value in LLVM IR.
89 *
90 * This models llvm::Value.
91 */
Gordon Henriksen76a03742007-09-18 03:18:57 +000092typedef struct LLVMOpaqueValue *LLVMValueRef;
Gregory Szorc34c863a2012-03-21 03:54:29 +000093
94/**
Eli Bendersky870d0572012-08-10 18:26:20 +000095 * Represents a basic block of instructions in LLVM IR.
Gregory Szorc34c863a2012-03-21 03:54:29 +000096 *
97 * This models llvm::BasicBlock.
98 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +000099typedef struct LLVMOpaqueBasicBlock *LLVMBasicBlockRef;
Gregory Szorc34c863a2012-03-21 03:54:29 +0000100
101/**
102 * Represents an LLVM basic block builder.
103 *
104 * This models llvm::IRBuilder.
105 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000106typedef struct LLVMOpaqueBuilder *LLVMBuilderRef;
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000107
Gregory Szorc34c863a2012-03-21 03:54:29 +0000108/**
109 * Interface used to provide a module to JIT or interpreter.
110 * This is now just a synonym for llvm::Module, but we have to keep using the
111 * different type to keep binary compatibility.
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000112 */
Gordon Henriksen0a68fe22007-12-12 01:04:30 +0000113typedef struct LLVMOpaqueModuleProvider *LLVMModuleProviderRef;
Gordon Henriksen76a03742007-09-18 03:18:57 +0000114
Gregory Szorc34c863a2012-03-21 03:54:29 +0000115/** @see llvm::PassManagerBase */
Gordon Henriksen878114b2008-03-16 04:20:44 +0000116typedef struct LLVMOpaquePassManager *LLVMPassManagerRef;
117
Gregory Szorc34c863a2012-03-21 03:54:29 +0000118/** @see llvm::PassRegistry */
Owen Anderson4698c5d2010-10-07 17:55:47 +0000119typedef struct LLVMOpaquePassRegistry *LLVMPassRegistryRef;
120
Gregory Szorc34c863a2012-03-21 03:54:29 +0000121/**
122 * Used to get the users and usees of a Value.
123 *
124 * @see llvm::Use */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +0000125typedef struct LLVMOpaqueUse *LLVMUseRef;
Chris Lattner40cf28d2009-10-12 04:01:02 +0000126
Gordon Henriksen76a03742007-09-18 03:18:57 +0000127typedef enum {
Devang Patel4c758ea2008-09-25 21:00:45 +0000128 LLVMZExtAttribute = 1<<0,
129 LLVMSExtAttribute = 1<<1,
130 LLVMNoReturnAttribute = 1<<2,
131 LLVMInRegAttribute = 1<<3,
132 LLVMStructRetAttribute = 1<<4,
133 LLVMNoUnwindAttribute = 1<<5,
134 LLVMNoAliasAttribute = 1<<6,
135 LLVMByValAttribute = 1<<7,
136 LLVMNestAttribute = 1<<8,
137 LLVMReadNoneAttribute = 1<<9,
Anton Korobeynikovc8ce7b082009-07-17 18:07:26 +0000138 LLVMReadOnlyAttribute = 1<<10,
Anton Korobeynikov9750be92009-07-17 18:57:16 +0000139 LLVMNoInlineAttribute = 1<<11,
140 LLVMAlwaysInlineAttribute = 1<<12,
141 LLVMOptimizeForSizeAttribute = 1<<13,
142 LLVMStackProtectAttribute = 1<<14,
143 LLVMStackProtectReqAttribute = 1<<15,
Erick Tryzelaar8f69fea2010-03-03 23:51:25 +0000144 LLVMAlignment = 31<<16,
Anton Korobeynikov9750be92009-07-17 18:57:16 +0000145 LLVMNoCaptureAttribute = 1<<21,
146 LLVMNoRedZoneAttribute = 1<<22,
147 LLVMNoImplicitFloatAttribute = 1<<23,
Jakob Stoklund Olesen74bb06c2010-02-06 01:16:28 +0000148 LLVMNakedAttribute = 1<<24,
Erick Tryzelaar8f69fea2010-03-03 23:51:25 +0000149 LLVMInlineHintAttribute = 1<<25,
Torok Edwin1db48c02011-10-06 12:13:32 +0000150 LLVMStackAlignment = 7<<26,
151 LLVMReturnsTwice = 1 << 29,
152 LLVMUWTable = 1 << 30,
Chandler Carruth44d69d92012-01-25 07:40:15 +0000153 LLVMNonLazyBind = 1 << 31
154
Bill Wendlingd154e2832013-01-23 06:41:41 +0000155 /* FIXME: These attributes are currently not included in the C API as
Nuno Lopesdef4229972012-09-02 14:19:21 +0000156 a temporary measure until the API/ABI impact to the C API is understood
157 and the path forward agreed upon.
Bill Wendlingd154e2832013-01-23 06:41:41 +0000158 LLVMAddressSafety = 1ULL << 32,
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000159 LLVMStackProtectStrongAttribute = 1ULL<<33,
160 LLVMCold = 1ULL << 34,
Reid Klecknera534a382013-12-19 02:14:12 +0000161 LLVMOptimizeNone = 1ULL << 35,
162 LLVMInAllocaAttribute = 1ULL << 36
Nuno Lopesdef4229972012-09-02 14:19:21 +0000163 */
Devang Patel4c758ea2008-09-25 21:00:45 +0000164} LLVMAttribute;
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000165
166typedef enum {
Bill Wendlingda52cec2010-02-15 20:53:17 +0000167 /* Terminator Instructions */
Chris Lattner40cf28d2009-10-12 04:01:02 +0000168 LLVMRet = 1,
169 LLVMBr = 2,
170 LLVMSwitch = 3,
Bill Wendling07d6d762010-02-15 20:50:51 +0000171 LLVMIndirectBr = 4,
172 LLVMInvoke = 5,
Bill Wendling46ffaa92011-08-02 06:20:17 +0000173 /* removed 6 due to API changes */
Bill Wendling2641d132011-07-27 21:00:28 +0000174 LLVMUnreachable = 7,
Bill Wendling07d6d762010-02-15 20:50:51 +0000175
Bill Wendlingda52cec2010-02-15 20:53:17 +0000176 /* Standard Binary Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000177 LLVMAdd = 8,
178 LLVMFAdd = 9,
179 LLVMSub = 10,
180 LLVMFSub = 11,
181 LLVMMul = 12,
182 LLVMFMul = 13,
183 LLVMUDiv = 14,
184 LLVMSDiv = 15,
185 LLVMFDiv = 16,
186 LLVMURem = 17,
187 LLVMSRem = 18,
188 LLVMFRem = 19,
Bill Wendling07d6d762010-02-15 20:50:51 +0000189
Bill Wendlingda52cec2010-02-15 20:53:17 +0000190 /* Logical Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000191 LLVMShl = 20,
192 LLVMLShr = 21,
193 LLVMAShr = 22,
194 LLVMAnd = 23,
195 LLVMOr = 24,
196 LLVMXor = 25,
Bill Wendling07d6d762010-02-15 20:50:51 +0000197
Bill Wendlingda52cec2010-02-15 20:53:17 +0000198 /* Memory Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000199 LLVMAlloca = 26,
200 LLVMLoad = 27,
201 LLVMStore = 28,
202 LLVMGetElementPtr = 29,
Bill Wendling07d6d762010-02-15 20:50:51 +0000203
Bill Wendlingda52cec2010-02-15 20:53:17 +0000204 /* Cast Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000205 LLVMTrunc = 30,
206 LLVMZExt = 31,
207 LLVMSExt = 32,
208 LLVMFPToUI = 33,
209 LLVMFPToSI = 34,
210 LLVMUIToFP = 35,
211 LLVMSIToFP = 36,
212 LLVMFPTrunc = 37,
213 LLVMFPExt = 38,
214 LLVMPtrToInt = 39,
215 LLVMIntToPtr = 40,
216 LLVMBitCast = 41,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000217 LLVMAddrSpaceCast = 60,
Bill Wendling07d6d762010-02-15 20:50:51 +0000218
Bill Wendlingda52cec2010-02-15 20:53:17 +0000219 /* Other Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000220 LLVMICmp = 42,
221 LLVMFCmp = 43,
222 LLVMPHI = 44,
223 LLVMCall = 45,
224 LLVMSelect = 46,
Torok Edwin05dc9d62011-10-06 12:39:34 +0000225 LLVMUserOp1 = 47,
226 LLVMUserOp2 = 48,
Bill Wendling2641d132011-07-27 21:00:28 +0000227 LLVMVAArg = 49,
228 LLVMExtractElement = 50,
229 LLVMInsertElement = 51,
230 LLVMShuffleVector = 52,
231 LLVMExtractValue = 53,
232 LLVMInsertValue = 54,
Eli Friedman4fc946c2011-07-27 18:59:19 +0000233
234 /* Atomic operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000235 LLVMFence = 55,
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000236 LLVMAtomicCmpXchg = 56,
Bill Wendlingf891bf82011-07-31 06:30:59 +0000237 LLVMAtomicRMW = 57,
238
239 /* Exception Handling Operators */
Bill Wendlingfae14752011-08-12 20:24:12 +0000240 LLVMResume = 58,
Bill Wendling0aef16a2012-02-06 21:44:22 +0000241 LLVMLandingPad = 59
Bill Wendling2641d132011-07-27 21:00:28 +0000242
Chris Lattner40cf28d2009-10-12 04:01:02 +0000243} LLVMOpcode;
244
245typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000246 LLVMVoidTypeKind, /**< type with no size */
Dan Gohman518cda42011-12-17 00:04:22 +0000247 LLVMHalfTypeKind, /**< 16 bit floating point type */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000248 LLVMFloatTypeKind, /**< 32 bit floating point type */
249 LLVMDoubleTypeKind, /**< 64 bit floating point type */
250 LLVMX86_FP80TypeKind, /**< 80 bit floating point type (X87) */
251 LLVMFP128TypeKind, /**< 128 bit floating point type (112-bit mantissa)*/
252 LLVMPPC_FP128TypeKind, /**< 128 bit floating point type (two 64-bits) */
253 LLVMLabelTypeKind, /**< Labels */
254 LLVMIntegerTypeKind, /**< Arbitrary bit width integers */
255 LLVMFunctionTypeKind, /**< Functions */
256 LLVMStructTypeKind, /**< Structures */
257 LLVMArrayTypeKind, /**< Arrays */
258 LLVMPointerTypeKind, /**< Pointers */
Chris Lattnerdac44ec2009-07-15 22:00:31 +0000259 LLVMVectorTypeKind, /**< SIMD 'packed' format, or other vector type */
Dale Johannesenbaa5d042010-09-10 20:55:01 +0000260 LLVMMetadataTypeKind, /**< Metadata */
261 LLVMX86_MMXTypeKind /**< X86 MMX */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000262} LLVMTypeKind;
263
264typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000265 LLVMExternalLinkage, /**< Externally visible function */
Chris Lattner2dba0f02009-04-13 06:25:37 +0000266 LLVMAvailableExternallyLinkage,
Duncan Sands12da8ce2009-03-07 15:45:40 +0000267 LLVMLinkOnceAnyLinkage, /**< Keep one copy of function when linking (inline)*/
268 LLVMLinkOnceODRLinkage, /**< Same, but only replaced by something
269 equivalent. */
Rafael Espindola716e7402013-11-01 17:09:14 +0000270 LLVMLinkOnceODRAutoHideLinkage, /**< Obsolete */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000271 LLVMWeakAnyLinkage, /**< Keep one copy of function when linking (weak) */
272 LLVMWeakODRLinkage, /**< Same, but only replaced by something
273 equivalent. */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000274 LLVMAppendingLinkage, /**< Special purpose, only applies to global arrays */
275 LLVMInternalLinkage, /**< Rename collisions when linking (static
276 functions) */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000277 LLVMPrivateLinkage, /**< Like Internal, but omit from symbol table */
Nico Rieck7157bb72014-01-14 15:22:47 +0000278 LLVMDLLImportLinkage, /**< Obsolete */
279 LLVMDLLExportLinkage, /**< Obsolete */
Duncan Sandse2881052009-03-11 08:08:06 +0000280 LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000281 LLVMGhostLinkage, /**< Obsolete */
Bill Wendling002b1672009-07-20 18:22:52 +0000282 LLVMCommonLinkage, /**< Tentative definitions */
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000283 LLVMLinkerPrivateLinkage, /**< Like Private, but linker removes. */
Bill Wendling34bc34e2012-08-17 18:33:14 +0000284 LLVMLinkerPrivateWeakLinkage /**< Like LinkerPrivate, but is weak. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000285} LLVMLinkage;
286
287typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000288 LLVMDefaultVisibility, /**< The GV is visible */
289 LLVMHiddenVisibility, /**< The GV is hidden */
290 LLVMProtectedVisibility /**< The GV is protected */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000291} LLVMVisibility;
292
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000293typedef enum {
Reid Kleckner2fae26f2014-03-05 02:34:23 +0000294 LLVMDefaultStorageClass = 0,
295 LLVMDLLImportStorageClass = 1, /**< Function to be imported from DLL. */
296 LLVMDLLExportStorageClass = 2 /**< Function to be accessible from DLL. */
297} LLVMDLLStorageClass;
298
299typedef enum {
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000300 LLVMCCallConv = 0,
301 LLVMFastCallConv = 8,
302 LLVMColdCallConv = 9,
Filip Pizlodfc9b582013-11-09 06:00:03 +0000303 LLVMWebKitJSCallConv = 12,
304 LLVMAnyRegCallConv = 13,
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000305 LLVMX86StdcallCallConv = 64,
306 LLVMX86FastcallCallConv = 65
307} LLVMCallConv;
308
309typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000310 LLVMIntEQ = 32, /**< equal */
311 LLVMIntNE, /**< not equal */
312 LLVMIntUGT, /**< unsigned greater than */
313 LLVMIntUGE, /**< unsigned greater or equal */
314 LLVMIntULT, /**< unsigned less than */
315 LLVMIntULE, /**< unsigned less or equal */
316 LLVMIntSGT, /**< signed greater than */
317 LLVMIntSGE, /**< signed greater or equal */
318 LLVMIntSLT, /**< signed less than */
319 LLVMIntSLE /**< signed less or equal */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000320} LLVMIntPredicate;
321
322typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000323 LLVMRealPredicateFalse, /**< Always false (always folded) */
324 LLVMRealOEQ, /**< True if ordered and equal */
325 LLVMRealOGT, /**< True if ordered and greater than */
326 LLVMRealOGE, /**< True if ordered and greater than or equal */
327 LLVMRealOLT, /**< True if ordered and less than */
328 LLVMRealOLE, /**< True if ordered and less than or equal */
329 LLVMRealONE, /**< True if ordered and operands are unequal */
330 LLVMRealORD, /**< True if ordered (no nans) */
331 LLVMRealUNO, /**< True if unordered: isnan(X) | isnan(Y) */
332 LLVMRealUEQ, /**< True if unordered or equal */
333 LLVMRealUGT, /**< True if unordered or greater than */
334 LLVMRealUGE, /**< True if unordered, greater than, or equal */
335 LLVMRealULT, /**< True if unordered or less than */
336 LLVMRealULE, /**< True if unordered, less than, or equal */
337 LLVMRealUNE, /**< True if unordered or not equal */
338 LLVMRealPredicateTrue /**< Always true (always folded) */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000339} LLVMRealPredicate;
340
Bill Wendlingfae14752011-08-12 20:24:12 +0000341typedef enum {
342 LLVMLandingPadCatch, /**< A catch clause */
343 LLVMLandingPadFilter /**< A filter clause */
344} LLVMLandingPadClauseTy;
345
Hans Wennborg5ff71202013-04-16 08:58:59 +0000346typedef enum {
347 LLVMNotThreadLocal = 0,
348 LLVMGeneralDynamicTLSModel,
349 LLVMLocalDynamicTLSModel,
350 LLVMInitialExecTLSModel,
351 LLVMLocalExecTLSModel
352} LLVMThreadLocalMode;
353
Carlo Kokda0ac722013-04-23 13:45:37 +0000354typedef enum {
Carlo Kok8c6719b2013-04-23 13:21:19 +0000355 LLVMAtomicOrderingNotAtomic = 0, /**< A load or store which is not atomic */
356 LLVMAtomicOrderingUnordered = 1, /**< Lowest level of atomicity, guarantees
357 somewhat sane results, lock free. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000358 LLVMAtomicOrderingMonotonic = 2, /**< guarantees that if you take all the
359 operations affecting a specific address,
Carlo Kok8c6719b2013-04-23 13:21:19 +0000360 a consistent ordering exists */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000361 LLVMAtomicOrderingAcquire = 4, /**< Acquire provides a barrier of the sort
362 necessary to acquire a lock to access other
Carlo Kok8c6719b2013-04-23 13:21:19 +0000363 memory with normal loads and stores. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000364 LLVMAtomicOrderingRelease = 5, /**< Release is similar to Acquire, but with
365 a barrier of the sort necessary to release
Carlo Kok8c6719b2013-04-23 13:21:19 +0000366 a lock. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000367 LLVMAtomicOrderingAcquireRelease = 6, /**< provides both an Acquire and a
368 Release barrier (for fences and
Carlo Kok8c6719b2013-04-23 13:21:19 +0000369 operations which both read and write
370 memory). */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000371 LLVMAtomicOrderingSequentiallyConsistent = 7 /**< provides Acquire semantics
372 for loads and Release
373 semantics for stores.
374 Additionally, it guarantees
375 that a total ordering exists
376 between all
377 SequentiallyConsistent
Carlo Kok8c6719b2013-04-23 13:21:19 +0000378 operations. */
Carlo Kokda0ac722013-04-23 13:45:37 +0000379} LLVMAtomicOrdering;
Carlo Kok8c6719b2013-04-23 13:21:19 +0000380
Carlo Kokda0ac722013-04-23 13:45:37 +0000381typedef enum {
Carlo Kok8c6719b2013-04-23 13:21:19 +0000382 LLVMAtomicRMWBinOpXchg, /**< Set the new value and return the one old */
383 LLVMAtomicRMWBinOpAdd, /**< Add a value and return the old one */
384 LLVMAtomicRMWBinOpSub, /**< Subtract a value and return the old one */
385 LLVMAtomicRMWBinOpAnd, /**< And a value and return the old one */
386 LLVMAtomicRMWBinOpNand, /**< Not-And a value and return the old one */
387 LLVMAtomicRMWBinOpOr, /**< OR a value and return the old one */
388 LLVMAtomicRMWBinOpXor, /**< Xor a value and return the old one */
389 LLVMAtomicRMWBinOpMax, /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000390 original using a signed comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000391 the old one */
392 LLVMAtomicRMWBinOpMin, /**< Sets the value if it's Smaller than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000393 original using a signed comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000394 the old one */
395 LLVMAtomicRMWBinOpUMax, /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000396 original using an unsigned comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000397 the old one */
398 LLVMAtomicRMWBinOpUMin /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000399 original using an unsigned comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000400 the old one */
Carlo Kokda0ac722013-04-23 13:45:37 +0000401} LLVMAtomicRMWBinOp;
Carlo Kok8c6719b2013-04-23 13:21:19 +0000402
Gregory Szorc34c863a2012-03-21 03:54:29 +0000403/**
404 * @}
405 */
406
Nick Lewycky0db26542011-05-15 07:20:34 +0000407void LLVMInitializeCore(LLVMPassRegistryRef R);
408
Duncan Sands1cba0a82013-02-17 16:35:51 +0000409/** Deallocate and destroy all ManagedStatic variables.
410 @see llvm::llvm_shutdown
411 @see ManagedStatic */
Benjamin Kramer325ec892013-10-23 16:57:34 +0000412void LLVMShutdown(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +0000413
Gordon Henriksen76a03742007-09-18 03:18:57 +0000414
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000415/*===-- Error handling ----------------------------------------------------===*/
416
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000417char *LLVMCreateMessage(const char *Message);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000418void LLVMDisposeMessage(char *Message);
419
Filip Pizloa535b142013-10-17 01:38:28 +0000420typedef void (*LLVMFatalErrorHandler)(const char *Reason);
421
422/**
423 * Install a fatal error handler. By default, if LLVM detects a fatal error, it
424 * will call exit(1). This may not be appropriate in many contexts. For example,
425 * doing exit(1) will bypass many crash reporting/tracing system tools. This
426 * function allows you to install a callback that will be invoked prior to the
427 * call to exit(1).
428 */
429void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler);
430
431/**
432 * Reset the fatal error handler. This resets LLVM's fatal error handling
433 * behavior to the default.
434 */
435void LLVMResetFatalErrorHandler(void);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000436
Gregory Szorc34c863a2012-03-21 03:54:29 +0000437/**
Filip Pizloc10ca902013-11-04 02:22:25 +0000438 * Enable LLVM's built-in stack trace code. This intercepts the OS's crash
439 * signals and prints which component of LLVM you were in at the time if the
440 * crash.
Filip Pizlo9f50ccd2013-11-03 00:29:47 +0000441 */
Filip Pizloc10ca902013-11-04 02:22:25 +0000442void LLVMEnablePrettyStackTrace(void);
Filip Pizlo9f50ccd2013-11-03 00:29:47 +0000443
444/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000445 * @defgroup LLVMCCoreContext Contexts
446 *
447 * Contexts are execution states for the core LLVM IR system.
448 *
449 * Most types are tied to a context instance. Multiple contexts can
450 * exist simultaneously. A single context is not thread safe. However,
451 * different contexts can execute on different threads simultaneously.
452 *
453 * @{
454 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000455
Gregory Szorc34c863a2012-03-21 03:54:29 +0000456/**
457 * Create a new context.
458 *
459 * Every call to this function should be paired with a call to
460 * LLVMContextDispose() or the context will leak memory.
461 */
Erick Tryzelaarf34cb0c2009-08-30 23:38:06 +0000462LLVMContextRef LLVMContextCreate(void);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000463
464/**
465 * Obtain the global context instance.
466 */
Erick Tryzelaarf34cb0c2009-08-30 23:38:06 +0000467LLVMContextRef LLVMGetGlobalContext(void);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000468
469/**
470 * Destroy a context instance.
471 *
472 * This should be called for every call to LLVMContextCreate() or memory
473 * will be leaked.
474 */
Owen Anderson6773d382009-07-01 16:58:40 +0000475void LLVMContextDispose(LLVMContextRef C);
476
Erick Tryzelaard8531fa2010-02-28 09:45:59 +0000477unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
478 unsigned SLen);
479unsigned LLVMGetMDKindID(const char* Name, unsigned SLen);
480
Gregory Szorc34c863a2012-03-21 03:54:29 +0000481/**
482 * @}
483 */
484
Gregory Szorc52d26602012-03-21 07:28:27 +0000485/**
486 * @defgroup LLVMCCoreModule Modules
Gregory Szorc34c863a2012-03-21 03:54:29 +0000487 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +0000488 * Modules represent the top-level structure in an LLVM program. An LLVM
Gregory Szorc34c863a2012-03-21 03:54:29 +0000489 * module is effectively a translation unit or a collection of
490 * translation units merged together.
491 *
492 * @{
493 */
494
Gregory Szorc34c863a2012-03-21 03:54:29 +0000495/**
496 * Create a new, empty module in the global context.
497 *
498 * This is equivalent to calling LLVMModuleCreateWithNameInContext with
499 * LLVMGetGlobalContext() as the context parameter.
500 *
501 * Every invocation should be paired with LLVMDisposeModule() or memory
502 * will be leaked.
503 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000504LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000505
506/**
507 * Create a new, empty module in a specific context.
508 *
509 * Every invocation should be paired with LLVMDisposeModule() or memory
510 * will be leaked.
511 */
Owen Anderson31d44e42009-07-02 07:17:57 +0000512LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
513 LLVMContextRef C);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000514
Gregory Szorc34c863a2012-03-21 03:54:29 +0000515/**
516 * Destroy a module instance.
517 *
518 * This must be called for every created module or memory will be
519 * leaked.
520 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000521void LLVMDisposeModule(LLVMModuleRef M);
522
Gregory Szorc34c863a2012-03-21 03:54:29 +0000523/**
524 * Obtain the data layout for a module.
525 *
526 * @see Module::getDataLayout()
527 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000528const char *LLVMGetDataLayout(LLVMModuleRef M);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000529
530/**
531 * Set the data layout for a module.
532 *
533 * @see Module::setDataLayout()
534 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000535void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
536
Gregory Szorc34c863a2012-03-21 03:54:29 +0000537/**
538 * Obtain the target triple for a module.
539 *
540 * @see Module::getTargetTriple()
541 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000542const char *LLVMGetTarget(LLVMModuleRef M);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000543
544/**
545 * Set the target triple for a module.
546 *
547 * @see Module::setTargetTriple()
548 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000549void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
550
Gregory Szorc34c863a2012-03-21 03:54:29 +0000551/**
552 * Dump a representation of a module to stderr.
553 *
554 * @see Module::dump()
555 */
Gordon Henriksen6c6075e2008-03-14 23:58:56 +0000556void LLVMDumpModule(LLVMModuleRef M);
557
Gregory Szorc34c863a2012-03-21 03:54:29 +0000558/**
Hans Wennborgb7ef2fe2012-05-09 16:54:17 +0000559 * Print a representation of a module to a file. The ErrorMessage needs to be
560 * disposed with LLVMDisposeMessage. Returns 0 on success, 1 otherwise.
561 *
562 * @see Module::print()
563 */
564LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
565 char **ErrorMessage);
566
567/**
Anders Waldenborg84355db2013-10-16 18:00:54 +0000568 * Return a string representation of the module. Use
569 * LLVMDisposeMessage to free the string.
570 *
571 * @see Module::print()
572 */
573char *LLVMPrintModuleToString(LLVMModuleRef M);
574
575/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000576 * Set inline assembly for a module.
577 *
578 * @see Module::setModuleInlineAsm()
579 */
Chris Lattner26941452010-04-10 17:52:58 +0000580void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000581
Gregory Szorc34c863a2012-03-21 03:54:29 +0000582/**
583 * Obtain the context to which this module is associated.
584 *
585 * @see Module::getContext()
586 */
Chris Lattnera7e04b02010-11-28 20:03:44 +0000587LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M);
588
Gregory Szorc34c863a2012-03-21 03:54:29 +0000589/**
590 * Obtain a Type from a module by its registered name.
591 */
592LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000593
Gregory Szorc34c863a2012-03-21 03:54:29 +0000594/**
595 * Obtain the number of operands for named metadata in a module.
596 *
597 * @see llvm::Module::getNamedMetadata()
598 */
599unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name);
600
601/**
602 * Obtain the named metadata operands for a module.
603 *
604 * The passed LLVMValueRef pointer should refer to an array of
605 * LLVMValueRef at least LLVMGetNamedMetadataNumOperands long. This
606 * array will be populated with the LLVMValueRef instances. Each
607 * instance corresponds to a llvm::MDNode.
608 *
609 * @see llvm::Module::getNamedMetadata()
610 * @see llvm::MDNode::getOperand()
611 */
612void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest);
613
614/**
615 * Add an operand to named metadata.
616 *
617 * @see llvm::Module::getNamedMetadata()
618 * @see llvm::MDNode::addOperand()
619 */
620void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name,
621 LLVMValueRef Val);
622
Gregory Szorc52d26602012-03-21 07:28:27 +0000623/**
624 * Add a function to a module under a specified name.
625 *
626 * @see llvm::Function::Create()
627 */
628LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
629 LLVMTypeRef FunctionTy);
630
631/**
632 * Obtain a Function value from a Module by its name.
633 *
634 * The returned value corresponds to a llvm::Function value.
635 *
636 * @see llvm::Module::getFunction()
637 */
638LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name);
639
640/**
641 * Obtain an iterator to the first Function in a Module.
642 *
643 * @see llvm::Module::begin()
644 */
645LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M);
646
647/**
648 * Obtain an iterator to the last Function in a Module.
649 *
650 * @see llvm::Module::end()
651 */
652LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M);
653
654/**
655 * Advance a Function iterator to the next Function.
656 *
657 * Returns NULL if the iterator was already at the end and there are no more
658 * functions.
659 */
660LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn);
661
662/**
663 * Decrement a Function iterator to the previous Function.
664 *
665 * Returns NULL if the iterator was already at the beginning and there are
666 * no previous functions.
667 */
668LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000669
670/**
671 * @}
672 */
673
674/**
675 * @defgroup LLVMCCoreType Types
676 *
677 * Types represent the type of a value.
678 *
679 * Types are associated with a context instance. The context internally
680 * deduplicates types so there is only 1 instance of a specific type
681 * alive at a time. In other words, a unique type is shared among all
682 * consumers within a context.
683 *
684 * A Type in the C API corresponds to llvm::Type.
685 *
686 * Types have the following hierarchy:
687 *
Gordon Henriksen76a03742007-09-18 03:18:57 +0000688 * types:
689 * integer type
690 * real type
691 * function type
692 * sequence types:
693 * array type
694 * pointer type
695 * vector type
696 * void type
697 * label type
698 * opaque type
Gregory Szorc34c863a2012-03-21 03:54:29 +0000699 *
700 * @{
Gordon Henriksen76a03742007-09-18 03:18:57 +0000701 */
702
Gregory Szorc34c863a2012-03-21 03:54:29 +0000703/**
704 * Obtain the enumerated type of a Type instance.
705 *
706 * @see llvm::Type:getTypeID()
707 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000708LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000709
710/**
711 * Whether the type has a known size.
712 *
713 * Things that don't have a size are abstract types, labels, and void.a
714 *
715 * @see llvm::Type::isSized()
716 */
Torok Edwin1cd9ade2011-10-06 12:13:28 +0000717LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000718
Gregory Szorc34c863a2012-03-21 03:54:29 +0000719/**
720 * Obtain the context to which this type instance is associated.
721 *
722 * @see llvm::Type::getContext()
723 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000724LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty);
725
Gregory Szorc34c863a2012-03-21 03:54:29 +0000726/**
Anders Waldenborgb822cff2013-10-16 21:30:25 +0000727 * Dump a representation of a type to stderr.
728 *
729 * @see llvm::Type::dump()
730 */
731void LLVMDumpType(LLVMTypeRef Val);
732
733/**
Anders Waldenborg47b3bd32013-10-22 06:58:34 +0000734 * Return a string representation of the type. Use
735 * LLVMDisposeMessage to free the string.
736 *
737 * @see llvm::Type::print()
738 */
739char *LLVMPrintTypeToString(LLVMTypeRef Val);
740
741/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000742 * @defgroup LLVMCCoreTypeInt Integer Types
743 *
744 * Functions in this section operate on integer types.
745 *
746 * @{
747 */
748
749/**
750 * Obtain an integer type from a context with specified bit width.
751 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000752LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C);
753LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C);
754LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C);
755LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C);
756LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C);
757LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits);
758
Gregory Szorc34c863a2012-03-21 03:54:29 +0000759/**
760 * Obtain an integer type from the global context with a specified bit
761 * width.
762 */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000763LLVMTypeRef LLVMInt1Type(void);
764LLVMTypeRef LLVMInt8Type(void);
765LLVMTypeRef LLVMInt16Type(void);
766LLVMTypeRef LLVMInt32Type(void);
767LLVMTypeRef LLVMInt64Type(void);
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000768LLVMTypeRef LLVMIntType(unsigned NumBits);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000769unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000770
Gregory Szorc34c863a2012-03-21 03:54:29 +0000771/**
772 * @}
773 */
774
775/**
776 * @defgroup LLVMCCoreTypeFloat Floating Point Types
777 *
778 * @{
779 */
780
781/**
782 * Obtain a 16-bit floating point type from a context.
783 */
Dan Gohman518cda42011-12-17 00:04:22 +0000784LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000785
786/**
787 * Obtain a 32-bit floating point type from a context.
788 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000789LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000790
791/**
792 * Obtain a 64-bit floating point type from a context.
793 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000794LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000795
796/**
797 * Obtain a 80-bit floating point type (X87) from a context.
798 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000799LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000800
801/**
802 * Obtain a 128-bit floating point type (112-bit mantissa) from a
803 * context.
804 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000805LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000806
807/**
808 * Obtain a 128-bit floating point type (two 64-bits) from a context.
809 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000810LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C);
811
Gregory Szorc34c863a2012-03-21 03:54:29 +0000812/**
813 * Obtain a floating point type from the global context.
814 *
815 * These map to the functions in this group of the same name.
816 */
Dan Gohman518cda42011-12-17 00:04:22 +0000817LLVMTypeRef LLVMHalfType(void);
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000818LLVMTypeRef LLVMFloatType(void);
819LLVMTypeRef LLVMDoubleType(void);
820LLVMTypeRef LLVMX86FP80Type(void);
821LLVMTypeRef LLVMFP128Type(void);
822LLVMTypeRef LLVMPPCFP128Type(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000823
Gregory Szorc34c863a2012-03-21 03:54:29 +0000824/**
825 * @}
826 */
827
828/**
829 * @defgroup LLVMCCoreTypeFunction Function Types
830 *
831 * @{
832 */
833
834/**
835 * Obtain a function type consisting of a specified signature.
836 *
837 * The function is defined as a tuple of a return Type, a list of
838 * parameter types, and whether the function is variadic.
839 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000840LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
841 LLVMTypeRef *ParamTypes, unsigned ParamCount,
Chris Lattner25963c62010-01-09 22:27:07 +0000842 LLVMBool IsVarArg);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000843
844/**
845 * Returns whether a function type is variadic.
846 */
Chris Lattner25963c62010-01-09 22:27:07 +0000847LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000848
849/**
850 * Obtain the Type this function Type returns.
851 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000852LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000853
854/**
855 * Obtain the number of parameters this function accepts.
856 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000857unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000858
859/**
860 * Obtain the types of a function's parameters.
861 *
862 * The Dest parameter should point to a pre-allocated array of
863 * LLVMTypeRef at least LLVMCountParamTypes() large. On return, the
864 * first LLVMCountParamTypes() entries in the array will be populated
865 * with LLVMTypeRef instances.
866 *
867 * @param FunctionTy The function type to operate on.
868 * @param Dest Memory address of an array to be filled with result.
869 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000870void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000871
Gregory Szorc34c863a2012-03-21 03:54:29 +0000872/**
873 * @}
874 */
875
876/**
877 * @defgroup LLVMCCoreTypeStruct Structure Types
878 *
879 * These functions relate to LLVMTypeRef instances.
880 *
881 * @see llvm::StructType
882 *
883 * @{
884 */
885
886/**
887 * Create a new structure type in a context.
888 *
889 * A structure is specified by a list of inner elements/types and
890 * whether these can be packed together.
891 *
892 * @see llvm::StructType::create()
893 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000894LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
Chris Lattner25963c62010-01-09 22:27:07 +0000895 unsigned ElementCount, LLVMBool Packed);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000896
897/**
898 * Create a new structure type in the global context.
899 *
900 * @see llvm::StructType::create()
901 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000902LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
Chris Lattner25963c62010-01-09 22:27:07 +0000903 LLVMBool Packed);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000904
905/**
906 * Create an empty structure in a context having a specified name.
907 *
908 * @see llvm::StructType::create()
909 */
Chris Lattnere71ccde2011-07-14 05:53:17 +0000910LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000911
912/**
913 * Obtain the name of a structure.
914 *
915 * @see llvm::StructType::getName()
916 */
Torok Edwin0d5f6ae2011-10-06 12:12:50 +0000917const char *LLVMGetStructName(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000918
919/**
920 * Set the contents of a structure type.
921 *
922 * @see llvm::StructType::setBody()
923 */
Chris Lattnere71ccde2011-07-14 05:53:17 +0000924void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
925 unsigned ElementCount, LLVMBool Packed);
926
Gregory Szorc34c863a2012-03-21 03:54:29 +0000927/**
928 * Get the number of elements defined inside the structure.
929 *
930 * @see llvm::StructType::getNumElements()
931 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000932unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000933
934/**
935 * Get the elements within a structure.
936 *
937 * The function is passed the address of a pre-allocated array of
938 * LLVMTypeRef at least LLVMCountStructElementTypes() long. After
939 * invocation, this array will be populated with the structure's
940 * elements. The objects in the destination array will have a lifetime
941 * of the structure type itself, which is the lifetime of the context it
942 * is contained in.
943 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000944void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000945
946/**
947 * Determine whether a structure is packed.
948 *
949 * @see llvm::StructType::isPacked()
950 */
Chris Lattner25963c62010-01-09 22:27:07 +0000951LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000952
953/**
954 * Determine whether a structure is opaque.
955 *
956 * @see llvm::StructType::isOpaque()
957 */
Chris Lattner17cf05b2011-07-14 16:20:28 +0000958LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy);
959
Gregory Szorc34c863a2012-03-21 03:54:29 +0000960/**
961 * @}
962 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000963
Gregory Szorc34c863a2012-03-21 03:54:29 +0000964
965/**
966 * @defgroup LLVMCCoreTypeSequential Sequential Types
967 *
968 * Sequential types represents "arrays" of types. This is a super class
969 * for array, vector, and pointer types.
970 *
971 * @{
972 */
973
974/**
975 * Obtain the type of elements within a sequential type.
976 *
977 * This works on array, vector, and pointer types.
978 *
979 * @see llvm::SequentialType::getElementType()
980 */
981LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty);
982
983/**
984 * Create a fixed size array type that refers to a specific type.
985 *
986 * The created type will exist in the context that its element type
987 * exists in.
988 *
989 * @see llvm::ArrayType::get()
990 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000991LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000992
993/**
994 * Obtain the length of an array type.
995 *
996 * This only works on types that represent arrays.
997 *
998 * @see llvm::ArrayType::getNumElements()
999 */
1000unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy);
1001
1002/**
1003 * Create a pointer type that points to a defined type.
1004 *
1005 * The created type will exist in the context that its pointee type
1006 * exists in.
1007 *
1008 * @see llvm::PointerType::get()
1009 */
Gordon Henriksen5a3fe032007-12-17 16:08:32 +00001010LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001011
1012/**
1013 * Obtain the address space of a pointer type.
1014 *
1015 * This only works on types that represent pointers.
1016 *
1017 * @see llvm::PointerType::getAddressSpace()
1018 */
1019unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
1020
1021/**
1022 * Create a vector type that contains a defined type and has a specific
1023 * number of elements.
1024 *
1025 * The created type will exist in the context thats its element type
1026 * exists in.
1027 *
1028 * @see llvm::VectorType::get()
1029 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +00001030LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001031
Gregory Szorc34c863a2012-03-21 03:54:29 +00001032/**
1033 * Obtain the number of elements in a vector type.
1034 *
1035 * This only works on types that represent vectors.
1036 *
1037 * @see llvm::VectorType::getNumElements()
1038 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001039unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
1040
Gregory Szorc34c863a2012-03-21 03:54:29 +00001041/**
1042 * @}
1043 */
1044
1045/**
1046 * @defgroup LLVMCCoreTypeOther Other Types
1047 *
1048 * @{
1049 */
1050
1051/**
1052 * Create a void type in a context.
1053 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001054LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001055
1056/**
1057 * Create a label type in a context.
1058 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001059LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001060
1061/**
1062 * Create a X86 MMX type in a context.
1063 */
Dale Johannesen95b67af2010-09-10 21:58:02 +00001064LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001065
Gregory Szorc34c863a2012-03-21 03:54:29 +00001066/**
1067 * These are similar to the above functions except they operate on the
1068 * global context.
1069 */
Gordon Henriksena735a9c2008-05-04 12:55:34 +00001070LLVMTypeRef LLVMVoidType(void);
1071LLVMTypeRef LLVMLabelType(void);
Dale Johannesen95b67af2010-09-10 21:58:02 +00001072LLVMTypeRef LLVMX86MMXType(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001073
Gregory Szorc34c863a2012-03-21 03:54:29 +00001074/**
1075 * @}
1076 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001077
Gregory Szorc34c863a2012-03-21 03:54:29 +00001078/**
1079 * @}
1080 */
1081
1082/**
1083 * @defgroup LLVMCCoreValues Values
1084 *
1085 * The bulk of LLVM's object model consists of values, which comprise a very
Gordon Henriksen76a03742007-09-18 03:18:57 +00001086 * rich type hierarchy.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001087 *
1088 * LLVMValueRef essentially represents llvm::Value. There is a rich
1089 * hierarchy of classes within this type. Depending on the instance
Eli Benderskyc52863c2012-08-10 18:30:44 +00001090 * obtained, not all APIs are available.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001091 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001092 * Callers can determine the type of an LLVMValueRef by calling the
Gregory Szorc34c863a2012-03-21 03:54:29 +00001093 * LLVMIsA* family of functions (e.g. LLVMIsAArgument()). These
1094 * functions are defined by a macro, so it isn't obvious which are
1095 * available by looking at the Doxygen source code. Instead, look at the
1096 * source definition of LLVM_FOR_EACH_VALUE_SUBCLASS and note the list
1097 * of value names given. These value names also correspond to classes in
1098 * the llvm::Value hierarchy.
1099 *
1100 * @{
Gordon Henriksen76a03742007-09-18 03:18:57 +00001101 */
1102
Gordon Henriksen29e38942008-12-19 18:39:45 +00001103#define LLVM_FOR_EACH_VALUE_SUBCLASS(macro) \
1104 macro(Argument) \
1105 macro(BasicBlock) \
1106 macro(InlineAsm) \
Torok Edwind09b7572011-10-14 20:37:56 +00001107 macro(MDNode) \
1108 macro(MDString) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001109 macro(User) \
1110 macro(Constant) \
Torok Edwind09b7572011-10-14 20:37:56 +00001111 macro(BlockAddress) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001112 macro(ConstantAggregateZero) \
1113 macro(ConstantArray) \
Peter Zotovae0344b2013-11-05 12:55:37 +00001114 macro(ConstantDataSequential) \
1115 macro(ConstantDataArray) \
1116 macro(ConstantDataVector) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001117 macro(ConstantExpr) \
1118 macro(ConstantFP) \
1119 macro(ConstantInt) \
1120 macro(ConstantPointerNull) \
1121 macro(ConstantStruct) \
1122 macro(ConstantVector) \
1123 macro(GlobalValue) \
1124 macro(Function) \
1125 macro(GlobalAlias) \
1126 macro(GlobalVariable) \
1127 macro(UndefValue) \
1128 macro(Instruction) \
1129 macro(BinaryOperator) \
1130 macro(CallInst) \
1131 macro(IntrinsicInst) \
1132 macro(DbgInfoIntrinsic) \
1133 macro(DbgDeclareInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001134 macro(MemIntrinsic) \
1135 macro(MemCpyInst) \
1136 macro(MemMoveInst) \
1137 macro(MemSetInst) \
1138 macro(CmpInst) \
Torok Edwind09b7572011-10-14 20:37:56 +00001139 macro(FCmpInst) \
1140 macro(ICmpInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001141 macro(ExtractElementInst) \
1142 macro(GetElementPtrInst) \
1143 macro(InsertElementInst) \
1144 macro(InsertValueInst) \
Bill Wendlingfae14752011-08-12 20:24:12 +00001145 macro(LandingPadInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001146 macro(PHINode) \
1147 macro(SelectInst) \
1148 macro(ShuffleVectorInst) \
1149 macro(StoreInst) \
1150 macro(TerminatorInst) \
1151 macro(BranchInst) \
Torok Edwind09b7572011-10-14 20:37:56 +00001152 macro(IndirectBrInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001153 macro(InvokeInst) \
1154 macro(ReturnInst) \
1155 macro(SwitchInst) \
1156 macro(UnreachableInst) \
Bill Wendlingf891bf82011-07-31 06:30:59 +00001157 macro(ResumeInst) \
Duncan Sands5e37e992013-05-06 08:55:45 +00001158 macro(UnaryInstruction) \
1159 macro(AllocaInst) \
1160 macro(CastInst) \
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001161 macro(AddrSpaceCastInst) \
Duncan Sands5e37e992013-05-06 08:55:45 +00001162 macro(BitCastInst) \
1163 macro(FPExtInst) \
1164 macro(FPToSIInst) \
1165 macro(FPToUIInst) \
1166 macro(FPTruncInst) \
1167 macro(IntToPtrInst) \
1168 macro(PtrToIntInst) \
1169 macro(SExtInst) \
1170 macro(SIToFPInst) \
1171 macro(TruncInst) \
1172 macro(UIToFPInst) \
1173 macro(ZExtInst) \
1174 macro(ExtractValueInst) \
1175 macro(LoadInst) \
1176 macro(VAArgInst)
Gordon Henriksen29e38942008-12-19 18:39:45 +00001177
Gregory Szorc34c863a2012-03-21 03:54:29 +00001178/**
1179 * @defgroup LLVMCCoreValueGeneral General APIs
1180 *
1181 * Functions in this section work on all LLVMValueRef instances,
1182 * regardless of their sub-type. They correspond to functions available
1183 * on llvm::Value.
1184 *
1185 * @{
1186 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001187
Gregory Szorc34c863a2012-03-21 03:54:29 +00001188/**
1189 * Obtain the type of a value.
1190 *
1191 * @see llvm::Value::getType()
1192 */
1193LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
1194
1195/**
1196 * Obtain the string name of a value.
1197 *
1198 * @see llvm::Value::getName()
1199 */
1200const char *LLVMGetValueName(LLVMValueRef Val);
1201
1202/**
1203 * Set the string name of a value.
1204 *
1205 * @see llvm::Value::setName()
1206 */
1207void LLVMSetValueName(LLVMValueRef Val, const char *Name);
1208
1209/**
1210 * Dump a representation of a value to stderr.
1211 *
1212 * @see llvm::Value::dump()
1213 */
1214void LLVMDumpValue(LLVMValueRef Val);
1215
1216/**
Peter Zotovcd93b372013-11-06 09:21:01 +00001217 * Return a string representation of the value. Use
1218 * LLVMDisposeMessage to free the string.
1219 *
1220 * @see llvm::Value::print()
1221 */
1222char *LLVMPrintValueToString(LLVMValueRef Val);
1223
1224/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001225 * Replace all uses of a value with another one.
1226 *
1227 * @see llvm::Value::replaceAllUsesWith()
1228 */
1229void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal);
1230
1231/**
1232 * Determine whether the specified constant instance is constant.
1233 */
1234LLVMBool LLVMIsConstant(LLVMValueRef Val);
1235
1236/**
1237 * Determine whether a value instance is undefined.
1238 */
1239LLVMBool LLVMIsUndef(LLVMValueRef Val);
1240
1241/**
1242 * Convert value instances between types.
1243 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001244 * Internally, an LLVMValueRef is "pinned" to a specific type. This
Gregory Szorc34c863a2012-03-21 03:54:29 +00001245 * series of functions allows you to cast an instance to a specific
1246 * type.
1247 *
1248 * If the cast is not valid for the specified type, NULL is returned.
1249 *
1250 * @see llvm::dyn_cast_or_null<>
1251 */
Gordon Henriksen29e38942008-12-19 18:39:45 +00001252#define LLVM_DECLARE_VALUE_CAST(name) \
1253 LLVMValueRef LLVMIsA##name(LLVMValueRef Val);
1254LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DECLARE_VALUE_CAST)
1255
Gregory Szorc34c863a2012-03-21 03:54:29 +00001256/**
1257 * @}
1258 */
1259
1260/**
1261 * @defgroup LLVMCCoreValueUses Usage
1262 *
1263 * This module defines functions that allow you to inspect the uses of a
1264 * LLVMValueRef.
1265 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001266 * It is possible to obtain an LLVMUseRef for any LLVMValueRef instance.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001267 * Each LLVMUseRef (which corresponds to a llvm::Use instance) holds a
1268 * llvm::User and llvm::Value.
1269 *
1270 * @{
1271 */
1272
1273/**
1274 * Obtain the first use of a value.
1275 *
1276 * Uses are obtained in an iterator fashion. First, call this function
1277 * to obtain a reference to the first use. Then, call LLVMGetNextUse()
Eli Benderskyc52863c2012-08-10 18:30:44 +00001278 * on that instance and all subsequently obtained instances until
Gregory Szorc34c863a2012-03-21 03:54:29 +00001279 * LLVMGetNextUse() returns NULL.
1280 *
1281 * @see llvm::Value::use_begin()
1282 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001283LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001284
1285/**
1286 * Obtain the next use of a value.
1287 *
1288 * This effectively advances the iterator. It returns NULL if you are on
1289 * the final use and no more are available.
1290 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001291LLVMUseRef LLVMGetNextUse(LLVMUseRef U);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001292
1293/**
1294 * Obtain the user value for a user.
1295 *
1296 * The returned value corresponds to a llvm::User type.
1297 *
1298 * @see llvm::Use::getUser()
1299 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001300LLVMValueRef LLVMGetUser(LLVMUseRef U);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001301
1302/**
1303 * Obtain the value this use corresponds to.
1304 *
1305 * @see llvm::Use::get().
1306 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001307LLVMValueRef LLVMGetUsedValue(LLVMUseRef U);
Chris Lattner40cf28d2009-10-12 04:01:02 +00001308
Gregory Szorc34c863a2012-03-21 03:54:29 +00001309/**
1310 * @}
1311 */
1312
1313/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001314 * @defgroup LLVMCCoreValueUser User value
Gregory Szorc34c863a2012-03-21 03:54:29 +00001315 *
1316 * Function in this group pertain to LLVMValueRef instances that descent
1317 * from llvm::User. This includes constants, instructions, and
1318 * operators.
1319 *
1320 * @{
1321 */
1322
1323/**
1324 * Obtain an operand at a specific index in a llvm::User value.
1325 *
1326 * @see llvm::User::getOperand()
1327 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001328LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001329
1330/**
1331 * Set an operand at a specific index in a llvm::User value.
1332 *
1333 * @see llvm::User::setOperand()
1334 */
Erick Tryzelaarb4d48702010-08-20 14:51:22 +00001335void LLVMSetOperand(LLVMValueRef User, unsigned Index, LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001336
1337/**
1338 * Obtain the number of operands in a llvm::User value.
1339 *
1340 * @see llvm::User::getNumOperands()
1341 */
Erick Tryzelaarb4d48702010-08-20 14:51:22 +00001342int LLVMGetNumOperands(LLVMValueRef Val);
Chris Lattner40cf28d2009-10-12 04:01:02 +00001343
Gregory Szorc34c863a2012-03-21 03:54:29 +00001344/**
1345 * @}
1346 */
1347
1348/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001349 * @defgroup LLVMCCoreValueConstant Constants
Gregory Szorc34c863a2012-03-21 03:54:29 +00001350 *
1351 * This section contains APIs for interacting with LLVMValueRef that
1352 * correspond to llvm::Constant instances.
1353 *
1354 * These functions will work for any LLVMValueRef in the llvm::Constant
1355 * class hierarchy.
1356 *
1357 * @{
1358 */
1359
1360/**
1361 * Obtain a constant value referring to the null instance of a type.
1362 *
1363 * @see llvm::Constant::getNullValue()
1364 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001365LLVMValueRef LLVMConstNull(LLVMTypeRef Ty); /* all zeroes */
Gregory Szorc34c863a2012-03-21 03:54:29 +00001366
1367/**
1368 * Obtain a constant value referring to the instance of a type
1369 * consisting of all ones.
1370 *
1371 * This is only valid for integer types.
1372 *
1373 * @see llvm::Constant::getAllOnesValue()
1374 */
1375LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty);
1376
1377/**
1378 * Obtain a constant value referring to an undefined value of a type.
1379 *
1380 * @see llvm::UndefValue::get()
1381 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001382LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001383
1384/**
1385 * Determine whether a value instance is null.
1386 *
1387 * @see llvm::Constant::isNullValue()
1388 */
Chris Lattner25963c62010-01-09 22:27:07 +00001389LLVMBool LLVMIsNull(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001390
1391/**
1392 * Obtain a constant that is a constant pointer pointing to NULL for a
1393 * specified type.
1394 */
Chris Lattner7f318242009-07-06 17:29:59 +00001395LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001396
Gregory Szorc34c863a2012-03-21 03:54:29 +00001397/**
1398 * @defgroup LLVMCCoreValueConstantScalar Scalar constants
1399 *
1400 * Functions in this group model LLVMValueRef instances that correspond
1401 * to constants referring to scalar types.
1402 *
1403 * For integer types, the LLVMTypeRef parameter should correspond to a
1404 * llvm::IntegerType instance and the returned LLVMValueRef will
1405 * correspond to a llvm::ConstantInt.
1406 *
1407 * For floating point types, the LLVMTypeRef returned corresponds to a
1408 * llvm::ConstantFP.
1409 *
1410 * @{
1411 */
Erick Tryzelaard8531fa2010-02-28 09:45:59 +00001412
Gregory Szorc34c863a2012-03-21 03:54:29 +00001413/**
1414 * Obtain a constant value for an integer type.
1415 *
1416 * The returned value corresponds to a llvm::ConstantInt.
1417 *
1418 * @see llvm::ConstantInt::get()
1419 *
1420 * @param IntTy Integer type to obtain value of.
1421 * @param N The value the returned instance should refer to.
1422 * @param SignExtend Whether to sign extend the produced value.
1423 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001424LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
Chris Lattner25963c62010-01-09 22:27:07 +00001425 LLVMBool SignExtend);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001426
1427/**
1428 * Obtain a constant value for an integer of arbitrary precision.
1429 *
1430 * @see llvm::ConstantInt::get()
1431 */
Chris Lattner4329e072010-11-23 02:47:22 +00001432LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
1433 unsigned NumWords,
1434 const uint64_t Words[]);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001435
1436/**
1437 * Obtain a constant value for an integer parsed from a string.
1438 *
1439 * A similar API, LLVMConstIntOfStringAndSize is also available. If the
1440 * string's length is available, it is preferred to call that function
1441 * instead.
1442 *
1443 * @see llvm::ConstantInt::get()
1444 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001445LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char *Text,
1446 uint8_t Radix);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001447
1448/**
1449 * Obtain a constant value for an integer parsed from a string with
1450 * specified length.
1451 *
1452 * @see llvm::ConstantInt::get()
1453 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001454LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char *Text,
1455 unsigned SLen, uint8_t Radix);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001456
1457/**
1458 * Obtain a constant value referring to a double floating point value.
1459 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001460LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001461
1462/**
1463 * Obtain a constant for a floating point value parsed from a string.
1464 *
1465 * A similar API, LLVMConstRealOfStringAndSize is also available. It
1466 * should be used if the input string's length is known.
1467 */
Gordon Henriksen931e1212008-02-02 01:07:50 +00001468LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001469
1470/**
1471 * Obtain a constant for a floating point value parsed from a string.
1472 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001473LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char *Text,
1474 unsigned SLen);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001475
1476/**
1477 * Obtain the zero extended value for an integer constant value.
1478 *
1479 * @see llvm::ConstantInt::getZExtValue()
1480 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001481unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001482
1483/**
1484 * Obtain the sign extended value for an integer constant value.
1485 *
1486 * @see llvm::ConstantInt::getSExtValue()
1487 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001488long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal);
Erick Tryzelaardd991352009-08-16 23:36:46 +00001489
Gregory Szorc34c863a2012-03-21 03:54:29 +00001490/**
1491 * @}
1492 */
1493
1494/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001495 * @defgroup LLVMCCoreValueConstantComposite Composite Constants
1496 *
1497 * Functions in this group operate on composite constants.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001498 *
1499 * @{
1500 */
1501
1502/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001503 * Create a ConstantDataSequential and initialize it with a string.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001504 *
Gregory Szorc52d26602012-03-21 07:28:27 +00001505 * @see llvm::ConstantDataArray::getString()
Gregory Szorc34c863a2012-03-21 03:54:29 +00001506 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001507LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
Chris Lattner25963c62010-01-09 22:27:07 +00001508 unsigned Length, LLVMBool DontNullTerminate);
Gregory Szorc52d26602012-03-21 07:28:27 +00001509
1510/**
1511 * Create a ConstantDataSequential with string content in the global context.
1512 *
1513 * This is the same as LLVMConstStringInContext except it operates on the
1514 * global context.
1515 *
1516 * @see LLVMConstStringInContext()
1517 * @see llvm::ConstantDataArray::getString()
1518 */
1519LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
1520 LLVMBool DontNullTerminate);
1521
1522/**
1523 * Create an anonymous ConstantStruct with the specified values.
1524 *
1525 * @see llvm::ConstantStruct::getAnon()
1526 */
1527LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001528 LLVMValueRef *ConstantVals,
Chris Lattner25963c62010-01-09 22:27:07 +00001529 unsigned Count, LLVMBool Packed);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001530
Gregory Szorc52d26602012-03-21 07:28:27 +00001531/**
1532 * Create a ConstantStruct in the global Context.
1533 *
1534 * This is the same as LLVMConstStructInContext except it operates on the
1535 * global Context.
1536 *
1537 * @see LLVMConstStructInContext()
1538 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001539LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
Chris Lattner25963c62010-01-09 22:27:07 +00001540 LLVMBool Packed);
Gregory Szorc52d26602012-03-21 07:28:27 +00001541
1542/**
1543 * Create a ConstantArray from values.
1544 *
1545 * @see llvm::ConstantArray::get()
1546 */
1547LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
1548 LLVMValueRef *ConstantVals, unsigned Length);
1549
1550/**
1551 * Create a non-anonymous ConstantStruct from values.
1552 *
1553 * @see llvm::ConstantStruct::get()
1554 */
Rafael Espindola784ad242011-07-14 19:09:08 +00001555LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
1556 LLVMValueRef *ConstantVals,
1557 unsigned Count);
Gregory Szorc52d26602012-03-21 07:28:27 +00001558
1559/**
1560 * Create a ConstantVector from values.
1561 *
1562 * @see llvm::ConstantVector::get()
1563 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001564LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001565
Gregory Szorc52d26602012-03-21 07:28:27 +00001566/**
1567 * @}
1568 */
1569
1570/**
1571 * @defgroup LLVMCCoreValueConstantExpressions Constant Expressions
1572 *
1573 * Functions in this group correspond to APIs on llvm::ConstantExpr.
1574 *
1575 * @see llvm::ConstantExpr.
1576 *
1577 * @{
1578 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001579LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal);
Erick Tryzelaarfd529d72009-08-19 08:36:49 +00001580LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001581LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty);
1582LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001583LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal);
1584LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001585LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001586LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal);
1587LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001588LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001589LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001590LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001591LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001592LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1593LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001594LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001595LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001596LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1597LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001598LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001599LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1600LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001601LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001602LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1603LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1604LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1605LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1606LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1607LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1608LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1609LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
1610 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1611LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
1612 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1613LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1614LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1615LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1616LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
1617 LLVMValueRef *ConstantIndices, unsigned NumIndices);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001618LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
1619 LLVMValueRef *ConstantIndices,
1620 unsigned NumIndices);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001621LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1622LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1623LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1624LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1625LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1626LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1627LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1628LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1629LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1630LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1631LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1632LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001633LLVMValueRef LLVMConstAddrSpaceCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001634LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
1635 LLVMTypeRef ToType);
1636LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
1637 LLVMTypeRef ToType);
1638LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
1639 LLVMTypeRef ToType);
1640LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
1641 LLVMTypeRef ToType);
1642LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
Chris Lattner25963c62010-01-09 22:27:07 +00001643 LLVMBool isSigned);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001644LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001645LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
1646 LLVMValueRef ConstantIfTrue,
1647 LLVMValueRef ConstantIfFalse);
1648LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
1649 LLVMValueRef IndexConstant);
1650LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
1651 LLVMValueRef ElementValueConstant,
1652 LLVMValueRef IndexConstant);
1653LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
1654 LLVMValueRef VectorBConstant,
1655 LLVMValueRef MaskConstant);
Dan Gohmand5104a52008-11-03 22:55:43 +00001656LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
1657 unsigned NumIdx);
1658LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
1659 LLVMValueRef ElementValueConstant,
1660 unsigned *IdxList, unsigned NumIdx);
Chris Lattner25963c62010-01-09 22:27:07 +00001661LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty,
Chris Lattner3d1f5522008-12-17 21:39:50 +00001662 const char *AsmString, const char *Constraints,
Chris Lattner25963c62010-01-09 22:27:07 +00001663 LLVMBool HasSideEffects, LLVMBool IsAlignStack);
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00001664LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001665
Gregory Szorc52d26602012-03-21 07:28:27 +00001666/**
1667 * @}
1668 */
1669
1670/**
1671 * @defgroup LLVMCCoreValueConstantGlobals Global Values
1672 *
1673 * This group contains functions that operate on global values. Functions in
1674 * this group relate to functions in the llvm::GlobalValue class tree.
1675 *
1676 * @see llvm::GlobalValue
1677 *
1678 * @{
1679 */
1680
Gordon Henriksen265f7802008-03-19 01:11:35 +00001681LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global);
Chris Lattner25963c62010-01-09 22:27:07 +00001682LLVMBool LLVMIsDeclaration(LLVMValueRef Global);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001683LLVMLinkage LLVMGetLinkage(LLVMValueRef Global);
1684void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage);
1685const char *LLVMGetSection(LLVMValueRef Global);
1686void LLVMSetSection(LLVMValueRef Global, const char *Section);
1687LLVMVisibility LLVMGetVisibility(LLVMValueRef Global);
1688void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
Reid Kleckner2fae26f2014-03-05 02:34:23 +00001689LLVMDLLStorageClass LLVMGetDLLStorageClass(LLVMValueRef Global);
1690void LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class);
Tim Northoverad96d012014-03-10 19:24:35 +00001691LLVMBool LLVMHasUnnamedAddr(LLVMValueRef Global);
1692void LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr);
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001693
1694/**
1695 * @defgroup LLVMCCoreValueWithAlignment Values with alignment
1696 *
1697 * Functions in this group only apply to values with alignment, i.e.
1698 * global variables, load and store instructions.
1699 */
1700
1701/**
1702 * Obtain the preferred alignment of the value.
Peter Zotov9f584e62014-03-05 05:05:34 +00001703 * @see llvm::AllocaInst::getAlignment()
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001704 * @see llvm::LoadInst::getAlignment()
1705 * @see llvm::StoreInst::getAlignment()
1706 * @see llvm::GlobalValue::getAlignment()
1707 */
1708unsigned LLVMGetAlignment(LLVMValueRef V);
1709
1710/**
1711 * Set the preferred alignment of the value.
Peter Zotov9f584e62014-03-05 05:05:34 +00001712 * @see llvm::AllocaInst::setAlignment()
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001713 * @see llvm::LoadInst::setAlignment()
1714 * @see llvm::StoreInst::setAlignment()
1715 * @see llvm::GlobalValue::setAlignment()
1716 */
1717void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes);
1718
1719/**
1720 * @}
1721 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001722
Gregory Szorc52d26602012-03-21 07:28:27 +00001723/**
1724 * @defgroup LLVMCoreValueConstantGlobalVariable Global Variables
1725 *
1726 * This group contains functions that operate on global variable values.
1727 *
1728 * @see llvm::GlobalVariable
1729 *
1730 * @{
1731 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001732LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name);
Erick Tryzelaar06894b32010-02-28 09:46:13 +00001733LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
1734 const char *Name,
1735 unsigned AddressSpace);
Gordon Henriksen783f7bb2007-10-08 03:45:09 +00001736LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name);
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001737LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M);
1738LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M);
1739LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar);
1740LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001741void LLVMDeleteGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001742LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar);
1743void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal);
Chris Lattner25963c62010-01-09 22:27:07 +00001744LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar);
1745void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal);
1746LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar);
1747void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant);
Hans Wennborg5ff71202013-04-16 08:58:59 +00001748LLVMThreadLocalMode LLVMGetThreadLocalMode(LLVMValueRef GlobalVar);
1749void LLVMSetThreadLocalMode(LLVMValueRef GlobalVar, LLVMThreadLocalMode Mode);
1750LLVMBool LLVMIsExternallyInitialized(LLVMValueRef GlobalVar);
1751void LLVMSetExternallyInitialized(LLVMValueRef GlobalVar, LLVMBool IsExtInit);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001752
Gregory Szorc52d26602012-03-21 07:28:27 +00001753/**
1754 * @}
1755 */
1756
1757/**
1758 * @defgroup LLVMCoreValueConstantGlobalAlias Global Aliases
1759 *
1760 * This group contains function that operate on global alias values.
1761 *
1762 * @see llvm::GlobalAlias
1763 *
1764 * @{
1765 */
Chris Lattner3d1f5522008-12-17 21:39:50 +00001766LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
1767 const char *Name);
1768
Gregory Szorc34c863a2012-03-21 03:54:29 +00001769/**
1770 * @}
1771 */
1772
1773/**
1774 * @defgroup LLVMCCoreValueFunction Function values
1775 *
1776 * Functions in this group operate on LLVMValueRef instances that
1777 * correspond to llvm::Function instances.
1778 *
1779 * @see llvm::Function
1780 *
1781 * @{
1782 */
1783
1784/**
1785 * Remove a function from its containing module and deletes it.
1786 *
1787 * @see llvm::Function::eraseFromParent()
1788 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001789void LLVMDeleteFunction(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001790
1791/**
1792 * Obtain the ID number from a function instance.
1793 *
1794 * @see llvm::Function::getIntrinsicID()
1795 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001796unsigned LLVMGetIntrinsicID(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001797
1798/**
1799 * Obtain the calling function of a function.
1800 *
1801 * The returned value corresponds to the LLVMCallConv enumeration.
1802 *
1803 * @see llvm::Function::getCallingConv()
1804 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001805unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001806
1807/**
1808 * Set the calling convention of a function.
1809 *
1810 * @see llvm::Function::setCallingConv()
1811 *
1812 * @param Fn Function to operate on
1813 * @param CC LLVMCallConv to set calling convention to
1814 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001815void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001816
1817/**
1818 * Obtain the name of the garbage collector to use during code
1819 * generation.
1820 *
1821 * @see llvm::Function::getGC()
1822 */
Gordon Henriksend930f912008-08-17 18:44:35 +00001823const char *LLVMGetGC(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001824
1825/**
1826 * Define the garbage collector to use during code generation.
1827 *
1828 * @see llvm::Function::setGC()
1829 */
Gordon Henriksend930f912008-08-17 18:44:35 +00001830void LLVMSetGC(LLVMValueRef Fn, const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001831
1832/**
1833 * Add an attribute to a function.
1834 *
1835 * @see llvm::Function::addAttribute()
1836 */
Duncan Sands7374a012009-05-06 12:21:17 +00001837void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001838
1839/**
Tom Stellarde8f35e12013-04-16 23:12:43 +00001840 * Add a target-dependent attribute to a fuction
1841 * @see llvm::AttrBuilder::addAttribute()
1842 */
1843void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A,
1844 const char *V);
1845
1846/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001847 * Obtain an attribute from a function.
1848 *
1849 * @see llvm::Function::getAttributes()
1850 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001851LLVMAttribute LLVMGetFunctionAttr(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001852
1853/**
1854 * Remove an attribute from a function.
1855 */
Duncan Sands7374a012009-05-06 12:21:17 +00001856void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001857
Gregory Szorc34c863a2012-03-21 03:54:29 +00001858/**
1859 * @defgroup LLVMCCoreValueFunctionParameters Function Parameters
1860 *
1861 * Functions in this group relate to arguments/parameters on functions.
1862 *
1863 * Functions in this group expect LLVMValueRef instances that correspond
1864 * to llvm::Function instances.
1865 *
1866 * @{
1867 */
1868
1869/**
1870 * Obtain the number of parameters in a function.
1871 *
1872 * @see llvm::Function::arg_size()
1873 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001874unsigned LLVMCountParams(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001875
1876/**
1877 * Obtain the parameters in a function.
1878 *
1879 * The takes a pointer to a pre-allocated array of LLVMValueRef that is
1880 * at least LLVMCountParams() long. This array will be filled with
1881 * LLVMValueRef instances which correspond to the parameters the
1882 * function receives. Each LLVMValueRef corresponds to a llvm::Argument
1883 * instance.
1884 *
1885 * @see llvm::Function::arg_begin()
1886 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001887void LLVMGetParams(LLVMValueRef Fn, LLVMValueRef *Params);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001888
1889/**
1890 * Obtain the parameter at the specified index.
1891 *
1892 * Parameters are indexed from 0.
1893 *
1894 * @see llvm::Function::arg_begin()
1895 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001896LLVMValueRef LLVMGetParam(LLVMValueRef Fn, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001897
1898/**
1899 * Obtain the function to which this argument belongs.
1900 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001901 * Unlike other functions in this group, this one takes an LLVMValueRef
Gregory Szorc34c863a2012-03-21 03:54:29 +00001902 * that corresponds to a llvm::Attribute.
1903 *
1904 * The returned LLVMValueRef is the llvm::Function to which this
1905 * argument belongs.
1906 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001907LLVMValueRef LLVMGetParamParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001908
1909/**
1910 * Obtain the first parameter to a function.
1911 *
1912 * @see llvm::Function::arg_begin()
1913 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001914LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001915
1916/**
1917 * Obtain the last parameter to a function.
1918 *
1919 * @see llvm::Function::arg_end()
1920 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001921LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001922
1923/**
1924 * Obtain the next parameter to a function.
1925 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001926 * This takes an LLVMValueRef obtained from LLVMGetFirstParam() (which is
Gregory Szorc34c863a2012-03-21 03:54:29 +00001927 * actually a wrapped iterator) and obtains the next parameter from the
1928 * underlying iterator.
1929 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001930LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001931
1932/**
1933 * Obtain the previous parameter to a function.
1934 *
1935 * This is the opposite of LLVMGetNextParam().
1936 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001937LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001938
1939/**
1940 * Add an attribute to a function argument.
1941 *
1942 * @see llvm::Argument::addAttr()
1943 */
Devang Patel4c758ea2008-09-25 21:00:45 +00001944void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001945
1946/**
1947 * Remove an attribute from a function argument.
1948 *
1949 * @see llvm::Argument::removeAttr()
1950 */
Devang Patel4c758ea2008-09-25 21:00:45 +00001951void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001952
1953/**
1954 * Get an attribute from a function argument.
1955 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001956LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001957
1958/**
1959 * Set the alignment for a function parameter.
1960 *
1961 * @see llvm::Argument::addAttr()
Bill Wendling50d27842012-10-15 20:35:56 +00001962 * @see llvm::AttrBuilder::addAlignmentAttr()
Gregory Szorc34c863a2012-03-21 03:54:29 +00001963 */
Gordon Henriksen2d9cc212008-04-28 17:37:06 +00001964void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align);
Gordon Henriksen265f7802008-03-19 01:11:35 +00001965
Gregory Szorc34c863a2012-03-21 03:54:29 +00001966/**
1967 * @}
1968 */
1969
1970/**
1971 * @}
1972 */
1973
1974/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001975 * @}
1976 */
1977
1978/**
1979 * @}
1980 */
1981
1982/**
1983 * @defgroup LLVMCCoreValueMetadata Metadata
1984 *
1985 * @{
1986 */
1987
1988/**
1989 * Obtain a MDString value from a context.
1990 *
1991 * The returned instance corresponds to the llvm::MDString class.
1992 *
1993 * The instance is specified by string data of a specified length. The
1994 * string content is copied, so the backing memory can be freed after
1995 * this function returns.
1996 */
1997LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
1998 unsigned SLen);
1999
2000/**
2001 * Obtain a MDString value from the global context.
2002 */
2003LLVMValueRef LLVMMDString(const char *Str, unsigned SLen);
2004
2005/**
2006 * Obtain a MDNode value from a context.
2007 *
2008 * The returned value corresponds to the llvm::MDNode class.
2009 */
2010LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
2011 unsigned Count);
2012
2013/**
2014 * Obtain a MDNode value from the global context.
2015 */
2016LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count);
2017
2018/**
2019 * Obtain the underlying string from a MDString value.
2020 *
2021 * @param V Instance to obtain string from.
2022 * @param Len Memory address which will hold length of returned string.
2023 * @return String data in MDString.
2024 */
2025const char *LLVMGetMDString(LLVMValueRef V, unsigned* Len);
2026
2027/**
Duncan Sands12ccbe72012-09-19 20:29:39 +00002028 * Obtain the number of operands from an MDNode value.
2029 *
2030 * @param V MDNode to get number of operands from.
2031 * @return Number of operands of the MDNode.
2032 */
2033unsigned LLVMGetMDNodeNumOperands(LLVMValueRef V);
2034
2035/**
2036 * Obtain the given MDNode's operands.
2037 *
2038 * The passed LLVMValueRef pointer should point to enough memory to hold all of
2039 * the operands of the given MDNode (see LLVMGetMDNodeNumOperands) as
2040 * LLVMValueRefs. This memory will be populated with the LLVMValueRefs of the
2041 * MDNode's operands.
2042 *
2043 * @param V MDNode to get the operands from.
2044 * @param Dest Destination array for operands.
2045 */
2046void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest);
2047
2048/**
Gregory Szorc52d26602012-03-21 07:28:27 +00002049 * @}
2050 */
2051
2052/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002053 * @defgroup LLVMCCoreValueBasicBlock Basic Block
2054 *
2055 * A basic block represents a single entry single exit section of code.
2056 * Basic blocks contain a list of instructions which form the body of
2057 * the block.
2058 *
2059 * Basic blocks belong to functions. They have the type of label.
2060 *
2061 * Basic blocks are themselves values. However, the C API models them as
2062 * LLVMBasicBlockRef.
2063 *
2064 * @see llvm::BasicBlock
2065 *
2066 * @{
2067 */
2068
2069/**
2070 * Convert a basic block instance to a value type.
2071 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002072LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002073
2074/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002075 * Determine whether an LLVMValueRef is itself a basic block.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002076 */
Chris Lattner25963c62010-01-09 22:27:07 +00002077LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002078
2079/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002080 * Convert an LLVMValueRef to an LLVMBasicBlockRef instance.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002081 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002082LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002083
2084/**
2085 * Obtain the function to which a basic block belongs.
2086 *
2087 * @see llvm::BasicBlock::getParent()
2088 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002089LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002090
2091/**
2092 * Obtain the terminator instruction for a basic block.
2093 *
2094 * If the basic block does not have a terminator (it is not well-formed
2095 * if it doesn't), then NULL is returned.
2096 *
2097 * The returned LLVMValueRef corresponds to a llvm::TerminatorInst.
2098 *
2099 * @see llvm::BasicBlock::getTerminator()
2100 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002101LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002102
2103/**
2104 * Obtain the number of basic blocks in a function.
2105 *
2106 * @param Fn Function value to operate on.
2107 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002108unsigned LLVMCountBasicBlocks(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002109
2110/**
2111 * Obtain all of the basic blocks in a function.
2112 *
2113 * This operates on a function value. The BasicBlocks parameter is a
2114 * pointer to a pre-allocated array of LLVMBasicBlockRef of at least
2115 * LLVMCountBasicBlocks() in length. This array is populated with
2116 * LLVMBasicBlockRef instances.
2117 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002118void LLVMGetBasicBlocks(LLVMValueRef Fn, LLVMBasicBlockRef *BasicBlocks);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002119
2120/**
2121 * Obtain the first basic block in a function.
2122 *
2123 * The returned basic block can be used as an iterator. You will likely
2124 * eventually call into LLVMGetNextBasicBlock() with it.
2125 *
2126 * @see llvm::Function::begin()
2127 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002128LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002129
2130/**
2131 * Obtain the last basic block in a function.
2132 *
2133 * @see llvm::Function::end()
2134 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002135LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002136
2137/**
2138 * Advance a basic block iterator.
2139 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002140LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002141
2142/**
2143 * Go backwards in a basic block iterator.
2144 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002145LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002146
2147/**
2148 * Obtain the basic block that corresponds to the entry point of a
2149 * function.
2150 *
2151 * @see llvm::Function::getEntryBlock()
2152 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002153LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002154
Gregory Szorc34c863a2012-03-21 03:54:29 +00002155/**
2156 * Append a basic block to the end of a function.
2157 *
2158 * @see llvm::BasicBlock::Create()
2159 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002160LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
2161 LLVMValueRef Fn,
2162 const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002163
2164/**
2165 * Append a basic block to the end of a function using the global
2166 * context.
2167 *
2168 * @see llvm::BasicBlock::Create()
2169 */
2170LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef Fn, const char *Name);
2171
2172/**
2173 * Insert a basic block in a function before another basic block.
2174 *
2175 * The function to add to is determined by the function of the
2176 * passed basic block.
2177 *
2178 * @see llvm::BasicBlock::Create()
2179 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002180LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
2181 LLVMBasicBlockRef BB,
2182 const char *Name);
2183
Gregory Szorc34c863a2012-03-21 03:54:29 +00002184/**
2185 * Insert a basic block in a function using the global context.
2186 *
2187 * @see llvm::BasicBlock::Create()
2188 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002189LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBB,
2190 const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002191
2192/**
2193 * Remove a basic block from a function and delete it.
2194 *
2195 * This deletes the basic block from its containing function and deletes
2196 * the basic block itself.
2197 *
2198 * @see llvm::BasicBlock::eraseFromParent()
2199 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002200void LLVMDeleteBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002201
2202/**
2203 * Remove a basic block from a function.
2204 *
2205 * This deletes the basic block from its containing function but keep
2206 * the basic block alive.
2207 *
2208 * @see llvm::BasicBlock::removeFromParent()
2209 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002210void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BB);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002211
Gregory Szorc34c863a2012-03-21 03:54:29 +00002212/**
2213 * Move a basic block to before another one.
2214 *
2215 * @see llvm::BasicBlock::moveBefore()
2216 */
Duncan Sandsb1d61aa2010-07-19 15:31:07 +00002217void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002218
2219/**
2220 * Move a basic block to after another one.
2221 *
2222 * @see llvm::BasicBlock::moveAfter()
2223 */
Duncan Sandsb1d61aa2010-07-19 15:31:07 +00002224void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2225
Gregory Szorc34c863a2012-03-21 03:54:29 +00002226/**
2227 * Obtain the first instruction in a basic block.
2228 *
2229 * The returned LLVMValueRef corresponds to a llvm::Instruction
2230 * instance.
2231 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002232LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002233
2234/**
2235 * Obtain the last instruction in a basic block.
2236 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002237 * The returned LLVMValueRef corresponds to an LLVM:Instruction.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002238 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002239LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB);
Nate Begeman43c322b2011-08-23 20:27:46 +00002240
Gregory Szorc34c863a2012-03-21 03:54:29 +00002241/**
2242 * @}
2243 */
2244
2245/**
2246 * @defgroup LLVMCCoreValueInstruction Instructions
2247 *
2248 * Functions in this group relate to the inspection and manipulation of
2249 * individual instructions.
2250 *
2251 * In the C++ API, an instruction is modeled by llvm::Instruction. This
2252 * class has a large number of descendents. llvm::Instruction is a
2253 * llvm::Value and in the C API, instructions are modeled by
2254 * LLVMValueRef.
2255 *
2256 * This group also contains sub-groups which operate on specific
2257 * llvm::Instruction types, e.g. llvm::CallInst.
2258 *
2259 * @{
2260 */
2261
2262/**
2263 * Determine whether an instruction has any metadata attached.
2264 */
2265int LLVMHasMetadata(LLVMValueRef Val);
2266
2267/**
2268 * Return metadata associated with an instruction value.
2269 */
2270LLVMValueRef LLVMGetMetadata(LLVMValueRef Val, unsigned KindID);
2271
2272/**
2273 * Set metadata associated with an instruction value.
2274 */
2275void LLVMSetMetadata(LLVMValueRef Val, unsigned KindID, LLVMValueRef Node);
2276
2277/**
2278 * Obtain the basic block to which an instruction belongs.
2279 *
2280 * @see llvm::Instruction::getParent()
2281 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002282LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002283
2284/**
2285 * Obtain the instruction that occurs after the one specified.
2286 *
2287 * The next instruction will be from the same basic block.
2288 *
2289 * If this is the last instruction in a basic block, NULL will be
2290 * returned.
2291 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002292LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002293
2294/**
Benjamin Kramerbde91762012-06-02 10:20:22 +00002295 * Obtain the instruction that occurred before this one.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002296 *
2297 * If the instruction is the first instruction in a basic block, NULL
2298 * will be returned.
2299 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002300LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002301
2302/**
2303 * Remove and delete an instruction.
2304 *
2305 * The instruction specified is removed from its containing building
2306 * block and then deleted.
2307 *
2308 * @see llvm::Instruction::eraseFromParent()
2309 */
Devang Pateldbebc6f2011-10-03 20:59:18 +00002310void LLVMInstructionEraseFromParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002311
2312/**
2313 * Obtain the code opcode for an individual instruction.
2314 *
2315 * @see llvm::Instruction::getOpCode()
2316 */
Torok Edwinab6158e2011-10-14 20:37:49 +00002317LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002318
2319/**
2320 * Obtain the predicate of an instruction.
2321 *
2322 * This is only valid for instructions that correspond to llvm::ICmpInst
2323 * or llvm::ConstantExpr whose opcode is llvm::Instruction::ICmp.
2324 *
2325 * @see llvm::ICmpInst::getPredicate()
2326 */
Torok Edwin60c40de2011-10-06 12:13:20 +00002327LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst);
Gordon Henriksen265f7802008-03-19 01:11:35 +00002328
Gregory Szorc34c863a2012-03-21 03:54:29 +00002329/**
2330 * @defgroup LLVMCCoreValueInstructionCall Call Sites and Invocations
2331 *
2332 * Functions in this group apply to instructions that refer to call
2333 * sites and invocations. These correspond to C++ types in the
2334 * llvm::CallInst class tree.
2335 *
2336 * @{
2337 */
2338
2339/**
2340 * Set the calling convention for a call instruction.
2341 *
2342 * This expects an LLVMValueRef that corresponds to a llvm::CallInst or
2343 * llvm::InvokeInst.
2344 *
2345 * @see llvm::CallInst::setCallingConv()
2346 * @see llvm::InvokeInst::setCallingConv()
2347 */
Gordon Henriksen1158c532007-12-29 20:45:00 +00002348void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002349
2350/**
2351 * Obtain the calling convention for a call instruction.
2352 *
2353 * This is the opposite of LLVMSetInstructionCallConv(). Reads its
2354 * usage.
2355 *
2356 * @see LLVMSetInstructionCallConv()
2357 */
Gordon Henriksen1158c532007-12-29 20:45:00 +00002358unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002359
2360
Devang Patel4c758ea2008-09-25 21:00:45 +00002361void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002362void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
Devang Patel4c758ea2008-09-25 21:00:45 +00002363 LLVMAttribute);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002364void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
Gordon Henriksen2d9cc212008-04-28 17:37:06 +00002365 unsigned align);
Gordon Henriksen1158c532007-12-29 20:45:00 +00002366
Gregory Szorc34c863a2012-03-21 03:54:29 +00002367/**
2368 * Obtain whether a call instruction is a tail call.
2369 *
2370 * This only works on llvm::CallInst instructions.
2371 *
2372 * @see llvm::CallInst::isTailCall()
2373 */
Chris Lattner25963c62010-01-09 22:27:07 +00002374LLVMBool LLVMIsTailCall(LLVMValueRef CallInst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002375
2376/**
2377 * Set whether a call instruction is a tail call.
2378 *
2379 * This only works on llvm::CallInst instructions.
2380 *
2381 * @see llvm::CallInst::setTailCall()
2382 */
Chris Lattner25963c62010-01-09 22:27:07 +00002383void LLVMSetTailCall(LLVMValueRef CallInst, LLVMBool IsTailCall);
Gordon Henrikseneeb65372008-08-30 16:34:54 +00002384
Gregory Szorc34c863a2012-03-21 03:54:29 +00002385/**
2386 * @}
2387 */
2388
2389/**
2390 * Obtain the default destination basic block of a switch instruction.
2391 *
2392 * This only works on llvm::SwitchInst instructions.
2393 *
2394 * @see llvm::SwitchInst::getDefaultDest()
2395 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002396LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef SwitchInstr);
2397
Gregory Szorc34c863a2012-03-21 03:54:29 +00002398/**
2399 * @defgroup LLVMCCoreValueInstructionPHINode PHI Nodes
2400 *
2401 * Functions in this group only apply to instructions that map to
2402 * llvm::PHINode instances.
2403 *
2404 * @{
2405 */
2406
2407/**
2408 * Add an incoming value to the end of a PHI list.
2409 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002410void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
2411 LLVMBasicBlockRef *IncomingBlocks, unsigned Count);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002412
2413/**
2414 * Obtain the number of incoming basic blocks to a PHI node.
2415 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002416unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002417
2418/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002419 * Obtain an incoming value to a PHI node as an LLVMValueRef.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002420 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002421LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002422
2423/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002424 * Obtain an incoming value to a PHI node as an LLVMBasicBlockRef.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002425 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002426LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002427
Gregory Szorc34c863a2012-03-21 03:54:29 +00002428/**
2429 * @}
2430 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002431
Gregory Szorc34c863a2012-03-21 03:54:29 +00002432/**
2433 * @}
2434 */
2435
2436/**
2437 * @}
2438 */
2439
2440/**
2441 * @defgroup LLVMCCoreInstructionBuilder Instruction Builders
2442 *
2443 * An instruction builder represents a point within a basic block and is
2444 * the exclusive means of building instructions using the C interface.
2445 *
2446 * @{
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002447 */
2448
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002449LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C);
Gordon Henriksena735a9c2008-05-04 12:55:34 +00002450LLVMBuilderRef LLVMCreateBuilder(void);
Gordon Henriksen054817c2008-03-19 03:47:18 +00002451void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
2452 LLVMValueRef Instr);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002453void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
2454void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block);
Gordon Henriksen265f7802008-03-19 01:11:35 +00002455LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder);
Chris Lattner3d1f5522008-12-17 21:39:50 +00002456void LLVMClearInsertionPosition(LLVMBuilderRef Builder);
2457void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr);
Erick Tryzelaar9813bea2009-08-16 02:20:57 +00002458void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
2459 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002460void LLVMDisposeBuilder(LLVMBuilderRef Builder);
2461
Erick Tryzelaard8531fa2010-02-28 09:45:59 +00002462/* Metadata */
2463void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L);
2464LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder);
2465void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst);
2466
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002467/* Terminators */
2468LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef);
2469LLVMValueRef LLVMBuildRet(LLVMBuilderRef, LLVMValueRef V);
Erick Tryzelaarfd529d72009-08-19 08:36:49 +00002470LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef, LLVMValueRef *RetVals,
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002471 unsigned N);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002472LLVMValueRef LLVMBuildBr(LLVMBuilderRef, LLVMBasicBlockRef Dest);
2473LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef, LLVMValueRef If,
2474 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
2475LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef, LLVMValueRef V,
2476 LLVMBasicBlockRef Else, unsigned NumCases);
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00002477LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
2478 unsigned NumDests);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002479LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef, LLVMValueRef Fn,
2480 LLVMValueRef *Args, unsigned NumArgs,
2481 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
2482 const char *Name);
Benjamin Kramer5a6568832011-08-19 01:36:54 +00002483LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
2484 LLVMValueRef PersFn, unsigned NumClauses,
2485 const char *Name);
Bill Wendlingf891bf82011-07-31 06:30:59 +00002486LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002487LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef);
2488
Gordon Henriksen097102c2008-01-01 05:50:53 +00002489/* Add a case to the switch instruction */
2490void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
2491 LLVMBasicBlockRef Dest);
2492
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00002493/* Add a destination to the indirectbr instruction */
2494void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest);
2495
Bill Wendlingfae14752011-08-12 20:24:12 +00002496/* Add a catch or filter clause to the landingpad instruction */
2497void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal);
2498
2499/* Set the 'cleanup' flag in the landingpad instruction */
2500void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val);
2501
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002502/* Arithmetic */
2503LLVMValueRef LLVMBuildAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2504 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002505LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2506 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002507LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2508 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002509LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2510 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002511LLVMValueRef LLVMBuildSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2512 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002513LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2514 const char *Name);
2515LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2516 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002517LLVMValueRef LLVMBuildFSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2518 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002519LLVMValueRef LLVMBuildMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2520 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002521LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2522 const char *Name);
2523LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2524 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002525LLVMValueRef LLVMBuildFMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2526 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002527LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2528 const char *Name);
2529LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2530 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002531LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2532 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002533LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2534 const char *Name);
2535LLVMValueRef LLVMBuildURem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2536 const char *Name);
2537LLVMValueRef LLVMBuildSRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2538 const char *Name);
2539LLVMValueRef LLVMBuildFRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2540 const char *Name);
2541LLVMValueRef LLVMBuildShl(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2542 const char *Name);
2543LLVMValueRef LLVMBuildLShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2544 const char *Name);
2545LLVMValueRef LLVMBuildAShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2546 const char *Name);
2547LLVMValueRef LLVMBuildAnd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2548 const char *Name);
2549LLVMValueRef LLVMBuildOr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2550 const char *Name);
2551LLVMValueRef LLVMBuildXor(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2552 const char *Name);
Erick Tryzelaar31831792010-02-28 05:51:27 +00002553LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
2554 LLVMValueRef LHS, LLVMValueRef RHS,
2555 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002556LLVMValueRef LLVMBuildNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002557LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
2558 const char *Name);
2559LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
2560 const char *Name);
Dan Gohmanf919bd62009-09-28 21:51:41 +00002561LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002562LLVMValueRef LLVMBuildNot(LLVMBuilderRef, LLVMValueRef V, const char *Name);
2563
2564/* Memory */
2565LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2566LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef, LLVMTypeRef Ty,
2567 LLVMValueRef Val, const char *Name);
2568LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2569LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef, LLVMTypeRef Ty,
2570 LLVMValueRef Val, const char *Name);
2571LLVMValueRef LLVMBuildFree(LLVMBuilderRef, LLVMValueRef PointerVal);
2572LLVMValueRef LLVMBuildLoad(LLVMBuilderRef, LLVMValueRef PointerVal,
2573 const char *Name);
2574LLVMValueRef LLVMBuildStore(LLVMBuilderRef, LLVMValueRef Val, LLVMValueRef Ptr);
2575LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2576 LLVMValueRef *Indices, unsigned NumIndices,
2577 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002578LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2579 LLVMValueRef *Indices, unsigned NumIndices,
2580 const char *Name);
2581LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2582 unsigned Idx, const char *Name);
2583LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
2584 const char *Name);
2585LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
2586 const char *Name);
Chris Lattner2cc6f9d2012-03-22 03:54:15 +00002587LLVMBool LLVMGetVolatile(LLVMValueRef MemoryAccessInst);
2588void LLVMSetVolatile(LLVMValueRef MemoryAccessInst, LLVMBool IsVolatile);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002589
2590/* Casts */
2591LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef, LLVMValueRef Val,
2592 LLVMTypeRef DestTy, const char *Name);
2593LLVMValueRef LLVMBuildZExt(LLVMBuilderRef, LLVMValueRef Val,
2594 LLVMTypeRef DestTy, const char *Name);
2595LLVMValueRef LLVMBuildSExt(LLVMBuilderRef, LLVMValueRef Val,
2596 LLVMTypeRef DestTy, const char *Name);
2597LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef, LLVMValueRef Val,
2598 LLVMTypeRef DestTy, const char *Name);
2599LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef, LLVMValueRef Val,
2600 LLVMTypeRef DestTy, const char *Name);
2601LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef, LLVMValueRef Val,
2602 LLVMTypeRef DestTy, const char *Name);
2603LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef, LLVMValueRef Val,
2604 LLVMTypeRef DestTy, const char *Name);
2605LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef, LLVMValueRef Val,
2606 LLVMTypeRef DestTy, const char *Name);
2607LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef, LLVMValueRef Val,
2608 LLVMTypeRef DestTy, const char *Name);
2609LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef, LLVMValueRef Val,
2610 LLVMTypeRef DestTy, const char *Name);
2611LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef, LLVMValueRef Val,
2612 LLVMTypeRef DestTy, const char *Name);
2613LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef, LLVMValueRef Val,
2614 LLVMTypeRef DestTy, const char *Name);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002615LLVMValueRef LLVMBuildAddrSpaceCast(LLVMBuilderRef, LLVMValueRef Val,
2616 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002617LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2618 LLVMTypeRef DestTy, const char *Name);
2619LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2620 LLVMTypeRef DestTy, const char *Name);
2621LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2622 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar31831792010-02-28 05:51:27 +00002623LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
2624 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002625LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef, LLVMValueRef Val,
2626 LLVMTypeRef DestTy, const char *Name);
Duncan Sands9d786d72009-11-23 10:49:03 +00002627LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef, LLVMValueRef Val, /*Signed cast!*/
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002628 LLVMTypeRef DestTy, const char *Name);
2629LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef, LLVMValueRef Val,
2630 LLVMTypeRef DestTy, const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002631
2632/* Comparisons */
2633LLVMValueRef LLVMBuildICmp(LLVMBuilderRef, LLVMIntPredicate Op,
2634 LLVMValueRef LHS, LLVMValueRef RHS,
2635 const char *Name);
2636LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef, LLVMRealPredicate Op,
2637 LLVMValueRef LHS, LLVMValueRef RHS,
2638 const char *Name);
2639
2640/* Miscellaneous instructions */
2641LLVMValueRef LLVMBuildPhi(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2642LLVMValueRef LLVMBuildCall(LLVMBuilderRef, LLVMValueRef Fn,
2643 LLVMValueRef *Args, unsigned NumArgs,
2644 const char *Name);
2645LLVMValueRef LLVMBuildSelect(LLVMBuilderRef, LLVMValueRef If,
2646 LLVMValueRef Then, LLVMValueRef Else,
2647 const char *Name);
2648LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef, LLVMValueRef List, LLVMTypeRef Ty,
2649 const char *Name);
2650LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef, LLVMValueRef VecVal,
2651 LLVMValueRef Index, const char *Name);
2652LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef, LLVMValueRef VecVal,
2653 LLVMValueRef EltVal, LLVMValueRef Index,
2654 const char *Name);
2655LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef, LLVMValueRef V1,
2656 LLVMValueRef V2, LLVMValueRef Mask,
2657 const char *Name);
Dan Gohmand5104a52008-11-03 22:55:43 +00002658LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef, LLVMValueRef AggVal,
2659 unsigned Index, const char *Name);
2660LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef, LLVMValueRef AggVal,
2661 LLVMValueRef EltVal, unsigned Index,
2662 const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +00002663
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002664LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef, LLVMValueRef Val,
2665 const char *Name);
2666LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef, LLVMValueRef Val,
2667 const char *Name);
2668LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef, LLVMValueRef LHS,
2669 LLVMValueRef RHS, const char *Name);
Filip Pizlo0d3f7ec2013-11-20 00:07:49 +00002670LLVMValueRef LLVMBuildFence(LLVMBuilderRef B, LLVMAtomicOrdering ordering,
2671 LLVMBool singleThread, const char *Name);
2672LLVMValueRef LLVMBuildAtomicRMW(LLVMBuilderRef B, LLVMAtomicRMWBinOp op,
NAKAMURA Takumia3a81352013-10-23 17:56:29 +00002673 LLVMValueRef PTR, LLVMValueRef Val,
2674 LLVMAtomicOrdering ordering,
Carlo Kok8c6719b2013-04-23 13:21:19 +00002675 LLVMBool singleThread);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002676
Gregory Szorc34c863a2012-03-21 03:54:29 +00002677/**
2678 * @}
2679 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002680
Gregory Szorc34c863a2012-03-21 03:54:29 +00002681/**
2682 * @defgroup LLVMCCoreModuleProvider Module Providers
2683 *
2684 * @{
2685 */
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002686
Gregory Szorc34c863a2012-03-21 03:54:29 +00002687/**
2688 * Changes the type of M so it can be passed to FunctionPassManagers and the
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00002689 * JIT. They take ModuleProviders for historical reasons.
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002690 */
2691LLVMModuleProviderRef
2692LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M);
2693
Gregory Szorc34c863a2012-03-21 03:54:29 +00002694/**
2695 * Destroys the module M.
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002696 */
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00002697void LLVMDisposeModuleProvider(LLVMModuleProviderRef M);
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002698
Gregory Szorc34c863a2012-03-21 03:54:29 +00002699/**
2700 * @}
2701 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002702
Gregory Szorc34c863a2012-03-21 03:54:29 +00002703/**
2704 * @defgroup LLVMCCoreMemoryBuffers Memory Buffers
2705 *
2706 * @{
2707 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002708
Chris Lattner25963c62010-01-09 22:27:07 +00002709LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
2710 LLVMMemoryBufferRef *OutMemBuf,
2711 char **OutMessage);
2712LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
2713 char **OutMessage);
Bill Wendling526276a2013-02-14 19:11:28 +00002714LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange(const char *InputData,
2715 size_t InputDataLength,
2716 const char *BufferName,
Bill Wendlingc9baa962013-02-14 19:39:14 +00002717 LLVMBool RequiresNullTerminator);
Bill Wendling526276a2013-02-14 19:11:28 +00002718LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(const char *InputData,
2719 size_t InputDataLength,
2720 const char *BufferName);
Tom Stellard62c03202013-04-18 19:50:53 +00002721const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf);
Tom Stellardb7fb7242013-04-16 23:12:51 +00002722size_t LLVMGetBufferSize(LLVMMemoryBufferRef MemBuf);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002723void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf);
2724
Gregory Szorc34c863a2012-03-21 03:54:29 +00002725/**
2726 * @}
2727 */
2728
2729/**
2730 * @defgroup LLVMCCorePassRegistry Pass Registry
2731 *
2732 * @{
2733 */
Owen Anderson4698c5d2010-10-07 17:55:47 +00002734
2735/** Return the global pass registry, for use with initialization functions.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002736 @see llvm::PassRegistry::getPassRegistry */
Owen Anderson4698c5d2010-10-07 17:55:47 +00002737LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002738
Gregory Szorc34c863a2012-03-21 03:54:29 +00002739/**
2740 * @}
2741 */
2742
2743/**
2744 * @defgroup LLVMCCorePassManagers Pass Managers
2745 *
2746 * @{
2747 */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002748
2749/** Constructs a new whole-module pass pipeline. This type of pipeline is
2750 suitable for link-time optimization and whole-module transformations.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002751 @see llvm::PassManager::PassManager */
Gordon Henriksena735a9c2008-05-04 12:55:34 +00002752LLVMPassManagerRef LLVMCreatePassManager(void);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002753
2754/** Constructs a new function-by-function pass pipeline over the module
2755 provider. It does not take ownership of the module provider. This type of
2756 pipeline is suitable for code generation and JIT compilation tasks.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002757 @see llvm::FunctionPassManager::FunctionPassManager */
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +00002758LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M);
2759
2760/** Deprecated: Use LLVMCreateFunctionPassManagerForModule instead. */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002761LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef MP);
2762
2763/** Initializes, executes on the provided module, and finalizes all of the
2764 passes scheduled in the pass manager. Returns 1 if any of the passes
Gregory Szorc34c863a2012-03-21 03:54:29 +00002765 modified the module, 0 otherwise.
2766 @see llvm::PassManager::run(Module&) */
Chris Lattner25963c62010-01-09 22:27:07 +00002767LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002768
2769/** Initializes all of the function passes scheduled in the function pass
2770 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002771 @see llvm::FunctionPassManager::doInitialization */
Chris Lattner25963c62010-01-09 22:27:07 +00002772LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002773
2774/** Executes all of the function passes scheduled in the function pass manager
2775 on the provided function. Returns 1 if any of the passes modified the
2776 function, false otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002777 @see llvm::FunctionPassManager::run(Function&) */
Chris Lattner25963c62010-01-09 22:27:07 +00002778LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002779
2780/** Finalizes all of the function passes scheduled in in the function pass
2781 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002782 @see llvm::FunctionPassManager::doFinalization */
Chris Lattner25963c62010-01-09 22:27:07 +00002783LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002784
2785/** Frees the memory of a pass pipeline. For function pipelines, does not free
2786 the module provider.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002787 @see llvm::PassManagerBase::~PassManagerBase. */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002788void LLVMDisposePassManager(LLVMPassManagerRef PM);
2789
Gregory Szorc34c863a2012-03-21 03:54:29 +00002790/**
2791 * @}
2792 */
2793
2794/**
Duncan Sands1cba0a82013-02-17 16:35:51 +00002795 * @defgroup LLVMCCoreThreading Threading
2796 *
2797 * Handle the structures needed to make LLVM safe for multithreading.
2798 *
2799 * @{
2800 */
2801
2802/** Allocate and initialize structures needed to make LLVM safe for
2803 multithreading. The return value indicates whether multithreaded
2804 initialization succeeded. Must be executed in isolation from all
2805 other LLVM api calls.
2806 @see llvm::llvm_start_multithreaded */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002807LLVMBool LLVMStartMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002808
2809/** Deallocate structures necessary to make LLVM safe for multithreading.
2810 Must be executed in isolation from all other LLVM api calls.
2811 @see llvm::llvm_stop_multithreaded */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002812void LLVMStopMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002813
2814/** Check whether LLVM is executing in thread-safe mode or not.
2815 @see llvm::llvm_is_multithreaded */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002816LLVMBool LLVMIsMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002817
2818/**
2819 * @}
2820 */
2821
2822/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002823 * @}
2824 */
2825
2826/**
2827 * @}
2828 */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002829
Gordon Henriksen76a03742007-09-18 03:18:57 +00002830#ifdef __cplusplus
2831}
Evan Cheng2e254d02013-04-04 17:40:53 +00002832#endif /* !defined(__cplusplus) */
Gordon Henriksen7330acd2007-10-05 23:59:36 +00002833
Evan Cheng2e254d02013-04-04 17:40:53 +00002834#endif /* !defined(LLVM_C_CORE_H) */