Home | History | Annotate | Download | only in bitreader

Lines Matching refs:the

3  *                     The LLVM Compiler Infrastructure
5 * This file is distributed under the University of Illinois Open Source
12 This interface provides an ocaml API for the LLVM bitcode reader, the
13 classes in the Bitreader library. *)
17 (** [get_module context mb] reads the bitcode for a new module [m] from the
18 memory buffer [mb] in the context [context]. Returns [m] if successful, or
19 raises [Error msg] otherwise, where [msg] is a description of the error
20 encountered. See the function [llvm::getBitcodeModule]. *)
24 (** [parse_bitcode context mb] parses the bitcode for a new module [m] from the
25 memory buffer [mb] in the context [context]. Returns [m] if successful, or
26 raises [Error msg] otherwise, where [msg] is a description of the error
27 encountered. See the function [llvm::ParseBitcodeFile]. *)