Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
538a9bd4
Commit
538a9bd4
authored
11 years ago
by
Julien Signoles
Browse files
Options
Downloads
Patches
Plain Diff
[E-ACSL] still few gmp's
parent
c6b5752b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/e-acsl/typing.ml
+10
-10
10 additions, 10 deletions
src/plugins/e-acsl/typing.ml
with
10 additions
and
10 deletions
src/plugins/e-acsl/typing.ml
+
10
−
10
View file @
538a9bd4
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment