package jasmin

  1. Overview
  2. Docs
Compiler for High-Assurance and High-Speed Cryptography

Install

dune-project
 Dependency

Authors

Maintainers

Sources

jasmin-compiler-v2025.06.2.tar.bz2
sha256=aa0d21f532c1560a0939244cfd1c8414ba2b42c9d1403960f458500446cb1ebb

doc/jasmin.jasmin/Jasmin/FInfo/index.html

Module Jasmin.FInfoSource

Sourcetype returnaddress_kind =
  1. | OnStack
  2. | OnReg
Sourcetype f_annot = {
  1. retaddr_kind : returnaddress_kind option;
  2. stack_allocation_size : Z.t option;
  3. stack_size : Z.t option;
  4. stack_align : Annotations.wsize option;
  5. max_call_depth : Z.t option;
  6. stack_zero_strategy : (Stack_zero_strategy.stack_zero_strategy * Annotations.wsize option) option;
  7. f_user_annot : Annotations.annotations;
}
Sourceval f_annot_empty : f_annot
Sourcetype call_conv =
  1. | Export
    (*

    The function should be exported to the outside word

    *)
  2. | Subroutine
    (*

    internal function that should not be inlined

    *)
  3. | Internal
    (*

    internal function that should be inlined

    *)
Sourceval is_subroutine : call_conv -> bool
Sourceval is_export : call_conv -> bool
Sourcetype return_info = {
  1. ret_annot : Annotations.annotations list;
  2. ret_loc : Location.t;
}
Sourceval entry_info : t -> IInfo.t
Sourceval ret_info : t -> IInfo.t