package llvm

  1. Overview
  2. Docs
The OCaml bindings distributed with LLVM

Install

Dune Dependency

Authors

Maintainers

Sources

llvm-project-19.1.7.src.tar.xz
sha256=82401fea7b79d0078043f7598b835284d6650a75b93e64b6f761ea7b63097501
md5=0333b37c90e183d5298470d5b70a87e4

doc/llvm_bitwriter/Llvm_bitwriter/index.html

Module Llvm_bitwriter

Bitcode 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 -> bool

write_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 -> bool

write_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.llmemorybuffer

write_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 -> bool

output_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.

OCaml

Innovation. Community. Security.