Allow passing around LLVMContext in ocaml.
[oota-llvm.git] / bindings / ocaml / bitreader / bitreader_ocaml.c
1 /*===-- bitwriter_ocaml.c - LLVM Ocaml Glue ---------------------*- 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 file glues LLVM's ocaml interface to its C interface. These functions *|
11 |* are by and large transparent wrappers to the corresponding C functions.    *|
12 |*                                                                            *|
13 \*===----------------------------------------------------------------------===*/
14
15 #include "llvm-c/BitReader.h"
16 #include "caml/alloc.h"
17 #include "caml/fail.h"
18 #include "caml/memory.h"
19
20
21 /* Can't use the recommended caml_named_value mechanism for backwards
22    compatibility reasons. This is largely equivalent. */
23 static value llvm_bitreader_error_exn;
24
25 CAMLprim value llvm_register_bitreader_exns(value Error) {
26   llvm_bitreader_error_exn = Field(Error, 0);
27   register_global_root(&llvm_bitreader_error_exn);
28   return Val_unit;
29 }
30
31 static void llvm_raise(value Prototype, char *Message) {
32   CAMLparam1(Prototype);
33   CAMLlocal1(CamlMessage);
34   
35   CamlMessage = copy_string(Message);
36   LLVMDisposeMessage(Message);
37   
38   raise_with_arg(Prototype, CamlMessage);
39   abort(); /* NOTREACHED */
40 #ifdef CAMLnoreturn
41   CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
42 #endif
43 }
44
45
46 /*===-- Modules -----------------------------------------------------------===*/
47
48 /* Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule */
49 CAMLprim value llvm_get_module_provider(LLVMContextRef C,
50                                         LLVMMemoryBufferRef MemBuf) {
51   CAMLparam0();
52   CAMLlocal2(Variant, MessageVal);
53   char *Message;
54   
55   LLVMModuleProviderRef MP;
56   if (LLVMGetBitcodeModuleProviderInContext(C, MemBuf, &MP, &Message))
57     llvm_raise(llvm_bitreader_error_exn, Message);
58   
59   CAMLreturn((value) MemBuf);
60 }
61
62 /* Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule */
63 CAMLprim value llvm_parse_bitcode(LLVMContextRef C,
64                                   LLVMMemoryBufferRef MemBuf) {
65   CAMLparam0();
66   CAMLlocal2(Variant, MessageVal);
67   LLVMModuleRef M;
68   char *Message;
69   
70   if (LLVMParseBitcodeInContext(C, MemBuf, &M, &Message))
71     llvm_raise(llvm_bitreader_error_exn, Message);
72   
73   CAMLreturn((value) M);
74 }