2007-10-06 23:00:36 +02:00
|
|
|
/*===-- llvm-c/Analysis.h - Analysis Library C Interface --------*- C++ -*-===*\
|
|
|
|
|* *|
|
|
|
|
|* The LLVM Compiler Infrastructure *|
|
|
|
|
|* *|
|
2007-12-29 20:59:42 +01:00
|
|
|
|* This file is distributed under the University of Illinois Open Source *|
|
|
|
|
|* License. See LICENSE.TXT for details. *|
|
2007-10-06 23:00:36 +02:00
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
|
|
|
|* This header declares the C interface to libLLVMAnalysis.a, which *|
|
|
|
|
|* implements various analyses of the LLVM IR. *|
|
|
|
|
|* *|
|
|
|
|
|* Many exotic languages can interoperate with C code but have a harder time *|
|
|
|
|
|* with C++ due to name mangling. So in addition to C, this interface enables *|
|
|
|
|
|* tools written in such languages. *|
|
|
|
|
|* *|
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#ifndef LLVM_C_ANALYSIS_H
|
|
|
|
#define LLVM_C_ANALYSIS_H
|
|
|
|
|
|
|
|
#include "llvm-c/Core.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-03-21 04:54:29 +01:00
|
|
|
/**
|
|
|
|
* @defgroup LLVMCAnalysis Analysis
|
|
|
|
* @ingroup LLVMC
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2007-10-06 23:00:36 +02:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
LLVMAbortProcessAction, /* verifier will print to stderr and abort() */
|
|
|
|
LLVMPrintMessageAction, /* verifier will print to stderr and return 1 */
|
|
|
|
LLVMReturnStatusAction /* verifier will just return 1 */
|
|
|
|
} LLVMVerifierFailureAction;
|
|
|
|
|
|
|
|
|
|
|
|
/* Verifies that a module is valid, taking the specified action if not.
|
2007-12-19 23:30:40 +01:00
|
|
|
Optionally returns a human-readable description of any invalid constructs.
|
|
|
|
OutMessage must be disposed with LLVMDisposeMessage. */
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
|
|
|
|
char **OutMessage);
|
2007-10-06 23:00:36 +02:00
|
|
|
|
|
|
|
/* Verifies that a single function is valid, taking the specified action. Useful
|
|
|
|
for debugging. */
|
2010-01-09 23:27:07 +01:00
|
|
|
LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
|
2007-10-06 23:00:36 +02:00
|
|
|
|
2008-03-31 18:22:09 +02:00
|
|
|
/* Open up a ghostview window that displays the CFG of the current function.
|
|
|
|
Useful for debugging. */
|
|
|
|
void LLVMViewFunctionCFG(LLVMValueRef Fn);
|
|
|
|
void LLVMViewFunctionCFGOnly(LLVMValueRef Fn);
|
2007-10-06 23:00:36 +02:00
|
|
|
|
2012-03-21 04:54:29 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2007-10-06 23:00:36 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|