package ocaml-solo5

  1. Overview
  2. Docs
OCaml cross-compiler to the freestanding Solo5 backend

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v1.3.3.tar.gz
md5=47876167068345542f49279e8fd28896
sha512=272081ec51a6ed69c08e4e8fa64fee3df53fd84c66c0c07a653891c88b342cf74553e1c95711e4fbc18922c899a3448a649f3bd9858f8d89cae834ad2b67fffb

doc/compiler-libs.common/Cmo_format/index.html

Module Cmo_format

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