2013-11-01 00:26:01 +00:00
|
|
|
(*===-- llvm_bitwriter.ml - LLVM OCaml Interface ----------------*- C++ -*-===*
|
2007-09-18 12:49:39 +00:00
|
|
|
*
|
|
|
|
* The LLVM Compiler Infrastructure
|
|
|
|
*
|
2007-12-29 22:59:10 +00:00
|
|
|
* This file is distributed under the University of Illinois Open Source
|
|
|
|
* License. See LICENSE.TXT for details.
|
2007-09-18 12:49:39 +00:00
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===
|
|
|
|
*
|
2013-11-01 00:26:01 +00:00
|
|
|
* This interface provides an OCaml API for the LLVM intermediate
|
2007-09-18 12:49:39 +00:00
|
|
|
* representation, the classes in the VMCore library.
|
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===*)
|
|
|
|
|
|
|
|
|
|
|
|
(* Writes the bitcode for module the given path. Returns true if successful. *)
|
|
|
|
external write_bitcode_file : Llvm.llmodule -> string -> bool
|
|
|
|
= "llvm_write_bitcode_file"
|
2010-03-06 00:30:06 +00:00
|
|
|
|
|
|
|
external write_bitcode_to_fd : ?unbuffered:bool -> Llvm.llmodule
|
|
|
|
-> Unix.file_descr -> bool
|
|
|
|
= "llvm_write_bitcode_to_fd"
|
|
|
|
|
|
|
|
let output_bitcode ?unbuffered channel m =
|
|
|
|
write_bitcode_to_fd ?unbuffered m (Unix.descr_of_out_channel channel)
|