Llvm_bitwriterBitcode writer.
This interface provides an OCaml API for the LLVM bitcode writer, the classes in the Bitwriter library.
val write_bitcode_file : Llvm.llmodule -> string -> boolwrite_bitcode_file m path writes the bitcode for module m to the file at path. Returns true if successful, false otherwise.
val write_bitcode_to_fd :
?unbuffered:bool ->
Llvm.llmodule ->
Unix.file_descr ->
boolwrite_bitcode_to_fd ~unbuffered fd m writes the bitcode for module m to the channel c. If unbuffered is true, after every write the fd will be flushed. Returns true if successful, false otherwise.
val write_bitcode_to_memory_buffer : Llvm.llmodule -> Llvm.llmemorybufferwrite_bitcode_to_memory_buffer m returns a memory buffer containing the bitcode for module m.
val output_bitcode :
?unbuffered:bool ->
Stdlib.out_channel ->
Llvm.llmodule ->
booloutput_bitcode ~unbuffered c m writes the bitcode for module m to the channel c. If unbuffered is true, after every write the fd will be flushed. Returns true if successful, false otherwise.