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

[E-ACSL] still few gmp's

parent c6b5752b
No related branches found
No related tags found
No related merge requests found
...@@ -59,6 +59,8 @@ let pretty_eacsl_typ fmt = function ...@@ -59,6 +59,8 @@ let pretty_eacsl_typ fmt = function
exception Not_representable exception Not_representable
(* TODO: replace it by Cil.intKindForValue as soon as Frama-C Fluorine is not
required anymore. *)
let typ_of_integer i unsigned = let typ_of_integer i unsigned =
(* int whenever possible *) (* int whenever possible *)
if Cil.fitsInInt IInt i then IInt if Cil.fitsInInt IInt i then IInt
...@@ -77,15 +79,10 @@ let typ_of_eacsl_typ = function ...@@ -77,15 +79,10 @@ let typ_of_eacsl_typ = function
| Interv(l, u) -> | Interv(l, u) ->
let is_pos = Z.ge l Z.zero in let is_pos = Z.ge l Z.zero in
(try (try
let mk n k = let ty_l = TInt(typ_of_integer l is_pos, []) in
if is_representable n k then TInt(k, []) let ty_u = TInt(typ_of_integer u is_pos, []) in
else raise Not_representable
in
let ty_l = mk l (Cil.intKindForValue l is_pos) in
let ty_u = mk u (Cil.intKindForValue u is_pos) in
Cil.arithmeticConversion ty_l ty_u Cil.arithmeticConversion ty_l ty_u
with with Not_representable ->
| Not_found | Not_representable ->
Mpz.t ()) Mpz.t ())
| Z -> Mpz.t () | Z -> Mpz.t ()
| No_integral (Ctype ty) -> ty | No_integral (Ctype ty) -> ty
...@@ -99,7 +96,8 @@ let typ_of_eacsl_typ = function ...@@ -99,7 +96,8 @@ let typ_of_eacsl_typ = function
TFloat(FLongDouble, []) TFloat(FLongDouble, [])
| No_integral (Larrow _) -> Error.not_yet "functional type" | No_integral (Larrow _) -> Error.not_yet "functional type"
let eacsl_typ_of_typ ty = match Cil.unrollType ty with let eacsl_typ_of_typ ty =
match Cil.unrollType ty with
| TInt(k, _) as ty -> | TInt(k, _) as ty ->
let n = Cil.bitsSizeOf ty in let n = Cil.bitsSizeOf ty in
let l, u = let l, u =
...@@ -231,7 +229,9 @@ let clear () = ...@@ -231,7 +229,9 @@ let clear () =
(******************************************************************************) (******************************************************************************)
let type_constant ty = function let type_constant ty = function
| Integer(n, _) -> Interv(n, n) | Integer(n, _) ->
if Cil.fitsInInt ILongLong n || Cil.fitsInInt IULongLong n then Interv(n, n)
else Z
| LChr c -> | LChr c ->
(match Cil.charConstToInt c with (match Cil.charConstToInt c with
| CInt64(n, _, _) -> Interv(n, n) | CInt64(n, _, _) -> Interv(n, n)
......
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