/* * Copyright (c) 2008-10, Mahadevan R All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * * Neither the name of this software, nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /** * These are some "extra" functions not available in the standard LLVM-C * bindings, but are required / good-to-have inorder to implement the * Python bindings. */ #ifndef LLVM_PY_EXTRA_H #define LLVM_PY_EXTRA_H #ifdef __cplusplus extern "C" { #endif /* Notes: * - Some returned strings must be disposed of by LLVMDisposeMessage. These are * indicated in the comments. Where it is not indicated, DO NOT call dispose. */ /* Wraps the LLVMInitializeTarget macro from Target.h */ unsigned LLVMInitNativeTarget(void); /* Wraps llvm::Module::print(). Dispose the returned string after use, via * LLVMDisposeMessage(). */ char *LLVMDumpModuleToString(LLVMModuleRef module); /* Wraps llvm::Type::print(). Dispose the returned string after use, via * LLVMDisposeMessage(). */ char *LLVMDumpTypeToString(LLVMTypeRef type); /* Wraps llvm::Value::print(). Dispose the returned string after use, via * LLVMDisposeMessage(). */ char *LLVMDumpValueToString(LLVMValueRef Val); /* Wraps llvm::IRBuilder::CreateRet(). */ LLVMValueRef LLVMBuildRetMultiple(LLVMBuilderRef bulder, LLVMValueRef *values, unsigned n_values); /* Wraps llvm::IRBuilder::CreateGetResult(). */ LLVMValueRef LLVMBuildGetResult(LLVMBuilderRef builder, LLVMValueRef value, unsigned index, const char *name); /* Wraps llvm::Value::getValueID(). */ unsigned LLVMValueGetID(LLVMValueRef value); /* Wraps llvm::Value::getNumUses(). */ unsigned LLVMValueGetNumUses(LLVMValueRef value); /* Wraps llvm::Value::use_{begin,end}. Allocates LLVMValueRef's as * required. Number of objects are returned as return value. If that is * greater than zero, the pointer given out must be freed by a * subsequent call to LLVMDisposeValueRefArray(). */ unsigned LLVMValueGetUses(LLVMValueRef value, LLVMValueRef **refs); /* Wraps llvm::Value::isUsedInBasicBlock(). */ unsigned LLVMValueIsUsedInBasicBlock(LLVMValueRef value, LLVMBasicBlockRef bb); /* See above. */ void LLVMDisposeValueRefArray(LLVMValueRef *refs); /* Wraps llvm:User::getNumOperands(). */ unsigned LLVMUserGetNumOperands(LLVMValueRef user); /* Wraps llvm:User::getOperand(). */ LLVMValueRef LLVMUserGetOperand(LLVMValueRef user, unsigned idx); /* Wraps llvm::ConstantExpr::getVICmp(). */ LLVMValueRef LLVMConstVICmp(LLVMIntPredicate predicate, LLVMValueRef lhs, LLVMValueRef rhs); /* Wraps llvm::ConstantExpr::getVFCmp(). */ LLVMValueRef LLVMConstVFCmp(LLVMRealPredicate predicate, LLVMValueRef lhs, LLVMValueRef rhs); /* Wraps llvm::IRBuilder::CreateVICmp(). */ LLVMValueRef LLVMBuildVICmp(LLVMBuilderRef builder, LLVMIntPredicate predicate, LLVMValueRef lhs, LLVMValueRef rhs, const char *name); /* Wraps llvm::IRBuilder::CreateVFCmp(). */ LLVMValueRef LLVMBuildVFCmp(LLVMBuilderRef builder, LLVMRealPredicate predicate, LLVMValueRef lhs, LLVMValueRef rhs, const char *name); /* Wraps llvm::Intrinsic::getDeclaration(). */ LLVMValueRef LLVMGetIntrinsic(LLVMModuleRef builder, int id, LLVMTypeRef *types, unsigned n_types); /* Wraps llvm::Module::getPointerSize(). */ unsigned LLVMModuleGetPointerSize(LLVMModuleRef module); /* Wraps llvm::Module::getOrInsertFunction(). */ LLVMValueRef LLVMModuleGetOrInsertFunction(LLVMModuleRef module, const char *name, LLVMTypeRef function_type); /* Wraps llvm::GlobalVariable::hasInitializer(). */ int LLVMHasInitializer(LLVMValueRef global_var); /* The following functions wrap various llvm::Instruction::isXXX() functions. * All of them take an instruction and return 0 (isXXX returned false) or 1 * (isXXX returned false). */ unsigned LLVMInstIsTerminator (LLVMValueRef inst); unsigned LLVMInstIsBinaryOp (LLVMValueRef inst); unsigned LLVMInstIsShift (LLVMValueRef inst); unsigned LLVMInstIsCast (LLVMValueRef inst); unsigned LLVMInstIsLogicalShift (LLVMValueRef inst); unsigned LLVMInstIsArithmeticShift (LLVMValueRef inst); unsigned LLVMInstIsAssociative (LLVMValueRef inst); unsigned LLVMInstIsCommutative (LLVMValueRef inst); unsigned LLVMInstIsTrapping (LLVMValueRef inst); /* As above, but these are wrap methods from subclasses of Instruction. */ unsigned LLVMInstIsVolatile (LLVMValueRef inst); /* Wraps llvm::Instruction::getOpcodeName(). */ const char *LLVMInstGetOpcodeName(LLVMValueRef inst); /* Wraps llvm::Instruction::getOpcode(). */ unsigned LLVMInstGetOpcode(LLVMValueRef inst); /* Wraps llvm::CmpInst::getPredicate(). */ unsigned LLVMCmpInstGetPredicate(LLVMValueRef cmpinst); /* Wraps llvm::ParseAssemblyString(). Returns a module reference or NULL (with * `out' pointing to an error message). Dispose error message after use, via * LLVMDisposeMessage(). */ LLVMModuleRef LLVMGetModuleFromAssembly(const char *asmtxt, unsigned txten, char **out); /* Wraps llvm::ParseBitcodeFile(). Returns a module reference or NULL (with * `out' pointing to an error message). Dispose error message after use, via * LLVMDisposeMessage(). */ LLVMModuleRef LLVMGetModuleFromBitcode(const char *bc, unsigned bclen, char **out); #if HS_LLVM_VERSION < 302 /* Wraps llvm::Linker::LinkModules(). Returns 0 on failure (with errmsg * filled in) and 1 on success. Dispose error message after use with * LLVMDisposeMessage(). */ unsigned LLVMLinkModules(LLVMModuleRef dest, LLVMModuleRef src, unsigned mode, char **errmsg); #endif /* Returns pointer to a heap-allocated block of `*len' bytes containing bit code * for the given module. NULL on error. */ unsigned char *LLVMGetBitcodeFromModule(LLVMModuleRef module, unsigned *len); /* Wraps llvm::sys::DynamicLibrary::LoadLibraryPermanently(). Returns 0 on * failure (with errmsg filled in) and 1 on success. Dispose error message after * use, via LLVMDisposeMessage(). */ unsigned LLVMLoadLibraryPermanently(const char* filename, char **errmsg); /* Wraps llvm::ExecutionEngine::getPointerToFunction(). Returns a pointer * to the JITted function. */ void *LLVMGetPointerToFunction(LLVMExecutionEngineRef ee, LLVMValueRef fn); /* Wraps llvm::InlineFunction(). Inlines a function. C is the call * instruction, created by LLVMBuildCall. Even if it fails, the Function * containing the call is still in a proper state (not changed). */ int LLVMInlineFunction(LLVMValueRef call); #if HS_LLVM_VERSION >= 300 bool LLVMAddEmitObjectPass (LLVMModuleRef modRef, const char* filename); #endif /* All passes are listed in passes-inl.h * The list is shared between extra.cpp and extra.h. * * In this file the declare_or_define_pass macro is used to expand * the passes into function declarations. */ #define declare_or_define_pass(P) \ void LLVMAdd ## P ## Pass (LLVMPassManagerRef PM); #include "passes-inl.h" #undef declare_or_define_pass #if HS_LLVM_VERSION < 302 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, char **ErrorMessage); #endif #if HS_LLVM_VERSION < 303 LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRange( const char *InputData, size_t InputDataLength, const char *BufferName, LLVMBool RequiresNullTerminator); LLVMMemoryBufferRef LLVMCreateMemoryBufferWithMemoryRangeCopy( const char *InputData, size_t InputDataLength, const char *BufferName); #endif #ifdef __cplusplus } /* extern "C" */ #endif #endif /* LLVM_PY_EXTRA_H */