2007-09-18 03:18:57 +00:00
|
|
|
/*===-- llvm-c/Core.h - Core Library C Interface ------------------*- C -*-===*\
|
|
|
|
|* *|
|
|
|
|
|* The LLVM Compiler Infrastructure *|
|
|
|
|
|* *|
|
2007-12-29 19:59:42 +00:00
|
|
|
|* This file is distributed under the University of Illinois Open Source *|
|
|
|
|
|* License. See LICENSE.TXT for details. *|
|
2007-09-18 03:18:57 +00:00
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
|
|
|
|* This header declares the C interface to libLLVMCore.a, which implements *|
|
|
|
|
|* the LLVM intermediate representation. *|
|
|
|
|
|* *|
|
|
|
|
|* LLVM uses a polymorphic type hierarchy which C cannot represent, therefore *|
|
|
|
|
|* parameters must be passed as base types. Despite the declared types, most *|
|
|
|
|
|* of the functions provided operate only on branches of the type hierarchy. *|
|
|
|
|
|* The declared parameter names are descriptive and specify which type is *|
|
|
|
|
|* required. Additionally, each type hierarchy is documented along with the *|
|
|
|
|
|* functions that operate upon it. For more detail, refer to LLVM's C++ code. *|
|
|
|
|
|* If in doubt, refer to Core.cpp, which performs paramter downcasts in the *|
|
|
|
|
|* form unwrap<RequiredType>(Param). *|
|
|
|
|
|* *|
|
|
|
|
|* Many exotic languages can interoperate with C code but have a harder time *|
|
|
|
|
|* with C++ due to name mangling. So in addition to C, this interface enables *|
|
|
|
|
|* tools written in such languages. *|
|
|
|
|
|* *|
|
2007-10-05 23:59:36 +00:00
|
|
|
|* When included into a C++ source file, also declares 'wrap' and 'unwrap' *|
|
|
|
|
|* helpers to perform opaque reference<-->pointer conversions. These helpers *|
|
|
|
|
|* are shorter and more tightly typed than writing the casts by hand when *|
|
|
|
|
|* authoring bindings. In assert builds, they will do runtime type checking. *|
|
|
|
|
|* *|
|
2007-09-18 03:18:57 +00:00
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#ifndef LLVM_C_CORE_H
|
|
|
|
#define LLVM_C_CORE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2007-10-05 23:59:36 +00:00
|
|
|
|
|
|
|
/* Need these includes to support the LLVM 'cast' template for the C++ 'wrap'
|
|
|
|
and 'unwrap' conversion functions. */
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Support/LLVMBuilder.h"
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Opaque types. */
|
2007-12-30 17:46:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The top-level container for all other LLVM Intermediate Representation (IR)
|
|
|
|
* objects. See the llvm::Module class.
|
|
|
|
*/
|
2007-09-18 03:18:57 +00:00
|
|
|
typedef struct LLVMOpaqueModule *LLVMModuleRef;
|
2007-12-30 17:46:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Each value in the LLVM IR has a type, an instance of [lltype]. See the
|
|
|
|
* llvm::Type class.
|
|
|
|
*/
|
2007-09-18 03:18:57 +00:00
|
|
|
typedef struct LLVMOpaqueType *LLVMTypeRef;
|
2007-12-30 17:46:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* When building recursive types using [refine_type], [lltype] values may become
|
|
|
|
* invalid; use [lltypehandle] to resolve this problem. See the
|
|
|
|
* llvm::AbstractTypeHolder] class.
|
|
|
|
*/
|
2007-10-07 00:13:35 +00:00
|
|
|
typedef struct LLVMOpaqueTypeHandle *LLVMTypeHandleRef;
|
2007-12-30 17:46:33 +00:00
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
typedef struct LLVMOpaqueValue *LLVMValueRef;
|
2007-09-26 20:56:12 +00:00
|
|
|
typedef struct LLVMOpaqueBasicBlock *LLVMBasicBlockRef;
|
|
|
|
typedef struct LLVMOpaqueBuilder *LLVMBuilderRef;
|
2007-12-19 22:30:40 +00:00
|
|
|
|
|
|
|
/* Used to provide a module to JIT or interpreter.
|
|
|
|
* See the llvm::ModuleProvider class.
|
|
|
|
*/
|
2007-12-12 01:04:30 +00:00
|
|
|
typedef struct LLVMOpaqueModuleProvider *LLVMModuleProviderRef;
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/* Used to provide a module to JIT or interpreter.
|
|
|
|
* See the llvm::MemoryBuffer class.
|
|
|
|
*/
|
|
|
|
typedef struct LLVMOpaqueMemoryBuffer *LLVMMemoryBufferRef;
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
typedef enum {
|
2007-12-30 17:46:33 +00:00
|
|
|
LLVMVoidTypeKind, /**< type with no size */
|
|
|
|
LLVMFloatTypeKind, /**< 32 bit floating point type */
|
|
|
|
LLVMDoubleTypeKind, /**< 64 bit floating point type */
|
|
|
|
LLVMX86_FP80TypeKind, /**< 80 bit floating point type (X87) */
|
|
|
|
LLVMFP128TypeKind, /**< 128 bit floating point type (112-bit mantissa)*/
|
|
|
|
LLVMPPC_FP128TypeKind, /**< 128 bit floating point type (two 64-bits) */
|
|
|
|
LLVMLabelTypeKind, /**< Labels */
|
|
|
|
LLVMIntegerTypeKind, /**< Arbitrary bit width integers */
|
|
|
|
LLVMFunctionTypeKind, /**< Functions */
|
|
|
|
LLVMStructTypeKind, /**< Structures */
|
|
|
|
LLVMArrayTypeKind, /**< Arrays */
|
|
|
|
LLVMPointerTypeKind, /**< Pointers */
|
|
|
|
LLVMOpaqueTypeKind, /**< Opaque: type with unknown structure */
|
|
|
|
LLVMVectorTypeKind /**< SIMD 'packed' format, or other vector type */
|
2007-09-18 03:18:57 +00:00
|
|
|
} LLVMTypeKind;
|
|
|
|
|
|
|
|
typedef enum {
|
2007-12-30 17:46:33 +00:00
|
|
|
LLVMExternalLinkage, /**< Externally visible function */
|
|
|
|
LLVMLinkOnceLinkage, /**< Keep one copy of function when linking (inline)*/
|
|
|
|
LLVMWeakLinkage, /**< Keep one copy of function when linking (weak) */
|
|
|
|
LLVMAppendingLinkage, /**< Special purpose, only applies to global arrays */
|
|
|
|
LLVMInternalLinkage, /**< Rename collisions when linking (static
|
|
|
|
functions) */
|
|
|
|
LLVMDLLImportLinkage, /**< Function to be imported from DLL */
|
|
|
|
LLVMDLLExportLinkage, /**< Function to be accessible from DLL */
|
|
|
|
LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
|
|
|
|
LLVMGhostLinkage /**< Stand-in functions for streaming fns from
|
|
|
|
bitcode */
|
2007-09-18 03:18:57 +00:00
|
|
|
} LLVMLinkage;
|
|
|
|
|
|
|
|
typedef enum {
|
2007-12-30 17:46:33 +00:00
|
|
|
LLVMDefaultVisibility, /**< The GV is visible */
|
|
|
|
LLVMHiddenVisibility, /**< The GV is hidden */
|
|
|
|
LLVMProtectedVisibility /**< The GV is protected */
|
2007-09-18 03:18:57 +00:00
|
|
|
} LLVMVisibility;
|
|
|
|
|
2007-09-26 20:56:12 +00:00
|
|
|
typedef enum {
|
|
|
|
LLVMCCallConv = 0,
|
|
|
|
LLVMFastCallConv = 8,
|
|
|
|
LLVMColdCallConv = 9,
|
|
|
|
LLVMX86StdcallCallConv = 64,
|
|
|
|
LLVMX86FastcallCallConv = 65
|
|
|
|
} LLVMCallConv;
|
|
|
|
|
|
|
|
typedef enum {
|
2007-12-30 17:46:33 +00:00
|
|
|
LLVMIntEQ = 32, /**< equal */
|
|
|
|
LLVMIntNE, /**< not equal */
|
|
|
|
LLVMIntUGT, /**< unsigned greater than */
|
|
|
|
LLVMIntUGE, /**< unsigned greater or equal */
|
|
|
|
LLVMIntULT, /**< unsigned less than */
|
|
|
|
LLVMIntULE, /**< unsigned less or equal */
|
|
|
|
LLVMIntSGT, /**< signed greater than */
|
|
|
|
LLVMIntSGE, /**< signed greater or equal */
|
|
|
|
LLVMIntSLT, /**< signed less than */
|
|
|
|
LLVMIntSLE /**< signed less or equal */
|
2007-09-26 20:56:12 +00:00
|
|
|
} LLVMIntPredicate;
|
|
|
|
|
|
|
|
typedef enum {
|
2007-12-30 17:46:33 +00:00
|
|
|
LLVMRealPredicateFalse, /**< Always false (always folded) */
|
|
|
|
LLVMRealOEQ, /**< True if ordered and equal */
|
|
|
|
LLVMRealOGT, /**< True if ordered and greater than */
|
|
|
|
LLVMRealOGE, /**< True if ordered and greater than or equal */
|
|
|
|
LLVMRealOLT, /**< True if ordered and less than */
|
|
|
|
LLVMRealOLE, /**< True if ordered and less than or equal */
|
|
|
|
LLVMRealONE, /**< True if ordered and operands are unequal */
|
|
|
|
LLVMRealORD, /**< True if ordered (no nans) */
|
|
|
|
LLVMRealUNO, /**< True if unordered: isnan(X) | isnan(Y) */
|
|
|
|
LLVMRealUEQ, /**< True if unordered or equal */
|
|
|
|
LLVMRealUGT, /**< True if unordered or greater than */
|
|
|
|
LLVMRealUGE, /**< True if unordered, greater than, or equal */
|
|
|
|
LLVMRealULT, /**< True if unordered or less than */
|
|
|
|
LLVMRealULE, /**< True if unordered, less than, or equal */
|
|
|
|
LLVMRealUNE, /**< True if unordered or not equal */
|
|
|
|
LLVMRealPredicateTrue /**< Always true (always folded) */
|
2007-09-26 20:56:12 +00:00
|
|
|
} LLVMRealPredicate;
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/*===-- Error handling ----------------------------------------------------===*/
|
|
|
|
|
|
|
|
void LLVMDisposeMessage(char *Message);
|
|
|
|
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
/*===-- Modules -----------------------------------------------------------===*/
|
|
|
|
|
|
|
|
/* Create and destroy modules. */
|
|
|
|
LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID);
|
|
|
|
void LLVMDisposeModule(LLVMModuleRef M);
|
|
|
|
|
2007-12-27 20:13:47 +00:00
|
|
|
/* Data layout */
|
|
|
|
const char *LLVMGetDataLayout(LLVMModuleRef M);
|
|
|
|
void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple);
|
|
|
|
|
|
|
|
/* Target triple */
|
|
|
|
const char *LLVMGetTarget(LLVMModuleRef M);
|
|
|
|
void LLVMSetTarget(LLVMModuleRef M, const char *Triple);
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
/* Same as Module::addTypeName. */
|
|
|
|
int LLVMAddTypeName(LLVMModuleRef M, const char *Name, LLVMTypeRef Ty);
|
2007-09-26 20:56:12 +00:00
|
|
|
void LLVMDeleteTypeName(LLVMModuleRef M, const char *Name);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
|
2007-09-26 20:56:12 +00:00
|
|
|
/*===-- Types -------------------------------------------------------------===*/
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* LLVM types conform to the following hierarchy:
|
|
|
|
*
|
|
|
|
* types:
|
|
|
|
* integer type
|
|
|
|
* real type
|
|
|
|
* function type
|
|
|
|
* sequence types:
|
|
|
|
* array type
|
|
|
|
* pointer type
|
|
|
|
* vector type
|
|
|
|
* void type
|
|
|
|
* label type
|
|
|
|
* opaque type
|
|
|
|
*/
|
|
|
|
|
|
|
|
LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty);
|
|
|
|
void LLVMRefineAbstractType(LLVMTypeRef AbstractType, LLVMTypeRef ConcreteType);
|
|
|
|
|
|
|
|
/* Operations on integer types */
|
|
|
|
LLVMTypeRef LLVMInt1Type();
|
|
|
|
LLVMTypeRef LLVMInt8Type();
|
|
|
|
LLVMTypeRef LLVMInt16Type();
|
|
|
|
LLVMTypeRef LLVMInt32Type();
|
|
|
|
LLVMTypeRef LLVMInt64Type();
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMIntType(unsigned NumBits);
|
2007-09-26 20:56:12 +00:00
|
|
|
unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* Operations on real types */
|
|
|
|
LLVMTypeRef LLVMFloatType();
|
|
|
|
LLVMTypeRef LLVMDoubleType();
|
|
|
|
LLVMTypeRef LLVMX86FP80Type();
|
|
|
|
LLVMTypeRef LLVMFP128Type();
|
|
|
|
LLVMTypeRef LLVMPPCFP128Type();
|
|
|
|
|
|
|
|
/* Operations on function types */
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
|
|
|
|
LLVMTypeRef *ParamTypes, unsigned ParamCount,
|
|
|
|
int IsVarArg);
|
2007-09-18 03:18:57 +00:00
|
|
|
int LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
|
2007-09-26 20:56:12 +00:00
|
|
|
LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
|
|
|
|
unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
|
|
|
|
void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* Operations on struct types */
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
|
|
|
|
int Packed);
|
2007-09-26 20:56:12 +00:00
|
|
|
unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy);
|
2007-09-18 03:18:57 +00:00
|
|
|
void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest);
|
|
|
|
int LLVMIsPackedStruct(LLVMTypeRef StructTy);
|
|
|
|
|
|
|
|
/* Operations on array, pointer, and vector types (sequence types) */
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
|
2007-12-17 16:08:32 +00:00
|
|
|
LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty);
|
|
|
|
unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy);
|
2007-12-17 16:08:32 +00:00
|
|
|
unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy);
|
2007-09-18 03:18:57 +00:00
|
|
|
unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
|
|
|
|
|
|
|
|
/* Operations on other types */
|
|
|
|
LLVMTypeRef LLVMVoidType();
|
|
|
|
LLVMTypeRef LLVMLabelType();
|
2007-10-06 16:05:20 +00:00
|
|
|
LLVMTypeRef LLVMOpaqueType();
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-10-07 00:13:35 +00:00
|
|
|
/* Operations on type handles */
|
|
|
|
LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy);
|
|
|
|
void LLVMRefineType(LLVMTypeRef AbstractTy, LLVMTypeRef ConcreteTy);
|
|
|
|
LLVMTypeRef LLVMResolveTypeHandle(LLVMTypeHandleRef TypeHandle);
|
|
|
|
void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle);
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/*===-- Values ------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
/* The bulk of LLVM's object model consists of values, which comprise a very
|
|
|
|
* rich type hierarchy.
|
|
|
|
*
|
|
|
|
* values:
|
|
|
|
* constants:
|
|
|
|
* scalar constants
|
|
|
|
* composite contants
|
|
|
|
* globals:
|
|
|
|
* global variable
|
|
|
|
* function
|
|
|
|
* alias
|
2007-09-26 20:56:12 +00:00
|
|
|
* basic blocks
|
2007-09-18 03:18:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Operations on all values */
|
2007-09-26 20:56:12 +00:00
|
|
|
LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
|
2007-09-18 03:18:57 +00:00
|
|
|
const char *LLVMGetValueName(LLVMValueRef Val);
|
|
|
|
void LLVMSetValueName(LLVMValueRef Val, const char *Name);
|
2007-10-06 00:08:49 +00:00
|
|
|
void LLVMDumpValue(LLVMValueRef Val);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* Operations on constants of any type */
|
2007-10-06 15:11:06 +00:00
|
|
|
LLVMValueRef LLVMConstNull(LLVMTypeRef Ty); /* all zeroes */
|
|
|
|
LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty); /* only for int/vector */
|
2007-09-18 03:18:57 +00:00
|
|
|
LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty);
|
2007-09-18 18:07:51 +00:00
|
|
|
int LLVMIsConstant(LLVMValueRef Val);
|
2007-09-18 03:18:57 +00:00
|
|
|
int LLVMIsNull(LLVMValueRef Val);
|
2007-09-18 18:07:51 +00:00
|
|
|
int LLVMIsUndef(LLVMValueRef Val);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* Operations on scalar constants */
|
2007-10-06 15:11:06 +00:00
|
|
|
LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
|
|
|
|
int SignExtend);
|
|
|
|
LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
|
|
|
/* Operations on composite constants */
|
2007-10-06 15:11:06 +00:00
|
|
|
LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
|
|
|
|
int DontNullTerminate);
|
|
|
|
LLVMValueRef LLVMConstArray(LLVMTypeRef ArrayTy,
|
|
|
|
LLVMValueRef *ConstantVals, unsigned Length);
|
|
|
|
LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
|
|
|
|
int packed);
|
|
|
|
LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-10-06 14:29:36 +00:00
|
|
|
/* Constant expressions */
|
|
|
|
LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty);
|
|
|
|
LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal);
|
|
|
|
LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal);
|
|
|
|
LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
|
|
|
|
LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
|
|
|
|
LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant);
|
|
|
|
LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
|
|
|
|
LLVMValueRef *ConstantIndices, unsigned NumIndices);
|
|
|
|
LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType);
|
|
|
|
LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
|
|
|
|
LLVMValueRef ConstantIfTrue,
|
|
|
|
LLVMValueRef ConstantIfFalse);
|
|
|
|
LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
|
|
|
|
LLVMValueRef IndexConstant);
|
|
|
|
LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
|
|
|
|
LLVMValueRef ElementValueConstant,
|
|
|
|
LLVMValueRef IndexConstant);
|
|
|
|
LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
|
|
|
|
LLVMValueRef VectorBConstant,
|
|
|
|
LLVMValueRef MaskConstant);
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
/* Operations on global variables, functions, and aliases (globals) */
|
|
|
|
int LLVMIsDeclaration(LLVMValueRef Global);
|
|
|
|
LLVMLinkage LLVMGetLinkage(LLVMValueRef Global);
|
|
|
|
void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage);
|
|
|
|
const char *LLVMGetSection(LLVMValueRef Global);
|
|
|
|
void LLVMSetSection(LLVMValueRef Global, const char *Section);
|
|
|
|
LLVMVisibility LLVMGetVisibility(LLVMValueRef Global);
|
|
|
|
void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz);
|
|
|
|
unsigned LLVMGetAlignment(LLVMValueRef Global);
|
|
|
|
void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes);
|
|
|
|
|
|
|
|
/* Operations on global variables */
|
|
|
|
LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name);
|
2007-10-08 03:45:09 +00:00
|
|
|
LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name);
|
2007-09-18 03:18:57 +00:00
|
|
|
void LLVMDeleteGlobal(LLVMValueRef GlobalVar);
|
|
|
|
int LLVMHasInitializer(LLVMValueRef GlobalVar);
|
|
|
|
LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar);
|
|
|
|
void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal);
|
|
|
|
int LLVMIsThreadLocal(LLVMValueRef GlobalVar);
|
|
|
|
void LLVMSetThreadLocal(LLVMValueRef GlobalVar, int IsThreadLocal);
|
2007-10-07 17:31:42 +00:00
|
|
|
int LLVMIsGlobalConstant(LLVMValueRef GlobalVar);
|
|
|
|
void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, int IsConstant);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-09-26 20:56:12 +00:00
|
|
|
/* Operations on functions */
|
|
|
|
LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
|
|
|
|
LLVMTypeRef FunctionTy);
|
2007-10-08 03:45:09 +00:00
|
|
|
LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name);
|
2007-09-26 20:56:12 +00:00
|
|
|
void LLVMDeleteFunction(LLVMValueRef Fn);
|
|
|
|
unsigned LLVMCountParams(LLVMValueRef Fn);
|
|
|
|
void LLVMGetParams(LLVMValueRef Fn, LLVMValueRef *Params);
|
|
|
|
LLVMValueRef LLVMGetParam(LLVMValueRef Fn, unsigned Index);
|
|
|
|
unsigned LLVMGetIntrinsicID(LLVMValueRef Fn);
|
|
|
|
unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn);
|
|
|
|
void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC);
|
2007-12-10 03:18:06 +00:00
|
|
|
const char *LLVMGetCollector(LLVMValueRef Fn);
|
|
|
|
void LLVMSetCollector(LLVMValueRef Fn, const char *Coll);
|
2007-09-26 20:56:12 +00:00
|
|
|
|
|
|
|
/* Operations on basic blocks */
|
|
|
|
LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef Bb);
|
|
|
|
int LLVMValueIsBasicBlock(LLVMValueRef Val);
|
|
|
|
LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val);
|
|
|
|
unsigned LLVMCountBasicBlocks(LLVMValueRef Fn);
|
|
|
|
void LLVMGetBasicBlocks(LLVMValueRef Fn, LLVMBasicBlockRef *BasicBlocks);
|
|
|
|
LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn);
|
|
|
|
LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef Fn, const char *Name);
|
|
|
|
LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef InsertBeforeBB,
|
|
|
|
const char *Name);
|
|
|
|
void LLVMDeleteBasicBlock(LLVMBasicBlockRef BB);
|
|
|
|
|
2007-12-29 20:45:00 +00:00
|
|
|
/* Operations on call sites */
|
|
|
|
void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC);
|
|
|
|
unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr);
|
|
|
|
|
2007-10-08 18:14:39 +00:00
|
|
|
/* Operations on phi nodes */
|
|
|
|
void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
|
|
|
|
LLVMBasicBlockRef *IncomingBlocks, unsigned Count);
|
|
|
|
unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
|
|
|
|
LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
|
|
|
|
LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
|
2007-09-26 20:56:12 +00:00
|
|
|
|
|
|
|
/*===-- Instruction builders ----------------------------------------------===*/
|
|
|
|
|
|
|
|
/* An instruction builder represents a point within a basic block, and is the
|
|
|
|
* exclusive means of building instructions using the C interface.
|
|
|
|
*/
|
|
|
|
|
|
|
|
LLVMBuilderRef LLVMCreateBuilder();
|
|
|
|
void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr);
|
|
|
|
void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block);
|
|
|
|
void LLVMDisposeBuilder(LLVMBuilderRef Builder);
|
|
|
|
|
|
|
|
/* Terminators */
|
|
|
|
LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef);
|
|
|
|
LLVMValueRef LLVMBuildRet(LLVMBuilderRef, LLVMValueRef V);
|
|
|
|
LLVMValueRef LLVMBuildBr(LLVMBuilderRef, LLVMBasicBlockRef Dest);
|
|
|
|
LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef, LLVMValueRef If,
|
|
|
|
LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
|
|
|
|
LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef, LLVMValueRef V,
|
|
|
|
LLVMBasicBlockRef Else, unsigned NumCases);
|
|
|
|
LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef, LLVMValueRef Fn,
|
|
|
|
LLVMValueRef *Args, unsigned NumArgs,
|
|
|
|
LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildUnwind(LLVMBuilderRef);
|
|
|
|
LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef);
|
|
|
|
|
2008-01-01 05:50:53 +00:00
|
|
|
/* Add a case to the switch instruction */
|
|
|
|
void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
|
|
|
|
LLVMBasicBlockRef Dest);
|
|
|
|
|
2007-09-26 20:56:12 +00:00
|
|
|
/* Arithmetic */
|
|
|
|
LLVMValueRef LLVMBuildAdd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSub(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildMul(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildURem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFRem(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildShl(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildLShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildAShr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildAnd(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildOr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildXor(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildNot(LLVMBuilderRef, LLVMValueRef V, const char *Name);
|
|
|
|
|
|
|
|
/* Memory */
|
|
|
|
LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef, LLVMTypeRef Ty,
|
|
|
|
LLVMValueRef Val, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef, LLVMTypeRef Ty,
|
|
|
|
LLVMValueRef Val, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFree(LLVMBuilderRef, LLVMValueRef PointerVal);
|
|
|
|
LLVMValueRef LLVMBuildLoad(LLVMBuilderRef, LLVMValueRef PointerVal,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildStore(LLVMBuilderRef, LLVMValueRef Val, LLVMValueRef Ptr);
|
|
|
|
LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
|
|
|
|
LLVMValueRef *Indices, unsigned NumIndices,
|
|
|
|
const char *Name);
|
|
|
|
|
|
|
|
/* Casts */
|
|
|
|
LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildZExt(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSExt(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name);
|
|
|
|
|
|
|
|
/* Comparisons */
|
|
|
|
LLVMValueRef LLVMBuildICmp(LLVMBuilderRef, LLVMIntPredicate Op,
|
|
|
|
LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef, LLVMRealPredicate Op,
|
|
|
|
LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name);
|
|
|
|
|
|
|
|
/* Miscellaneous instructions */
|
|
|
|
LLVMValueRef LLVMBuildPhi(LLVMBuilderRef, LLVMTypeRef Ty, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildCall(LLVMBuilderRef, LLVMValueRef Fn,
|
|
|
|
LLVMValueRef *Args, unsigned NumArgs,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildSelect(LLVMBuilderRef, LLVMValueRef If,
|
|
|
|
LLVMValueRef Then, LLVMValueRef Else,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef, LLVMValueRef List, LLVMTypeRef Ty,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef, LLVMValueRef VecVal,
|
|
|
|
LLVMValueRef Index, const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef, LLVMValueRef VecVal,
|
|
|
|
LLVMValueRef EltVal, LLVMValueRef Index,
|
|
|
|
const char *Name);
|
|
|
|
LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef, LLVMValueRef V1,
|
|
|
|
LLVMValueRef V2, LLVMValueRef Mask,
|
|
|
|
const char *Name);
|
2007-09-18 03:18:57 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
|
2007-12-12 01:04:30 +00:00
|
|
|
/*===-- Module providers --------------------------------------------------===*/
|
|
|
|
|
|
|
|
/* Encapsulates the module M in a module provider, taking ownership of the
|
|
|
|
* module.
|
|
|
|
* See the constructor llvm::ExistingModuleProvider::ExistingModuleProvider.
|
|
|
|
*/
|
|
|
|
LLVMModuleProviderRef
|
|
|
|
LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M);
|
|
|
|
|
|
|
|
/* Destroys the module provider MP as well as the contained module.
|
|
|
|
* See the destructor llvm::ModuleProvider::~ModuleProvider.
|
|
|
|
*/
|
|
|
|
void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP);
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
|
|
|
|
/*===-- Memory buffers ----------------------------------------------------===*/
|
|
|
|
|
|
|
|
int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path,
|
|
|
|
LLVMMemoryBufferRef *OutMemBuf,
|
|
|
|
char **OutMessage);
|
|
|
|
int LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
|
|
|
|
char **OutMessage);
|
|
|
|
void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf);
|
|
|
|
|
2007-09-18 03:18:57 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
|
2007-10-05 23:59:36 +00:00
|
|
|
namespace llvm {
|
2007-12-12 01:04:30 +00:00
|
|
|
class ModuleProvider;
|
2007-12-19 22:30:40 +00:00
|
|
|
class MemoryBuffer;
|
2007-12-12 01:04:30 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
#define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
|
|
|
|
inline ty *unwrap(ref P) { \
|
|
|
|
return reinterpret_cast<ty*>(P); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
inline ref wrap(const ty *P) { \
|
|
|
|
return reinterpret_cast<ref>(const_cast<ty*>(P)); \
|
|
|
|
}
|
2007-10-05 23:59:36 +00:00
|
|
|
|
2007-12-27 18:25:59 +00:00
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Type, LLVMTypeRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Value, LLVMValueRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(Module, LLVMModuleRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(BasicBlock, LLVMBasicBlockRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(LLVMFoldingBuilder, LLVMBuilderRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(PATypeHolder, LLVMTypeHandleRef )
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ModuleProvider, LLVMModuleProviderRef)
|
|
|
|
DEFINE_SIMPLE_CONVERSION_FUNCTIONS(MemoryBuffer, LLVMMemoryBufferRef )
|
2007-10-05 23:59:36 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
#undef DEFINE_SIMPLE_CONVERSION_FUNCTIONS
|
2007-10-05 23:59:36 +00:00
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/* Specialized opaque type conversions.
|
|
|
|
*/
|
2007-10-05 23:59:36 +00:00
|
|
|
template<typename T>
|
|
|
|
inline T *unwrap(LLVMTypeRef Ty) {
|
|
|
|
return cast<T>(unwrap(Ty));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Type **unwrap(LLVMTypeRef* Tys) {
|
|
|
|
return reinterpret_cast<Type**>(Tys);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline LLVMTypeRef *wrap(const Type **Tys) {
|
|
|
|
return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
|
|
|
|
}
|
|
|
|
|
2007-12-19 22:30:40 +00:00
|
|
|
/* Specialized opaque value conversions.
|
2007-10-05 23:59:36 +00:00
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
inline T *unwrap(LLVMValueRef Val) {
|
|
|
|
return cast<T>(unwrap(Val));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Value **unwrap(LLVMValueRef *Vals) {
|
|
|
|
return reinterpret_cast<Value**>(Vals);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
inline T **unwrap(LLVMValueRef *Vals, unsigned Length) {
|
|
|
|
#if DEBUG
|
|
|
|
for (LLVMValueRef *I = Vals, E = Vals + Length; I != E; ++I)
|
|
|
|
cast<T>(*I);
|
|
|
|
#endif
|
|
|
|
return reinterpret_cast<T**>(Vals);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline LLVMValueRef *wrap(const Value **Vals) {
|
|
|
|
return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !defined(__cplusplus) */
|
|
|
|
|
|
|
|
#endif /* !defined(LLVM_C_CORE_H) */
|