2007-09-18 05:18:57 +02:00
|
|
|
//===-- Core.cpp ----------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-09-18 05:18:57 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-10-07 21:51:21 +02:00
|
|
|
// This file implements the common infrastructure (including the C bindings)
|
|
|
|
// for libLLVMCore.a, which implements the LLVM intermediate representation.
|
2007-09-18 05:18:57 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm-c/Core.h"
|
|
|
|
#include "llvm/Bitcode/ReaderWriter.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/GlobalVariable.h"
|
2008-12-17 22:39:50 +01:00
|
|
|
#include "llvm/GlobalAlias.h"
|
2009-07-01 18:58:40 +02:00
|
|
|
#include "llvm/LLVMContext.h"
|
2008-12-17 22:39:50 +01:00
|
|
|
#include "llvm/InlineAsm.h"
|
2008-12-19 19:39:45 +01:00
|
|
|
#include "llvm/IntrinsicInst.h"
|
2010-08-07 02:43:20 +02:00
|
|
|
#include "llvm/PassManager.h"
|
2008-04-28 19:37:06 +02:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2010-01-27 21:34:15 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 22:10:48 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-01-27 21:34:15 +01:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-12-09 18:36:48 +01:00
|
|
|
#include "llvm/Support/system_error.h"
|
2007-09-18 05:18:57 +02:00
|
|
|
#include <cassert>
|
2007-12-19 23:30:40 +01:00
|
|
|
#include <cstdlib>
|
2008-02-20 12:08:44 +01:00
|
|
|
#include <cstring>
|
2007-09-18 05:18:57 +02:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2010-10-07 21:51:21 +02:00
|
|
|
void llvm::initializeCore(PassRegistry &Registry) {
|
|
|
|
initializeDominatorTreePass(Registry);
|
|
|
|
initializePrintModulePassPass(Registry);
|
|
|
|
initializePrintFunctionPassPass(Registry);
|
|
|
|
initializeVerifierPass(Registry);
|
|
|
|
initializePreVerifierPass(Registry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMInitializeCore(LLVMPassRegistryRef R) {
|
|
|
|
initializeCore(*unwrap(R));
|
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
|
2007-12-19 23:30:40 +01:00
|
|
|
/*===-- Error handling ----------------------------------------------------===*/
|
|
|
|
|
|
|
|
void LLVMDisposeMessage(char *Message) {
|
|
|
|
free(Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-01 18:58:40 +02:00
|
|
|
/*===-- Operations on contexts --------------------------------------------===*/
|
|
|
|
|
|
|
|
LLVMContextRef LLVMContextCreate() {
|
|
|
|
return wrap(new LLVMContext());
|
|
|
|
}
|
|
|
|
|
2009-07-02 02:16:38 +02:00
|
|
|
LLVMContextRef LLVMGetGlobalContext() {
|
|
|
|
return wrap(&getGlobalContext());
|
|
|
|
}
|
|
|
|
|
2009-07-01 18:58:40 +02:00
|
|
|
void LLVMContextDispose(LLVMContextRef C) {
|
|
|
|
delete unwrap(C);
|
|
|
|
}
|
|
|
|
|
2010-02-28 10:45:59 +01:00
|
|
|
unsigned LLVMGetMDKindIDInContext(LLVMContextRef C, const char* Name,
|
|
|
|
unsigned SLen) {
|
|
|
|
return unwrap(C)->getMDKindID(StringRef(Name, SLen));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetMDKindID(const char* Name, unsigned SLen) {
|
|
|
|
return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen);
|
|
|
|
}
|
|
|
|
|
2009-07-01 18:58:40 +02:00
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*===-- Operations on modules ---------------------------------------------===*/
|
|
|
|
|
2009-07-02 09:17:57 +02:00
|
|
|
LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {
|
|
|
|
return wrap(new Module(ModuleID, getGlobalContext()));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID,
|
|
|
|
LLVMContextRef C) {
|
2009-07-01 23:22:36 +02:00
|
|
|
return wrap(new Module(ModuleID, *unwrap(C)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMDisposeModule(LLVMModuleRef M) {
|
|
|
|
delete unwrap(M);
|
|
|
|
}
|
|
|
|
|
2007-12-27 21:13:47 +01:00
|
|
|
/*--.. Data layout .........................................................--*/
|
|
|
|
const char * LLVMGetDataLayout(LLVMModuleRef M) {
|
|
|
|
return unwrap(M)->getDataLayout().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) {
|
|
|
|
unwrap(M)->setDataLayout(Triple);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Target triple .......................................................--*/
|
|
|
|
const char * LLVMGetTarget(LLVMModuleRef M) {
|
|
|
|
return unwrap(M)->getTargetTriple().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetTarget(LLVMModuleRef M, const char *Triple) {
|
|
|
|
unwrap(M)->setTargetTriple(Triple);
|
|
|
|
}
|
|
|
|
|
2008-03-15 00:58:56 +01:00
|
|
|
void LLVMDumpModule(LLVMModuleRef M) {
|
|
|
|
unwrap(M)->dump();
|
|
|
|
}
|
|
|
|
|
2010-04-10 19:52:58 +02:00
|
|
|
/*--.. Operations on inline assembler ......................................--*/
|
|
|
|
void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) {
|
|
|
|
unwrap(M)->setModuleInlineAsm(StringRef(Asm));
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
|
2010-11-28 21:03:44 +01:00
|
|
|
/*--.. Operations on module contexts ......................................--*/
|
|
|
|
LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) {
|
|
|
|
return wrap(&unwrap(M)->getContext());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*===-- Operations on types -----------------------------------------------===*/
|
|
|
|
|
|
|
|
/*--.. Operations on all types (mostly) ....................................--*/
|
|
|
|
|
|
|
|
LLVMTypeKind LLVMGetTypeKind(LLVMTypeRef Ty) {
|
2009-07-16 00:00:31 +02:00
|
|
|
switch (unwrap(Ty)->getTypeID()) {
|
2009-07-17 00:06:22 +02:00
|
|
|
default:
|
|
|
|
assert(false && "Unhandled TypeID.");
|
2009-07-16 00:00:31 +02:00
|
|
|
case Type::VoidTyID:
|
|
|
|
return LLVMVoidTypeKind;
|
2011-12-17 01:04:22 +01:00
|
|
|
case Type::HalfTyID:
|
|
|
|
return LLVMHalfTypeKind;
|
2009-07-16 00:00:31 +02:00
|
|
|
case Type::FloatTyID:
|
|
|
|
return LLVMFloatTypeKind;
|
|
|
|
case Type::DoubleTyID:
|
|
|
|
return LLVMDoubleTypeKind;
|
|
|
|
case Type::X86_FP80TyID:
|
|
|
|
return LLVMX86_FP80TypeKind;
|
|
|
|
case Type::FP128TyID:
|
|
|
|
return LLVMFP128TypeKind;
|
|
|
|
case Type::PPC_FP128TyID:
|
|
|
|
return LLVMPPC_FP128TypeKind;
|
|
|
|
case Type::LabelTyID:
|
|
|
|
return LLVMLabelTypeKind;
|
|
|
|
case Type::MetadataTyID:
|
|
|
|
return LLVMMetadataTypeKind;
|
|
|
|
case Type::IntegerTyID:
|
|
|
|
return LLVMIntegerTypeKind;
|
|
|
|
case Type::FunctionTyID:
|
|
|
|
return LLVMFunctionTypeKind;
|
|
|
|
case Type::StructTyID:
|
|
|
|
return LLVMStructTypeKind;
|
|
|
|
case Type::ArrayTyID:
|
|
|
|
return LLVMArrayTypeKind;
|
|
|
|
case Type::PointerTyID:
|
|
|
|
return LLVMPointerTypeKind;
|
|
|
|
case Type::VectorTyID:
|
|
|
|
return LLVMVectorTypeKind;
|
2010-09-10 22:55:01 +02:00
|
|
|
case Type::X86_MMXTyID:
|
|
|
|
return LLVMX86_MMXTypeKind;
|
2009-07-16 00:00:31 +02:00
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2011-10-06 14:13:28 +02:00
|
|
|
LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty)
|
|
|
|
{
|
|
|
|
return unwrap(Ty)->isSized();
|
|
|
|
}
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMContextRef LLVMGetTypeContext(LLVMTypeRef Ty) {
|
|
|
|
return wrap(&unwrap(Ty)->getContext());
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on integer types .........................................--*/
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMTypeRef LLVMInt1TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getInt1Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt8TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getInt8Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt16TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getInt16Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt32TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getInt32Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt64TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getInt64Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
|
|
|
|
return wrap(IntegerType::get(*unwrap(C), NumBits));
|
|
|
|
}
|
|
|
|
|
2009-08-13 23:58:54 +02:00
|
|
|
LLVMTypeRef LLVMInt1Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInt1TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt8Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInt8TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt16Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInt16TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt32Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInt32TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMInt64Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInt64TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
2007-10-06 18:05:20 +02:00
|
|
|
LLVMTypeRef LLVMIntType(unsigned NumBits) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
unsigned LLVMGetIntTypeWidth(LLVMTypeRef IntegerTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<IntegerType>(IntegerTy)->getBitWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Operations on real types ............................................--*/
|
|
|
|
|
2011-12-17 01:04:22 +01:00
|
|
|
LLVMTypeRef LLVMHalfTypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getHalfTy(*unwrap(C));
|
|
|
|
}
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMTypeRef LLVMFloatTypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getFloatTy(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMDoubleTypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getDoubleTy(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMX86FP80TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getX86_FP80Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMFP128TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getFP128Ty(*unwrap(C));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMPPCFP128TypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getPPC_FP128Ty(*unwrap(C));
|
|
|
|
}
|
2010-09-10 22:55:01 +02:00
|
|
|
LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C) {
|
|
|
|
return (LLVMTypeRef) Type::getX86_MMXTy(*unwrap(C));
|
|
|
|
}
|
2009-08-14 02:01:31 +02:00
|
|
|
|
2011-12-17 01:04:22 +01:00
|
|
|
LLVMTypeRef LLVMHalfType(void) {
|
|
|
|
return LLVMHalfTypeInContext(LLVMGetGlobalContext());
|
|
|
|
}
|
2009-08-13 23:58:54 +02:00
|
|
|
LLVMTypeRef LLVMFloatType(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMFloatTypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMDoubleType(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMDoubleTypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMX86FP80Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMX86FP80TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMFP128Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMFP128TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMPPCFP128Type(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMPPCFP128TypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
2010-09-10 22:55:01 +02:00
|
|
|
LLVMTypeRef LLVMX86MMXType(void) {
|
|
|
|
return LLVMX86MMXTypeInContext(LLVMGetGlobalContext());
|
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
|
|
|
|
/*--.. Operations on function types ........................................--*/
|
|
|
|
|
2007-10-06 18:05:20 +02:00
|
|
|
LLVMTypeRef LLVMFunctionType(LLVMTypeRef ReturnType,
|
|
|
|
LLVMTypeRef *ParamTypes, unsigned ParamCount,
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool IsVarArg) {
|
2011-07-14 13:44:09 +02:00
|
|
|
ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
|
2009-07-30 00:17:13 +02:00
|
|
|
return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<FunctionType>(FunctionTy)->isVarArg();
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<FunctionType>(FunctionTy)->getNumParams();
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) {
|
2007-09-18 05:18:57 +02:00
|
|
|
FunctionType *Ty = unwrap<FunctionType>(FunctionTy);
|
|
|
|
for (FunctionType::param_iterator I = Ty->param_begin(),
|
|
|
|
E = Ty->param_end(); I != E; ++I)
|
|
|
|
*Dest++ = wrap(*I);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Operations on struct types ..........................................--*/
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMTypeRef LLVMStructTypeInContext(LLVMContextRef C, LLVMTypeRef *ElementTypes,
|
2010-01-09 23:27:07 +01:00
|
|
|
unsigned ElementCount, LLVMBool Packed) {
|
2011-07-14 13:44:09 +02:00
|
|
|
ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
|
2009-08-14 02:01:31 +02:00
|
|
|
return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes,
|
2010-01-09 23:27:07 +01:00
|
|
|
unsigned ElementCount, LLVMBool Packed) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMStructTypeInContext(LLVMGetGlobalContext(), ElementTypes,
|
|
|
|
ElementCount, Packed);
|
|
|
|
}
|
|
|
|
|
2011-07-14 07:53:17 +02:00
|
|
|
LLVMTypeRef LLVMStructCreateNamed(LLVMContextRef C, const char *Name)
|
|
|
|
{
|
2011-08-12 20:07:07 +02:00
|
|
|
return wrap(StructType::create(*unwrap(C), Name));
|
2011-07-14 07:53:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-06 14:12:50 +02:00
|
|
|
const char *LLVMGetStructName(LLVMTypeRef Ty)
|
|
|
|
{
|
2011-10-14 22:37:42 +02:00
|
|
|
StructType *Type = unwrap<StructType>(Ty);
|
|
|
|
if (!Type->hasName())
|
|
|
|
return 0;
|
|
|
|
return Type->getName().data();
|
2011-10-06 14:12:50 +02:00
|
|
|
}
|
|
|
|
|
2011-07-14 07:53:17 +02:00
|
|
|
void LLVMStructSetBody(LLVMTypeRef StructTy, LLVMTypeRef *ElementTypes,
|
|
|
|
unsigned ElementCount, LLVMBool Packed) {
|
2011-07-14 13:44:09 +02:00
|
|
|
ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
|
2011-07-14 07:53:17 +02:00
|
|
|
unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
|
|
|
|
}
|
2009-08-14 02:01:31 +02:00
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
unsigned LLVMCountStructElementTypes(LLVMTypeRef StructTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<StructType>(StructTy)->getNumElements();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMGetStructElementTypes(LLVMTypeRef StructTy, LLVMTypeRef *Dest) {
|
|
|
|
StructType *Ty = unwrap<StructType>(StructTy);
|
2011-04-21 00:52:37 +02:00
|
|
|
for (StructType::element_iterator I = Ty->element_begin(),
|
2007-09-18 05:18:57 +02:00
|
|
|
E = Ty->element_end(); I != E; ++I)
|
|
|
|
*Dest++ = wrap(*I);
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<StructType>(StructTy)->isPacked();
|
|
|
|
}
|
|
|
|
|
2011-07-14 18:20:28 +02:00
|
|
|
LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) {
|
|
|
|
return unwrap<StructType>(StructTy)->isOpaque();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) {
|
|
|
|
return wrap(unwrap(M)->getTypeByName(Name));
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on array, pointer, and vector types (sequence types) .....--*/
|
|
|
|
|
2007-12-17 17:08:32 +01:00
|
|
|
LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
|
2009-07-30 00:17:13 +02:00
|
|
|
return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2007-12-17 17:08:32 +01:00
|
|
|
LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) {
|
2009-07-30 00:17:13 +02:00
|
|
|
return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2007-12-17 17:08:32 +01:00
|
|
|
LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
|
2009-07-30 00:17:13 +02:00
|
|
|
return wrap(VectorType::get(unwrap(ElementType), ElementCount));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMTypeRef LLVMGetElementType(LLVMTypeRef Ty) {
|
|
|
|
return wrap(unwrap<SequentialType>(Ty)->getElementType());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetArrayLength(LLVMTypeRef ArrayTy) {
|
|
|
|
return unwrap<ArrayType>(ArrayTy)->getNumElements();
|
|
|
|
}
|
|
|
|
|
2007-12-17 17:08:32 +01:00
|
|
|
unsigned LLVMGetPointerAddressSpace(LLVMTypeRef PointerTy) {
|
|
|
|
return unwrap<PointerType>(PointerTy)->getAddressSpace();
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) {
|
|
|
|
return unwrap<VectorType>(VectorTy)->getNumElements();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Operations on other types ...........................................--*/
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C) {
|
|
|
|
return wrap(Type::getVoidTy(*unwrap(C)));
|
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C) {
|
|
|
|
return wrap(Type::getLabelTy(*unwrap(C)));
|
|
|
|
}
|
|
|
|
|
2009-08-13 23:58:54 +02:00
|
|
|
LLVMTypeRef LLVMVoidType(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMVoidTypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
|
|
|
LLVMTypeRef LLVMLabelType(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMLabelTypeInContext(LLVMGetGlobalContext());
|
2009-08-13 23:58:54 +02:00
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
|
|
|
|
/*===-- Operations on values ----------------------------------------------===*/
|
|
|
|
|
|
|
|
/*--.. Operations on all values ............................................--*/
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMTypeRef LLVMTypeOf(LLVMValueRef Val) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return wrap(unwrap(Val)->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *LLVMGetValueName(LLVMValueRef Val) {
|
2009-07-26 09:49:05 +02:00
|
|
|
return unwrap(Val)->getName().data();
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetValueName(LLVMValueRef Val, const char *Name) {
|
|
|
|
unwrap(Val)->setName(Name);
|
|
|
|
}
|
|
|
|
|
2007-10-06 02:08:49 +02:00
|
|
|
void LLVMDumpValue(LLVMValueRef Val) {
|
|
|
|
unwrap(Val)->dump();
|
|
|
|
}
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) {
|
|
|
|
unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
|
|
|
|
}
|
2008-12-19 19:39:45 +01:00
|
|
|
|
2010-02-28 10:45:59 +01:00
|
|
|
int LLVMHasMetadata(LLVMValueRef Inst) {
|
|
|
|
return unwrap<Instruction>(Inst)->hasMetadata();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
|
|
|
|
return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) {
|
|
|
|
unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
|
|
|
|
}
|
|
|
|
|
2008-12-19 19:39:45 +01:00
|
|
|
/*--.. Conversion functions ................................................--*/
|
|
|
|
|
|
|
|
#define LLVM_DEFINE_VALUE_CAST(name) \
|
|
|
|
LLVMValueRef LLVMIsA##name(LLVMValueRef Val) { \
|
|
|
|
return wrap(static_cast<Value*>(dyn_cast_or_null<name>(unwrap(Val)))); \
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DEFINE_VALUE_CAST)
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
/*--.. Operations on Uses ..................................................--*/
|
2010-03-02 21:32:28 +01:00
|
|
|
LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val) {
|
2009-10-12 06:01:02 +02:00
|
|
|
Value *V = unwrap(Val);
|
|
|
|
Value::use_iterator I = V->use_begin();
|
|
|
|
if (I == V->use_end())
|
|
|
|
return 0;
|
|
|
|
return wrap(&(I.getUse()));
|
|
|
|
}
|
|
|
|
|
2010-03-02 21:32:28 +01:00
|
|
|
LLVMUseRef LLVMGetNextUse(LLVMUseRef U) {
|
|
|
|
Use *Next = unwrap(U)->getNext();
|
|
|
|
if (Next)
|
|
|
|
return wrap(Next);
|
|
|
|
return 0;
|
2009-10-12 06:01:02 +02:00
|
|
|
}
|
|
|
|
|
2010-03-02 21:32:28 +01:00
|
|
|
LLVMValueRef LLVMGetUser(LLVMUseRef U) {
|
|
|
|
return wrap(unwrap(U)->getUser());
|
2009-10-12 06:01:02 +02:00
|
|
|
}
|
|
|
|
|
2010-03-02 21:32:28 +01:00
|
|
|
LLVMValueRef LLVMGetUsedValue(LLVMUseRef U) {
|
|
|
|
return wrap(unwrap(U)->get());
|
2009-10-12 06:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Operations on Users .................................................--*/
|
|
|
|
LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) {
|
2011-10-06 14:13:11 +02:00
|
|
|
Value *V = unwrap(Val);
|
|
|
|
if (MDNode *MD = dyn_cast<MDNode>(V))
|
|
|
|
return wrap(MD->getOperand(Index));
|
|
|
|
return wrap(cast<User>(V)->getOperand(Index));
|
2009-10-12 06:01:02 +02:00
|
|
|
}
|
2008-12-19 19:39:45 +01:00
|
|
|
|
2010-08-20 16:51:22 +02:00
|
|
|
void LLVMSetOperand(LLVMValueRef Val, unsigned Index, LLVMValueRef Op) {
|
|
|
|
unwrap<User>(Val)->setOperand(Index, unwrap(Op));
|
|
|
|
}
|
|
|
|
|
|
|
|
int LLVMGetNumOperands(LLVMValueRef Val) {
|
2011-10-06 14:13:11 +02:00
|
|
|
Value *V = unwrap(Val);
|
|
|
|
if (MDNode *MD = dyn_cast<MDNode>(V))
|
|
|
|
return MD->getNumOperands();
|
|
|
|
return cast<User>(V)->getNumOperands();
|
2010-08-20 16:51:22 +02:00
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on constants of any type .................................--*/
|
|
|
|
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstNull(LLVMTypeRef Ty) {
|
2009-07-31 22:28:14 +02:00
|
|
|
return wrap(Constant::getNullValue(unwrap(Ty)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstAllOnes(LLVMTypeRef Ty) {
|
2009-07-31 22:28:14 +02:00
|
|
|
return wrap(Constant::getAllOnesValue(unwrap(Ty)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty) {
|
2009-07-31 01:03:37 +02:00
|
|
|
return wrap(UndefValue::get(unwrap(Ty)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsConstant(LLVMValueRef Ty) {
|
2007-09-18 20:07:51 +02:00
|
|
|
return isa<Constant>(unwrap(Ty));
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsNull(LLVMValueRef Val) {
|
2007-09-18 05:18:57 +02:00
|
|
|
if (Constant *C = dyn_cast<Constant>(unwrap(Val)))
|
|
|
|
return C->isNullValue();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsUndef(LLVMValueRef Val) {
|
2007-09-18 20:07:51 +02:00
|
|
|
return isa<UndefValue>(unwrap(Val));
|
|
|
|
}
|
|
|
|
|
2009-07-06 19:29:59 +02:00
|
|
|
LLVMValueRef LLVMConstPointerNull(LLVMTypeRef Ty) {
|
2009-07-07 23:33:58 +02:00
|
|
|
return
|
2009-07-31 01:03:37 +02:00
|
|
|
wrap(ConstantPointerNull::get(unwrap<PointerType>(Ty)));
|
2009-07-06 19:29:59 +02:00
|
|
|
}
|
|
|
|
|
2010-02-28 10:45:59 +01:00
|
|
|
/*--.. Operations on metadata nodes ........................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMMDStringInContext(LLVMContextRef C, const char *Str,
|
|
|
|
unsigned SLen) {
|
|
|
|
return wrap(MDString::get(*unwrap(C), StringRef(Str, SLen)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMMDString(const char *Str, unsigned SLen) {
|
|
|
|
return LLVMMDStringInContext(LLVMGetGlobalContext(), Str, SLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMMDNodeInContext(LLVMContextRef C, LLVMValueRef *Vals,
|
|
|
|
unsigned Count) {
|
2011-04-21 21:59:31 +02:00
|
|
|
return wrap(MDNode::get(*unwrap(C),
|
2011-07-18 14:00:32 +02:00
|
|
|
makeArrayRef(unwrap<Value>(Vals, Count), Count)));
|
2010-02-28 10:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
|
|
|
|
return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
|
|
|
|
}
|
|
|
|
|
2011-10-06 14:13:11 +02:00
|
|
|
const char *LLVMGetMDString(LLVMValueRef V, unsigned* Len) {
|
2011-10-14 22:37:42 +02:00
|
|
|
if (const MDString *S = dyn_cast<MDString>(unwrap(V))) {
|
|
|
|
*Len = S->getString().size();
|
|
|
|
return S->getString().data();
|
|
|
|
}
|
|
|
|
*Len = 0;
|
|
|
|
return 0;
|
2011-10-06 14:13:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name)
|
|
|
|
{
|
2011-10-14 22:37:42 +02:00
|
|
|
if (NamedMDNode *N = unwrap(M)->getNamedMetadata(name)) {
|
|
|
|
return N->getNumOperands();
|
|
|
|
}
|
|
|
|
return 0;
|
2011-10-06 14:13:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest)
|
|
|
|
{
|
2011-10-14 22:37:42 +02:00
|
|
|
NamedMDNode *N = unwrap(M)->getNamedMetadata(name);
|
|
|
|
if (!N)
|
|
|
|
return;
|
|
|
|
for (unsigned i=0;i<N->getNumOperands();i++)
|
|
|
|
Dest[i] = wrap(N->getOperand(i));
|
2011-10-06 14:13:11 +02:00
|
|
|
}
|
|
|
|
|
2011-12-20 20:29:36 +01:00
|
|
|
void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name,
|
|
|
|
LLVMValueRef Val)
|
|
|
|
{
|
|
|
|
NamedMDNode *N = unwrap(M)->getOrInsertNamedMetadata(name);
|
|
|
|
if (!N)
|
|
|
|
return;
|
|
|
|
MDNode *Op = Val ? unwrap<MDNode>(Val) : NULL;
|
|
|
|
if (Op)
|
|
|
|
N->addOperand(Op);
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on scalar constants ......................................--*/
|
|
|
|
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy, unsigned long long N,
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool SignExtend) {
|
2009-07-25 01:12:02 +02:00
|
|
|
return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), N, SignExtend != 0));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2010-11-23 03:47:22 +01:00
|
|
|
LLVMValueRef LLVMConstIntOfArbitraryPrecision(LLVMTypeRef IntTy,
|
|
|
|
unsigned NumWords,
|
|
|
|
const uint64_t Words[]) {
|
|
|
|
IntegerType *Ty = unwrap<IntegerType>(IntTy);
|
|
|
|
return wrap(ConstantInt::get(Ty->getContext(),
|
2011-07-18 23:45:40 +02:00
|
|
|
APInt(Ty->getBitWidth(),
|
|
|
|
makeArrayRef(Words, NumWords))));
|
2010-11-23 03:47:22 +01:00
|
|
|
}
|
|
|
|
|
2009-08-17 01:36:46 +02:00
|
|
|
LLVMValueRef LLVMConstIntOfString(LLVMTypeRef IntTy, const char Str[],
|
|
|
|
uint8_t Radix) {
|
|
|
|
return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str),
|
|
|
|
Radix));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstIntOfStringAndSize(LLVMTypeRef IntTy, const char Str[],
|
|
|
|
unsigned SLen, uint8_t Radix) {
|
|
|
|
return wrap(ConstantInt::get(unwrap<IntegerType>(IntTy), StringRef(Str, SLen),
|
|
|
|
Radix));
|
2008-02-02 02:07:50 +01:00
|
|
|
}
|
|
|
|
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstReal(LLVMTypeRef RealTy, double N) {
|
2009-08-17 01:36:46 +02:00
|
|
|
return wrap(ConstantFP::get(unwrap(RealTy), N));
|
2008-02-02 02:07:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstRealOfString(LLVMTypeRef RealTy, const char *Text) {
|
2009-08-17 01:36:46 +02:00
|
|
|
return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Text)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstRealOfStringAndSize(LLVMTypeRef RealTy, const char Str[],
|
|
|
|
unsigned SLen) {
|
|
|
|
return wrap(ConstantFP::get(unwrap(RealTy), StringRef(Str, SLen)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
unsigned long long LLVMConstIntGetZExtValue(LLVMValueRef ConstantVal) {
|
|
|
|
return unwrap<ConstantInt>(ConstantVal)->getZExtValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
long long LLVMConstIntGetSExtValue(LLVMValueRef ConstantVal) {
|
|
|
|
return unwrap<ConstantInt>(ConstantVal)->getSExtValue();
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on composite constants ...................................--*/
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMValueRef LLVMConstStringInContext(LLVMContextRef C, const char *Str,
|
2010-01-09 23:27:07 +01:00
|
|
|
unsigned Length,
|
|
|
|
LLVMBool DontNullTerminate) {
|
2007-09-18 05:18:57 +02:00
|
|
|
/* Inverted the sense of AddNull because ', 0)' is a
|
|
|
|
better mnemonic for null termination than ', 1)'. */
|
2010-10-17 09:39:34 +02:00
|
|
|
return wrap(ConstantArray::get(*unwrap(C), StringRef(Str, Length),
|
2007-09-18 05:18:57 +02:00
|
|
|
DontNullTerminate == 0));
|
|
|
|
}
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMValueRef LLVMConstStructInContext(LLVMContextRef C,
|
|
|
|
LLVMValueRef *ConstantVals,
|
2010-01-09 23:27:07 +01:00
|
|
|
unsigned Count, LLVMBool Packed) {
|
2011-06-20 06:01:31 +02:00
|
|
|
Constant **Elements = unwrap<Constant>(ConstantVals, Count);
|
2011-07-18 14:00:32 +02:00
|
|
|
return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
|
2011-06-20 06:01:31 +02:00
|
|
|
Packed != 0));
|
2009-08-14 02:01:31 +02:00
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMValueRef LLVMConstString(const char *Str, unsigned Length,
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool DontNullTerminate) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMConstStringInContext(LLVMGetGlobalContext(), Str, Length,
|
|
|
|
DontNullTerminate);
|
|
|
|
}
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
|
|
|
|
LLVMValueRef *ConstantVals, unsigned Length) {
|
2011-06-22 11:24:39 +02:00
|
|
|
ArrayRef<Constant*> V(unwrap<Constant>(ConstantVals, Length), Length);
|
|
|
|
return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool Packed) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
|
|
|
|
Packed);
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
2011-07-14 21:09:08 +02:00
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNamedStruct(LLVMTypeRef StructTy,
|
|
|
|
LLVMValueRef *ConstantVals,
|
|
|
|
unsigned Count) {
|
|
|
|
Constant **Elements = unwrap<Constant>(ConstantVals, Count);
|
2011-07-18 06:54:35 +02:00
|
|
|
StructType *Ty = cast<StructType>(unwrap(StructTy));
|
2011-07-14 21:09:08 +02:00
|
|
|
|
2011-07-18 14:00:32 +02:00
|
|
|
return wrap(ConstantStruct::get(Ty, makeArrayRef(Elements, Count)));
|
2011-07-14 21:09:08 +02:00
|
|
|
}
|
|
|
|
|
2007-10-06 17:11:06 +02:00
|
|
|
LLVMValueRef LLVMConstVector(LLVMValueRef *ScalarConstantVals, unsigned Size) {
|
2011-07-18 14:00:32 +02:00
|
|
|
return wrap(ConstantVector::get(makeArrayRef(
|
2011-02-15 01:14:00 +01:00
|
|
|
unwrap<Constant>(ScalarConstantVals, Size), Size)));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
2011-10-06 14:39:34 +02:00
|
|
|
|
|
|
|
/*-- Opcode mapping */
|
|
|
|
|
|
|
|
static LLVMOpcode map_to_llvmopcode(int opcode)
|
|
|
|
{
|
|
|
|
switch (opcode) {
|
2011-10-07 18:27:01 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Unhandled Opcode.");
|
2011-10-06 14:39:34 +02:00
|
|
|
#define HANDLE_INST(num, opc, clas) case num: return LLVM##opc;
|
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
#undef HANDLE_INST
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int map_from_llvmopcode(LLVMOpcode code)
|
|
|
|
{
|
|
|
|
switch (code) {
|
2011-10-07 18:27:01 +02:00
|
|
|
default:
|
|
|
|
assert(0 && "Unhandled Opcode.");
|
2011-10-06 14:39:34 +02:00
|
|
|
#define HANDLE_INST(num, opc, clas) case LLVM##opc: return num;
|
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
#undef HANDLE_INST
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
/*--.. Constant expressions ................................................--*/
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
LLVMOpcode LLVMGetConstOpcode(LLVMValueRef ConstantVal) {
|
2011-10-06 14:39:34 +02:00
|
|
|
return map_to_llvmopcode(unwrap<ConstantExpr>(ConstantVal)->getOpcode());
|
2009-10-12 06:01:02 +02:00
|
|
|
}
|
|
|
|
|
2009-05-21 17:52:21 +02:00
|
|
|
LLVMValueRef LLVMAlignOf(LLVMTypeRef Ty) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getAlignOf(unwrap(Ty)));
|
2009-05-21 17:52:21 +02:00
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMSizeOf(LLVMTypeRef Ty) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getSizeOf(unwrap(Ty)));
|
2007-10-06 16:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNeg(LLVMValueRef ConstantVal) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNeg(unwrap<Constant>(ConstantVal)));
|
2009-08-16 04:20:12 +02:00
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMConstNSWNeg(LLVMValueRef ConstantVal) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNSWNeg(unwrap<Constant>(ConstantVal)));
|
2010-02-28 06:51:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNUWNeg(LLVMValueRef ConstantVal) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNUWNeg(unwrap<Constant>(ConstantVal)));
|
2010-02-28 06:51:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-16 04:20:12 +02:00
|
|
|
LLVMValueRef LLVMConstFNeg(LLVMValueRef ConstantVal) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFNeg(unwrap<Constant>(ConstantVal)));
|
2007-10-06 16:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNot(LLVMValueRef ConstantVal) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNot(unwrap<Constant>(ConstantVal)));
|
2007-10-06 16:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getAdd(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2009-09-04 01:34:49 +02:00
|
|
|
LLVMValueRef LLVMConstNSWAdd(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNSWAdd(unwrap<Constant>(LHSConstant),
|
2009-09-04 01:34:49 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMConstNUWAdd(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNUWAdd(unwrap<Constant>(LHSConstant),
|
2010-02-28 06:51:43 +01:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:20:12 +02:00
|
|
|
LLVMValueRef LLVMConstFAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFAdd(unwrap<Constant>(LHSConstant),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSub(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMConstNSWSub(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNSWSub(unwrap<Constant>(LHSConstant),
|
2010-02-28 06:51:43 +01:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNUWSub(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNUWSub(unwrap<Constant>(LHSConstant),
|
2010-02-28 06:51:43 +01:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:20:12 +02:00
|
|
|
LLVMValueRef LLVMConstFSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
|
|
|
return wrap(ConstantExpr::getFSub(unwrap<Constant>(LHSConstant),
|
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getMul(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMConstNSWMul(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNSWMul(unwrap<Constant>(LHSConstant),
|
2010-02-28 06:51:43 +01:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstNUWMul(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getNUWMul(unwrap<Constant>(LHSConstant),
|
2010-02-28 06:51:43 +01:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:20:12 +02:00
|
|
|
LLVMValueRef LLVMConstFMul(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFMul(unwrap<Constant>(LHSConstant),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstUDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getUDiv(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstSDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSDiv(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2009-09-04 01:34:49 +02:00
|
|
|
LLVMValueRef LLVMConstExactSDiv(LLVMValueRef LHSConstant,
|
|
|
|
LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getExactSDiv(unwrap<Constant>(LHSConstant),
|
2009-09-04 01:34:49 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstFDiv(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFDiv(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstURem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getURem(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstSRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSRem(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFRem(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFRem(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstAnd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstOr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getOr(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstXor(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getXor(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstICmp(LLVMIntPredicate Predicate,
|
|
|
|
LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getICmp(Predicate,
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(LHSConstant),
|
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFCmp(LLVMRealPredicate Predicate,
|
|
|
|
LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getFCmp(Predicate,
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(LHSConstant),
|
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstShl(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getShl(unwrap<Constant>(LHSConstant),
|
|
|
|
unwrap<Constant>(RHSConstant)));
|
2007-10-06 16:29:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstLShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getLShr(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstAShr(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getAShr(unwrap<Constant>(LHSConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(RHSConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstGEP(LLVMValueRef ConstantVal,
|
|
|
|
LLVMValueRef *ConstantIndices, unsigned NumIndices) {
|
2011-07-21 16:31:17 +02:00
|
|
|
ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
|
|
|
|
NumIndices);
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getGetElementPtr(unwrap<Constant>(ConstantVal),
|
2011-07-21 16:31:17 +02:00
|
|
|
IdxList));
|
2007-10-06 16:29:36 +02:00
|
|
|
}
|
|
|
|
|
2009-09-04 01:34:49 +02:00
|
|
|
LLVMValueRef LLVMConstInBoundsGEP(LLVMValueRef ConstantVal,
|
|
|
|
LLVMValueRef *ConstantIndices,
|
|
|
|
unsigned NumIndices) {
|
|
|
|
Constant* Val = unwrap<Constant>(ConstantVal);
|
2011-07-21 16:31:17 +02:00
|
|
|
ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
|
|
|
|
NumIndices);
|
|
|
|
return wrap(ConstantExpr::getInBoundsGetElementPtr(Val, IdxList));
|
2009-09-04 01:34:49 +02:00
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getTrunc(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstSExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSExt(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstZExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getZExt(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFPTrunc(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFPTrunc(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFPExt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFPExtend(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstUIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getUIToFP(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstSIToFP(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getSIToFP(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFPToUI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2009-07-29 20:55:55 +02:00
|
|
|
return wrap(ConstantExpr::getFPToUI(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFPToSI(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFPToSI(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstPtrToInt(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getPtrToInt(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstIntToPtr(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getIntToPtr(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstBitCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getBitCast(unwrap<Constant>(ConstantVal),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:20:12 +02:00
|
|
|
LLVMValueRef LLVMConstZExtOrBitCast(LLVMValueRef ConstantVal,
|
|
|
|
LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getZExtOrBitCast(unwrap<Constant>(ConstantVal),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstSExtOrBitCast(LLVMValueRef ConstantVal,
|
|
|
|
LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSExtOrBitCast(unwrap<Constant>(ConstantVal),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstTruncOrBitCast(LLVMValueRef ConstantVal,
|
|
|
|
LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getTruncOrBitCast(unwrap<Constant>(ConstantVal),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstPointerCast(LLVMValueRef ConstantVal,
|
|
|
|
LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getPointerCast(unwrap<Constant>(ConstantVal),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstIntCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType,
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool isSigned) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getIntegerCast(unwrap<Constant>(ConstantVal),
|
|
|
|
unwrap(ToType), isSigned));
|
2009-08-16 04:20:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstFPCast(LLVMValueRef ConstantVal, LLVMTypeRef ToType) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getFPCast(unwrap<Constant>(ConstantVal),
|
2009-08-16 04:20:12 +02:00
|
|
|
unwrap(ToType)));
|
|
|
|
}
|
|
|
|
|
2007-10-06 16:29:36 +02:00
|
|
|
LLVMValueRef LLVMConstSelect(LLVMValueRef ConstantCondition,
|
|
|
|
LLVMValueRef ConstantIfTrue,
|
|
|
|
LLVMValueRef ConstantIfFalse) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getSelect(unwrap<Constant>(ConstantCondition),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(ConstantIfTrue),
|
|
|
|
unwrap<Constant>(ConstantIfFalse)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstExtractElement(LLVMValueRef VectorConstant,
|
|
|
|
LLVMValueRef IndexConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getExtractElement(unwrap<Constant>(VectorConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(IndexConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstInsertElement(LLVMValueRef VectorConstant,
|
|
|
|
LLVMValueRef ElementValueConstant,
|
|
|
|
LLVMValueRef IndexConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getInsertElement(unwrap<Constant>(VectorConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(ElementValueConstant),
|
|
|
|
unwrap<Constant>(IndexConstant)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstShuffleVector(LLVMValueRef VectorAConstant,
|
|
|
|
LLVMValueRef VectorBConstant,
|
|
|
|
LLVMValueRef MaskConstant) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getShuffleVector(unwrap<Constant>(VectorAConstant),
|
2007-10-06 16:29:36 +02:00
|
|
|
unwrap<Constant>(VectorBConstant),
|
|
|
|
unwrap<Constant>(MaskConstant)));
|
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
|
2008-11-03 23:55:43 +01:00
|
|
|
LLVMValueRef LLVMConstExtractValue(LLVMValueRef AggConstant, unsigned *IdxList,
|
|
|
|
unsigned NumIdx) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getExtractValue(unwrap<Constant>(AggConstant),
|
2011-07-18 14:00:32 +02:00
|
|
|
makeArrayRef(IdxList, NumIdx)));
|
2008-11-03 23:55:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMConstInsertValue(LLVMValueRef AggConstant,
|
|
|
|
LLVMValueRef ElementValueConstant,
|
|
|
|
unsigned *IdxList, unsigned NumIdx) {
|
2011-02-15 01:14:00 +01:00
|
|
|
return wrap(ConstantExpr::getInsertValue(unwrap<Constant>(AggConstant),
|
2008-11-03 23:55:43 +01:00
|
|
|
unwrap<Constant>(ElementValueConstant),
|
2011-07-18 14:00:32 +02:00
|
|
|
makeArrayRef(IdxList, NumIdx)));
|
2008-11-03 23:55:43 +01:00
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMValueRef LLVMConstInlineAsm(LLVMTypeRef Ty, const char *AsmString,
|
|
|
|
const char *Constraints,
|
|
|
|
LLVMBool HasSideEffects,
|
|
|
|
LLVMBool IsAlignStack) {
|
|
|
|
return wrap(InlineAsm::get(dyn_cast<FunctionType>(unwrap(Ty)), AsmString,
|
2009-10-22 01:28:00 +02:00
|
|
|
Constraints, HasSideEffects, IsAlignStack));
|
2008-12-17 22:39:50 +01:00
|
|
|
}
|
|
|
|
|
2010-02-28 10:46:06 +01:00
|
|
|
LLVMValueRef LLVMBlockAddress(LLVMValueRef F, LLVMBasicBlockRef BB) {
|
|
|
|
return wrap(BlockAddress::get(unwrap<Function>(F), unwrap(BB)));
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
/*--.. Operations on global variables, functions, and aliases (globals) ....--*/
|
|
|
|
|
2008-03-19 02:11:35 +01:00
|
|
|
LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) {
|
|
|
|
return wrap(unwrap<GlobalValue>(Global)->getParent());
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsDeclaration(LLVMValueRef Global) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<GlobalValue>(Global)->isDeclaration();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMLinkage LLVMGetLinkage(LLVMValueRef Global) {
|
2009-07-20 22:34:46 +02:00
|
|
|
switch (unwrap<GlobalValue>(Global)->getLinkage()) {
|
|
|
|
default:
|
|
|
|
assert(false && "Unhandled Linkage Type.");
|
|
|
|
case GlobalValue::ExternalLinkage:
|
|
|
|
return LLVMExternalLinkage;
|
|
|
|
case GlobalValue::AvailableExternallyLinkage:
|
|
|
|
return LLVMAvailableExternallyLinkage;
|
|
|
|
case GlobalValue::LinkOnceAnyLinkage:
|
|
|
|
return LLVMLinkOnceAnyLinkage;
|
|
|
|
case GlobalValue::LinkOnceODRLinkage:
|
|
|
|
return LLVMLinkOnceODRLinkage;
|
|
|
|
case GlobalValue::WeakAnyLinkage:
|
|
|
|
return LLVMWeakAnyLinkage;
|
|
|
|
case GlobalValue::WeakODRLinkage:
|
|
|
|
return LLVMWeakODRLinkage;
|
|
|
|
case GlobalValue::AppendingLinkage:
|
|
|
|
return LLVMAppendingLinkage;
|
|
|
|
case GlobalValue::InternalLinkage:
|
|
|
|
return LLVMInternalLinkage;
|
|
|
|
case GlobalValue::PrivateLinkage:
|
|
|
|
return LLVMPrivateLinkage;
|
|
|
|
case GlobalValue::LinkerPrivateLinkage:
|
|
|
|
return LLVMLinkerPrivateLinkage;
|
2010-07-01 23:55:59 +02:00
|
|
|
case GlobalValue::LinkerPrivateWeakLinkage:
|
|
|
|
return LLVMLinkerPrivateWeakLinkage;
|
2010-08-21 00:05:50 +02:00
|
|
|
case GlobalValue::LinkerPrivateWeakDefAutoLinkage:
|
|
|
|
return LLVMLinkerPrivateWeakDefAutoLinkage;
|
2009-07-20 22:34:46 +02:00
|
|
|
case GlobalValue::DLLImportLinkage:
|
|
|
|
return LLVMDLLImportLinkage;
|
|
|
|
case GlobalValue::DLLExportLinkage:
|
|
|
|
return LLVMDLLExportLinkage;
|
|
|
|
case GlobalValue::ExternalWeakLinkage:
|
|
|
|
return LLVMExternalWeakLinkage;
|
|
|
|
case GlobalValue::CommonLinkage:
|
|
|
|
return LLVMCommonLinkage;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should never get here.
|
|
|
|
return static_cast<LLVMLinkage>(0);
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetLinkage(LLVMValueRef Global, LLVMLinkage Linkage) {
|
2009-07-20 22:34:46 +02:00
|
|
|
GlobalValue *GV = unwrap<GlobalValue>(Global);
|
|
|
|
|
|
|
|
switch (Linkage) {
|
|
|
|
default:
|
|
|
|
assert(false && "Unhandled Linkage Type.");
|
|
|
|
case LLVMExternalLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::ExternalLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMAvailableExternallyLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMLinkOnceAnyLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::LinkOnceAnyLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMLinkOnceODRLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::LinkOnceODRLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMWeakAnyLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::WeakAnyLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMWeakODRLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::WeakODRLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMAppendingLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::AppendingLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMInternalLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::InternalLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMPrivateLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::PrivateLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMLinkerPrivateLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::LinkerPrivateLinkage);
|
|
|
|
break;
|
2010-07-01 23:55:59 +02:00
|
|
|
case LLVMLinkerPrivateWeakLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::LinkerPrivateWeakLinkage);
|
|
|
|
break;
|
2010-08-21 00:05:50 +02:00
|
|
|
case LLVMLinkerPrivateWeakDefAutoLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::LinkerPrivateWeakDefAutoLinkage);
|
|
|
|
break;
|
2009-07-20 22:34:46 +02:00
|
|
|
case LLVMDLLImportLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::DLLImportLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMDLLExportLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::DLLExportLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMExternalWeakLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::ExternalWeakLinkage);
|
|
|
|
break;
|
|
|
|
case LLVMGhostLinkage:
|
2010-01-27 21:34:15 +01:00
|
|
|
DEBUG(errs()
|
|
|
|
<< "LLVMSetLinkage(): LLVMGhostLinkage is no longer supported.");
|
2009-07-20 22:34:46 +02:00
|
|
|
break;
|
|
|
|
case LLVMCommonLinkage:
|
|
|
|
GV->setLinkage(GlobalValue::CommonLinkage);
|
|
|
|
break;
|
|
|
|
}
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *LLVMGetSection(LLVMValueRef Global) {
|
|
|
|
return unwrap<GlobalValue>(Global)->getSection().c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetSection(LLVMValueRef Global, const char *Section) {
|
|
|
|
unwrap<GlobalValue>(Global)->setSection(Section);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMVisibility LLVMGetVisibility(LLVMValueRef Global) {
|
|
|
|
return static_cast<LLVMVisibility>(
|
|
|
|
unwrap<GlobalValue>(Global)->getVisibility());
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetVisibility(LLVMValueRef Global, LLVMVisibility Viz) {
|
|
|
|
unwrap<GlobalValue>(Global)
|
|
|
|
->setVisibility(static_cast<GlobalValue::VisibilityTypes>(Viz));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetAlignment(LLVMValueRef Global) {
|
|
|
|
return unwrap<GlobalValue>(Global)->getAlignment();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetAlignment(LLVMValueRef Global, unsigned Bytes) {
|
|
|
|
unwrap<GlobalValue>(Global)->setAlignment(Bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Operations on global variables ......................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) {
|
2009-07-08 21:03:57 +02:00
|
|
|
return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
|
|
|
|
GlobalValue::ExternalLinkage, 0, Name));
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
2010-02-28 10:46:13 +01:00
|
|
|
LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty,
|
|
|
|
const char *Name,
|
|
|
|
unsigned AddressSpace) {
|
|
|
|
return wrap(new GlobalVariable(*unwrap(M), unwrap(Ty), false,
|
2010-03-02 12:18:43 +01:00
|
|
|
GlobalValue::ExternalLinkage, 0, Name, 0,
|
|
|
|
false, AddressSpace));
|
2010-02-28 10:46:13 +01:00
|
|
|
}
|
|
|
|
|
2007-10-08 05:45:09 +02:00
|
|
|
LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) {
|
|
|
|
return wrap(unwrap(M)->getNamedGlobal(Name));
|
|
|
|
}
|
|
|
|
|
2008-03-19 04:47:18 +01:00
|
|
|
LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) {
|
|
|
|
Module *Mod = unwrap(M);
|
|
|
|
Module::global_iterator I = Mod->global_begin();
|
|
|
|
if (I == Mod->global_end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) {
|
|
|
|
Module *Mod = unwrap(M);
|
|
|
|
Module::global_iterator I = Mod->global_end();
|
|
|
|
if (I == Mod->global_begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetNextGlobal(LLVMValueRef GlobalVar) {
|
|
|
|
GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
|
|
|
|
Module::global_iterator I = GV;
|
|
|
|
if (++I == GV->getParent()->global_end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetPreviousGlobal(LLVMValueRef GlobalVar) {
|
|
|
|
GlobalVariable *GV = unwrap<GlobalVariable>(GlobalVar);
|
|
|
|
Module::global_iterator I = GV;
|
2008-03-23 23:21:29 +01:00
|
|
|
if (I == GV->getParent()->global_begin())
|
2008-03-19 04:47:18 +01:00
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
2007-09-18 05:18:57 +02:00
|
|
|
void LLVMDeleteGlobal(LLVMValueRef GlobalVar) {
|
|
|
|
unwrap<GlobalVariable>(GlobalVar)->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetInitializer(LLVMValueRef GlobalVar) {
|
2009-10-12 06:01:02 +02:00
|
|
|
GlobalVariable* GV = unwrap<GlobalVariable>(GlobalVar);
|
|
|
|
if ( !GV->hasInitializer() )
|
|
|
|
return 0;
|
|
|
|
return wrap(GV->getInitializer());
|
2007-09-18 05:18:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetInitializer(LLVMValueRef GlobalVar, LLVMValueRef ConstantVal) {
|
|
|
|
unwrap<GlobalVariable>(GlobalVar)
|
|
|
|
->setInitializer(unwrap<Constant>(ConstantVal));
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsThreadLocal(LLVMValueRef GlobalVar) {
|
2007-09-18 05:18:57 +02:00
|
|
|
return unwrap<GlobalVariable>(GlobalVar)->isThreadLocal();
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
void LLVMSetThreadLocal(LLVMValueRef GlobalVar, LLVMBool IsThreadLocal) {
|
2007-09-18 05:18:57 +02:00
|
|
|
unwrap<GlobalVariable>(GlobalVar)->setThreadLocal(IsThreadLocal != 0);
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsGlobalConstant(LLVMValueRef GlobalVar) {
|
2007-10-07 19:31:42 +02:00
|
|
|
return unwrap<GlobalVariable>(GlobalVar)->isConstant();
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
void LLVMSetGlobalConstant(LLVMValueRef GlobalVar, LLVMBool IsConstant) {
|
2007-10-07 19:31:42 +02:00
|
|
|
unwrap<GlobalVariable>(GlobalVar)->setConstant(IsConstant != 0);
|
|
|
|
}
|
|
|
|
|
2008-12-17 22:39:50 +01:00
|
|
|
/*--.. Operations on aliases ......................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(new GlobalAlias(unwrap(Ty), GlobalValue::ExternalLinkage, Name,
|
|
|
|
unwrap<Constant>(Aliasee), unwrap (M)));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Operations on functions .............................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name,
|
|
|
|
LLVMTypeRef FunctionTy) {
|
2008-04-06 22:25:17 +02:00
|
|
|
return wrap(Function::Create(unwrap<FunctionType>(FunctionTy),
|
|
|
|
GlobalValue::ExternalLinkage, Name, unwrap(M)));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2007-10-08 05:45:09 +02:00
|
|
|
LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) {
|
|
|
|
return wrap(unwrap(M)->getFunction(Name));
|
|
|
|
}
|
|
|
|
|
2008-03-19 04:47:18 +01:00
|
|
|
LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) {
|
|
|
|
Module *Mod = unwrap(M);
|
|
|
|
Module::iterator I = Mod->begin();
|
|
|
|
if (I == Mod->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) {
|
|
|
|
Module *Mod = unwrap(M);
|
|
|
|
Module::iterator I = Mod->end();
|
|
|
|
if (I == Mod->begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetNextFunction(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Module::iterator I = Func;
|
|
|
|
if (++I == Func->getParent()->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetPreviousFunction(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Module::iterator I = Func;
|
2008-03-23 23:21:29 +01:00
|
|
|
if (I == Func->getParent()->begin())
|
2008-03-19 04:47:18 +01:00
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
void LLVMDeleteFunction(LLVMValueRef Fn) {
|
|
|
|
unwrap<Function>(Fn)->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetIntrinsicID(LLVMValueRef Fn) {
|
|
|
|
if (Function *F = dyn_cast<Function>(unwrap(Fn)))
|
|
|
|
return F->getIntrinsicID();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMGetFunctionCallConv(LLVMValueRef Fn) {
|
|
|
|
return unwrap<Function>(Fn)->getCallingConv();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetFunctionCallConv(LLVMValueRef Fn, unsigned CC) {
|
2009-09-02 10:44:58 +02:00
|
|
|
return unwrap<Function>(Fn)->setCallingConv(
|
|
|
|
static_cast<CallingConv::ID>(CC));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
const char *LLVMGetGC(LLVMValueRef Fn) {
|
2007-12-10 04:18:06 +01:00
|
|
|
Function *F = unwrap<Function>(Fn);
|
2008-08-17 20:44:35 +02:00
|
|
|
return F->hasGC()? F->getGC() : 0;
|
2007-12-10 04:18:06 +01:00
|
|
|
}
|
|
|
|
|
2008-08-17 20:44:35 +02:00
|
|
|
void LLVMSetGC(LLVMValueRef Fn, const char *GC) {
|
2007-12-10 04:18:06 +01:00
|
|
|
Function *F = unwrap<Function>(Fn);
|
2008-08-17 20:44:35 +02:00
|
|
|
if (GC)
|
|
|
|
F->setGC(GC);
|
2007-12-10 04:18:06 +01:00
|
|
|
else
|
2008-08-17 20:44:35 +02:00
|
|
|
F->clearGC();
|
2007-12-10 04:18:06 +01:00
|
|
|
}
|
|
|
|
|
2009-05-06 14:21:17 +02:00
|
|
|
void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
const AttrListPtr PAL = Func->getAttributes();
|
2010-02-16 20:28:02 +01:00
|
|
|
const AttrListPtr PALnew = PAL.addAttr(~0U, PA);
|
2009-05-06 14:21:17 +02:00
|
|
|
Func->setAttributes(PALnew);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMRemoveFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
const AttrListPtr PAL = Func->getAttributes();
|
2010-02-16 20:28:02 +01:00
|
|
|
const AttrListPtr PALnew = PAL.removeAttr(~0U, PA);
|
2009-05-06 14:21:17 +02:00
|
|
|
Func->setAttributes(PALnew);
|
|
|
|
}
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
LLVMAttribute LLVMGetFunctionAttr(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
const AttrListPtr PAL = Func->getAttributes();
|
|
|
|
Attributes attr = PAL.getFnAttributes();
|
|
|
|
return (LLVMAttribute)attr;
|
|
|
|
}
|
|
|
|
|
2008-03-19 02:11:35 +01:00
|
|
|
/*--.. Operations on parameters ............................................--*/
|
|
|
|
|
|
|
|
unsigned LLVMCountParams(LLVMValueRef FnRef) {
|
|
|
|
// This function is strictly redundant to
|
|
|
|
// LLVMCountParamTypes(LLVMGetElementType(LLVMTypeOf(FnRef)))
|
2008-06-22 00:06:54 +02:00
|
|
|
return unwrap<Function>(FnRef)->arg_size();
|
2008-03-19 02:11:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) {
|
|
|
|
Function *Fn = unwrap<Function>(FnRef);
|
|
|
|
for (Function::arg_iterator I = Fn->arg_begin(),
|
|
|
|
E = Fn->arg_end(); I != E; I++)
|
|
|
|
*ParamRefs++ = wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) {
|
|
|
|
Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin();
|
|
|
|
while (index --> 0)
|
|
|
|
AI++;
|
|
|
|
return wrap(AI);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetParamParent(LLVMValueRef V) {
|
|
|
|
return wrap(unwrap<Argument>(V)->getParent());
|
|
|
|
}
|
|
|
|
|
2008-03-23 23:21:29 +01:00
|
|
|
LLVMValueRef LLVMGetFirstParam(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Function::arg_iterator I = Func->arg_begin();
|
|
|
|
if (I == Func->arg_end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Function::arg_iterator I = Func->arg_end();
|
|
|
|
if (I == Func->arg_begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetNextParam(LLVMValueRef Arg) {
|
|
|
|
Argument *A = unwrap<Argument>(Arg);
|
|
|
|
Function::arg_iterator I = A;
|
|
|
|
if (++I == A->getParent()->arg_end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetPreviousParam(LLVMValueRef Arg) {
|
|
|
|
Argument *A = unwrap<Argument>(Arg);
|
|
|
|
Function::arg_iterator I = A;
|
|
|
|
if (I == A->getParent()->arg_begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
void LLVMAddAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
|
2008-04-28 19:37:06 +02:00
|
|
|
unwrap<Argument>(Arg)->addAttr(PA);
|
|
|
|
}
|
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
void LLVMRemoveAttribute(LLVMValueRef Arg, LLVMAttribute PA) {
|
2008-04-28 19:37:06 +02:00
|
|
|
unwrap<Argument>(Arg)->removeAttr(PA);
|
|
|
|
}
|
|
|
|
|
2009-10-12 06:01:02 +02:00
|
|
|
LLVMAttribute LLVMGetAttribute(LLVMValueRef Arg) {
|
|
|
|
Argument *A = unwrap<Argument>(Arg);
|
|
|
|
Attributes attr = A->getParent()->getAttributes().getParamAttributes(
|
|
|
|
A->getArgNo()+1);
|
|
|
|
return (LLVMAttribute)attr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-28 19:37:06 +02:00
|
|
|
void LLVMSetParamAlignment(LLVMValueRef Arg, unsigned align) {
|
|
|
|
unwrap<Argument>(Arg)->addAttr(
|
2008-09-25 23:00:45 +02:00
|
|
|
Attribute::constructAlignmentFromInt(align));
|
2008-04-28 19:37:06 +02:00
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Operations on basic blocks ..........................................--*/
|
|
|
|
|
2008-03-19 02:11:35 +01:00
|
|
|
LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB) {
|
|
|
|
return wrap(static_cast<Value*>(unwrap(BB)));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val) {
|
2007-09-26 22:56:12 +02:00
|
|
|
return isa<BasicBlock>(unwrap(Val));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val) {
|
|
|
|
return wrap(unwrap<BasicBlock>(Val));
|
|
|
|
}
|
|
|
|
|
2008-03-23 23:21:29 +01:00
|
|
|
LLVMValueRef LLVMGetBasicBlockParent(LLVMBasicBlockRef BB) {
|
|
|
|
return wrap(unwrap(BB)->getParent());
|
2008-03-19 02:11:35 +01:00
|
|
|
}
|
|
|
|
|
2011-08-23 22:27:46 +02:00
|
|
|
LLVMValueRef LLVMGetBasicBlockTerminator(LLVMBasicBlockRef BB) {
|
|
|
|
return wrap(unwrap(BB)->getTerminator());
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) {
|
2008-06-22 00:06:54 +02:00
|
|
|
return unwrap<Function>(FnRef)->size();
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){
|
|
|
|
Function *Fn = unwrap<Function>(FnRef);
|
|
|
|
for (Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++)
|
|
|
|
*BasicBlocksRefs++ = wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetEntryBasicBlock(LLVMValueRef Fn) {
|
|
|
|
return wrap(&unwrap<Function>(Fn)->getEntryBlock());
|
|
|
|
}
|
|
|
|
|
2008-03-19 04:47:18 +01:00
|
|
|
LLVMBasicBlockRef LLVMGetFirstBasicBlock(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Function::iterator I = Func->begin();
|
|
|
|
if (I == Func->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetLastBasicBlock(LLVMValueRef Fn) {
|
|
|
|
Function *Func = unwrap<Function>(Fn);
|
|
|
|
Function::iterator I = Func->end();
|
|
|
|
if (I == Func->begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetNextBasicBlock(LLVMBasicBlockRef BB) {
|
|
|
|
BasicBlock *Block = unwrap(BB);
|
|
|
|
Function::iterator I = Block;
|
|
|
|
if (++I == Block->getParent()->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetPreviousBasicBlock(LLVMBasicBlockRef BB) {
|
|
|
|
BasicBlock *Block = unwrap(BB);
|
|
|
|
Function::iterator I = Block;
|
|
|
|
if (I == Block->getParent()->begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMBasicBlockRef LLVMAppendBasicBlockInContext(LLVMContextRef C,
|
|
|
|
LLVMValueRef FnRef,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(BasicBlock::Create(*unwrap(C), Name, unwrap<Function>(FnRef)));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMBasicBlockRef LLVMAppendBasicBlock(LLVMValueRef FnRef, const char *Name) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMAppendBasicBlockInContext(LLVMGetGlobalContext(), FnRef, Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMInsertBasicBlockInContext(LLVMContextRef C,
|
|
|
|
LLVMBasicBlockRef BBRef,
|
|
|
|
const char *Name) {
|
|
|
|
BasicBlock *BB = unwrap(BBRef);
|
|
|
|
return wrap(BasicBlock::Create(*unwrap(C), Name, BB->getParent(), BB));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMBasicBlockRef LLVMInsertBasicBlock(LLVMBasicBlockRef BBRef,
|
2007-09-26 22:56:12 +02:00
|
|
|
const char *Name) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMInsertBasicBlockInContext(LLVMGetGlobalContext(), BBRef, Name);
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMDeleteBasicBlock(LLVMBasicBlockRef BBRef) {
|
|
|
|
unwrap(BBRef)->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
2011-08-23 22:27:46 +02:00
|
|
|
void LLVMRemoveBasicBlockFromParent(LLVMBasicBlockRef BBRef) {
|
|
|
|
unwrap(BBRef)->removeFromParent();
|
|
|
|
}
|
|
|
|
|
2010-07-19 17:31:07 +02:00
|
|
|
void LLVMMoveBasicBlockBefore(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
|
|
|
|
unwrap(BB)->moveBefore(unwrap(MovePos));
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMMoveBasicBlockAfter(LLVMBasicBlockRef BB, LLVMBasicBlockRef MovePos) {
|
|
|
|
unwrap(BB)->moveAfter(unwrap(MovePos));
|
|
|
|
}
|
|
|
|
|
2008-03-19 02:11:35 +01:00
|
|
|
/*--.. Operations on instructions ..........................................--*/
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetInstructionParent(LLVMValueRef Inst) {
|
|
|
|
return wrap(unwrap<Instruction>(Inst)->getParent());
|
|
|
|
}
|
|
|
|
|
2008-03-19 04:47:18 +01:00
|
|
|
LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB) {
|
|
|
|
BasicBlock *Block = unwrap(BB);
|
|
|
|
BasicBlock::iterator I = Block->begin();
|
|
|
|
if (I == Block->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB) {
|
|
|
|
BasicBlock *Block = unwrap(BB);
|
|
|
|
BasicBlock::iterator I = Block->end();
|
|
|
|
if (I == Block->begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetNextInstruction(LLVMValueRef Inst) {
|
|
|
|
Instruction *Instr = unwrap<Instruction>(Inst);
|
|
|
|
BasicBlock::iterator I = Instr;
|
|
|
|
if (++I == Instr->getParent()->end())
|
|
|
|
return 0;
|
|
|
|
return wrap(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetPreviousInstruction(LLVMValueRef Inst) {
|
|
|
|
Instruction *Instr = unwrap<Instruction>(Inst);
|
|
|
|
BasicBlock::iterator I = Instr;
|
|
|
|
if (I == Instr->getParent()->begin())
|
|
|
|
return 0;
|
|
|
|
return wrap(--I);
|
|
|
|
}
|
|
|
|
|
2011-10-03 22:59:18 +02:00
|
|
|
void LLVMInstructionEraseFromParent(LLVMValueRef Inst) {
|
|
|
|
unwrap<Instruction>(Inst)->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
2011-10-06 14:13:20 +02:00
|
|
|
LLVMIntPredicate LLVMGetICmpPredicate(LLVMValueRef Inst) {
|
2011-10-14 22:37:42 +02:00
|
|
|
if (ICmpInst *I = dyn_cast<ICmpInst>(unwrap(Inst)))
|
|
|
|
return (LLVMIntPredicate)I->getPredicate();
|
|
|
|
if (ConstantExpr *CE = dyn_cast<ConstantExpr>(unwrap(Inst)))
|
|
|
|
if (CE->getOpcode() == Instruction::ICmp)
|
|
|
|
return (LLVMIntPredicate)CE->getPredicate();
|
|
|
|
return (LLVMIntPredicate)0;
|
2011-10-06 14:13:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 22:37:49 +02:00
|
|
|
LLVMOpcode LLVMGetInstructionOpcode(LLVMValueRef Inst) {
|
|
|
|
if (Instruction *C = dyn_cast<Instruction>(unwrap(Inst)))
|
|
|
|
return map_to_llvmopcode(C->getOpcode());
|
|
|
|
return (LLVMOpcode)0;
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Call and invoke instructions ........................................--*/
|
|
|
|
|
|
|
|
unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) {
|
|
|
|
Value *V = unwrap(Instr);
|
|
|
|
if (CallInst *CI = dyn_cast<CallInst>(V))
|
|
|
|
return CI->getCallingConv();
|
|
|
|
else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
|
|
|
|
return II->getCallingConv();
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable("LLVMGetInstructionCallConv applies only to call and invoke!");
|
2007-09-26 22:56:12 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) {
|
|
|
|
Value *V = unwrap(Instr);
|
|
|
|
if (CallInst *CI = dyn_cast<CallInst>(V))
|
2009-09-02 10:44:58 +02:00
|
|
|
return CI->setCallingConv(static_cast<CallingConv::ID>(CC));
|
2007-09-26 22:56:12 +02:00
|
|
|
else if (InvokeInst *II = dyn_cast<InvokeInst>(V))
|
2009-09-02 10:44:58 +02:00
|
|
|
return II->setCallingConv(static_cast<CallingConv::ID>(CC));
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable("LLVMSetInstructionCallConv applies only to call and invoke!");
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index,
|
|
|
|
LLVMAttribute PA) {
|
2008-04-28 19:37:06 +02:00
|
|
|
CallSite Call = CallSite(unwrap<Instruction>(Instr));
|
2008-09-25 23:00:45 +02:00
|
|
|
Call.setAttributes(
|
|
|
|
Call.getAttributes().addAttr(index, PA));
|
2008-04-28 19:37:06 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 23:00:45 +02:00
|
|
|
void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index,
|
|
|
|
LLVMAttribute PA) {
|
2008-04-28 19:37:06 +02:00
|
|
|
CallSite Call = CallSite(unwrap<Instruction>(Instr));
|
2008-09-25 23:00:45 +02:00
|
|
|
Call.setAttributes(
|
|
|
|
Call.getAttributes().removeAttr(index, PA));
|
2008-04-28 19:37:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index,
|
|
|
|
unsigned align) {
|
|
|
|
CallSite Call = CallSite(unwrap<Instruction>(Instr));
|
2008-09-25 23:00:45 +02:00
|
|
|
Call.setAttributes(
|
|
|
|
Call.getAttributes().addAttr(index,
|
|
|
|
Attribute::constructAlignmentFromInt(align)));
|
2008-04-28 19:37:06 +02:00
|
|
|
}
|
|
|
|
|
2008-08-30 18:34:54 +02:00
|
|
|
/*--.. Operations on call instructions (only) ..............................--*/
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMIsTailCall(LLVMValueRef Call) {
|
2008-08-30 18:34:54 +02:00
|
|
|
return unwrap<CallInst>(Call)->isTailCall();
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
void LLVMSetTailCall(LLVMValueRef Call, LLVMBool isTailCall) {
|
2008-08-30 18:34:54 +02:00
|
|
|
unwrap<CallInst>(Call)->setTailCall(isTailCall);
|
|
|
|
}
|
|
|
|
|
2011-08-23 22:27:46 +02:00
|
|
|
/*--.. Operations on switch instructions (only) ............................--*/
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) {
|
|
|
|
return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
|
|
|
|
}
|
|
|
|
|
2007-10-08 20:14:39 +02:00
|
|
|
/*--.. Operations on phi nodes .............................................--*/
|
|
|
|
|
|
|
|
void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
|
|
|
|
LLVMBasicBlockRef *IncomingBlocks, unsigned Count) {
|
|
|
|
PHINode *PhiVal = unwrap<PHINode>(PhiNode);
|
|
|
|
for (unsigned I = 0; I != Count; ++I)
|
|
|
|
PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I]));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
|
|
|
|
return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
|
|
|
|
return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
|
|
|
|
return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
|
|
|
|
/*===-- Instruction builders ----------------------------------------------===*/
|
|
|
|
|
2009-08-14 02:01:31 +02:00
|
|
|
LLVMBuilderRef LLVMCreateBuilderInContext(LLVMContextRef C) {
|
|
|
|
return wrap(new IRBuilder<>(*unwrap(C)));
|
|
|
|
}
|
|
|
|
|
2008-05-04 14:55:34 +02:00
|
|
|
LLVMBuilderRef LLVMCreateBuilder(void) {
|
2009-08-14 02:01:31 +02:00
|
|
|
return LLVMCreateBuilderInContext(LLVMGetGlobalContext());
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2008-03-19 04:47:18 +01:00
|
|
|
void LLVMPositionBuilder(LLVMBuilderRef Builder, LLVMBasicBlockRef Block,
|
|
|
|
LLVMValueRef Instr) {
|
|
|
|
BasicBlock *BB = unwrap(Block);
|
|
|
|
Instruction *I = Instr? unwrap<Instruction>(Instr) : (Instruction*) BB->end();
|
|
|
|
unwrap(Builder)->SetInsertPoint(BB, I);
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) {
|
|
|
|
Instruction *I = unwrap<Instruction>(Instr);
|
|
|
|
unwrap(Builder)->SetInsertPoint(I->getParent(), I);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMPositionBuilderAtEnd(LLVMBuilderRef Builder, LLVMBasicBlockRef Block) {
|
|
|
|
BasicBlock *BB = unwrap(Block);
|
|
|
|
unwrap(Builder)->SetInsertPoint(BB);
|
|
|
|
}
|
|
|
|
|
2008-03-19 02:11:35 +01:00
|
|
|
LLVMBasicBlockRef LLVMGetInsertBlock(LLVMBuilderRef Builder) {
|
|
|
|
return wrap(unwrap(Builder)->GetInsertBlock());
|
|
|
|
}
|
|
|
|
|
2008-12-17 22:39:50 +01:00
|
|
|
void LLVMClearInsertionPosition(LLVMBuilderRef Builder) {
|
2010-04-01 08:31:45 +02:00
|
|
|
unwrap(Builder)->ClearInsertionPoint();
|
2008-12-17 22:39:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) {
|
|
|
|
unwrap(Builder)->Insert(unwrap<Instruction>(Instr));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:20:57 +02:00
|
|
|
void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr,
|
|
|
|
const char *Name) {
|
|
|
|
unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name);
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
void LLVMDisposeBuilder(LLVMBuilderRef Builder) {
|
|
|
|
delete unwrap(Builder);
|
|
|
|
}
|
|
|
|
|
2010-02-28 10:45:59 +01:00
|
|
|
/*--.. Metadata builders ...................................................--*/
|
|
|
|
|
|
|
|
void LLVMSetCurrentDebugLocation(LLVMBuilderRef Builder, LLVMValueRef L) {
|
2010-04-01 08:31:45 +02:00
|
|
|
MDNode *Loc = L ? unwrap<MDNode>(L) : NULL;
|
2010-04-02 22:21:22 +02:00
|
|
|
unwrap(Builder)->SetCurrentDebugLocation(DebugLoc::getFromDILocation(Loc));
|
2010-02-28 10:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMGetCurrentDebugLocation(LLVMBuilderRef Builder) {
|
2010-04-01 08:31:45 +02:00
|
|
|
return wrap(unwrap(Builder)->getCurrentDebugLocation()
|
|
|
|
.getAsMDNode(unwrap(Builder)->getContext()));
|
2010-02-28 10:45:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetInstDebugLocation(LLVMBuilderRef Builder, LLVMValueRef Inst) {
|
|
|
|
unwrap(Builder)->SetInstDebugLocation(unwrap<Instruction>(Inst));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Instruction builders ................................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildRetVoid(LLVMBuilderRef B) {
|
|
|
|
return wrap(unwrap(B)->CreateRetVoid());
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildRet(LLVMBuilderRef B, LLVMValueRef V) {
|
|
|
|
return wrap(unwrap(B)->CreateRet(unwrap(V)));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildAggregateRet(LLVMBuilderRef B, LLVMValueRef *RetVals,
|
|
|
|
unsigned N) {
|
|
|
|
return wrap(unwrap(B)->CreateAggregateRet(unwrap(RetVals), N));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildBr(LLVMBuilderRef B, LLVMBasicBlockRef Dest) {
|
|
|
|
return wrap(unwrap(B)->CreateBr(unwrap(Dest)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If,
|
|
|
|
LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
|
|
|
|
return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSwitch(LLVMBuilderRef B, LLVMValueRef V,
|
|
|
|
LLVMBasicBlockRef Else, unsigned NumCases) {
|
|
|
|
return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases));
|
|
|
|
}
|
|
|
|
|
2010-02-28 10:46:06 +01:00
|
|
|
LLVMValueRef LLVMBuildIndirectBr(LLVMBuilderRef B, LLVMValueRef Addr,
|
|
|
|
unsigned NumDests) {
|
|
|
|
return wrap(unwrap(B)->CreateIndirectBr(unwrap(Addr), NumDests));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn,
|
|
|
|
LLVMValueRef *Args, unsigned NumArgs,
|
|
|
|
LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
|
2011-07-18 14:00:32 +02:00
|
|
|
makeArrayRef(unwrap(Args), NumArgs),
|
2007-09-26 22:56:12 +02:00
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
2011-08-12 22:24:12 +02:00
|
|
|
LLVMValueRef LLVMBuildLandingPad(LLVMBuilderRef B, LLVMTypeRef Ty,
|
|
|
|
LLVMValueRef PersFn, unsigned NumClauses,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateLandingPad(unwrap(Ty),
|
|
|
|
cast<Function>(unwrap(PersFn)),
|
|
|
|
NumClauses, Name));
|
|
|
|
}
|
|
|
|
|
2011-07-31 08:30:59 +02:00
|
|
|
LLVMValueRef LLVMBuildResume(LLVMBuilderRef B, LLVMValueRef Exn) {
|
|
|
|
return wrap(unwrap(B)->CreateResume(unwrap(Exn)));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildUnreachable(LLVMBuilderRef B) {
|
|
|
|
return wrap(unwrap(B)->CreateUnreachable());
|
|
|
|
}
|
|
|
|
|
2008-01-01 06:50:53 +01:00
|
|
|
void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal,
|
|
|
|
LLVMBasicBlockRef Dest) {
|
|
|
|
unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
|
|
|
|
}
|
|
|
|
|
2010-02-28 10:46:06 +01:00
|
|
|
void LLVMAddDestination(LLVMValueRef IndirectBr, LLVMBasicBlockRef Dest) {
|
|
|
|
unwrap<IndirectBrInst>(IndirectBr)->addDestination(unwrap(Dest));
|
|
|
|
}
|
|
|
|
|
2011-08-12 22:24:12 +02:00
|
|
|
void LLVMAddClause(LLVMValueRef LandingPad, LLVMValueRef ClauseVal) {
|
|
|
|
unwrap<LandingPadInst>(LandingPad)->
|
|
|
|
addClause(cast<Constant>(unwrap(ClauseVal)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMSetCleanup(LLVMValueRef LandingPad, LLVMBool Val) {
|
|
|
|
unwrap<LandingPadInst>(LandingPad)->setCleanup(Val);
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Arithmetic ..........................................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateAdd(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildNSWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNSWAdd(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMBuildNUWAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNUWAdd(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildFAdd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFAdd(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSub(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMBuildNSWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNSWSub(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildNUWSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNUWSub(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildFSub(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFSub(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateMul(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMBuildNSWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNSWMul(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildNUWMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNUWMul(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildFMul(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFMul(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildUDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateUDiv(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSDiv(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildExactSDiv(LLVMBuilderRef B, LLVMValueRef LHS,
|
|
|
|
LLVMValueRef RHS, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateExactSDiv(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildFDiv(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFDiv(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildURem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateURem(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSRem(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFRem(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildShl(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateShl(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildLShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateLShr(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildAShr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateAShr(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildAnd(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateAnd(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildOr(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateOr(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildXor(LLVMBuilderRef B, LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateXor(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:27 +01:00
|
|
|
LLVMValueRef LLVMBuildBinOp(LLVMBuilderRef B, LLVMOpcode Op,
|
|
|
|
LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
2011-10-06 14:39:34 +02:00
|
|
|
return wrap(unwrap(B)->CreateBinOp(Instruction::BinaryOps(map_from_llvmopcode(Op)), unwrap(LHS),
|
2010-02-28 06:51:27 +01:00
|
|
|
unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNeg(unwrap(V), Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:43 +01:00
|
|
|
LLVMValueRef LLVMBuildNSWNeg(LLVMBuilderRef B, LLVMValueRef V,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNSWNeg(unwrap(V), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildNUWNeg(LLVMBuilderRef B, LLVMValueRef V,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNUWNeg(unwrap(V), Name));
|
|
|
|
}
|
|
|
|
|
2009-09-28 23:51:41 +02:00
|
|
|
LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFNeg(unwrap(V), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
LLVMValueRef LLVMBuildNot(LLVMBuilderRef B, LLVMValueRef V, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateNot(unwrap(V), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Memory ..............................................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
|
|
|
|
const char *Name) {
|
2011-07-18 06:54:35 +02:00
|
|
|
Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
|
2009-11-07 01:16:28 +01:00
|
|
|
Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
|
|
|
|
AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
|
|
|
|
Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
|
|
|
|
ITy, unwrap(Ty), AllocSize,
|
|
|
|
0, 0, "");
|
|
|
|
return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildArrayMalloc(LLVMBuilderRef B, LLVMTypeRef Ty,
|
|
|
|
LLVMValueRef Val, const char *Name) {
|
2011-07-18 06:54:35 +02:00
|
|
|
Type* ITy = Type::getInt32Ty(unwrap(B)->GetInsertBlock()->getContext());
|
2009-11-07 01:16:28 +01:00
|
|
|
Constant* AllocSize = ConstantExpr::getSizeOf(unwrap(Ty));
|
|
|
|
AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, ITy);
|
|
|
|
Instruction* Malloc = CallInst::CreateMalloc(unwrap(B)->GetInsertBlock(),
|
|
|
|
ITy, unwrap(Ty), AllocSize,
|
|
|
|
unwrap(Val), 0, "");
|
|
|
|
return wrap(unwrap(B)->Insert(Malloc, Twine(Name)));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), 0, Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildArrayAlloca(LLVMBuilderRef B, LLVMTypeRef Ty,
|
|
|
|
LLVMValueRef Val, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFree(LLVMBuilderRef B, LLVMValueRef PointerVal) {
|
2009-10-27 00:43:48 +01:00
|
|
|
return wrap(unwrap(B)->Insert(
|
|
|
|
CallInst::CreateFree(unwrap(PointerVal), unwrap(B)->GetInsertBlock())));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildLoad(LLVMBuilderRef B, LLVMValueRef PointerVal,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateLoad(unwrap(PointerVal), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildStore(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMValueRef PointerVal) {
|
|
|
|
return wrap(unwrap(B)->CreateStore(unwrap(Val), unwrap(PointerVal)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
|
|
|
|
LLVMValueRef *Indices, unsigned NumIndices,
|
|
|
|
const char *Name) {
|
2011-07-22 10:16:57 +02:00
|
|
|
ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
|
|
|
|
return wrap(unwrap(B)->CreateGEP(unwrap(Pointer), IdxList, Name));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildInBoundsGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
|
|
|
|
LLVMValueRef *Indices, unsigned NumIndices,
|
|
|
|
const char *Name) {
|
2011-07-22 10:16:57 +02:00
|
|
|
ArrayRef<Value *> IdxList(unwrap(Indices), NumIndices);
|
|
|
|
return wrap(unwrap(B)->CreateInBoundsGEP(unwrap(Pointer), IdxList, Name));
|
2009-08-16 04:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildStructGEP(LLVMBuilderRef B, LLVMValueRef Pointer,
|
|
|
|
unsigned Idx, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateStructGEP(unwrap(Pointer), Idx, Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildGlobalString(LLVMBuilderRef B, const char *Str,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateGlobalString(Str, Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildGlobalStringPtr(LLVMBuilderRef B, const char *Str,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateGlobalStringPtr(Str, Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Casts ...............................................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildTrunc(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateTrunc(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildZExt(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateZExt(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSExt(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSExt(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFPToUI(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFPToUI(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFPToSI(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFPToSI(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildUIToFP(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateUIToFP(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSIToFP(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSIToFP(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFPTrunc(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFPTrunc(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFPExt(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFPExt(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildPtrToInt(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreatePtrToInt(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildIntToPtr(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateIntToPtr(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildBitCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateBitCast(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildZExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateZExtOrBitCast(unwrap(Val), unwrap(DestTy),
|
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSExtOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSExtOrBitCast(unwrap(Val), unwrap(DestTy),
|
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildTruncOrBitCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateTruncOrBitCast(unwrap(Val), unwrap(DestTy),
|
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
2010-02-28 06:51:27 +01:00
|
|
|
LLVMValueRef LLVMBuildCast(LLVMBuilderRef B, LLVMOpcode Op, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
2011-10-06 14:39:34 +02:00
|
|
|
return wrap(unwrap(B)->CreateCast(Instruction::CastOps(map_from_llvmopcode(Op)), unwrap(Val),
|
2010-02-28 06:51:27 +01:00
|
|
|
unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildPointerCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreatePointerCast(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildIntCast(LLVMBuilderRef B, LLVMValueRef Val,
|
2009-11-23 11:49:03 +01:00
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateIntCast(unwrap(Val), unwrap(DestTy),
|
|
|
|
/*isSigned*/true, Name));
|
2009-08-16 04:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFPCast(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
LLVMTypeRef DestTy, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFPCast(unwrap(Val), unwrap(DestTy), Name));
|
|
|
|
}
|
|
|
|
|
2007-09-26 22:56:12 +02:00
|
|
|
/*--.. Comparisons .........................................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildICmp(LLVMBuilderRef B, LLVMIntPredicate Op,
|
|
|
|
LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateICmp(static_cast<ICmpInst::Predicate>(Op),
|
|
|
|
unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildFCmp(LLVMBuilderRef B, LLVMRealPredicate Op,
|
|
|
|
LLVMValueRef LHS, LLVMValueRef RHS,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateFCmp(static_cast<FCmpInst::Predicate>(Op),
|
|
|
|
unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--.. Miscellaneous instructions ..........................................--*/
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildPhi(LLVMBuilderRef B, LLVMTypeRef Ty, const char *Name) {
|
2011-03-30 13:28:46 +02:00
|
|
|
return wrap(unwrap(B)->CreatePHI(unwrap(Ty), 0, Name));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildCall(LLVMBuilderRef B, LLVMValueRef Fn,
|
|
|
|
LLVMValueRef *Args, unsigned NumArgs,
|
|
|
|
const char *Name) {
|
2011-07-15 10:37:34 +02:00
|
|
|
return wrap(unwrap(B)->CreateCall(unwrap(Fn),
|
2011-07-18 14:00:32 +02:00
|
|
|
makeArrayRef(unwrap(Args), NumArgs),
|
2011-07-15 10:37:34 +02:00
|
|
|
Name));
|
2007-09-26 22:56:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If,
|
|
|
|
LLVMValueRef Then, LLVMValueRef Else,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
|
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
|
|
|
|
LLVMTypeRef Ty, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildExtractElement(LLVMBuilderRef B, LLVMValueRef VecVal,
|
|
|
|
LLVMValueRef Index, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateExtractElement(unwrap(VecVal), unwrap(Index),
|
|
|
|
Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildInsertElement(LLVMBuilderRef B, LLVMValueRef VecVal,
|
|
|
|
LLVMValueRef EltVal, LLVMValueRef Index,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal),
|
|
|
|
unwrap(Index), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildShuffleVector(LLVMBuilderRef B, LLVMValueRef V1,
|
|
|
|
LLVMValueRef V2, LLVMValueRef Mask,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateShuffleVector(unwrap(V1), unwrap(V2),
|
|
|
|
unwrap(Mask), Name));
|
|
|
|
}
|
2007-12-12 02:04:30 +01:00
|
|
|
|
2008-11-03 23:55:43 +01:00
|
|
|
LLVMValueRef LLVMBuildExtractValue(LLVMBuilderRef B, LLVMValueRef AggVal,
|
|
|
|
unsigned Index, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateExtractValue(unwrap(AggVal), Index, Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildInsertValue(LLVMBuilderRef B, LLVMValueRef AggVal,
|
|
|
|
LLVMValueRef EltVal, unsigned Index,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal),
|
|
|
|
Index, Name));
|
|
|
|
}
|
|
|
|
|
2009-08-16 04:19:59 +02:00
|
|
|
LLVMValueRef LLVMBuildIsNull(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateIsNull(unwrap(Val), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildIsNotNull(LLVMBuilderRef B, LLVMValueRef Val,
|
|
|
|
const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreateIsNotNull(unwrap(Val), Name));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMValueRef LLVMBuildPtrDiff(LLVMBuilderRef B, LLVMValueRef LHS,
|
|
|
|
LLVMValueRef RHS, const char *Name) {
|
|
|
|
return wrap(unwrap(B)->CreatePtrDiff(unwrap(LHS), unwrap(RHS), Name));
|
|
|
|
}
|
|
|
|
|
2007-12-12 02:04:30 +01:00
|
|
|
|
|
|
|
/*===-- Module providers --------------------------------------------------===*/
|
|
|
|
|
|
|
|
LLVMModuleProviderRef
|
|
|
|
LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) {
|
2010-01-27 21:34:15 +01:00
|
|
|
return reinterpret_cast<LLVMModuleProviderRef>(M);
|
2007-12-12 02:04:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMDisposeModuleProvider(LLVMModuleProviderRef MP) {
|
|
|
|
delete unwrap(MP);
|
|
|
|
}
|
|
|
|
|
2007-12-19 23:30:40 +01:00
|
|
|
|
|
|
|
/*===-- Memory buffers ----------------------------------------------------===*/
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMCreateMemoryBufferWithContentsOfFile(
|
|
|
|
const char *Path,
|
|
|
|
LLVMMemoryBufferRef *OutMemBuf,
|
|
|
|
char **OutMessage) {
|
|
|
|
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> MB;
|
2010-12-09 18:36:48 +01:00
|
|
|
error_code ec;
|
2010-12-16 04:29:14 +01:00
|
|
|
if (!(ec = MemoryBuffer::getFile(Path, MB))) {
|
|
|
|
*OutMemBuf = wrap(MB.take());
|
2007-12-19 23:30:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2010-12-09 18:36:48 +01:00
|
|
|
|
|
|
|
*OutMessage = strdup(ec.message().c_str());
|
2007-12-19 23:30:40 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMCreateMemoryBufferWithSTDIN(LLVMMemoryBufferRef *OutMemBuf,
|
|
|
|
char **OutMessage) {
|
2010-12-16 04:29:14 +01:00
|
|
|
OwningPtr<MemoryBuffer> MB;
|
2010-12-09 18:36:48 +01:00
|
|
|
error_code ec;
|
2010-12-16 04:29:14 +01:00
|
|
|
if (!(ec = MemoryBuffer::getSTDIN(MB))) {
|
|
|
|
*OutMemBuf = wrap(MB.take());
|
2010-05-27 19:31:51 +02:00
|
|
|
return 0;
|
2007-12-19 23:30:40 +01:00
|
|
|
}
|
2009-11-10 01:43:58 +01:00
|
|
|
|
2010-12-09 18:36:48 +01:00
|
|
|
*OutMessage = strdup(ec.message().c_str());
|
2010-05-27 19:31:51 +02:00
|
|
|
return 1;
|
2007-12-19 23:30:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMDisposeMemoryBuffer(LLVMMemoryBufferRef MemBuf) {
|
|
|
|
delete unwrap(MemBuf);
|
|
|
|
}
|
2010-08-07 02:43:20 +02:00
|
|
|
|
2010-10-07 19:55:47 +02:00
|
|
|
/*===-- Pass Registry -----------------------------------------------------===*/
|
|
|
|
|
|
|
|
LLVMPassRegistryRef LLVMGetGlobalPassRegistry(void) {
|
|
|
|
return wrap(PassRegistry::getPassRegistry());
|
|
|
|
}
|
2010-08-07 02:43:20 +02:00
|
|
|
|
|
|
|
/*===-- Pass Manager ------------------------------------------------------===*/
|
|
|
|
|
|
|
|
LLVMPassManagerRef LLVMCreatePassManager() {
|
|
|
|
return wrap(new PassManager());
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) {
|
|
|
|
return wrap(new FunctionPassManager(unwrap(M)));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMPassManagerRef LLVMCreateFunctionPassManager(LLVMModuleProviderRef P) {
|
|
|
|
return LLVMCreateFunctionPassManagerForModule(
|
|
|
|
reinterpret_cast<LLVMModuleRef>(P));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) {
|
|
|
|
return unwrap<PassManager>(PM)->run(*unwrap(M));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBool LLVMInitializeFunctionPassManager(LLVMPassManagerRef FPM) {
|
|
|
|
return unwrap<FunctionPassManager>(FPM)->doInitialization();
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBool LLVMRunFunctionPassManager(LLVMPassManagerRef FPM, LLVMValueRef F) {
|
|
|
|
return unwrap<FunctionPassManager>(FPM)->run(*unwrap<Function>(F));
|
|
|
|
}
|
|
|
|
|
|
|
|
LLVMBool LLVMFinalizeFunctionPassManager(LLVMPassManagerRef FPM) {
|
|
|
|
return unwrap<FunctionPassManager>(FPM)->doFinalization();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LLVMDisposePassManager(LLVMPassManagerRef PM) {
|
|
|
|
delete unwrap(PM);
|
|
|
|
}
|