Remove some lines that are nonportable to Ocaml 3.06.
[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 }
41
42
43 /*===-- Modules -----------------------------------------------------------===*/
44
45 /* Llvm.llmemorybuffer -> Llvm.module */
46 CAMLprim value llvm_get_module_provider(LLVMMemoryBufferRef MemBuf) {
47   CAMLparam0();
48   CAMLlocal2(Variant, MessageVal);
49   char *Message;
50   
51   LLVMModuleProviderRef MP;
52   if (LLVMGetBitcodeModuleProvider(MemBuf, &MP, &Message))
53     llvm_raise(llvm_bitreader_error_exn, Message);
54   
55   CAMLreturn((value) MemBuf);
56 }
57
58 /* Llvm.llmemorybuffer -> Llvm.llmodule */
59 CAMLprim value llvm_parse_bitcode(LLVMMemoryBufferRef MemBuf) {
60   CAMLparam0();
61   CAMLlocal2(Variant, MessageVal);
62   LLVMModuleRef M;
63   char *Message;
64   
65   if (LLVMParseBitcode(MemBuf, &M, &Message))
66     llvm_raise(llvm_bitreader_error_exn, Message);
67   
68   CAMLreturn((value) M);
69 }