Skip to content
Snippets Groups Projects
Commit aadd2bd8 authored by Julien Signoles's avatar Julien Signoles
Browse files

[Typing] restore behavior of -e-acsl-builtins

parent fbe99459
No related branches found
No related tags found
No related merge requests found
...@@ -477,42 +477,53 @@ let rec type_term ~use_gmp_opt ?(arith_operand=false) ?ctx t = ...@@ -477,42 +477,53 @@ let rec type_term ~use_gmp_opt ?(arith_operand=false) ?ctx t =
dup Other dup Other
| Tapp(li, _, args) -> | Tapp(li, _, args) ->
List.iter if Builtins.mem li.l_var_info.lv_name then
(fun arg -> ignore (type_term ~use_gmp_opt:true arg)) let typ_arg lvi arg =
args; (* a built-in is a C function, so the context is necessarily a C
begin match li.l_body with type. *)
| LBpred _ -> let ctx = ty_of_logic_ty lvi.lv_type in
(* We can have an [LBpred] here because we transformed ignore (type_term ~use_gmp_opt:false ~ctx arg)
[Papp] into [Tapp] *) in
dup c_int List.iter2 typ_arg li.l_profile args;
| LBterm _ -> (* [li.l_type is [None] for predicate only: not possible here.
begin match li.l_type with Thus using [Extlib.the] is fine *)
| None -> dup (ty_of_logic_ty (Extlib.the li.l_type))
assert false else begin
| Some lty -> List.iter
begin match lty with (fun arg -> ignore (type_term ~use_gmp_opt:true arg))
| Linteger -> args;
let i = Interval.infer t in match li.l_body with
if Options.Gmp_only.get () then dup Gmp | LBpred _ ->
else dup (ty_of_interv i) (* We can have an [LBpred] here because we transformed
| Ctype TInt(ik, _ ) -> [Papp] into [Tapp] *)
dup (C_type ik) dup c_int
| Ctype TFloat _ -> (* TODO: handle in MR !226 *) | LBterm _ ->
dup Other begin match li.l_type with
| Lreal -> | None ->
Error.not_yet "real numbers" assert false
| Ctype _ -> | Some lty ->
dup Other match lty with
| Ltype _ | Lvar _ | Larrow _ -> | Linteger ->
Options.fatal "unexpected type" let i = Interval.infer t in
if Options.Gmp_only.get () then dup Gmp
else dup (ty_of_interv i)
| Ctype TInt(ik, _ ) ->
dup (C_type ik)
| Ctype TFloat _ -> (* TODO: handle in MR !226 *)
dup Other
| Lreal ->
Error.not_yet "real numbers"
| Ctype _ ->
dup Other
| Ltype _ | Lvar _ | Larrow _ ->
Options.fatal "unexpected type"
end end
end | LBnone ->
| LBnone -> Error.not_yet "logic functions with no definition nor reads clause"
Error.not_yet "logic functions with no definition nor reads clause" | LBreads _ ->
| LBreads _ -> Error.not_yet "logic functions performing read accesses"
Error.not_yet "logic functions performing read accesses" | LBinductive _ ->
| LBinductive _ -> Error.not_yet "logic functions inductively defined"
Error.not_yet "logic functions inductively defined"
end end
| Tunion _ -> Error.not_yet "tset union" | Tunion _ -> Error.not_yet "tset union"
......
...@@ -470,8 +470,9 @@ you must call function `%s' and `__e_acsl_memory_clean by yourself.@]" ...@@ -470,8 +470,9 @@ you must call function `%s' and `__e_acsl_memory_clean by yourself.@]"
Cil.JustCopyPost Cil.JustCopyPost
(fun l -> (fun l ->
let new_vi = Cil.get_varinfo self#behavior vi in let new_vi = Cil.get_varinfo self#behavior vi in
Misc.register_library_function new_vi; if Misc.is_library_loc vi.vdecl then
Builtins.update vi.vname new_vi; Misc.register_library_function new_vi;
if Builtins.mem vi.vname then Builtins.update vi.vname new_vi;
l) l)
else begin else begin
Misc.register_library_function vi; Misc.register_library_function vi;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment