package libsail
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Sail is a language for describing the instruction semantics of processors
Install
dune-project
Dependency
Authors
Maintainers
Sources
sail-0.20.3.tbz
sha256=0b223ed83f521ad87eaacd88186390fbaf0b944f63c6a04a3ebdf96a1ff5a60c
sha512=83298218175c7a9ff7f0a304021287a2b9c20523cb16e1b8bf0ede81fa8e256a32b309626bc1553a5b46d68e44821524c27a5de0fb2f2d7f013025f61ce76519
doc/src/libsail/constant_propagation_mutrec.ml.html
Source file constant_propagation_mutrec.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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285(****************************************************************************) (* Sail *) (* *) (* Sail and the Sail architecture models here, comprising all files and *) (* directories except the ASL-derived Sail code in the aarch64 directory, *) (* are subject to the BSD two-clause licence below. *) (* *) (* The ASL derived parts of the ARMv8.3 specification in *) (* aarch64/no_vector and aarch64/full are copyright ARM Ltd. *) (* *) (* Copyright (c) 2013-2021 *) (* Kathyrn Gray *) (* Shaked Flur *) (* Stephen Kell *) (* Gabriel Kerneis *) (* Robert Norton-Wright *) (* Christopher Pulte *) (* Peter Sewell *) (* Alasdair Armstrong *) (* Brian Campbell *) (* Thomas Bauereiss *) (* Anthony Fox *) (* Jon French *) (* Dominic Mulligan *) (* Stephen Kell *) (* Mark Wassell *) (* Alastair Reid (Arm Ltd) *) (* *) (* All rights reserved. *) (* *) (* This work was partially supported by EPSRC grant EP/K008528/1 <a *) (* href="http://www.cl.cam.ac.uk/users/pes20/rems">REMS: Rigorous *) (* Engineering for Mainstream Systems</a>, an ARM iCASE award, EPSRC IAA *) (* KTF funding, and donations from Arm. This project has received *) (* funding from the European Research Council (ERC) under the European *) (* Union’s Horizon 2020 research and innovation programme (grant *) (* agreement No 789108, ELVER). *) (* *) (* This software was developed by SRI International and the University of *) (* Cambridge Computer Laboratory (Department of Computer Science and *) (* Technology) under DARPA/AFRL contracts FA8650-18-C-7809 ("CIFV") *) (* and FA8750-10-C-0237 ("CTSRD"). *) (* *) (* SPDX-License-Identifier: BSD-2-Clause *) (****************************************************************************) open Ast open Ast_compare open Ast_defs open Ast_util open Type_check open Rewriter (* Unroll mutually recursive calls, starting with the functions given as targets on the command line, by looking for recursive calls with (some) constant arguments, and creating copies of those functions with the constants propagated in. This may cause branches with mutually recursively calls to disappear, breaking the mutually recursive cycle. *) let targets = ref ([] : id list) let rec is_const_exp exp = match unaux_exp exp with (* Enum constructors are constants too; ordinary local identifiers are not. *) | E_id id -> ( match Env.lookup_id id (env_of exp) with Enum _ -> true | _ -> false ) | E_lit (L_aux ((L_true | L_false | L_bin [Non_empty (_, [])] | L_num _), _)) -> true | E_vector es -> List.for_all is_const_exp es && is_bitvector_typ (typ_of exp) | E_struct (_, fes) -> List.for_all is_const_fexp fes | E_typ (_, e) -> is_const_exp e | _ -> false and is_const_fexp (FE_aux (FE_fexp (_, e), _)) = is_const_exp e let recheck_exp exp = check_exp (env_of exp) (strip_exp exp) (typ_of exp) (* Explicit source annotations must agree with the specialized val spec. *) let specialize_pexp_types ksubsts = let typ = KBindings.fold typ_subst ksubsts in let nexp = KBindings.fold nexp_subst ksubsts in let nc = KBindings.fold constraint_subst ksubsts in fold_pexp { id_exp_alg with pat_alg = { id_pat_alg with p_typ = (fun (t, p) -> P_typ (typ t, p)) }; e_typ = (fun (t, e) -> E_typ (typ t, e)); le_typ = (fun (t, id) -> LE_typ (typ t, id)); e_sizeof = (fun n -> E_sizeof (nexp n)); e_constraint = (fun c -> E_constraint (nc c)); e_internal_assume = (fun (c, e) -> E_internal_assume (nc c, e)); } (* Name function copy by encoding values of constant arguments *) let generate_fun_id id args = let rec suffix exp = match unaux_exp exp with | E_lit (L_aux (L_bin [Non_empty (b, [])], _)) -> ( match b with Bin_0 -> "0" | Bin_1 -> "1" ) | E_lit (L_aux (L_true, _)) -> "T" | E_lit (L_aux (L_false, _)) -> "F" | E_struct (_, fes) when is_const_exp exp -> let fsuffix (FE_aux (FE_fexp (id, e), _)) = suffix e in "struct" ^ Util.zencode_string (string_of_typ (typ_of exp)) ^ "#" ^ String.concat "" (List.map fsuffix fes) | E_vector es when is_const_exp exp -> String.concat "" (List.map suffix es) | E_typ (_, e) -> suffix e | _ -> if is_const_exp exp then "#" ^ Util.zencode_string (string_of_exp exp) else "v" in append_id id ("#mutrec_" ^ String.concat "" (List.map suffix args)) (* Generate a val spec for a function copy, removing the constant arguments that will be propagated in *) let generate_val_spec env id args l annot = match Env.get_val_spec_orig id env with | tq, Typ_aux (Typ_fn (arg_typs, ret_typ), _) -> let constant_kids = List.fold_left2 (fun kids arg typ -> if is_const_exp arg then KidSet.union kids (tyvars_of_typ typ) else kids) KidSet.empty args arg_typs in (* Get instantiation of type variables at call site *) let orig_ksubst (kid, typ_arg) = match typ_arg with | A_aux ((A_nexp _ | A_bool _), _) -> (orig_kid kid, typ_arg) | _ -> raise (Reporting.err_todo l "Propagation of polymorphic arguments not implemented") in let ksubsts = recheck_exp (E_aux (E_app (id, args), (l, annot))) |> instantiation_of |> KBindings.bindings |> List.map orig_ksubst (* Specialize type variables fixed by constant arguments; keep the rest polymorphic. *) |> List.filter (fun (kid, arg) -> KidSet.mem kid constant_kids && KidSet.is_empty (tyvars_of_typ_arg arg)) |> List.fold_left (fun s (v, i) -> KBindings.add v i s) KBindings.empty in (* Apply instantiation to original function type. Also collect the type variables in the new type together their kinds for the new val spec. *) let decl_env = Env.add_typquant l tq env in let kopts_of_typ typ = tyvars_of_typ typ |> KidSet.elements |> List.map (fun kid -> mk_kopt (Env.get_typ_var kid decl_env) kid) |> KOptSet.of_list in let ret_typ' = KBindings.fold typ_subst ksubsts ret_typ in let arg_typs', kopts' = List.fold_right2 (fun arg typ (arg_typs', kopts') -> if is_const_exp arg then (arg_typs', kopts') else ( let typ' = KBindings.fold typ_subst ksubsts typ in let arg_kopts = kopts_of_typ typ' in (typ' :: arg_typs', KOptSet.union arg_kopts kopts') ) ) args arg_typs ([], kopts_of_typ ret_typ') in let arg_typs' = if arg_typs' = [] then [unit_typ] else arg_typs' in let typ' = mk_typ (Typ_fn (arg_typs', ret_typ')) in (* Construct new val spec *) let constraints' = quant_split tq |> snd |> List.map (KBindings.fold constraint_subst ksubsts) |> List.filter (fun nc -> KidSet.subset (tyvars_of_constraint nc) (tyvars_of_typ typ')) in let quant_items' = List.map mk_qi_kopt (KOptSet.elements kopts') @ List.map mk_qi_nc constraints' in let typschm = mk_typschm quant_items' typ' in (mk_val_spec (VS_val_spec (typschm, generate_fun_id id args, None)), ksubsts) | _, Typ_aux (_, l) -> raise (Reporting.err_unreachable l __POS__ "Function val spec is not a function type") let const_prop target env defs substs ksubsts exp = (* Constant_propagation currently only supports nexps for kid substitutions *) let nexp_substs = KBindings.bindings ksubsts |> List.map (function kid, A_aux (A_nexp n, _) -> [(kid, n)] | _ -> []) |> List.concat |> List.fold_left (fun s (v, i) -> KBindings.add v i s) KBindings.empty in Constant_propagation.const_prop target env defs (Constant_propagation.referenced_vars exp) (substs, nexp_substs) Bindings.empty exp |> fst (* Propagate constant arguments into function clause pexp *) let prop_args_pexp target env ast ksubsts args pexp = let pat, guard, exp, annot = destruct_pexp pexp in let pats = match pat with P_aux (P_tuple pats, _) -> pats | _ -> [pat] in let match_arg (E_aux (_, (l, _)) as arg) pat (pats, substs) = if is_const_exp arg then ( match pat with | P_aux (P_id id, _) | P_aux (P_typ (_, P_aux (P_id id, _)), _) -> (pats, Bindings.add id arg substs) | P_aux (P_wild, _) | P_aux (P_typ (_, P_aux (P_wild, _)), _) -> (pats, substs) | _ -> raise (Reporting.err_todo l ("Unsupported pattern match in propagation of constant arguments: " ^ string_of_exp arg ^ " and " ^ string_of_pat pat ) ) ) else (pat :: pats, substs) in let pats, substs = List.fold_right2 match_arg args pats ([], Bindings.empty) in let exp' = const_prop target env ast substs ksubsts exp in let pat' = match pats with [pat] -> pat | _ -> P_aux (P_tuple pats, (Parse_ast.Unknown, empty_tannot)) in construct_pexp (pat', guard, exp', annot) (* Apply the same constant arguments to a copied function's termination measure. *) let specialize_rec_opt target env ast ksubsts args = function | Rec_aux (Rec_measure (pat, (E_aux (_, ann) as exp)), loc) -> let pat, _, exp, _ = construct_pexp (pat, None, exp, ann) |> prop_args_pexp target env ast ksubsts args |> specialize_pexp_types ksubsts |> destruct_pexp in Rec_aux (Rec_measure (strip_pat pat, strip_exp exp), loc) | Rec_aux (Rec_rec, loc) -> Rec_aux (Rec_rec, loc) | Rec_aux (Rec_nonrec, loc) -> Rec_aux (Rec_nonrec, loc) let rewrite_ast target effect_info env ({ defs; _ } as ast) = let effect_info = ref effect_info in let rec rewrite acc = function | [] -> List.rev acc | DEF_aux (DEF_internal_mutrec mutrecs, def_annot) :: ds -> let mutrec_ids = IdSet.of_list (List.map id_of_fundef mutrecs) in let valspecs = ref ([] : untyped_def list) in let fundefs = ref ([] : untyped_def list) in (* Try to replace mutually recursive calls that have some constant arguments *) let rec e_app (id, args) (l, annot) = if IdSet.mem id mutrec_ids && List.exists is_const_exp args then ( let id' = generate_fun_id id args in effect_info := Effects.copy_function_effect id !effect_info id'; let args' = match List.filter (fun e -> not (is_const_exp e)) args with | [] -> [infer_exp env (mk_lit_exp L_unit)] | args' -> args' in if not (IdSet.mem id' (ids_of_defs !valspecs)) then ( (* Generate copy of function with constant arguments propagated in *) let (FD_aux (FD_function (rec_opt, _, fcls), _)) = List.find (fun fd -> Id.compare id (id_of_fundef fd) = 0) mutrecs in let valspec, ksubsts = generate_val_spec env id args l annot in let rec_opt = specialize_rec_opt target env ast ksubsts args rec_opt in let const_prop_funcl (FCL_aux (FCL_funcl (_, pexp), (fcl_def_annot, _))) = let pexp' = prop_args_pexp target env ast ksubsts args pexp |> rewrite_pexp |> strip_pexp |> specialize_pexp_types ksubsts in FCL_aux (FCL_funcl (id', pexp'), (def_annot_map_loc gen_loc fcl_def_annot, empty_uannot)) in valspecs := valspec :: !valspecs; let tannot_opt = Typ_annot_opt_aux (Typ_annot_opt_none, l) in let fundef = FD_aux (FD_function (rec_opt, tannot_opt, List.map const_prop_funcl fcls), no_annot) in fundefs := DEF_aux (DEF_fundef fundef, mk_def_annot l ()) :: !fundefs ) else (); E_aux (E_app (id', args'), (l, annot)) ) else E_aux (E_app (id, args), (l, annot)) and e_aux (e, (l, annot)) = match e with E_app (id, args) -> e_app (id, args) (l, annot) | _ -> E_aux (e, (l, annot)) and rewrite_pexp pexp = fold_pexp { id_exp_alg with e_aux } pexp and rewrite_funcl (FCL_aux (FCL_funcl (id, pexp), a)) = let pexp' = if List.exists (fun id' -> Id.compare id id' = 0) !targets then ( let pat, guard, body, annot = destruct_pexp pexp in let body' = const_prop target env ast Bindings.empty KBindings.empty body in rewrite_pexp (construct_pexp (pat, guard, recheck_exp body', annot)) ) else pexp in FCL_aux (FCL_funcl (id, pexp'), a) and rewrite_fundef (FD_aux (FD_function (ropt, topt, fcls), a)) = let fcls' = List.map rewrite_funcl fcls in FD_aux (FD_function (ropt, topt, fcls'), a) in let mutrecs' = List.map (fun fd -> DEF_aux (DEF_fundef (rewrite_fundef fd), def_annot)) mutrecs in let fdefs = fst (check_defs env (!valspecs @ !fundefs)) in rewrite (List.rev (mutrecs' @ fdefs) @ acc) ds | d :: ds -> rewrite (d :: acc) ds in let has_mutrecs = List.exists (function DEF_aux (DEF_internal_mutrec _, _) -> true | _ -> false) ast.defs in let new_ast = if has_mutrecs then Callgraph.top_sort_defs { ast with defs = rewrite [] defs } else ast in (new_ast, !effect_info, env)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>