jon.recoil.org

Module Cmo_format

type modname = string
type crcs = (Cmo_format.modname * Stdlib.Digest.t option) list
type compunit =
  1. | Compunit of string
type predef =
  1. | Predef_exn of string
type reloc_info =
  1. | Reloc_literal of Stdlib.Obj.t
  2. | Reloc_getcompunit of Cmo_format.compunit
  3. | Reloc_getpredef of Cmo_format.predef
  4. | Reloc_setcompunit of Cmo_format.compunit
  5. | Reloc_primitive of string
type compilation_unit = {
  1. cu_name : Cmo_format.compunit;
  2. mutable cu_pos : int;
  3. cu_codesize : int;
  4. cu_reloc : (Cmo_format.reloc_info * int) list;
  5. cu_imports : Cmo_format.crcs;
  6. cu_required_compunits : Cmo_format.compunit list;
  7. cu_primitives : string list;
  8. mutable cu_debug : int;
  9. cu_debugsize : int;
}
type library = {
  1. lib_units : Cmo_format.compilation_unit list;
  2. lib_custom : bool;
  3. lib_ccobjs : string list;
  4. lib_ccopts : string list;
  5. lib_dllibs : string list;
}