BitReader.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*===-- llvm-c/BitReader.h - BitReader Library C Interface ------*- C++ -*-===*\
  2. |* *|
  3. |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
  4. |* Exceptions. *|
  5. |* See https://llvm.org/LICENSE.txt for license information. *|
  6. |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
  7. |* *|
  8. |*===----------------------------------------------------------------------===*|
  9. |* *|
  10. |* This header declares the C interface to libLLVMBitReader.a, which *|
  11. |* implements input of the LLVM bitcode format. *|
  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_BITREADER_H
  19. #define LLVM_C_BITREADER_H
  20. #include "llvm-c/ExternC.h"
  21. #include "llvm-c/Types.h"
  22. LLVM_C_EXTERN_C_BEGIN
  23. /**
  24. * @defgroup LLVMCBitReader Bit Reader
  25. * @ingroup LLVMC
  26. *
  27. * @{
  28. */
  29. /* Builds a module from the bitcode in the specified memory buffer, returning a
  30. reference to the module via the OutModule parameter. Returns 0 on success.
  31. Optionally returns a human-readable error message via OutMessage.
  32. This is deprecated. Use LLVMParseBitcode2. */
  33. LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
  34. char **OutMessage);
  35. /* Builds a module from the bitcode in the specified memory buffer, returning a
  36. reference to the module via the OutModule parameter. Returns 0 on success. */
  37. LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf,
  38. LLVMModuleRef *OutModule);
  39. /* This is deprecated. Use LLVMParseBitcodeInContext2. */
  40. LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
  41. LLVMMemoryBufferRef MemBuf,
  42. LLVMModuleRef *OutModule, char **OutMessage);
  43. LLVMBool LLVMParseBitcodeInContext2(LLVMContextRef ContextRef,
  44. LLVMMemoryBufferRef MemBuf,
  45. LLVMModuleRef *OutModule);
  46. /** Reads a module from the specified path, returning via the OutMP parameter
  47. a module provider which performs lazy deserialization. Returns 0 on success.
  48. Optionally returns a human-readable error message via OutMessage.
  49. This is deprecated. Use LLVMGetBitcodeModuleInContext2. */
  50. LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef,
  51. LLVMMemoryBufferRef MemBuf,
  52. LLVMModuleRef *OutM, char **OutMessage);
  53. /** Reads a module from the specified path, returning via the OutMP parameter a
  54. * module provider which performs lazy deserialization. Returns 0 on success. */
  55. LLVMBool LLVMGetBitcodeModuleInContext2(LLVMContextRef ContextRef,
  56. LLVMMemoryBufferRef MemBuf,
  57. LLVMModuleRef *OutM);
  58. /* This is deprecated. Use LLVMGetBitcodeModule2. */
  59. LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
  60. char **OutMessage);
  61. LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM);
  62. /**
  63. * @}
  64. */
  65. LLVM_C_EXTERN_C_END
  66. #endif