2013-11-06 09:21:25 +00:00
|
|
|
/*===-- irreader_ocaml.c - LLVM OCaml Glue ----------------------*- C++ -*-===*\
|
|
|
|
|* *|
|
|
|
|
|* The LLVM Compiler Infrastructure *|
|
|
|
|
|* *|
|
|
|
|
|* This file is distributed under the University of Illinois Open Source *|
|
|
|
|
|* License. See LICENSE.TXT for details. *|
|
|
|
|
|* *|
|
|
|
|
|*===----------------------------------------------------------------------===*|
|
|
|
|
|* *|
|
|
|
|
|* This file glues LLVM's OCaml interface to its C interface. These functions *|
|
|
|
|
|* are by and large transparent wrappers to the corresponding C functions. *|
|
|
|
|
|* *|
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#include "llvm-c/IRReader.h"
|
|
|
|
#include "caml/alloc.h"
|
|
|
|
#include "caml/fail.h"
|
|
|
|
#include "caml/memory.h"
|
2014-10-29 08:15:54 +00:00
|
|
|
#include "caml/callback.h"
|
2013-11-06 09:21:25 +00:00
|
|
|
|
|
|
|
static void llvm_raise(value Prototype, char *Message) {
|
|
|
|
CAMLparam1(Prototype);
|
|
|
|
CAMLlocal1(CamlMessage);
|
|
|
|
|
|
|
|
CamlMessage = copy_string(Message);
|
|
|
|
LLVMDisposeMessage(Message);
|
|
|
|
|
|
|
|
raise_with_arg(Prototype, CamlMessage);
|
2014-10-29 08:15:54 +00:00
|
|
|
CAMLnoreturn;
|
2013-11-06 09:21:25 +00:00
|
|
|
}
|
|
|
|
|
2014-10-29 08:15:54 +00:00
|
|
|
/*===-- IRReader ----------------------------------------------------------===*/
|
2013-11-06 09:21:25 +00:00
|
|
|
|
|
|
|
/* Llvm.llcontext -> Llvm.llmemorybuffer -> Llvm.llmodule */
|
|
|
|
CAMLprim value llvm_parse_ir(LLVMContextRef C,
|
|
|
|
LLVMMemoryBufferRef MemBuf) {
|
|
|
|
CAMLparam0();
|
|
|
|
CAMLlocal2(Variant, MessageVal);
|
|
|
|
LLVMModuleRef M;
|
|
|
|
char *Message;
|
|
|
|
|
|
|
|
if (LLVMParseIRInContext(C, MemBuf, &M, &Message))
|
2014-10-29 08:15:54 +00:00
|
|
|
llvm_raise(*caml_named_value("Llvm_irreader.Error"), Message);
|
2013-11-06 09:21:25 +00:00
|
|
|
|
|
|
|
CAMLreturn((value) M);
|
|
|
|
}
|