mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
fe15a570ea
llvm-svn: 194138
60 lines
2.3 KiB
C
60 lines
2.3 KiB
C
/*===-- 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"
|
|
|
|
/* Can't use the recommended caml_named_value mechanism for backwards
|
|
compatibility reasons. This is largely equivalent. */
|
|
static value llvm_irreader_error_exn;
|
|
|
|
CAMLprim value llvm_register_irreader_exns(value Error) {
|
|
llvm_irreader_error_exn = Field(Error, 0);
|
|
register_global_root(&llvm_irreader_error_exn);
|
|
return Val_unit;
|
|
}
|
|
|
|
static void llvm_raise(value Prototype, char *Message) {
|
|
CAMLparam1(Prototype);
|
|
CAMLlocal1(CamlMessage);
|
|
|
|
CamlMessage = copy_string(Message);
|
|
LLVMDisposeMessage(Message);
|
|
|
|
raise_with_arg(Prototype, CamlMessage);
|
|
abort(); /* NOTREACHED */
|
|
#ifdef CAMLnoreturn
|
|
CAMLnoreturn; /* Silences warnings, but is missing in some versions. */
|
|
#endif
|
|
}
|
|
|
|
|
|
/*===-- Modules -----------------------------------------------------------===*/
|
|
|
|
/* 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))
|
|
llvm_raise(llvm_irreader_error_exn, Message);
|
|
|
|
CAMLreturn((value) M);
|
|
}
|