Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 1 | //===-- BitReader.cpp -----------------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm-c/BitReader.h" |
| 11 | #include "llvm/Bitcode/ReaderWriter.h" |
| 12 | #include "llvm/Support/MemoryBuffer.h" |
| 13 | #include <string> |
Anton Korobeynikov | ae9f3a3 | 2008-02-20 11:08:44 +0000 | [diff] [blame] | 14 | #include <cstring> |
Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 15 | |
| 16 | using namespace llvm; |
| 17 | |
Gordon Henriksen | da1435f | 2007-12-19 22:30:40 +0000 | [diff] [blame] | 18 | /* Builds a module from the bitcode in the specified memory buffer, returning a |
| 19 | reference to the module via the OutModule parameter. Returns 0 on success. |
| 20 | Optionally returns a human-readable error message via OutMessage. */ |
| 21 | int LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, |
| 22 | LLVMModuleRef *OutModule, char **OutMessage) { |
Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 23 | std::string Message; |
| 24 | |
Gordon Henriksen | da1435f | 2007-12-19 22:30:40 +0000 | [diff] [blame] | 25 | *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), &Message)); |
Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 26 | if (!*OutModule) { |
| 27 | if (OutMessage) |
| 28 | *OutMessage = strdup(Message.c_str()); |
| 29 | return 1; |
| 30 | } |
| 31 | |
| 32 | return 0; |
| 33 | } |
| 34 | |
Gordon Henriksen | da1435f | 2007-12-19 22:30:40 +0000 | [diff] [blame] | 35 | /* Reads a module from the specified path, returning via the OutModule parameter |
| 36 | a module provider which performs lazy deserialization. Returns 0 on success. |
| 37 | Optionally returns a human-readable error message via OutMessage. */ |
| 38 | int LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf, |
| 39 | LLVMModuleProviderRef *OutMP, |
| 40 | char **OutMessage) { |
| 41 | std::string Message; |
| 42 | |
| 43 | *OutMP = wrap(getBitcodeModuleProvider(unwrap(MemBuf), &Message)); |
| 44 | if (!*OutMP) { |
| 45 | if (OutMessage) |
| 46 | *OutMessage = strdup(Message.c_str()); |
| 47 | return 1; |
| 48 | } |
| 49 | |
| 50 | return 0; |
Gordon Henriksen | bbc6597 | 2007-12-11 00:20:48 +0000 | [diff] [blame] | 51 | } |