Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.5 KiB

  1. /*===-- llvm-c/Analysis.h - Analysis Library C Interface --------*- C++ -*-===*\
  2. |* *|
  3. |* The LLVM Compiler Infrastructure *|
  4. |* *|
  5. |* This file is distributed under the University of Illinois Open Source *|
  6. |* License. See LICENSE.TXT for details. *|
  7. |* *|
  8. |*===----------------------------------------------------------------------===*|
  9. |* *|
  10. |* This header declares the C interface to libLLVMAnalysis.a, which *|
  11. |* implements various analyses of the LLVM IR. *|
  12. |* *|
  13. |* Many exotic languages can interoperate with C code but have a harder time *|
  14. |* with C++ due to name mangling. So in addition to C, this interface enables *|
  15. |* tools written in such languages. *|
  16. |* *|
  17. \*===----------------------------------------------------------------------===*/
  18. #ifndef LLVM_C_ANALYSIS_H
  19. #define LLVM_C_ANALYSIS_H
  20. #include "llvm-c/Core.h"
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @defgroup LLVMCAnalysis Analysis
  26. * @ingroup LLVMC
  27. *
  28. * @{
  29. */
  30. typedef enum {
  31. LLVMAbortProcessAction, /* verifier will print to stderr and abort() */
  32. LLVMPrintMessageAction, /* verifier will print to stderr and return 1 */
  33. LLVMReturnStatusAction /* verifier will just return 1 */
  34. } LLVMVerifierFailureAction;
  35. /* Verifies that a module is valid, taking the specified action if not.
  36. Optionally returns a human-readable description of any invalid constructs.
  37. OutMessage must be disposed with LLVMDisposeMessage. */
  38. LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
  39. char **OutMessage);
  40. /* Verifies that a single function is valid, taking the specified action. Useful
  41. for debugging. */
  42. LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
  43. /* Open up a ghostview window that displays the CFG of the current function.
  44. Useful for debugging. */
  45. void LLVMViewFunctionCFG(LLVMValueRef Fn);
  46. void LLVMViewFunctionCFGOnly(LLVMValueRef Fn);
  47. /**
  48. * @}
  49. */
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif