mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-24 22:32:47 +00:00
e3227ca292
In practice this means: * Always using -g flag. * Embedding -cclib -lstdc++ into the corresponding cma/cmxa file. This also moves -lstdc++ in a single place. * Using caml_named_value instead of a homegrown mechanism. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220843 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
1.9 KiB
C
47 lines
1.9 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"
|
|
#include "caml/callback.h"
|
|
|
|
static void llvm_raise(value Prototype, char *Message) {
|
|
CAMLparam1(Prototype);
|
|
CAMLlocal1(CamlMessage);
|
|
|
|
CamlMessage = copy_string(Message);
|
|
LLVMDisposeMessage(Message);
|
|
|
|
raise_with_arg(Prototype, CamlMessage);
|
|
CAMLnoreturn;
|
|
}
|
|
|
|
/*===-- IRReader ----------------------------------------------------------===*/
|
|
|
|
/* 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(*caml_named_value("Llvm_irreader.Error"), Message);
|
|
|
|
CAMLreturn((value) M);
|
|
}
|