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-v2026.03.0.tar.bz2
sha256=dec62a3cd0cd42cfe96ec64b3cd3961e0e8a09fb92ceb64175cffb54fde50e40
doc/src/jasmin.jasmin/printFexpr.ml.html
Source file printFexpr.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 27open Fexpr open PrintCommon let rec pp_fexpr side prio fmt = function | Fconst z -> Z.pp_print fmt (Conv.z_of_cz z) | Fvar x -> pp_var_i fmt x | Fapp1 (op, e) -> let p = priority_of_op1 op in (* no casts left at this stage, so the value of [debug] has no impact *) let sop = string_of_op1 ~debug:false op in optparent fmt prio side p "%s %a" sop (pp_fexpr NoAssoc p) e | Fapp2 (op, e1, e2) -> let p = priority_of_op2 op in optparent fmt prio side p "%a %s %a" (pp_fexpr Left p) e1 (string_of_op2 op) (pp_fexpr Right p) e2 | Fif (c, e1, e2) -> let p = priority_ternary in optparent fmt prio side p "%a ? %a : %a" (pp_fexpr Left p) c (pp_fexpr NoAssoc p) e1 (pp_fexpr Right p) e2 let pp_fexpr = pp_fexpr NoAssoc priority_min let pp_rexpr fmt = function | Rexpr e -> pp_fexpr fmt e | Load (al, sz, e) -> pp_mem_access pp_fexpr fmt al (Some sz) e let pp_lexpr fmt = function | LLvar x -> pp_var_i fmt x | Store (al, sz, e) -> pp_mem_access pp_fexpr fmt al (Some sz) e
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>