blob: effbd15c10ddf8ac89bb4f14209982fe36d206ff [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
Tom Stellard1580dc72014-04-16 17:45:04 +0000127
128/**
129 * @see llvm::DiagnosticInfo
130 */
131typedef struct LLVMOpaqueDiagnosticInfo *LLVMDiagnosticInfoRef;
132
Gordon Henriksen76a03742007-09-18 03:18:57 +0000133typedef enum {
Devang Patel4c758ea2008-09-25 21:00:45 +0000134 LLVMZExtAttribute = 1<<0,
135 LLVMSExtAttribute = 1<<1,
136 LLVMNoReturnAttribute = 1<<2,
137 LLVMInRegAttribute = 1<<3,
138 LLVMStructRetAttribute = 1<<4,
139 LLVMNoUnwindAttribute = 1<<5,
140 LLVMNoAliasAttribute = 1<<6,
141 LLVMByValAttribute = 1<<7,
142 LLVMNestAttribute = 1<<8,
143 LLVMReadNoneAttribute = 1<<9,
Anton Korobeynikovc8ce7b082009-07-17 18:07:26 +0000144 LLVMReadOnlyAttribute = 1<<10,
Anton Korobeynikov9750be92009-07-17 18:57:16 +0000145 LLVMNoInlineAttribute = 1<<11,
146 LLVMAlwaysInlineAttribute = 1<<12,
147 LLVMOptimizeForSizeAttribute = 1<<13,
148 LLVMStackProtectAttribute = 1<<14,
149 LLVMStackProtectReqAttribute = 1<<15,
Erick Tryzelaar8f69fea2010-03-03 23:51:25 +0000150 LLVMAlignment = 31<<16,
Anton Korobeynikov9750be92009-07-17 18:57:16 +0000151 LLVMNoCaptureAttribute = 1<<21,
152 LLVMNoRedZoneAttribute = 1<<22,
153 LLVMNoImplicitFloatAttribute = 1<<23,
Jakob Stoklund Olesen74bb06c2010-02-06 01:16:28 +0000154 LLVMNakedAttribute = 1<<24,
Erick Tryzelaar8f69fea2010-03-03 23:51:25 +0000155 LLVMInlineHintAttribute = 1<<25,
Torok Edwin1db48c02011-10-06 12:13:32 +0000156 LLVMStackAlignment = 7<<26,
157 LLVMReturnsTwice = 1 << 29,
158 LLVMUWTable = 1 << 30,
Chandler Carruth44d69d92012-01-25 07:40:15 +0000159 LLVMNonLazyBind = 1 << 31
160
Bill Wendlingd154e2832013-01-23 06:41:41 +0000161 /* FIXME: These attributes are currently not included in the C API as
Nuno Lopesdef4229972012-09-02 14:19:21 +0000162 a temporary measure until the API/ABI impact to the C API is understood
163 and the path forward agreed upon.
Bill Wendlingd154e2832013-01-23 06:41:41 +0000164 LLVMAddressSafety = 1ULL << 32,
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000165 LLVMStackProtectStrongAttribute = 1ULL<<33,
166 LLVMCold = 1ULL << 34,
Reid Klecknera534a382013-12-19 02:14:12 +0000167 LLVMOptimizeNone = 1ULL << 35,
Nick Lewyckyd52b1522014-05-20 01:23:40 +0000168 LLVMInAllocaAttribute = 1ULL << 36,
Tom Roeder44cb65f2014-06-05 19:29:43 +0000169 LLVMNonNullAttribute = 1ULL << 37,
170 LLVMJumpTableAttribute = 1ULL << 38,
Hal Finkelb0407ba2014-07-18 15:51:28 +0000171 LLVMDereferenceableAttribute = 1ULL << 39,
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000172 LLVMDereferenceableOrNullAttribute = 1ULL << 40,
Nuno Lopesdef4229972012-09-02 14:19:21 +0000173 */
Devang Patel4c758ea2008-09-25 21:00:45 +0000174} LLVMAttribute;
Gordon Henriksen2d9cc212008-04-28 17:37:06 +0000175
176typedef enum {
Bill Wendlingda52cec2010-02-15 20:53:17 +0000177 /* Terminator Instructions */
Chris Lattner40cf28d2009-10-12 04:01:02 +0000178 LLVMRet = 1,
179 LLVMBr = 2,
180 LLVMSwitch = 3,
Bill Wendling07d6d762010-02-15 20:50:51 +0000181 LLVMIndirectBr = 4,
182 LLVMInvoke = 5,
Bill Wendling46ffaa92011-08-02 06:20:17 +0000183 /* removed 6 due to API changes */
Bill Wendling2641d132011-07-27 21:00:28 +0000184 LLVMUnreachable = 7,
Bill Wendling07d6d762010-02-15 20:50:51 +0000185
Bill Wendlingda52cec2010-02-15 20:53:17 +0000186 /* Standard Binary Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000187 LLVMAdd = 8,
188 LLVMFAdd = 9,
189 LLVMSub = 10,
190 LLVMFSub = 11,
191 LLVMMul = 12,
192 LLVMFMul = 13,
193 LLVMUDiv = 14,
194 LLVMSDiv = 15,
195 LLVMFDiv = 16,
196 LLVMURem = 17,
197 LLVMSRem = 18,
198 LLVMFRem = 19,
Bill Wendling07d6d762010-02-15 20:50:51 +0000199
Bill Wendlingda52cec2010-02-15 20:53:17 +0000200 /* Logical Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000201 LLVMShl = 20,
202 LLVMLShr = 21,
203 LLVMAShr = 22,
204 LLVMAnd = 23,
205 LLVMOr = 24,
206 LLVMXor = 25,
Bill Wendling07d6d762010-02-15 20:50:51 +0000207
Bill Wendlingda52cec2010-02-15 20:53:17 +0000208 /* Memory Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000209 LLVMAlloca = 26,
210 LLVMLoad = 27,
211 LLVMStore = 28,
212 LLVMGetElementPtr = 29,
Bill Wendling07d6d762010-02-15 20:50:51 +0000213
Bill Wendlingda52cec2010-02-15 20:53:17 +0000214 /* Cast Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000215 LLVMTrunc = 30,
216 LLVMZExt = 31,
217 LLVMSExt = 32,
218 LLVMFPToUI = 33,
219 LLVMFPToSI = 34,
220 LLVMUIToFP = 35,
221 LLVMSIToFP = 36,
222 LLVMFPTrunc = 37,
223 LLVMFPExt = 38,
224 LLVMPtrToInt = 39,
225 LLVMIntToPtr = 40,
226 LLVMBitCast = 41,
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +0000227 LLVMAddrSpaceCast = 60,
Bill Wendling07d6d762010-02-15 20:50:51 +0000228
Bill Wendlingda52cec2010-02-15 20:53:17 +0000229 /* Other Operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000230 LLVMICmp = 42,
231 LLVMFCmp = 43,
232 LLVMPHI = 44,
233 LLVMCall = 45,
234 LLVMSelect = 46,
Torok Edwin05dc9d62011-10-06 12:39:34 +0000235 LLVMUserOp1 = 47,
236 LLVMUserOp2 = 48,
Bill Wendling2641d132011-07-27 21:00:28 +0000237 LLVMVAArg = 49,
238 LLVMExtractElement = 50,
239 LLVMInsertElement = 51,
240 LLVMShuffleVector = 52,
241 LLVMExtractValue = 53,
242 LLVMInsertValue = 54,
Eli Friedman4fc946c2011-07-27 18:59:19 +0000243
244 /* Atomic operators */
Bill Wendling2641d132011-07-27 21:00:28 +0000245 LLVMFence = 55,
Eli Friedmanc9a551e2011-07-28 21:48:00 +0000246 LLVMAtomicCmpXchg = 56,
Bill Wendlingf891bf82011-07-31 06:30:59 +0000247 LLVMAtomicRMW = 57,
248
249 /* Exception Handling Operators */
Bill Wendlingfae14752011-08-12 20:24:12 +0000250 LLVMResume = 58,
Bill Wendling0aef16a2012-02-06 21:44:22 +0000251 LLVMLandingPad = 59
Bill Wendling2641d132011-07-27 21:00:28 +0000252
Chris Lattner40cf28d2009-10-12 04:01:02 +0000253} LLVMOpcode;
254
255typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000256 LLVMVoidTypeKind, /**< type with no size */
Dan Gohman518cda42011-12-17 00:04:22 +0000257 LLVMHalfTypeKind, /**< 16 bit floating point type */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000258 LLVMFloatTypeKind, /**< 32 bit floating point type */
259 LLVMDoubleTypeKind, /**< 64 bit floating point type */
260 LLVMX86_FP80TypeKind, /**< 80 bit floating point type (X87) */
261 LLVMFP128TypeKind, /**< 128 bit floating point type (112-bit mantissa)*/
262 LLVMPPC_FP128TypeKind, /**< 128 bit floating point type (two 64-bits) */
263 LLVMLabelTypeKind, /**< Labels */
264 LLVMIntegerTypeKind, /**< Arbitrary bit width integers */
265 LLVMFunctionTypeKind, /**< Functions */
266 LLVMStructTypeKind, /**< Structures */
267 LLVMArrayTypeKind, /**< Arrays */
268 LLVMPointerTypeKind, /**< Pointers */
Chris Lattnerdac44ec2009-07-15 22:00:31 +0000269 LLVMVectorTypeKind, /**< SIMD 'packed' format, or other vector type */
Dale Johannesenbaa5d042010-09-10 20:55:01 +0000270 LLVMMetadataTypeKind, /**< Metadata */
271 LLVMX86_MMXTypeKind /**< X86 MMX */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000272} LLVMTypeKind;
273
274typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000275 LLVMExternalLinkage, /**< Externally visible function */
Chris Lattner2dba0f02009-04-13 06:25:37 +0000276 LLVMAvailableExternallyLinkage,
Duncan Sands12da8ce2009-03-07 15:45:40 +0000277 LLVMLinkOnceAnyLinkage, /**< Keep one copy of function when linking (inline)*/
278 LLVMLinkOnceODRLinkage, /**< Same, but only replaced by something
279 equivalent. */
Rafael Espindola716e7402013-11-01 17:09:14 +0000280 LLVMLinkOnceODRAutoHideLinkage, /**< Obsolete */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000281 LLVMWeakAnyLinkage, /**< Keep one copy of function when linking (weak) */
282 LLVMWeakODRLinkage, /**< Same, but only replaced by something
283 equivalent. */
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000284 LLVMAppendingLinkage, /**< Special purpose, only applies to global arrays */
285 LLVMInternalLinkage, /**< Rename collisions when linking (static
286 functions) */
Duncan Sands12da8ce2009-03-07 15:45:40 +0000287 LLVMPrivateLinkage, /**< Like Internal, but omit from symbol table */
Nico Rieck7157bb72014-01-14 15:22:47 +0000288 LLVMDLLImportLinkage, /**< Obsolete */
289 LLVMDLLExportLinkage, /**< Obsolete */
Duncan Sandse2881052009-03-11 08:08:06 +0000290 LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000291 LLVMGhostLinkage, /**< Obsolete */
Bill Wendling002b1672009-07-20 18:22:52 +0000292 LLVMCommonLinkage, /**< Tentative definitions */
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000293 LLVMLinkerPrivateLinkage, /**< Like Private, but linker removes. */
Bill Wendling34bc34e2012-08-17 18:33:14 +0000294 LLVMLinkerPrivateWeakLinkage /**< Like LinkerPrivate, but is weak. */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000295} LLVMLinkage;
296
297typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000298 LLVMDefaultVisibility, /**< The GV is visible */
299 LLVMHiddenVisibility, /**< The GV is hidden */
300 LLVMProtectedVisibility /**< The GV is protected */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000301} LLVMVisibility;
302
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000303typedef enum {
Reid Kleckner2fae26f2014-03-05 02:34:23 +0000304 LLVMDefaultStorageClass = 0,
305 LLVMDLLImportStorageClass = 1, /**< Function to be imported from DLL. */
306 LLVMDLLExportStorageClass = 2 /**< Function to be accessible from DLL. */
307} LLVMDLLStorageClass;
308
309typedef enum {
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000310 LLVMCCallConv = 0,
311 LLVMFastCallConv = 8,
312 LLVMColdCallConv = 9,
Filip Pizlodfc9b582013-11-09 06:00:03 +0000313 LLVMWebKitJSCallConv = 12,
314 LLVMAnyRegCallConv = 13,
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000315 LLVMX86StdcallCallConv = 64,
316 LLVMX86FastcallCallConv = 65
317} LLVMCallConv;
318
319typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000320 LLVMIntEQ = 32, /**< equal */
321 LLVMIntNE, /**< not equal */
322 LLVMIntUGT, /**< unsigned greater than */
323 LLVMIntUGE, /**< unsigned greater or equal */
324 LLVMIntULT, /**< unsigned less than */
325 LLVMIntULE, /**< unsigned less or equal */
326 LLVMIntSGT, /**< signed greater than */
327 LLVMIntSGE, /**< signed greater or equal */
328 LLVMIntSLT, /**< signed less than */
329 LLVMIntSLE /**< signed less or equal */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000330} LLVMIntPredicate;
331
332typedef enum {
Gordon Henriksen4a4d7352007-12-30 17:46:33 +0000333 LLVMRealPredicateFalse, /**< Always false (always folded) */
334 LLVMRealOEQ, /**< True if ordered and equal */
335 LLVMRealOGT, /**< True if ordered and greater than */
336 LLVMRealOGE, /**< True if ordered and greater than or equal */
337 LLVMRealOLT, /**< True if ordered and less than */
338 LLVMRealOLE, /**< True if ordered and less than or equal */
339 LLVMRealONE, /**< True if ordered and operands are unequal */
340 LLVMRealORD, /**< True if ordered (no nans) */
341 LLVMRealUNO, /**< True if unordered: isnan(X) | isnan(Y) */
342 LLVMRealUEQ, /**< True if unordered or equal */
343 LLVMRealUGT, /**< True if unordered or greater than */
344 LLVMRealUGE, /**< True if unordered, greater than, or equal */
345 LLVMRealULT, /**< True if unordered or less than */
346 LLVMRealULE, /**< True if unordered, less than, or equal */
347 LLVMRealUNE, /**< True if unordered or not equal */
348 LLVMRealPredicateTrue /**< Always true (always folded) */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000349} LLVMRealPredicate;
350
Bill Wendlingfae14752011-08-12 20:24:12 +0000351typedef enum {
352 LLVMLandingPadCatch, /**< A catch clause */
353 LLVMLandingPadFilter /**< A filter clause */
354} LLVMLandingPadClauseTy;
355
Hans Wennborg5ff71202013-04-16 08:58:59 +0000356typedef enum {
357 LLVMNotThreadLocal = 0,
358 LLVMGeneralDynamicTLSModel,
359 LLVMLocalDynamicTLSModel,
360 LLVMInitialExecTLSModel,
361 LLVMLocalExecTLSModel
362} LLVMThreadLocalMode;
363
Carlo Kokda0ac722013-04-23 13:45:37 +0000364typedef enum {
Carlo Kok8c6719b2013-04-23 13:21:19 +0000365 LLVMAtomicOrderingNotAtomic = 0, /**< A load or store which is not atomic */
366 LLVMAtomicOrderingUnordered = 1, /**< Lowest level of atomicity, guarantees
367 somewhat sane results, lock free. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000368 LLVMAtomicOrderingMonotonic = 2, /**< guarantees that if you take all the
369 operations affecting a specific address,
Carlo Kok8c6719b2013-04-23 13:21:19 +0000370 a consistent ordering exists */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000371 LLVMAtomicOrderingAcquire = 4, /**< Acquire provides a barrier of the sort
372 necessary to acquire a lock to access other
Carlo Kok8c6719b2013-04-23 13:21:19 +0000373 memory with normal loads and stores. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000374 LLVMAtomicOrderingRelease = 5, /**< Release is similar to Acquire, but with
375 a barrier of the sort necessary to release
Carlo Kok8c6719b2013-04-23 13:21:19 +0000376 a lock. */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000377 LLVMAtomicOrderingAcquireRelease = 6, /**< provides both an Acquire and a
378 Release barrier (for fences and
Carlo Kok8c6719b2013-04-23 13:21:19 +0000379 operations which both read and write
380 memory). */
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000381 LLVMAtomicOrderingSequentiallyConsistent = 7 /**< provides Acquire semantics
382 for loads and Release
383 semantics for stores.
384 Additionally, it guarantees
385 that a total ordering exists
386 between all
387 SequentiallyConsistent
Carlo Kok8c6719b2013-04-23 13:21:19 +0000388 operations. */
Carlo Kokda0ac722013-04-23 13:45:37 +0000389} LLVMAtomicOrdering;
Carlo Kok8c6719b2013-04-23 13:21:19 +0000390
Carlo Kokda0ac722013-04-23 13:45:37 +0000391typedef enum {
Carlo Kok8c6719b2013-04-23 13:21:19 +0000392 LLVMAtomicRMWBinOpXchg, /**< Set the new value and return the one old */
393 LLVMAtomicRMWBinOpAdd, /**< Add a value and return the old one */
394 LLVMAtomicRMWBinOpSub, /**< Subtract a value and return the old one */
395 LLVMAtomicRMWBinOpAnd, /**< And a value and return the old one */
396 LLVMAtomicRMWBinOpNand, /**< Not-And a value and return the old one */
397 LLVMAtomicRMWBinOpOr, /**< OR a value and return the old one */
398 LLVMAtomicRMWBinOpXor, /**< Xor a value and return the old one */
399 LLVMAtomicRMWBinOpMax, /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000400 original using a signed comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000401 the old one */
402 LLVMAtomicRMWBinOpMin, /**< Sets the value if it's Smaller than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000403 original using a signed comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000404 the old one */
405 LLVMAtomicRMWBinOpUMax, /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000406 original using an unsigned comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000407 the old one */
408 LLVMAtomicRMWBinOpUMin /**< Sets the value if it's greater than the
NAKAMURA Takumia3a81352013-10-23 17:56:29 +0000409 original using an unsigned comparison and return
Carlo Kok8c6719b2013-04-23 13:21:19 +0000410 the old one */
Carlo Kokda0ac722013-04-23 13:45:37 +0000411} LLVMAtomicRMWBinOp;
Carlo Kok8c6719b2013-04-23 13:21:19 +0000412
Tom Stellard1580dc72014-04-16 17:45:04 +0000413typedef enum {
414 LLVMDSError,
415 LLVMDSWarning,
416 LLVMDSRemark,
417 LLVMDSNote
418} LLVMDiagnosticSeverity;
419
Gregory Szorc34c863a2012-03-21 03:54:29 +0000420/**
421 * @}
422 */
423
Nick Lewycky0db26542011-05-15 07:20:34 +0000424void LLVMInitializeCore(LLVMPassRegistryRef R);
425
Duncan Sands1cba0a82013-02-17 16:35:51 +0000426/** Deallocate and destroy all ManagedStatic variables.
427 @see llvm::llvm_shutdown
428 @see ManagedStatic */
Benjamin Kramer325ec892013-10-23 16:57:34 +0000429void LLVMShutdown(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +0000430
Gordon Henriksen76a03742007-09-18 03:18:57 +0000431
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000432/*===-- Error handling ----------------------------------------------------===*/
433
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000434char *LLVMCreateMessage(const char *Message);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000435void LLVMDisposeMessage(char *Message);
436
Filip Pizloa535b142013-10-17 01:38:28 +0000437typedef void (*LLVMFatalErrorHandler)(const char *Reason);
438
439/**
440 * Install a fatal error handler. By default, if LLVM detects a fatal error, it
441 * will call exit(1). This may not be appropriate in many contexts. For example,
442 * doing exit(1) will bypass many crash reporting/tracing system tools. This
443 * function allows you to install a callback that will be invoked prior to the
444 * call to exit(1).
445 */
446void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler);
447
448/**
449 * Reset the fatal error handler. This resets LLVM's fatal error handling
450 * behavior to the default.
451 */
452void LLVMResetFatalErrorHandler(void);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +0000453
Gregory Szorc34c863a2012-03-21 03:54:29 +0000454/**
Filip Pizloc10ca902013-11-04 02:22:25 +0000455 * Enable LLVM's built-in stack trace code. This intercepts the OS's crash
456 * signals and prints which component of LLVM you were in at the time if the
457 * crash.
Filip Pizlo9f50ccd2013-11-03 00:29:47 +0000458 */
Filip Pizloc10ca902013-11-04 02:22:25 +0000459void LLVMEnablePrettyStackTrace(void);
Filip Pizlo9f50ccd2013-11-03 00:29:47 +0000460
461/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000462 * @defgroup LLVMCCoreContext Contexts
463 *
464 * Contexts are execution states for the core LLVM IR system.
465 *
466 * Most types are tied to a context instance. Multiple contexts can
467 * exist simultaneously. A single context is not thread safe. However,
468 * different contexts can execute on different threads simultaneously.
469 *
470 * @{
471 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000472
Tom Stellard1580dc72014-04-16 17:45:04 +0000473typedef void (*LLVMDiagnosticHandler)(LLVMDiagnosticInfoRef, void *);
Juergen Ributzka34390c72014-05-16 02:33:15 +0000474typedef void (*LLVMYieldCallback)(LLVMContextRef, void *);
Tom Stellard1580dc72014-04-16 17:45:04 +0000475
Gregory Szorc34c863a2012-03-21 03:54:29 +0000476/**
477 * Create a new context.
478 *
479 * Every call to this function should be paired with a call to
480 * LLVMContextDispose() or the context will leak memory.
481 */
Erick Tryzelaarf34cb0c2009-08-30 23:38:06 +0000482LLVMContextRef LLVMContextCreate(void);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000483
484/**
485 * Obtain the global context instance.
486 */
Erick Tryzelaarf34cb0c2009-08-30 23:38:06 +0000487LLVMContextRef LLVMGetGlobalContext(void);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000488
489/**
Tom Stellard1580dc72014-04-16 17:45:04 +0000490 * Set the diagnostic handler for this context.
491 */
492void LLVMContextSetDiagnosticHandler(LLVMContextRef C,
493 LLVMDiagnosticHandler Handler,
494 void *DiagnosticContext);
495
496/**
Juergen Ributzka34390c72014-05-16 02:33:15 +0000497 * Set the yield callback function for this context.
498 *
499 * @see LLVMContext::setYieldCallback()
500 */
501void LLVMContextSetYieldCallback(LLVMContextRef C, LLVMYieldCallback Callback,
502 void *OpaqueHandle);
503
504/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000505 * Destroy a context instance.
506 *
507 * This should be called for every call to LLVMContextCreate() or memory
508 * will be leaked.
509 */
Owen Anderson6773d382009-07-01 16:58:40 +0000510void LLVMContextDispose(LLVMContextRef C);
511
Tom Stellard1580dc72014-04-16 17:45:04 +0000512/**
513 * Return a string representation of the DiagnosticInfo. Use
514 * LLVMDisposeMessage to free the string.
515 *
516 * @see DiagnosticInfo::print()
517 */
518char *LLVMGetDiagInfoDescription(LLVMDiagnosticInfoRef DI);
519
520/**
521 * Return an enum LLVMDiagnosticSeverity.
522 *
523 * @see DiagnosticInfo::getSeverity()
524 */
525LLVMDiagnosticSeverity LLVMGetDiagInfoSeverity(LLVMDiagnosticInfoRef DI);
526
Erick Tryzelaard8531fa2010-02-28 09:45:59 +0000527unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
528 unsigned SLen);
529unsigned LLVMGetMDKindID(const char* Name, unsigned SLen);
530
Gregory Szorc34c863a2012-03-21 03:54:29 +0000531/**
532 * @}
533 */
534
Gregory Szorc52d26602012-03-21 07:28:27 +0000535/**
536 * @defgroup LLVMCCoreModule Modules
Gregory Szorc34c863a2012-03-21 03:54:29 +0000537 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +0000538 * Modules represent the top-level structure in an LLVM program. An LLVM
Gregory Szorc34c863a2012-03-21 03:54:29 +0000539 * module is effectively a translation unit or a collection of
540 * translation units merged together.
541 *
542 * @{
543 */
544
Gregory Szorc34c863a2012-03-21 03:54:29 +0000545/**
546 * Create a new, empty module in the global context.
547 *
548 * This is equivalent to calling LLVMModuleCreateWithNameInContext with
549 * LLVMGetGlobalContext() as the context parameter.
550 *
551 * Every invocation should be paired with LLVMDisposeModule() or memory
552 * will be leaked.
553 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000554LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000555
556/**
557 * Create a new, empty module in a specific context.
558 *
559 * Every invocation should be paired with LLVMDisposeModule() or memory
560 * will be leaked.
561 */
Owen Anderson31d44e42009-07-02 07:17:57 +0000562LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
563 LLVMContextRef C);
Tom Stellard0a4e9a32014-10-01 17:14:57 +0000564/**
565 * Return an exact copy of the specified module.
566 */
567LLVMModuleRef LLVMCloneModule(LLVMModuleRef M);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000568
Gregory Szorc34c863a2012-03-21 03:54:29 +0000569/**
570 * Destroy a module instance.
571 *
572 * This must be called for every created module or memory will be
573 * leaked.
574 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000575void LLVMDisposeModule(LLVMModuleRef M);
576
Gregory Szorc34c863a2012-03-21 03:54:29 +0000577/**
578 * Obtain the data layout for a module.
579 *
580 * @see Module::getDataLayout()
581 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000582const char *LLVMGetDataLayout(LLVMModuleRef M);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000583
584/**
585 * Set the data layout for a module.
586 *
587 * @see Module::setDataLayout()
588 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000589void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
590
Gregory Szorc34c863a2012-03-21 03:54:29 +0000591/**
592 * Obtain the target triple for a module.
593 *
594 * @see Module::getTargetTriple()
595 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000596const char *LLVMGetTarget(LLVMModuleRef M);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000597
598/**
599 * Set the target triple for a module.
600 *
601 * @see Module::setTargetTriple()
602 */
Gordon Henriksen05568bb2007-12-27 20:13:47 +0000603void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
604
Gregory Szorc34c863a2012-03-21 03:54:29 +0000605/**
606 * Dump a representation of a module to stderr.
607 *
608 * @see Module::dump()
609 */
Gordon Henriksen6c6075e2008-03-14 23:58:56 +0000610void LLVMDumpModule(LLVMModuleRef M);
611
Gregory Szorc34c863a2012-03-21 03:54:29 +0000612/**
Hans Wennborgb7ef2fe2012-05-09 16:54:17 +0000613 * Print a representation of a module to a file. The ErrorMessage needs to be
614 * disposed with LLVMDisposeMessage. Returns 0 on success, 1 otherwise.
615 *
616 * @see Module::print()
617 */
618LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
619 char **ErrorMessage);
620
621/**
Anders Waldenborg84355db2013-10-16 18:00:54 +0000622 * Return a string representation of the module. Use
623 * LLVMDisposeMessage to free the string.
624 *
625 * @see Module::print()
626 */
627char *LLVMPrintModuleToString(LLVMModuleRef M);
628
629/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000630 * Set inline assembly for a module.
631 *
632 * @see Module::setModuleInlineAsm()
633 */
Chris Lattner26941452010-04-10 17:52:58 +0000634void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000635
Gregory Szorc34c863a2012-03-21 03:54:29 +0000636/**
637 * Obtain the context to which this module is associated.
638 *
639 * @see Module::getContext()
640 */
Chris Lattnera7e04b02010-11-28 20:03:44 +0000641LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M);
642
Gregory Szorc34c863a2012-03-21 03:54:29 +0000643/**
644 * Obtain a Type from a module by its registered name.
645 */
646LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000647
Gregory Szorc34c863a2012-03-21 03:54:29 +0000648/**
649 * Obtain the number of operands for named metadata in a module.
650 *
651 * @see llvm::Module::getNamedMetadata()
652 */
653unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name);
654
655/**
656 * Obtain the named metadata operands for a module.
657 *
658 * The passed LLVMValueRef pointer should refer to an array of
659 * LLVMValueRef at least LLVMGetNamedMetadataNumOperands long. This
660 * array will be populated with the LLVMValueRef instances. Each
661 * instance corresponds to a llvm::MDNode.
662 *
663 * @see llvm::Module::getNamedMetadata()
664 * @see llvm::MDNode::getOperand()
665 */
666void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest);
667
668/**
669 * Add an operand to named metadata.
670 *
671 * @see llvm::Module::getNamedMetadata()
672 * @see llvm::MDNode::addOperand()
673 */
674void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name,
675 LLVMValueRef Val);
676
Gregory Szorc52d26602012-03-21 07:28:27 +0000677/**
678 * Add a function to a module under a specified name.
679 *
680 * @see llvm::Function::Create()
681 */
682LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
683 LLVMTypeRef FunctionTy);
684
685/**
686 * Obtain a Function value from a Module by its name.
687 *
688 * The returned value corresponds to a llvm::Function value.
689 *
690 * @see llvm::Module::getFunction()
691 */
692LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name);
693
694/**
695 * Obtain an iterator to the first Function in a Module.
696 *
697 * @see llvm::Module::begin()
698 */
699LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M);
700
701/**
702 * Obtain an iterator to the last Function in a Module.
703 *
704 * @see llvm::Module::end()
705 */
706LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M);
707
708/**
709 * Advance a Function iterator to the next Function.
710 *
711 * Returns NULL if the iterator was already at the end and there are no more
712 * functions.
713 */
714LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn);
715
716/**
717 * Decrement a Function iterator to the previous Function.
718 *
719 * Returns NULL if the iterator was already at the beginning and there are
720 * no previous functions.
721 */
722LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000723
724/**
725 * @}
726 */
727
728/**
729 * @defgroup LLVMCCoreType Types
730 *
731 * Types represent the type of a value.
732 *
733 * Types are associated with a context instance. The context internally
734 * deduplicates types so there is only 1 instance of a specific type
735 * alive at a time. In other words, a unique type is shared among all
736 * consumers within a context.
737 *
738 * A Type in the C API corresponds to llvm::Type.
739 *
740 * Types have the following hierarchy:
741 *
Gordon Henriksen76a03742007-09-18 03:18:57 +0000742 * types:
743 * integer type
744 * real type
745 * function type
746 * sequence types:
747 * array type
748 * pointer type
749 * vector type
750 * void type
751 * label type
752 * opaque type
Gregory Szorc34c863a2012-03-21 03:54:29 +0000753 *
754 * @{
Gordon Henriksen76a03742007-09-18 03:18:57 +0000755 */
756
Gregory Szorc34c863a2012-03-21 03:54:29 +0000757/**
758 * Obtain the enumerated type of a Type instance.
759 *
760 * @see llvm::Type:getTypeID()
761 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000762LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000763
764/**
765 * Whether the type has a known size.
766 *
767 * Things that don't have a size are abstract types, labels, and void.a
768 *
769 * @see llvm::Type::isSized()
770 */
Torok Edwin1cd9ade2011-10-06 12:13:28 +0000771LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty);
Gordon Henriksena49d4352008-03-07 19:13:06 +0000772
Gregory Szorc34c863a2012-03-21 03:54:29 +0000773/**
774 * Obtain the context to which this type instance is associated.
775 *
776 * @see llvm::Type::getContext()
777 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000778LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty);
779
Gregory Szorc34c863a2012-03-21 03:54:29 +0000780/**
Anders Waldenborgb822cff2013-10-16 21:30:25 +0000781 * Dump a representation of a type to stderr.
782 *
783 * @see llvm::Type::dump()
784 */
785void LLVMDumpType(LLVMTypeRef Val);
786
787/**
Anders Waldenborg47b3bd32013-10-22 06:58:34 +0000788 * Return a string representation of the type. Use
789 * LLVMDisposeMessage to free the string.
790 *
791 * @see llvm::Type::print()
792 */
793char *LLVMPrintTypeToString(LLVMTypeRef Val);
794
795/**
Gregory Szorc34c863a2012-03-21 03:54:29 +0000796 * @defgroup LLVMCCoreTypeInt Integer Types
797 *
798 * Functions in this section operate on integer types.
799 *
800 * @{
801 */
802
803/**
804 * Obtain an integer type from a context with specified bit width.
805 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000806LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C);
807LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C);
808LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C);
809LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C);
810LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C);
811LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits);
812
Gregory Szorc34c863a2012-03-21 03:54:29 +0000813/**
814 * Obtain an integer type from the global context with a specified bit
815 * width.
816 */
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000817LLVMTypeRef LLVMInt1Type(void);
818LLVMTypeRef LLVMInt8Type(void);
819LLVMTypeRef LLVMInt16Type(void);
820LLVMTypeRef LLVMInt32Type(void);
821LLVMTypeRef LLVMInt64Type(void);
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000822LLVMTypeRef LLVMIntType(unsigned NumBits);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000823unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000824
Gregory Szorc34c863a2012-03-21 03:54:29 +0000825/**
826 * @}
827 */
828
829/**
830 * @defgroup LLVMCCoreTypeFloat Floating Point Types
831 *
832 * @{
833 */
834
835/**
836 * Obtain a 16-bit floating point type from a context.
837 */
Dan Gohman518cda42011-12-17 00:04:22 +0000838LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000839
840/**
841 * Obtain a 32-bit floating point type from a context.
842 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000843LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000844
845/**
846 * Obtain a 64-bit floating point type from a context.
847 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000848LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000849
850/**
851 * Obtain a 80-bit floating point type (X87) from a context.
852 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000853LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000854
855/**
856 * Obtain a 128-bit floating point type (112-bit mantissa) from a
857 * context.
858 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000859LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000860
861/**
862 * Obtain a 128-bit floating point type (two 64-bits) from a context.
863 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000864LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C);
865
Gregory Szorc34c863a2012-03-21 03:54:29 +0000866/**
867 * Obtain a floating point type from the global context.
868 *
869 * These map to the functions in this group of the same name.
870 */
Dan Gohman518cda42011-12-17 00:04:22 +0000871LLVMTypeRef LLVMHalfType(void);
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000872LLVMTypeRef LLVMFloatType(void);
873LLVMTypeRef LLVMDoubleType(void);
874LLVMTypeRef LLVMX86FP80Type(void);
875LLVMTypeRef LLVMFP128Type(void);
876LLVMTypeRef LLVMPPCFP128Type(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000877
Gregory Szorc34c863a2012-03-21 03:54:29 +0000878/**
879 * @}
880 */
881
882/**
883 * @defgroup LLVMCCoreTypeFunction Function Types
884 *
885 * @{
886 */
887
888/**
889 * Obtain a function type consisting of a specified signature.
890 *
891 * The function is defined as a tuple of a return Type, a list of
892 * parameter types, and whether the function is variadic.
893 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000894LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
895 LLVMTypeRef *ParamTypes, unsigned ParamCount,
Chris Lattner25963c62010-01-09 22:27:07 +0000896 LLVMBool IsVarArg);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000897
898/**
899 * Returns whether a function type is variadic.
900 */
Chris Lattner25963c62010-01-09 22:27:07 +0000901LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000902
903/**
904 * Obtain the Type this function Type returns.
905 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000906LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000907
908/**
909 * Obtain the number of parameters this function accepts.
910 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000911unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000912
913/**
914 * Obtain the types of a function's parameters.
915 *
916 * The Dest parameter should point to a pre-allocated array of
917 * LLVMTypeRef at least LLVMCountParamTypes() large. On return, the
918 * first LLVMCountParamTypes() entries in the array will be populated
919 * with LLVMTypeRef instances.
920 *
921 * @param FunctionTy The function type to operate on.
922 * @param Dest Memory address of an array to be filled with result.
923 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000924void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
Gordon Henriksen76a03742007-09-18 03:18:57 +0000925
Gregory Szorc34c863a2012-03-21 03:54:29 +0000926/**
927 * @}
928 */
929
930/**
931 * @defgroup LLVMCCoreTypeStruct Structure Types
932 *
933 * These functions relate to LLVMTypeRef instances.
934 *
935 * @see llvm::StructType
936 *
937 * @{
938 */
939
940/**
941 * Create a new structure type in a context.
942 *
943 * A structure is specified by a list of inner elements/types and
944 * whether these can be packed together.
945 *
946 * @see llvm::StructType::create()
947 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +0000948LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
Chris Lattner25963c62010-01-09 22:27:07 +0000949 unsigned ElementCount, LLVMBool Packed);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000950
951/**
952 * Create a new structure type in the global context.
953 *
954 * @see llvm::StructType::create()
955 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +0000956LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
Chris Lattner25963c62010-01-09 22:27:07 +0000957 LLVMBool Packed);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000958
959/**
960 * Create an empty structure in a context having a specified name.
961 *
962 * @see llvm::StructType::create()
963 */
Chris Lattnere71ccde2011-07-14 05:53:17 +0000964LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000965
966/**
967 * Obtain the name of a structure.
968 *
969 * @see llvm::StructType::getName()
970 */
Torok Edwin0d5f6ae2011-10-06 12:12:50 +0000971const char *LLVMGetStructName(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000972
973/**
974 * Set the contents of a structure type.
975 *
976 * @see llvm::StructType::setBody()
977 */
Chris Lattnere71ccde2011-07-14 05:53:17 +0000978void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
979 unsigned ElementCount, LLVMBool Packed);
980
Gregory Szorc34c863a2012-03-21 03:54:29 +0000981/**
982 * Get the number of elements defined inside the structure.
983 *
984 * @see llvm::StructType::getNumElements()
985 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +0000986unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000987
988/**
989 * Get the elements within a structure.
990 *
991 * The function is passed the address of a pre-allocated array of
992 * LLVMTypeRef at least LLVMCountStructElementTypes() long. After
993 * invocation, this array will be populated with the structure's
994 * elements. The objects in the destination array will have a lifetime
995 * of the structure type itself, which is the lifetime of the context it
996 * is contained in.
997 */
Gordon Henriksen76a03742007-09-18 03:18:57 +0000998void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
Gregory Szorc34c863a2012-03-21 03:54:29 +0000999
1000/**
1001 * Determine whether a structure is packed.
1002 *
1003 * @see llvm::StructType::isPacked()
1004 */
Chris Lattner25963c62010-01-09 22:27:07 +00001005LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001006
1007/**
1008 * Determine whether a structure is opaque.
1009 *
1010 * @see llvm::StructType::isOpaque()
1011 */
Chris Lattner17cf05b2011-07-14 16:20:28 +00001012LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy);
1013
Gregory Szorc34c863a2012-03-21 03:54:29 +00001014/**
1015 * @}
1016 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001017
Gregory Szorc34c863a2012-03-21 03:54:29 +00001018
1019/**
1020 * @defgroup LLVMCCoreTypeSequential Sequential Types
1021 *
1022 * Sequential types represents "arrays" of types. This is a super class
1023 * for array, vector, and pointer types.
1024 *
1025 * @{
1026 */
1027
1028/**
1029 * Obtain the type of elements within a sequential type.
1030 *
1031 * This works on array, vector, and pointer types.
1032 *
1033 * @see llvm::SequentialType::getElementType()
1034 */
1035LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty);
1036
1037/**
1038 * Create a fixed size array type that refers to a specific type.
1039 *
1040 * The created type will exist in the context that its element type
1041 * exists in.
1042 *
1043 * @see llvm::ArrayType::get()
1044 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +00001045LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001046
1047/**
1048 * Obtain the length of an array type.
1049 *
1050 * This only works on types that represent arrays.
1051 *
1052 * @see llvm::ArrayType::getNumElements()
1053 */
1054unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy);
1055
1056/**
1057 * Create a pointer type that points to a defined type.
1058 *
1059 * The created type will exist in the context that its pointee type
1060 * exists in.
1061 *
1062 * @see llvm::PointerType::get()
1063 */
Gordon Henriksen5a3fe032007-12-17 16:08:32 +00001064LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001065
1066/**
1067 * Obtain the address space of a pointer type.
1068 *
1069 * This only works on types that represent pointers.
1070 *
1071 * @see llvm::PointerType::getAddressSpace()
1072 */
1073unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
1074
1075/**
1076 * Create a vector type that contains a defined type and has a specific
1077 * number of elements.
1078 *
1079 * The created type will exist in the context thats its element type
1080 * exists in.
1081 *
1082 * @see llvm::VectorType::get()
1083 */
Gordon Henriksened7beaa2007-10-06 16:05:20 +00001084LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001085
Gregory Szorc34c863a2012-03-21 03:54:29 +00001086/**
1087 * Obtain the number of elements in a vector type.
1088 *
1089 * This only works on types that represent vectors.
1090 *
1091 * @see llvm::VectorType::getNumElements()
1092 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001093unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
1094
Gregory Szorc34c863a2012-03-21 03:54:29 +00001095/**
1096 * @}
1097 */
1098
1099/**
1100 * @defgroup LLVMCCoreTypeOther Other Types
1101 *
1102 * @{
1103 */
1104
1105/**
1106 * Create a void type in a context.
1107 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001108LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001109
1110/**
1111 * Create a label type in a context.
1112 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001113LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001114
1115/**
1116 * Create a X86 MMX type in a context.
1117 */
Dale Johannesen95b67af2010-09-10 21:58:02 +00001118LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001119
Gregory Szorc34c863a2012-03-21 03:54:29 +00001120/**
1121 * These are similar to the above functions except they operate on the
1122 * global context.
1123 */
Gordon Henriksena735a9c2008-05-04 12:55:34 +00001124LLVMTypeRef LLVMVoidType(void);
1125LLVMTypeRef LLVMLabelType(void);
Dale Johannesen95b67af2010-09-10 21:58:02 +00001126LLVMTypeRef LLVMX86MMXType(void);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001127
Gregory Szorc34c863a2012-03-21 03:54:29 +00001128/**
1129 * @}
1130 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001131
Gregory Szorc34c863a2012-03-21 03:54:29 +00001132/**
1133 * @}
1134 */
1135
1136/**
1137 * @defgroup LLVMCCoreValues Values
1138 *
1139 * The bulk of LLVM's object model consists of values, which comprise a very
Gordon Henriksen76a03742007-09-18 03:18:57 +00001140 * rich type hierarchy.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001141 *
1142 * LLVMValueRef essentially represents llvm::Value. There is a rich
1143 * hierarchy of classes within this type. Depending on the instance
Eli Benderskyc52863c2012-08-10 18:30:44 +00001144 * obtained, not all APIs are available.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001145 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001146 * Callers can determine the type of an LLVMValueRef by calling the
Gregory Szorc34c863a2012-03-21 03:54:29 +00001147 * LLVMIsA* family of functions (e.g. LLVMIsAArgument()). These
1148 * functions are defined by a macro, so it isn't obvious which are
1149 * available by looking at the Doxygen source code. Instead, look at the
1150 * source definition of LLVM_FOR_EACH_VALUE_SUBCLASS and note the list
1151 * of value names given. These value names also correspond to classes in
1152 * the llvm::Value hierarchy.
1153 *
1154 * @{
Gordon Henriksen76a03742007-09-18 03:18:57 +00001155 */
1156
Gordon Henriksen29e38942008-12-19 18:39:45 +00001157#define LLVM_FOR_EACH_VALUE_SUBCLASS(macro) \
1158 macro(Argument) \
1159 macro(BasicBlock) \
1160 macro(InlineAsm) \
1161 macro(User) \
1162 macro(Constant) \
Torok Edwind09b7572011-10-14 20:37:56 +00001163 macro(BlockAddress) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001164 macro(ConstantAggregateZero) \
1165 macro(ConstantArray) \
Peter Zotovae0344b2013-11-05 12:55:37 +00001166 macro(ConstantDataSequential) \
1167 macro(ConstantDataArray) \
1168 macro(ConstantDataVector) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001169 macro(ConstantExpr) \
1170 macro(ConstantFP) \
1171 macro(ConstantInt) \
1172 macro(ConstantPointerNull) \
1173 macro(ConstantStruct) \
1174 macro(ConstantVector) \
1175 macro(GlobalValue) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001176 macro(GlobalAlias) \
Rafael Espindola99e05cf2014-05-13 18:45:48 +00001177 macro(GlobalObject) \
1178 macro(Function) \
1179 macro(GlobalVariable) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001180 macro(UndefValue) \
1181 macro(Instruction) \
1182 macro(BinaryOperator) \
1183 macro(CallInst) \
1184 macro(IntrinsicInst) \
1185 macro(DbgInfoIntrinsic) \
1186 macro(DbgDeclareInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001187 macro(MemIntrinsic) \
1188 macro(MemCpyInst) \
1189 macro(MemMoveInst) \
1190 macro(MemSetInst) \
1191 macro(CmpInst) \
Torok Edwind09b7572011-10-14 20:37:56 +00001192 macro(FCmpInst) \
1193 macro(ICmpInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001194 macro(ExtractElementInst) \
1195 macro(GetElementPtrInst) \
1196 macro(InsertElementInst) \
1197 macro(InsertValueInst) \
Bill Wendlingfae14752011-08-12 20:24:12 +00001198 macro(LandingPadInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001199 macro(PHINode) \
1200 macro(SelectInst) \
1201 macro(ShuffleVectorInst) \
1202 macro(StoreInst) \
1203 macro(TerminatorInst) \
1204 macro(BranchInst) \
Torok Edwind09b7572011-10-14 20:37:56 +00001205 macro(IndirectBrInst) \
Gordon Henriksen29e38942008-12-19 18:39:45 +00001206 macro(InvokeInst) \
1207 macro(ReturnInst) \
1208 macro(SwitchInst) \
1209 macro(UnreachableInst) \
Bill Wendlingf891bf82011-07-31 06:30:59 +00001210 macro(ResumeInst) \
Duncan Sands5e37e992013-05-06 08:55:45 +00001211 macro(UnaryInstruction) \
1212 macro(AllocaInst) \
1213 macro(CastInst) \
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001214 macro(AddrSpaceCastInst) \
Duncan Sands5e37e992013-05-06 08:55:45 +00001215 macro(BitCastInst) \
1216 macro(FPExtInst) \
1217 macro(FPToSIInst) \
1218 macro(FPToUIInst) \
1219 macro(FPTruncInst) \
1220 macro(IntToPtrInst) \
1221 macro(PtrToIntInst) \
1222 macro(SExtInst) \
1223 macro(SIToFPInst) \
1224 macro(TruncInst) \
1225 macro(UIToFPInst) \
1226 macro(ZExtInst) \
1227 macro(ExtractValueInst) \
1228 macro(LoadInst) \
1229 macro(VAArgInst)
Gordon Henriksen29e38942008-12-19 18:39:45 +00001230
Gregory Szorc34c863a2012-03-21 03:54:29 +00001231/**
1232 * @defgroup LLVMCCoreValueGeneral General APIs
1233 *
1234 * Functions in this section work on all LLVMValueRef instances,
1235 * regardless of their sub-type. They correspond to functions available
1236 * on llvm::Value.
1237 *
1238 * @{
1239 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001240
Gregory Szorc34c863a2012-03-21 03:54:29 +00001241/**
1242 * Obtain the type of a value.
1243 *
1244 * @see llvm::Value::getType()
1245 */
1246LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
1247
1248/**
1249 * Obtain the string name of a value.
1250 *
1251 * @see llvm::Value::getName()
1252 */
1253const char *LLVMGetValueName(LLVMValueRef Val);
1254
1255/**
1256 * Set the string name of a value.
1257 *
1258 * @see llvm::Value::setName()
1259 */
1260void LLVMSetValueName(LLVMValueRef Val, const char *Name);
1261
1262/**
1263 * Dump a representation of a value to stderr.
1264 *
1265 * @see llvm::Value::dump()
1266 */
1267void LLVMDumpValue(LLVMValueRef Val);
1268
1269/**
Peter Zotovcd93b372013-11-06 09:21:01 +00001270 * Return a string representation of the value. Use
1271 * LLVMDisposeMessage to free the string.
1272 *
1273 * @see llvm::Value::print()
1274 */
1275char *LLVMPrintValueToString(LLVMValueRef Val);
1276
1277/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001278 * Replace all uses of a value with another one.
1279 *
1280 * @see llvm::Value::replaceAllUsesWith()
1281 */
1282void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal);
1283
1284/**
1285 * Determine whether the specified constant instance is constant.
1286 */
1287LLVMBool LLVMIsConstant(LLVMValueRef Val);
1288
1289/**
1290 * Determine whether a value instance is undefined.
1291 */
1292LLVMBool LLVMIsUndef(LLVMValueRef Val);
1293
1294/**
1295 * Convert value instances between types.
1296 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001297 * Internally, an LLVMValueRef is "pinned" to a specific type. This
Gregory Szorc34c863a2012-03-21 03:54:29 +00001298 * series of functions allows you to cast an instance to a specific
1299 * type.
1300 *
1301 * If the cast is not valid for the specified type, NULL is returned.
1302 *
1303 * @see llvm::dyn_cast_or_null<>
1304 */
Gordon Henriksen29e38942008-12-19 18:39:45 +00001305#define LLVM_DECLARE_VALUE_CAST(name) \
1306 LLVMValueRef LLVMIsA##name(LLVMValueRef Val);
1307LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DECLARE_VALUE_CAST)
1308
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00001309LLVMValueRef LLVMIsAMDNode(LLVMValueRef Val);
1310LLVMValueRef LLVMIsAMDString(LLVMValueRef Val);
1311
Gregory Szorc34c863a2012-03-21 03:54:29 +00001312/**
1313 * @}
1314 */
1315
1316/**
1317 * @defgroup LLVMCCoreValueUses Usage
1318 *
1319 * This module defines functions that allow you to inspect the uses of a
1320 * LLVMValueRef.
1321 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001322 * It is possible to obtain an LLVMUseRef for any LLVMValueRef instance.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001323 * Each LLVMUseRef (which corresponds to a llvm::Use instance) holds a
1324 * llvm::User and llvm::Value.
1325 *
1326 * @{
1327 */
1328
1329/**
1330 * Obtain the first use of a value.
1331 *
1332 * Uses are obtained in an iterator fashion. First, call this function
1333 * to obtain a reference to the first use. Then, call LLVMGetNextUse()
Eli Benderskyc52863c2012-08-10 18:30:44 +00001334 * on that instance and all subsequently obtained instances until
Gregory Szorc34c863a2012-03-21 03:54:29 +00001335 * LLVMGetNextUse() returns NULL.
1336 *
1337 * @see llvm::Value::use_begin()
1338 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001339LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001340
1341/**
1342 * Obtain the next use of a value.
1343 *
1344 * This effectively advances the iterator. It returns NULL if you are on
1345 * the final use and no more are available.
1346 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001347LLVMUseRef LLVMGetNextUse(LLVMUseRef U);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001348
1349/**
1350 * Obtain the user value for a user.
1351 *
1352 * The returned value corresponds to a llvm::User type.
1353 *
1354 * @see llvm::Use::getUser()
1355 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001356LLVMValueRef LLVMGetUser(LLVMUseRef U);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001357
1358/**
1359 * Obtain the value this use corresponds to.
1360 *
1361 * @see llvm::Use::get().
1362 */
Erick Tryzelaar9f9857e2010-03-02 20:32:28 +00001363LLVMValueRef LLVMGetUsedValue(LLVMUseRef U);
Chris Lattner40cf28d2009-10-12 04:01:02 +00001364
Gregory Szorc34c863a2012-03-21 03:54:29 +00001365/**
1366 * @}
1367 */
1368
1369/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001370 * @defgroup LLVMCCoreValueUser User value
Gregory Szorc34c863a2012-03-21 03:54:29 +00001371 *
1372 * Function in this group pertain to LLVMValueRef instances that descent
1373 * from llvm::User. This includes constants, instructions, and
1374 * operators.
1375 *
1376 * @{
1377 */
1378
1379/**
1380 * Obtain an operand at a specific index in a llvm::User value.
1381 *
1382 * @see llvm::User::getOperand()
1383 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001384LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001385
1386/**
Peter Zotovb19f78f2014-08-12 02:55:40 +00001387 * Obtain the use of an operand at a specific index in a llvm::User value.
1388 *
1389 * @see llvm::User::getOperandUse()
1390 */
1391LLVMUseRef LLVMGetOperandUse(LLVMValueRef Val, unsigned Index);
1392
1393/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001394 * Set an operand at a specific index in a llvm::User value.
1395 *
1396 * @see llvm::User::setOperand()
1397 */
Erick Tryzelaarb4d48702010-08-20 14:51:22 +00001398void LLVMSetOperand(LLVMValueRef User, unsigned Index, LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001399
1400/**
1401 * Obtain the number of operands in a llvm::User value.
1402 *
1403 * @see llvm::User::getNumOperands()
1404 */
Erick Tryzelaarb4d48702010-08-20 14:51:22 +00001405int LLVMGetNumOperands(LLVMValueRef Val);
Chris Lattner40cf28d2009-10-12 04:01:02 +00001406
Gregory Szorc34c863a2012-03-21 03:54:29 +00001407/**
1408 * @}
1409 */
1410
1411/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001412 * @defgroup LLVMCCoreValueConstant Constants
Gregory Szorc34c863a2012-03-21 03:54:29 +00001413 *
1414 * This section contains APIs for interacting with LLVMValueRef that
1415 * correspond to llvm::Constant instances.
1416 *
1417 * These functions will work for any LLVMValueRef in the llvm::Constant
1418 * class hierarchy.
1419 *
1420 * @{
1421 */
1422
1423/**
1424 * Obtain a constant value referring to the null instance of a type.
1425 *
1426 * @see llvm::Constant::getNullValue()
1427 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001428LLVMValueRef LLVMConstNull(LLVMTypeRef Ty); /* all zeroes */
Gregory Szorc34c863a2012-03-21 03:54:29 +00001429
1430/**
1431 * Obtain a constant value referring to the instance of a type
1432 * consisting of all ones.
1433 *
1434 * This is only valid for integer types.
1435 *
1436 * @see llvm::Constant::getAllOnesValue()
1437 */
1438LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty);
1439
1440/**
1441 * Obtain a constant value referring to an undefined value of a type.
1442 *
1443 * @see llvm::UndefValue::get()
1444 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001445LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001446
1447/**
1448 * Determine whether a value instance is null.
1449 *
1450 * @see llvm::Constant::isNullValue()
1451 */
Chris Lattner25963c62010-01-09 22:27:07 +00001452LLVMBool LLVMIsNull(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001453
1454/**
1455 * Obtain a constant that is a constant pointer pointing to NULL for a
1456 * specified type.
1457 */
Chris Lattner7f318242009-07-06 17:29:59 +00001458LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001459
Gregory Szorc34c863a2012-03-21 03:54:29 +00001460/**
1461 * @defgroup LLVMCCoreValueConstantScalar Scalar constants
1462 *
1463 * Functions in this group model LLVMValueRef instances that correspond
1464 * to constants referring to scalar types.
1465 *
1466 * For integer types, the LLVMTypeRef parameter should correspond to a
1467 * llvm::IntegerType instance and the returned LLVMValueRef will
1468 * correspond to a llvm::ConstantInt.
1469 *
1470 * For floating point types, the LLVMTypeRef returned corresponds to a
1471 * llvm::ConstantFP.
1472 *
1473 * @{
1474 */
Erick Tryzelaard8531fa2010-02-28 09:45:59 +00001475
Gregory Szorc34c863a2012-03-21 03:54:29 +00001476/**
1477 * Obtain a constant value for an integer type.
1478 *
1479 * The returned value corresponds to a llvm::ConstantInt.
1480 *
1481 * @see llvm::ConstantInt::get()
1482 *
1483 * @param IntTy Integer type to obtain value of.
1484 * @param N The value the returned instance should refer to.
1485 * @param SignExtend Whether to sign extend the produced value.
1486 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001487LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
Chris Lattner25963c62010-01-09 22:27:07 +00001488 LLVMBool SignExtend);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001489
1490/**
1491 * Obtain a constant value for an integer of arbitrary precision.
1492 *
1493 * @see llvm::ConstantInt::get()
1494 */
Chris Lattner4329e072010-11-23 02:47:22 +00001495LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
1496 unsigned NumWords,
1497 const uint64_t Words[]);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001498
1499/**
1500 * Obtain a constant value for an integer parsed from a string.
1501 *
1502 * A similar API, LLVMConstIntOfStringAndSize is also available. If the
1503 * string's length is available, it is preferred to call that function
1504 * instead.
1505 *
1506 * @see llvm::ConstantInt::get()
1507 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001508LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char *Text,
1509 uint8_t Radix);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001510
1511/**
1512 * Obtain a constant value for an integer parsed from a string with
1513 * specified length.
1514 *
1515 * @see llvm::ConstantInt::get()
1516 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001517LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char *Text,
1518 unsigned SLen, uint8_t Radix);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001519
1520/**
1521 * Obtain a constant value referring to a double floating point value.
1522 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001523LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001524
1525/**
1526 * Obtain a constant for a floating point value parsed from a string.
1527 *
1528 * A similar API, LLVMConstRealOfStringAndSize is also available. It
1529 * should be used if the input string's length is known.
1530 */
Gordon Henriksen931e1212008-02-02 01:07:50 +00001531LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001532
1533/**
1534 * Obtain a constant for a floating point value parsed from a string.
1535 */
Erick Tryzelaardd991352009-08-16 23:36:46 +00001536LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char *Text,
1537 unsigned SLen);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001538
1539/**
1540 * Obtain the zero extended value for an integer constant value.
1541 *
1542 * @see llvm::ConstantInt::getZExtValue()
1543 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001544unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001545
1546/**
1547 * Obtain the sign extended value for an integer constant value.
1548 *
1549 * @see llvm::ConstantInt::getSExtValue()
1550 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001551long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal);
Erick Tryzelaardd991352009-08-16 23:36:46 +00001552
Gregory Szorc34c863a2012-03-21 03:54:29 +00001553/**
Peter Zotov1d98e6d2014-10-28 19:46:44 +00001554 * Obtain the double value for an floating point constant value.
1555 * losesInfo indicates if some precision was lost in the conversion.
1556 *
1557 * @see llvm::ConstantFP::getDoubleValue
1558 */
1559double LLVMConstRealGetDouble(LLVMValueRef ConstantVal, LLVMBool *losesInfo);
1560
1561/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001562 * @}
1563 */
1564
1565/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001566 * @defgroup LLVMCCoreValueConstantComposite Composite Constants
1567 *
1568 * Functions in this group operate on composite constants.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001569 *
1570 * @{
1571 */
1572
1573/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001574 * Create a ConstantDataSequential and initialize it with a string.
Gregory Szorc34c863a2012-03-21 03:54:29 +00001575 *
Gregory Szorc52d26602012-03-21 07:28:27 +00001576 * @see llvm::ConstantDataArray::getString()
Gregory Szorc34c863a2012-03-21 03:54:29 +00001577 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001578LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
Chris Lattner25963c62010-01-09 22:27:07 +00001579 unsigned Length, LLVMBool DontNullTerminate);
Gregory Szorc52d26602012-03-21 07:28:27 +00001580
1581/**
1582 * Create a ConstantDataSequential with string content in the global context.
1583 *
1584 * This is the same as LLVMConstStringInContext except it operates on the
1585 * global context.
1586 *
1587 * @see LLVMConstStringInContext()
1588 * @see llvm::ConstantDataArray::getString()
1589 */
1590LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
1591 LLVMBool DontNullTerminate);
1592
1593/**
Peter Zotovf9aa8822014-08-03 23:54:16 +00001594 * Returns true if the specified constant is an array of i8.
1595 *
1596 * @see ConstantDataSequential::getAsString()
1597 */
1598LLVMBool LLVMIsConstantString(LLVMValueRef c);
1599
1600/**
1601 * Get the given constant data sequential as a string.
1602 *
1603 * @see ConstantDataSequential::getAsString()
1604 */
1605const char *LLVMGetAsString(LLVMValueRef c, size_t* out);
1606
1607/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001608 * Create an anonymous ConstantStruct with the specified values.
1609 *
1610 * @see llvm::ConstantStruct::getAnon()
1611 */
1612LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001613 LLVMValueRef *ConstantVals,
Chris Lattner25963c62010-01-09 22:27:07 +00001614 unsigned Count, LLVMBool Packed);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00001615
Gregory Szorc52d26602012-03-21 07:28:27 +00001616/**
1617 * Create a ConstantStruct in the global Context.
1618 *
1619 * This is the same as LLVMConstStructInContext except it operates on the
1620 * global Context.
1621 *
1622 * @see LLVMConstStructInContext()
1623 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001624LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
Chris Lattner25963c62010-01-09 22:27:07 +00001625 LLVMBool Packed);
Gregory Szorc52d26602012-03-21 07:28:27 +00001626
1627/**
1628 * Create a ConstantArray from values.
1629 *
1630 * @see llvm::ConstantArray::get()
1631 */
1632LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
1633 LLVMValueRef *ConstantVals, unsigned Length);
1634
1635/**
1636 * Create a non-anonymous ConstantStruct from values.
1637 *
1638 * @see llvm::ConstantStruct::get()
1639 */
Rafael Espindola784ad242011-07-14 19:09:08 +00001640LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
1641 LLVMValueRef *ConstantVals,
1642 unsigned Count);
Gregory Szorc52d26602012-03-21 07:28:27 +00001643
1644/**
Peter Zotovf9aa8822014-08-03 23:54:16 +00001645 * Get an element at specified index as a constant.
1646 *
1647 * @see ConstantDataSequential::getElementAsConstant()
1648 */
1649LLVMValueRef LLVMGetElementAsConstant(LLVMValueRef c, unsigned idx);
1650
1651/**
Gregory Szorc52d26602012-03-21 07:28:27 +00001652 * Create a ConstantVector from values.
1653 *
1654 * @see llvm::ConstantVector::get()
1655 */
Gordon Henriksen1046c732007-10-06 15:11:06 +00001656LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001657
Gregory Szorc52d26602012-03-21 07:28:27 +00001658/**
1659 * @}
1660 */
1661
1662/**
1663 * @defgroup LLVMCCoreValueConstantExpressions Constant Expressions
1664 *
1665 * Functions in this group correspond to APIs on llvm::ConstantExpr.
1666 *
1667 * @see llvm::ConstantExpr.
1668 *
1669 * @{
1670 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001671LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal);
Erick Tryzelaarfd529d72009-08-19 08:36:49 +00001672LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001673LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty);
1674LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001675LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal);
1676LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001677LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001678LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal);
1679LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001680LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001681LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001682LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001683LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001684LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1685LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001686LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001687LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00001688LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1689LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001690LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001691LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1692LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001693LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001694LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1695LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1696LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1697LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1698LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1699LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1700LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1701LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
1702 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1703LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
1704 LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1705LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1706LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1707LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
1708LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
1709 LLVMValueRef *ConstantIndices, unsigned NumIndices);
Dan Gohmane4ca02d2009-09-03 23:34:49 +00001710LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
1711 LLVMValueRef *ConstantIndices,
1712 unsigned NumIndices);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001713LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1714LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1715LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1716LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1717LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1718LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1719LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1720LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1721LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1722LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1723LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
1724LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00001725LLVMValueRef LLVMConstAddrSpaceCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001726LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
1727 LLVMTypeRef ToType);
1728LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
1729 LLVMTypeRef ToType);
1730LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
1731 LLVMTypeRef ToType);
1732LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
1733 LLVMTypeRef ToType);
1734LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
Chris Lattner25963c62010-01-09 22:27:07 +00001735 LLVMBool isSigned);
Erick Tryzelaar4cc690c2009-08-16 02:20:12 +00001736LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001737LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
1738 LLVMValueRef ConstantIfTrue,
1739 LLVMValueRef ConstantIfFalse);
1740LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
1741 LLVMValueRef IndexConstant);
1742LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
1743 LLVMValueRef ElementValueConstant,
1744 LLVMValueRef IndexConstant);
1745LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
1746 LLVMValueRef VectorBConstant,
1747 LLVMValueRef MaskConstant);
Dan Gohmand5104a52008-11-03 22:55:43 +00001748LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
1749 unsigned NumIdx);
1750LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
1751 LLVMValueRef ElementValueConstant,
1752 unsigned *IdxList, unsigned NumIdx);
Chris Lattner25963c62010-01-09 22:27:07 +00001753LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty,
Chris Lattner3d1f5522008-12-17 21:39:50 +00001754 const char *AsmString, const char *Constraints,
Chris Lattner25963c62010-01-09 22:27:07 +00001755 LLVMBool HasSideEffects, LLVMBool IsAlignStack);
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00001756LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB);
Gordon Henriksen7ce31762007-10-06 14:29:36 +00001757
Gregory Szorc52d26602012-03-21 07:28:27 +00001758/**
1759 * @}
1760 */
1761
1762/**
1763 * @defgroup LLVMCCoreValueConstantGlobals Global Values
1764 *
1765 * This group contains functions that operate on global values. Functions in
1766 * this group relate to functions in the llvm::GlobalValue class tree.
1767 *
1768 * @see llvm::GlobalValue
1769 *
1770 * @{
1771 */
1772
Gordon Henriksen265f7802008-03-19 01:11:35 +00001773LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global);
Chris Lattner25963c62010-01-09 22:27:07 +00001774LLVMBool LLVMIsDeclaration(LLVMValueRef Global);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001775LLVMLinkage LLVMGetLinkage(LLVMValueRef Global);
1776void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage);
1777const char *LLVMGetSection(LLVMValueRef Global);
1778void LLVMSetSection(LLVMValueRef Global, const char *Section);
1779LLVMVisibility LLVMGetVisibility(LLVMValueRef Global);
1780void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
Reid Kleckner2fae26f2014-03-05 02:34:23 +00001781LLVMDLLStorageClass LLVMGetDLLStorageClass(LLVMValueRef Global);
1782void LLVMSetDLLStorageClass(LLVMValueRef Global, LLVMDLLStorageClass Class);
Tim Northoverad96d012014-03-10 19:24:35 +00001783LLVMBool LLVMHasUnnamedAddr(LLVMValueRef Global);
1784void LLVMSetUnnamedAddr(LLVMValueRef Global, LLVMBool HasUnnamedAddr);
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001785
1786/**
1787 * @defgroup LLVMCCoreValueWithAlignment Values with alignment
1788 *
1789 * Functions in this group only apply to values with alignment, i.e.
1790 * global variables, load and store instructions.
1791 */
1792
1793/**
1794 * Obtain the preferred alignment of the value.
Peter Zotov9f584e62014-03-05 05:05:34 +00001795 * @see llvm::AllocaInst::getAlignment()
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001796 * @see llvm::LoadInst::getAlignment()
1797 * @see llvm::StoreInst::getAlignment()
1798 * @see llvm::GlobalValue::getAlignment()
1799 */
1800unsigned LLVMGetAlignment(LLVMValueRef V);
1801
1802/**
1803 * Set the preferred alignment of the value.
Peter Zotov9f584e62014-03-05 05:05:34 +00001804 * @see llvm::AllocaInst::setAlignment()
Anders Waldenborg213a63f2013-10-29 09:02:02 +00001805 * @see llvm::LoadInst::setAlignment()
1806 * @see llvm::StoreInst::setAlignment()
1807 * @see llvm::GlobalValue::setAlignment()
1808 */
1809void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes);
1810
1811/**
1812 * @}
1813 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001814
Gregory Szorc52d26602012-03-21 07:28:27 +00001815/**
1816 * @defgroup LLVMCoreValueConstantGlobalVariable Global Variables
1817 *
1818 * This group contains functions that operate on global variable values.
1819 *
1820 * @see llvm::GlobalVariable
1821 *
1822 * @{
1823 */
Gordon Henriksen76a03742007-09-18 03:18:57 +00001824LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name);
Erick Tryzelaar06894b32010-02-28 09:46:13 +00001825LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
1826 const char *Name,
1827 unsigned AddressSpace);
Gordon Henriksen783f7bb2007-10-08 03:45:09 +00001828LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name);
Gordon Henriksen07a45f42008-03-23 22:21:29 +00001829LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M);
1830LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M);
1831LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar);
1832LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001833void LLVMDeleteGlobal(LLVMValueRef GlobalVar);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001834LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar);
1835void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal);
Chris Lattner25963c62010-01-09 22:27:07 +00001836LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar);
1837void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal);
1838LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar);
1839void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant);
Hans Wennborg5ff71202013-04-16 08:58:59 +00001840LLVMThreadLocalMode LLVMGetThreadLocalMode(LLVMValueRef GlobalVar);
1841void LLVMSetThreadLocalMode(LLVMValueRef GlobalVar, LLVMThreadLocalMode Mode);
1842LLVMBool LLVMIsExternallyInitialized(LLVMValueRef GlobalVar);
1843void LLVMSetExternallyInitialized(LLVMValueRef GlobalVar, LLVMBool IsExtInit);
Gordon Henriksen76a03742007-09-18 03:18:57 +00001844
Gregory Szorc52d26602012-03-21 07:28:27 +00001845/**
1846 * @}
1847 */
1848
1849/**
1850 * @defgroup LLVMCoreValueConstantGlobalAlias Global Aliases
1851 *
1852 * This group contains function that operate on global alias values.
1853 *
1854 * @see llvm::GlobalAlias
1855 *
1856 * @{
1857 */
Chris Lattner3d1f5522008-12-17 21:39:50 +00001858LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
1859 const char *Name);
1860
Gregory Szorc34c863a2012-03-21 03:54:29 +00001861/**
1862 * @}
1863 */
1864
1865/**
1866 * @defgroup LLVMCCoreValueFunction Function values
1867 *
1868 * Functions in this group operate on LLVMValueRef instances that
1869 * correspond to llvm::Function instances.
1870 *
1871 * @see llvm::Function
1872 *
1873 * @{
1874 */
1875
1876/**
1877 * Remove a function from its containing module and deletes it.
1878 *
1879 * @see llvm::Function::eraseFromParent()
1880 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001881void LLVMDeleteFunction(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001882
1883/**
1884 * Obtain the ID number from a function instance.
1885 *
1886 * @see llvm::Function::getIntrinsicID()
1887 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001888unsigned LLVMGetIntrinsicID(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001889
1890/**
1891 * Obtain the calling function of a function.
1892 *
1893 * The returned value corresponds to the LLVMCallConv enumeration.
1894 *
1895 * @see llvm::Function::getCallingConv()
1896 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001897unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001898
1899/**
1900 * Set the calling convention of a function.
1901 *
1902 * @see llvm::Function::setCallingConv()
1903 *
1904 * @param Fn Function to operate on
1905 * @param CC LLVMCallConv to set calling convention to
1906 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001907void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001908
1909/**
1910 * Obtain the name of the garbage collector to use during code
1911 * generation.
1912 *
1913 * @see llvm::Function::getGC()
1914 */
Gordon Henriksend930f912008-08-17 18:44:35 +00001915const char *LLVMGetGC(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001916
1917/**
1918 * Define the garbage collector to use during code generation.
1919 *
1920 * @see llvm::Function::setGC()
1921 */
Gordon Henriksend930f912008-08-17 18:44:35 +00001922void LLVMSetGC(LLVMValueRef Fn, const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001923
1924/**
1925 * Add an attribute to a function.
1926 *
1927 * @see llvm::Function::addAttribute()
1928 */
Duncan Sands7374a012009-05-06 12:21:17 +00001929void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001930
1931/**
Tom Stellarde8f35e12013-04-16 23:12:43 +00001932 * Add a target-dependent attribute to a fuction
1933 * @see llvm::AttrBuilder::addAttribute()
1934 */
1935void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A,
1936 const char *V);
1937
1938/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00001939 * Obtain an attribute from a function.
1940 *
1941 * @see llvm::Function::getAttributes()
1942 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00001943LLVMAttribute LLVMGetFunctionAttr(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001944
1945/**
1946 * Remove an attribute from a function.
1947 */
Duncan Sands7374a012009-05-06 12:21:17 +00001948void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00001949
Gregory Szorc34c863a2012-03-21 03:54:29 +00001950/**
1951 * @defgroup LLVMCCoreValueFunctionParameters Function Parameters
1952 *
1953 * Functions in this group relate to arguments/parameters on functions.
1954 *
1955 * Functions in this group expect LLVMValueRef instances that correspond
1956 * to llvm::Function instances.
1957 *
1958 * @{
1959 */
1960
1961/**
1962 * Obtain the number of parameters in a function.
1963 *
1964 * @see llvm::Function::arg_size()
1965 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001966unsigned LLVMCountParams(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001967
1968/**
1969 * Obtain the parameters in a function.
1970 *
1971 * The takes a pointer to a pre-allocated array of LLVMValueRef that is
1972 * at least LLVMCountParams() long. This array will be filled with
1973 * LLVMValueRef instances which correspond to the parameters the
1974 * function receives. Each LLVMValueRef corresponds to a llvm::Argument
1975 * instance.
1976 *
1977 * @see llvm::Function::arg_begin()
1978 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001979void LLVMGetParams(LLVMValueRef Fn, LLVMValueRef *Params);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001980
1981/**
1982 * Obtain the parameter at the specified index.
1983 *
1984 * Parameters are indexed from 0.
1985 *
1986 * @see llvm::Function::arg_begin()
1987 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001988LLVMValueRef LLVMGetParam(LLVMValueRef Fn, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00001989
1990/**
1991 * Obtain the function to which this argument belongs.
1992 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00001993 * Unlike other functions in this group, this one takes an LLVMValueRef
Gregory Szorc34c863a2012-03-21 03:54:29 +00001994 * that corresponds to a llvm::Attribute.
1995 *
1996 * The returned LLVMValueRef is the llvm::Function to which this
1997 * argument belongs.
1998 */
Gordon Henriksen265f7802008-03-19 01:11:35 +00001999LLVMValueRef LLVMGetParamParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002000
2001/**
2002 * Obtain the first parameter to a function.
2003 *
2004 * @see llvm::Function::arg_begin()
2005 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002006LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002007
2008/**
2009 * Obtain the last parameter to a function.
2010 *
2011 * @see llvm::Function::arg_end()
2012 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002013LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002014
2015/**
2016 * Obtain the next parameter to a function.
2017 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002018 * This takes an LLVMValueRef obtained from LLVMGetFirstParam() (which is
Gregory Szorc34c863a2012-03-21 03:54:29 +00002019 * actually a wrapped iterator) and obtains the next parameter from the
2020 * underlying iterator.
2021 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002022LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002023
2024/**
2025 * Obtain the previous parameter to a function.
2026 *
2027 * This is the opposite of LLVMGetNextParam().
2028 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002029LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002030
2031/**
2032 * Add an attribute to a function argument.
2033 *
2034 * @see llvm::Argument::addAttr()
2035 */
Devang Patel4c758ea2008-09-25 21:00:45 +00002036void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002037
2038/**
2039 * Remove an attribute from a function argument.
2040 *
2041 * @see llvm::Argument::removeAttr()
2042 */
Devang Patel4c758ea2008-09-25 21:00:45 +00002043void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002044
2045/**
2046 * Get an attribute from a function argument.
2047 */
Chris Lattner40cf28d2009-10-12 04:01:02 +00002048LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002049
2050/**
2051 * Set the alignment for a function parameter.
2052 *
2053 * @see llvm::Argument::addAttr()
Bill Wendling50d27842012-10-15 20:35:56 +00002054 * @see llvm::AttrBuilder::addAlignmentAttr()
Gregory Szorc34c863a2012-03-21 03:54:29 +00002055 */
Gordon Henriksen2d9cc212008-04-28 17:37:06 +00002056void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align);
Gordon Henriksen265f7802008-03-19 01:11:35 +00002057
Gregory Szorc34c863a2012-03-21 03:54:29 +00002058/**
2059 * @}
2060 */
2061
2062/**
2063 * @}
2064 */
2065
2066/**
Gregory Szorc52d26602012-03-21 07:28:27 +00002067 * @}
2068 */
2069
2070/**
2071 * @}
2072 */
2073
2074/**
2075 * @defgroup LLVMCCoreValueMetadata Metadata
2076 *
2077 * @{
2078 */
2079
2080/**
2081 * Obtain a MDString value from a context.
2082 *
2083 * The returned instance corresponds to the llvm::MDString class.
2084 *
2085 * The instance is specified by string data of a specified length. The
2086 * string content is copied, so the backing memory can be freed after
2087 * this function returns.
2088 */
2089LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
2090 unsigned SLen);
2091
2092/**
2093 * Obtain a MDString value from the global context.
2094 */
2095LLVMValueRef LLVMMDString(const char *Str, unsigned SLen);
2096
2097/**
2098 * Obtain a MDNode value from a context.
2099 *
2100 * The returned value corresponds to the llvm::MDNode class.
2101 */
2102LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
2103 unsigned Count);
2104
2105/**
2106 * Obtain a MDNode value from the global context.
2107 */
2108LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count);
2109
2110/**
2111 * Obtain the underlying string from a MDString value.
2112 *
2113 * @param V Instance to obtain string from.
2114 * @param Len Memory address which will hold length of returned string.
2115 * @return String data in MDString.
2116 */
2117const char *LLVMGetMDString(LLVMValueRef V, unsigned* Len);
2118
2119/**
Duncan Sands12ccbe72012-09-19 20:29:39 +00002120 * Obtain the number of operands from an MDNode value.
2121 *
2122 * @param V MDNode to get number of operands from.
2123 * @return Number of operands of the MDNode.
2124 */
2125unsigned LLVMGetMDNodeNumOperands(LLVMValueRef V);
2126
2127/**
2128 * Obtain the given MDNode's operands.
2129 *
2130 * The passed LLVMValueRef pointer should point to enough memory to hold all of
2131 * the operands of the given MDNode (see LLVMGetMDNodeNumOperands) as
2132 * LLVMValueRefs. This memory will be populated with the LLVMValueRefs of the
2133 * MDNode's operands.
2134 *
2135 * @param V MDNode to get the operands from.
2136 * @param Dest Destination array for operands.
2137 */
2138void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest);
2139
2140/**
Gregory Szorc52d26602012-03-21 07:28:27 +00002141 * @}
2142 */
2143
2144/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002145 * @defgroup LLVMCCoreValueBasicBlock Basic Block
2146 *
2147 * A basic block represents a single entry single exit section of code.
2148 * Basic blocks contain a list of instructions which form the body of
2149 * the block.
2150 *
2151 * Basic blocks belong to functions. They have the type of label.
2152 *
2153 * Basic blocks are themselves values. However, the C API models them as
2154 * LLVMBasicBlockRef.
2155 *
2156 * @see llvm::BasicBlock
2157 *
2158 * @{
2159 */
2160
2161/**
2162 * Convert a basic block instance to a value type.
2163 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002164LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002165
2166/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002167 * Determine whether an LLVMValueRef is itself a basic block.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002168 */
Chris Lattner25963c62010-01-09 22:27:07 +00002169LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002170
2171/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002172 * Convert an LLVMValueRef to an LLVMBasicBlockRef instance.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002173 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002174LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002175
2176/**
2177 * Obtain the function to which a basic block belongs.
2178 *
2179 * @see llvm::BasicBlock::getParent()
2180 */
Gordon Henriksen07a45f42008-03-23 22:21:29 +00002181LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002182
2183/**
2184 * Obtain the terminator instruction for a basic block.
2185 *
2186 * If the basic block does not have a terminator (it is not well-formed
2187 * if it doesn't), then NULL is returned.
2188 *
2189 * The returned LLVMValueRef corresponds to a llvm::TerminatorInst.
2190 *
2191 * @see llvm::BasicBlock::getTerminator()
2192 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002193LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002194
2195/**
2196 * Obtain the number of basic blocks in a function.
2197 *
2198 * @param Fn Function value to operate on.
2199 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002200unsigned LLVMCountBasicBlocks(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002201
2202/**
2203 * Obtain all of the basic blocks in a function.
2204 *
2205 * This operates on a function value. The BasicBlocks parameter is a
2206 * pointer to a pre-allocated array of LLVMBasicBlockRef of at least
2207 * LLVMCountBasicBlocks() in length. This array is populated with
2208 * LLVMBasicBlockRef instances.
2209 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002210void LLVMGetBasicBlocks(LLVMValueRef Fn, LLVMBasicBlockRef *BasicBlocks);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002211
2212/**
2213 * Obtain the first basic block in a function.
2214 *
2215 * The returned basic block can be used as an iterator. You will likely
2216 * eventually call into LLVMGetNextBasicBlock() with it.
2217 *
2218 * @see llvm::Function::begin()
2219 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002220LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002221
2222/**
2223 * Obtain the last basic block in a function.
2224 *
2225 * @see llvm::Function::end()
2226 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002227LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002228
2229/**
2230 * Advance a basic block iterator.
2231 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002232LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002233
2234/**
2235 * Go backwards in a basic block iterator.
2236 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002237LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002238
2239/**
2240 * Obtain the basic block that corresponds to the entry point of a
2241 * function.
2242 *
2243 * @see llvm::Function::getEntryBlock()
2244 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002245LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn);
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002246
Gregory Szorc34c863a2012-03-21 03:54:29 +00002247/**
2248 * Append a basic block to the end of a function.
2249 *
2250 * @see llvm::BasicBlock::Create()
2251 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002252LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
2253 LLVMValueRef Fn,
2254 const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002255
2256/**
2257 * Append a basic block to the end of a function using the global
2258 * context.
2259 *
2260 * @see llvm::BasicBlock::Create()
2261 */
2262LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef Fn, const char *Name);
2263
2264/**
2265 * Insert a basic block in a function before another basic block.
2266 *
2267 * The function to add to is determined by the function of the
2268 * passed basic block.
2269 *
2270 * @see llvm::BasicBlock::Create()
2271 */
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002272LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
2273 LLVMBasicBlockRef BB,
2274 const char *Name);
2275
Gregory Szorc34c863a2012-03-21 03:54:29 +00002276/**
2277 * Insert a basic block in a function using the global context.
2278 *
2279 * @see llvm::BasicBlock::Create()
2280 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002281LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBB,
2282 const char *Name);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002283
2284/**
2285 * Remove a basic block from a function and delete it.
2286 *
2287 * This deletes the basic block from its containing function and deletes
2288 * the basic block itself.
2289 *
2290 * @see llvm::BasicBlock::eraseFromParent()
2291 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002292void LLVMDeleteBasicBlock(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002293
2294/**
2295 * Remove a basic block from a function.
2296 *
2297 * This deletes the basic block from its containing function but keep
2298 * the basic block alive.
2299 *
2300 * @see llvm::BasicBlock::removeFromParent()
2301 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002302void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BB);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002303
Gregory Szorc34c863a2012-03-21 03:54:29 +00002304/**
2305 * Move a basic block to before another one.
2306 *
2307 * @see llvm::BasicBlock::moveBefore()
2308 */
Duncan Sandsb1d61aa2010-07-19 15:31:07 +00002309void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002310
2311/**
2312 * Move a basic block to after another one.
2313 *
2314 * @see llvm::BasicBlock::moveAfter()
2315 */
Duncan Sandsb1d61aa2010-07-19 15:31:07 +00002316void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos);
2317
Gregory Szorc34c863a2012-03-21 03:54:29 +00002318/**
2319 * Obtain the first instruction in a basic block.
2320 *
2321 * The returned LLVMValueRef corresponds to a llvm::Instruction
2322 * instance.
2323 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002324LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002325
2326/**
2327 * Obtain the last instruction in a basic block.
2328 *
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002329 * The returned LLVMValueRef corresponds to an LLVM:Instruction.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002330 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002331LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB);
Nate Begeman43c322b2011-08-23 20:27:46 +00002332
Gregory Szorc34c863a2012-03-21 03:54:29 +00002333/**
2334 * @}
2335 */
2336
2337/**
2338 * @defgroup LLVMCCoreValueInstruction Instructions
2339 *
2340 * Functions in this group relate to the inspection and manipulation of
2341 * individual instructions.
2342 *
2343 * In the C++ API, an instruction is modeled by llvm::Instruction. This
2344 * class has a large number of descendents. llvm::Instruction is a
2345 * llvm::Value and in the C API, instructions are modeled by
2346 * LLVMValueRef.
2347 *
2348 * This group also contains sub-groups which operate on specific
2349 * llvm::Instruction types, e.g. llvm::CallInst.
2350 *
2351 * @{
2352 */
2353
2354/**
2355 * Determine whether an instruction has any metadata attached.
2356 */
2357int LLVMHasMetadata(LLVMValueRef Val);
2358
2359/**
2360 * Return metadata associated with an instruction value.
2361 */
2362LLVMValueRef LLVMGetMetadata(LLVMValueRef Val, unsigned KindID);
2363
2364/**
2365 * Set metadata associated with an instruction value.
2366 */
2367void LLVMSetMetadata(LLVMValueRef Val, unsigned KindID, LLVMValueRef Node);
2368
2369/**
2370 * Obtain the basic block to which an instruction belongs.
2371 *
2372 * @see llvm::Instruction::getParent()
2373 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002374LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002375
2376/**
2377 * Obtain the instruction that occurs after the one specified.
2378 *
2379 * The next instruction will be from the same basic block.
2380 *
2381 * If this is the last instruction in a basic block, NULL will be
2382 * returned.
2383 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002384LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002385
2386/**
Benjamin Kramerbde91762012-06-02 10:20:22 +00002387 * Obtain the instruction that occurred before this one.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002388 *
2389 * If the instruction is the first instruction in a basic block, NULL
2390 * will be returned.
2391 */
Gordon Henriksen054817c2008-03-19 03:47:18 +00002392LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002393
2394/**
2395 * Remove and delete an instruction.
2396 *
2397 * The instruction specified is removed from its containing building
2398 * block and then deleted.
2399 *
2400 * @see llvm::Instruction::eraseFromParent()
2401 */
Devang Pateldbebc6f2011-10-03 20:59:18 +00002402void LLVMInstructionEraseFromParent(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002403
2404/**
2405 * Obtain the code opcode for an individual instruction.
2406 *
2407 * @see llvm::Instruction::getOpCode()
2408 */
Torok Edwinab6158e2011-10-14 20:37:49 +00002409LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002410
2411/**
2412 * Obtain the predicate of an instruction.
2413 *
2414 * This is only valid for instructions that correspond to llvm::ICmpInst
2415 * or llvm::ConstantExpr whose opcode is llvm::Instruction::ICmp.
2416 *
2417 * @see llvm::ICmpInst::getPredicate()
2418 */
Torok Edwin60c40de2011-10-06 12:13:20 +00002419LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst);
Gordon Henriksen265f7802008-03-19 01:11:35 +00002420
Gregory Szorc34c863a2012-03-21 03:54:29 +00002421/**
Peter Zotov1d98e6d2014-10-28 19:46:44 +00002422 * Obtain the float predicate of an instruction.
2423 *
2424 * This is only valid for instructions that correspond to llvm::FCmpInst
2425 * or llvm::ConstantExpr whose opcode is llvm::Instruction::FCmp.
2426 *
2427 * @see llvm::FCmpInst::getPredicate()
2428 */
2429LLVMRealPredicate LLVMGetFCmpPredicate(LLVMValueRef Inst);
2430
2431/**
Peter Zotovaff492c2014-10-17 01:02:34 +00002432 * Create a copy of 'this' instruction that is identical in all ways
2433 * except the following:
2434 * * The instruction has no parent
2435 * * The instruction has no name
2436 *
2437 * @see llvm::Instruction::clone()
2438 */
2439LLVMValueRef LLVMInstructionClone(LLVMValueRef Inst);
2440
2441/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002442 * @defgroup LLVMCCoreValueInstructionCall Call Sites and Invocations
2443 *
2444 * Functions in this group apply to instructions that refer to call
2445 * sites and invocations. These correspond to C++ types in the
2446 * llvm::CallInst class tree.
2447 *
2448 * @{
2449 */
2450
2451/**
2452 * Set the calling convention for a call instruction.
2453 *
2454 * This expects an LLVMValueRef that corresponds to a llvm::CallInst or
2455 * llvm::InvokeInst.
2456 *
2457 * @see llvm::CallInst::setCallingConv()
2458 * @see llvm::InvokeInst::setCallingConv()
2459 */
Gordon Henriksen1158c532007-12-29 20:45:00 +00002460void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002461
2462/**
2463 * Obtain the calling convention for a call instruction.
2464 *
2465 * This is the opposite of LLVMSetInstructionCallConv(). Reads its
2466 * usage.
2467 *
2468 * @see LLVMSetInstructionCallConv()
2469 */
Gordon Henriksen1158c532007-12-29 20:45:00 +00002470unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002471
2472
Devang Patel4c758ea2008-09-25 21:00:45 +00002473void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, LLVMAttribute);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002474void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
Devang Patel4c758ea2008-09-25 21:00:45 +00002475 LLVMAttribute);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002476void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
Gordon Henriksen2d9cc212008-04-28 17:37:06 +00002477 unsigned align);
Gordon Henriksen1158c532007-12-29 20:45:00 +00002478
Gregory Szorc34c863a2012-03-21 03:54:29 +00002479/**
2480 * Obtain whether a call instruction is a tail call.
2481 *
2482 * This only works on llvm::CallInst instructions.
2483 *
2484 * @see llvm::CallInst::isTailCall()
2485 */
Chris Lattner25963c62010-01-09 22:27:07 +00002486LLVMBool LLVMIsTailCall(LLVMValueRef CallInst);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002487
2488/**
2489 * Set whether a call instruction is a tail call.
2490 *
2491 * This only works on llvm::CallInst instructions.
2492 *
2493 * @see llvm::CallInst::setTailCall()
2494 */
Chris Lattner25963c62010-01-09 22:27:07 +00002495void LLVMSetTailCall(LLVMValueRef CallInst, LLVMBool IsTailCall);
Gordon Henrikseneeb65372008-08-30 16:34:54 +00002496
Gregory Szorc34c863a2012-03-21 03:54:29 +00002497/**
2498 * @}
2499 */
2500
2501/**
Peter Zotov2481c752014-10-28 19:46:56 +00002502 * @defgroup LLVMCCoreValueInstructionTerminator Terminators
2503 *
2504 * Functions in this group only apply to instructions that map to
2505 * llvm::TerminatorInst instances.
2506 *
2507 * @{
2508 */
2509
2510/**
2511 * Return the number of successors that this terminator has.
2512 *
2513 * @see llvm::TerminatorInst::getNumSuccessors
2514 */
2515unsigned LLVMGetNumSuccessors(LLVMValueRef Term);
2516
2517/**
2518 * Return the specified successor.
2519 *
2520 * @see llvm::TerminatorInst::getSuccessor
2521 */
2522LLVMBasicBlockRef LLVMGetSuccessor(LLVMValueRef Term, unsigned i);
2523
2524/**
2525 * Update the specified successor to point at the provided block.
2526 *
2527 * @see llvm::TerminatorInst::setSuccessor
2528 */
2529void LLVMSetSuccessor(LLVMValueRef Term, unsigned i, LLVMBasicBlockRef block);
2530
2531/**
2532 * Return if a branch is conditional.
2533 *
2534 * This only works on llvm::BranchInst instructions.
2535 *
2536 * @see llvm::BranchInst::isConditional
2537 */
2538LLVMBool LLVMIsConditional(LLVMValueRef Branch);
2539
2540/**
2541 * Return the condition of a branch instruction.
2542 *
2543 * This only works on llvm::BranchInst instructions.
2544 *
2545 * @see llvm::BranchInst::getCondition
2546 */
2547LLVMValueRef LLVMGetCondition(LLVMValueRef Branch);
2548
2549/**
2550 * Set the condition of a branch instruction.
2551 *
2552 * This only works on llvm::BranchInst instructions.
2553 *
2554 * @see llvm::BranchInst::setCondition
2555 */
2556void LLVMSetCondition(LLVMValueRef Branch, LLVMValueRef Cond);
2557
2558/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002559 * Obtain the default destination basic block of a switch instruction.
2560 *
2561 * This only works on llvm::SwitchInst instructions.
2562 *
2563 * @see llvm::SwitchInst::getDefaultDest()
2564 */
Nate Begeman43c322b2011-08-23 20:27:46 +00002565LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef SwitchInstr);
2566
Gregory Szorc34c863a2012-03-21 03:54:29 +00002567/**
Peter Zotov2481c752014-10-28 19:46:56 +00002568 * @}
2569 */
2570
2571/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002572 * @defgroup LLVMCCoreValueInstructionPHINode PHI Nodes
2573 *
2574 * Functions in this group only apply to instructions that map to
2575 * llvm::PHINode instances.
2576 *
2577 * @{
2578 */
2579
2580/**
2581 * Add an incoming value to the end of a PHI list.
2582 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002583void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
2584 LLVMBasicBlockRef *IncomingBlocks, unsigned Count);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002585
2586/**
2587 * Obtain the number of incoming basic blocks to a PHI node.
2588 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002589unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002590
2591/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002592 * Obtain an incoming value to a PHI node as an LLVMValueRef.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002593 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002594LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
Gregory Szorc34c863a2012-03-21 03:54:29 +00002595
2596/**
Daniel Dunbar06b9f9e2013-08-16 23:30:19 +00002597 * Obtain an incoming value to a PHI node as an LLVMBasicBlockRef.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002598 */
Gordon Henriksen44dd8fb2007-10-08 18:14:39 +00002599LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002600
Gregory Szorc34c863a2012-03-21 03:54:29 +00002601/**
2602 * @}
2603 */
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002604
Gregory Szorc34c863a2012-03-21 03:54:29 +00002605/**
2606 * @}
2607 */
2608
2609/**
2610 * @}
2611 */
2612
2613/**
2614 * @defgroup LLVMCCoreInstructionBuilder Instruction Builders
2615 *
2616 * An instruction builder represents a point within a basic block and is
2617 * the exclusive means of building instructions using the C interface.
2618 *
2619 * @{
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002620 */
2621
Erick Tryzelaar262332f2009-08-14 00:01:31 +00002622LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C);
Gordon Henriksena735a9c2008-05-04 12:55:34 +00002623LLVMBuilderRef LLVMCreateBuilder(void);
Gordon Henriksen054817c2008-03-19 03:47:18 +00002624void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
2625 LLVMValueRef Instr);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002626void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
2627void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block);
Gordon Henriksen265f7802008-03-19 01:11:35 +00002628LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder);
Chris Lattner3d1f5522008-12-17 21:39:50 +00002629void LLVMClearInsertionPosition(LLVMBuilderRef Builder);
2630void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr);
Erick Tryzelaar9813bea2009-08-16 02:20:57 +00002631void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
2632 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002633void LLVMDisposeBuilder(LLVMBuilderRef Builder);
2634
Erick Tryzelaard8531fa2010-02-28 09:45:59 +00002635/* Metadata */
2636void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L);
2637LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder);
2638void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst);
2639
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002640/* Terminators */
2641LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef);
2642LLVMValueRef LLVMBuildRet(LLVMBuilderRef, LLVMValueRef V);
Erick Tryzelaarfd529d72009-08-19 08:36:49 +00002643LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef, LLVMValueRef *RetVals,
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002644 unsigned N);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002645LLVMValueRef LLVMBuildBr(LLVMBuilderRef, LLVMBasicBlockRef Dest);
2646LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef, LLVMValueRef If,
2647 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
2648LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef, LLVMValueRef V,
2649 LLVMBasicBlockRef Else, unsigned NumCases);
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00002650LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
2651 unsigned NumDests);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002652LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef, LLVMValueRef Fn,
2653 LLVMValueRef *Args, unsigned NumArgs,
2654 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
2655 const char *Name);
Benjamin Kramer5a6568832011-08-19 01:36:54 +00002656LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
2657 LLVMValueRef PersFn, unsigned NumClauses,
2658 const char *Name);
Bill Wendlingf891bf82011-07-31 06:30:59 +00002659LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002660LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef);
2661
Gordon Henriksen097102c2008-01-01 05:50:53 +00002662/* Add a case to the switch instruction */
2663void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
2664 LLVMBasicBlockRef Dest);
2665
Erick Tryzelaar0fb26ef2010-02-28 09:46:06 +00002666/* Add a destination to the indirectbr instruction */
2667void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest);
2668
Bill Wendlingfae14752011-08-12 20:24:12 +00002669/* Add a catch or filter clause to the landingpad instruction */
2670void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal);
2671
2672/* Set the 'cleanup' flag in the landingpad instruction */
2673void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val);
2674
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002675/* Arithmetic */
2676LLVMValueRef LLVMBuildAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2677 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002678LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2679 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002680LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2681 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002682LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2683 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002684LLVMValueRef LLVMBuildSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2685 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002686LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2687 const char *Name);
2688LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2689 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002690LLVMValueRef LLVMBuildFSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2691 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002692LLVMValueRef LLVMBuildMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2693 const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002694LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2695 const char *Name);
2696LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2697 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002698LLVMValueRef LLVMBuildFMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2699 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002700LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2701 const char *Name);
2702LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2703 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002704LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2705 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002706LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2707 const char *Name);
2708LLVMValueRef LLVMBuildURem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2709 const char *Name);
2710LLVMValueRef LLVMBuildSRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2711 const char *Name);
2712LLVMValueRef LLVMBuildFRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2713 const char *Name);
2714LLVMValueRef LLVMBuildShl(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2715 const char *Name);
2716LLVMValueRef LLVMBuildLShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2717 const char *Name);
2718LLVMValueRef LLVMBuildAShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2719 const char *Name);
2720LLVMValueRef LLVMBuildAnd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2721 const char *Name);
2722LLVMValueRef LLVMBuildOr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2723 const char *Name);
2724LLVMValueRef LLVMBuildXor(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
2725 const char *Name);
Erick Tryzelaar31831792010-02-28 05:51:27 +00002726LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
2727 LLVMValueRef LHS, LLVMValueRef RHS,
2728 const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002729LLVMValueRef LLVMBuildNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
Erick Tryzelaar4c340c72010-02-28 05:51:43 +00002730LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
2731 const char *Name);
2732LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
2733 const char *Name);
Dan Gohmanf919bd62009-09-28 21:51:41 +00002734LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002735LLVMValueRef LLVMBuildNot(LLVMBuilderRef, LLVMValueRef V, const char *Name);
2736
2737/* Memory */
2738LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2739LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef, LLVMTypeRef Ty,
2740 LLVMValueRef Val, const char *Name);
2741LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2742LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef, LLVMTypeRef Ty,
2743 LLVMValueRef Val, const char *Name);
2744LLVMValueRef LLVMBuildFree(LLVMBuilderRef, LLVMValueRef PointerVal);
2745LLVMValueRef LLVMBuildLoad(LLVMBuilderRef, LLVMValueRef PointerVal,
2746 const char *Name);
2747LLVMValueRef LLVMBuildStore(LLVMBuilderRef, LLVMValueRef Val, LLVMValueRef Ptr);
2748LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2749 LLVMValueRef *Indices, unsigned NumIndices,
2750 const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002751LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2752 LLVMValueRef *Indices, unsigned NumIndices,
2753 const char *Name);
2754LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
2755 unsigned Idx, const char *Name);
2756LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
2757 const char *Name);
2758LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
2759 const char *Name);
Chris Lattner2cc6f9d2012-03-22 03:54:15 +00002760LLVMBool LLVMGetVolatile(LLVMValueRef MemoryAccessInst);
2761void LLVMSetVolatile(LLVMValueRef MemoryAccessInst, LLVMBool IsVolatile);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002762
2763/* Casts */
2764LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef, LLVMValueRef Val,
2765 LLVMTypeRef DestTy, const char *Name);
2766LLVMValueRef LLVMBuildZExt(LLVMBuilderRef, LLVMValueRef Val,
2767 LLVMTypeRef DestTy, const char *Name);
2768LLVMValueRef LLVMBuildSExt(LLVMBuilderRef, LLVMValueRef Val,
2769 LLVMTypeRef DestTy, const char *Name);
2770LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef, LLVMValueRef Val,
2771 LLVMTypeRef DestTy, const char *Name);
2772LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef, LLVMValueRef Val,
2773 LLVMTypeRef DestTy, const char *Name);
2774LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef, LLVMValueRef Val,
2775 LLVMTypeRef DestTy, const char *Name);
2776LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef, LLVMValueRef Val,
2777 LLVMTypeRef DestTy, const char *Name);
2778LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef, LLVMValueRef Val,
2779 LLVMTypeRef DestTy, const char *Name);
2780LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef, LLVMValueRef Val,
2781 LLVMTypeRef DestTy, const char *Name);
2782LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef, LLVMValueRef Val,
2783 LLVMTypeRef DestTy, const char *Name);
2784LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef, LLVMValueRef Val,
2785 LLVMTypeRef DestTy, const char *Name);
2786LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef, LLVMValueRef Val,
2787 LLVMTypeRef DestTy, const char *Name);
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002788LLVMValueRef LLVMBuildAddrSpaceCast(LLVMBuilderRef, LLVMValueRef Val,
2789 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002790LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2791 LLVMTypeRef DestTy, const char *Name);
2792LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2793 LLVMTypeRef DestTy, const char *Name);
2794LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef, LLVMValueRef Val,
2795 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar31831792010-02-28 05:51:27 +00002796LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
2797 LLVMTypeRef DestTy, const char *Name);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002798LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef, LLVMValueRef Val,
2799 LLVMTypeRef DestTy, const char *Name);
Duncan Sands9d786d72009-11-23 10:49:03 +00002800LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef, LLVMValueRef Val, /*Signed cast!*/
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002801 LLVMTypeRef DestTy, const char *Name);
2802LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef, LLVMValueRef Val,
2803 LLVMTypeRef DestTy, const char *Name);
Gordon Henriksenc23b66c2007-09-26 20:56:12 +00002804
2805/* Comparisons */
2806LLVMValueRef LLVMBuildICmp(LLVMBuilderRef, LLVMIntPredicate Op,
2807 LLVMValueRef LHS, LLVMValueRef RHS,
2808 const char *Name);
2809LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef, LLVMRealPredicate Op,
2810 LLVMValueRef LHS, LLVMValueRef RHS,
2811 const char *Name);
2812
2813/* Miscellaneous instructions */
2814LLVMValueRef LLVMBuildPhi(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
2815LLVMValueRef LLVMBuildCall(LLVMBuilderRef, LLVMValueRef Fn,
2816 LLVMValueRef *Args, unsigned NumArgs,
2817 const char *Name);
2818LLVMValueRef LLVMBuildSelect(LLVMBuilderRef, LLVMValueRef If,
2819 LLVMValueRef Then, LLVMValueRef Else,
2820 const char *Name);
2821LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef, LLVMValueRef List, LLVMTypeRef Ty,
2822 const char *Name);
2823LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef, LLVMValueRef VecVal,
2824 LLVMValueRef Index, const char *Name);
2825LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef, LLVMValueRef VecVal,
2826 LLVMValueRef EltVal, LLVMValueRef Index,
2827 const char *Name);
2828LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef, LLVMValueRef V1,
2829 LLVMValueRef V2, LLVMValueRef Mask,
2830 const char *Name);
Dan Gohmand5104a52008-11-03 22:55:43 +00002831LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef, LLVMValueRef AggVal,
2832 unsigned Index, const char *Name);
2833LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef, LLVMValueRef AggVal,
2834 LLVMValueRef EltVal, unsigned Index,
2835 const char *Name);
Gordon Henriksen76a03742007-09-18 03:18:57 +00002836
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002837LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef, LLVMValueRef Val,
2838 const char *Name);
2839LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef, LLVMValueRef Val,
2840 const char *Name);
2841LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef, LLVMValueRef LHS,
2842 LLVMValueRef RHS, const char *Name);
Filip Pizlo0d3f7ec2013-11-20 00:07:49 +00002843LLVMValueRef LLVMBuildFence(LLVMBuilderRef B, LLVMAtomicOrdering ordering,
2844 LLVMBool singleThread, const char *Name);
2845LLVMValueRef LLVMBuildAtomicRMW(LLVMBuilderRef B, LLVMAtomicRMWBinOp op,
NAKAMURA Takumia3a81352013-10-23 17:56:29 +00002846 LLVMValueRef PTR, LLVMValueRef Val,
2847 LLVMAtomicOrdering ordering,
Carlo Kok8c6719b2013-04-23 13:21:19 +00002848 LLVMBool singleThread);
Erick Tryzelaar3045b8b2009-08-16 02:19:59 +00002849
Gregory Szorc34c863a2012-03-21 03:54:29 +00002850/**
2851 * @}
2852 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002853
Gregory Szorc34c863a2012-03-21 03:54:29 +00002854/**
2855 * @defgroup LLVMCCoreModuleProvider Module Providers
2856 *
2857 * @{
2858 */
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002859
Gregory Szorc34c863a2012-03-21 03:54:29 +00002860/**
2861 * Changes the type of M so it can be passed to FunctionPassManagers and the
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00002862 * JIT. They take ModuleProviders for historical reasons.
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002863 */
2864LLVMModuleProviderRef
2865LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M);
2866
Gregory Szorc34c863a2012-03-21 03:54:29 +00002867/**
2868 * Destroys the module M.
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002869 */
Jeffrey Yasskin091217b2010-01-27 20:34:15 +00002870void LLVMDisposeModuleProvider(LLVMModuleProviderRef M);
Gordon Henriksen0a68fe22007-12-12 01:04:30 +00002871
Gregory Szorc34c863a2012-03-21 03:54:29 +00002872/**
2873 * @}
2874 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002875
Gregory Szorc34c863a2012-03-21 03:54:29 +00002876/**
2877 * @defgroup LLVMCCoreMemoryBuffers Memory Buffers
2878 *
2879 * @{
2880 */
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002881
Chris Lattner25963c62010-01-09 22:27:07 +00002882LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
2883 LLVMMemoryBufferRef *OutMemBuf,
2884 char **OutMessage);
2885LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
2886 char **OutMessage);
Bill Wendling526276a2013-02-14 19:11:28 +00002887LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange(const char *InputData,
2888 size_t InputDataLength,
2889 const char *BufferName,
Bill Wendlingc9baa962013-02-14 19:39:14 +00002890 LLVMBool RequiresNullTerminator);
Bill Wendling526276a2013-02-14 19:11:28 +00002891LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy(const char *InputData,
2892 size_t InputDataLength,
2893 const char *BufferName);
Tom Stellard62c03202013-04-18 19:50:53 +00002894const char *LLVMGetBufferStart(LLVMMemoryBufferRef MemBuf);
Tom Stellardb7fb7242013-04-16 23:12:51 +00002895size_t LLVMGetBufferSize(LLVMMemoryBufferRef MemBuf);
Gordon Henriksen34eb6d82007-12-19 22:30:40 +00002896void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf);
2897
Gregory Szorc34c863a2012-03-21 03:54:29 +00002898/**
2899 * @}
2900 */
2901
2902/**
2903 * @defgroup LLVMCCorePassRegistry Pass Registry
2904 *
2905 * @{
2906 */
Owen Anderson4698c5d2010-10-07 17:55:47 +00002907
2908/** Return the global pass registry, for use with initialization functions.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002909 @see llvm::PassRegistry::getPassRegistry */
Owen Anderson4698c5d2010-10-07 17:55:47 +00002910LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002911
Gregory Szorc34c863a2012-03-21 03:54:29 +00002912/**
2913 * @}
2914 */
2915
2916/**
2917 * @defgroup LLVMCCorePassManagers Pass Managers
2918 *
2919 * @{
2920 */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002921
2922/** Constructs a new whole-module pass pipeline. This type of pipeline is
2923 suitable for link-time optimization and whole-module transformations.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002924 @see llvm::PassManager::PassManager */
Gordon Henriksena735a9c2008-05-04 12:55:34 +00002925LLVMPassManagerRef LLVMCreatePassManager(void);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002926
2927/** Constructs a new function-by-function pass pipeline over the module
2928 provider. It does not take ownership of the module provider. This type of
2929 pipeline is suitable for code generation and JIT compilation tasks.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002930 @see llvm::FunctionPassManager::FunctionPassManager */
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +00002931LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M);
2932
2933/** Deprecated: Use LLVMCreateFunctionPassManagerForModule instead. */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002934LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef MP);
2935
2936/** Initializes, executes on the provided module, and finalizes all of the
2937 passes scheduled in the pass manager. Returns 1 if any of the passes
Gregory Szorc34c863a2012-03-21 03:54:29 +00002938 modified the module, 0 otherwise.
2939 @see llvm::PassManager::run(Module&) */
Chris Lattner25963c62010-01-09 22:27:07 +00002940LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002941
2942/** Initializes all of the function passes scheduled in the function pass
2943 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002944 @see llvm::FunctionPassManager::doInitialization */
Chris Lattner25963c62010-01-09 22:27:07 +00002945LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002946
2947/** Executes all of the function passes scheduled in the function pass manager
2948 on the provided function. Returns 1 if any of the passes modified the
2949 function, false otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002950 @see llvm::FunctionPassManager::run(Function&) */
Chris Lattner25963c62010-01-09 22:27:07 +00002951LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002952
2953/** Finalizes all of the function passes scheduled in in the function pass
2954 manager. Returns 1 if any of the passes modified the module, 0 otherwise.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002955 @see llvm::FunctionPassManager::doFinalization */
Chris Lattner25963c62010-01-09 22:27:07 +00002956LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM);
Gordon Henriksen878114b2008-03-16 04:20:44 +00002957
2958/** Frees the memory of a pass pipeline. For function pipelines, does not free
2959 the module provider.
Gregory Szorc34c863a2012-03-21 03:54:29 +00002960 @see llvm::PassManagerBase::~PassManagerBase. */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002961void LLVMDisposePassManager(LLVMPassManagerRef PM);
2962
Gregory Szorc34c863a2012-03-21 03:54:29 +00002963/**
2964 * @}
2965 */
2966
2967/**
Duncan Sands1cba0a82013-02-17 16:35:51 +00002968 * @defgroup LLVMCCoreThreading Threading
2969 *
2970 * Handle the structures needed to make LLVM safe for multithreading.
2971 *
2972 * @{
2973 */
2974
Chandler Carruth39cd2162014-06-27 15:13:01 +00002975/** Deprecated: Multi-threading can only be enabled/disabled with the compile
2976 time define LLVM_ENABLE_THREADS. This function always returns
2977 LLVMIsMultithreaded(). */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002978LLVMBool LLVMStartMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002979
Chandler Carruth39cd2162014-06-27 15:13:01 +00002980/** Deprecated: Multi-threading can only be enabled/disabled with the compile
2981 time define LLVM_ENABLE_THREADS. */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002982void LLVMStopMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002983
2984/** Check whether LLVM is executing in thread-safe mode or not.
2985 @see llvm::llvm_is_multithreaded */
Benjamin Kramer325ec892013-10-23 16:57:34 +00002986LLVMBool LLVMIsMultithreaded(void);
Duncan Sands1cba0a82013-02-17 16:35:51 +00002987
2988/**
2989 * @}
2990 */
2991
2992/**
Gregory Szorc34c863a2012-03-21 03:54:29 +00002993 * @}
2994 */
2995
2996/**
2997 * @}
2998 */
Gordon Henriksen878114b2008-03-16 04:20:44 +00002999
Gordon Henriksen76a03742007-09-18 03:18:57 +00003000#ifdef __cplusplus
3001}
Evan Cheng2e254d02013-04-04 17:40:53 +00003002#endif /* !defined(__cplusplus) */
Gordon Henriksen7330acd2007-10-05 23:59:36 +00003003
Evan Cheng2e254d02013-04-04 17:40:53 +00003004#endif /* !defined(LLVM_C_CORE_H) */