package jasmin
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
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/src/jasmin.jasmin/fInfo.ml.html
Source file fInfo.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55open Annotations type returnaddress_kind = | OnStack | OnReg type f_annot = { retaddr_kind : returnaddress_kind option; stack_allocation_size : Z.t option; stack_size : Z.t option; stack_align : wsize option; max_call_depth : Z.t option; stack_zero_strategy : (Stack_zero_strategy.stack_zero_strategy * wsize option) option; f_user_annot : annotations; } let f_annot_empty = { retaddr_kind = None; stack_allocation_size = None; stack_size = None; stack_align = None; max_call_depth = None; stack_zero_strategy = None; f_user_annot = []; } type call_conv = | Export (** The function should be exported to the outside word *) | Subroutine (** internal function that should not be inlined *) | Internal (** internal function that should be inlined *) let is_subroutine = function | Subroutine -> true | _ -> false let is_export = function | Export -> true | _ -> false (* ------------------------------------------------------------------------ *) type return_info = { ret_annot : Annotations.annotations list; (* annotation attached to return type *) ret_loc : Location.t; (* location of the return statement *) } (* ------------------------------------------------------------------------ *) type t = Location.t * f_annot * call_conv * return_info let entry_info (fi: t) : IInfo.t = let (fl, _, _, _) = fi in (Location.i_loc0 fl, []) let ret_info (fi: t) : IInfo.t = let (_, _, _, ri) = fi in (Location.i_loc0 ri.ret_loc, [])
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>