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
f57127ee
Commit
f57127ee
authored
2 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[wp] rename tau_of_li_type into tau_of_return
parent
a2a09b38
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/wp/Lang.ml
+2
-5
2 additions, 5 deletions
src/plugins/wp/Lang.ml
src/plugins/wp/Lang.mli
+1
-1
1 addition, 1 deletion
src/plugins/wp/Lang.mli
src/plugins/wp/LogicCompiler.ml
+3
-3
3 additions, 3 deletions
src/plugins/wp/LogicCompiler.ml
with
6 additions
and
9 deletions
src/plugins/wp/Lang.ml
+
2
−
5
View file @
f57127ee
...
...
@@ -225,10 +225,7 @@ let rec tau_of_ltype t =
|
Ltype
_
as
b
when
Logic_const
.
is_boolean_type
b
->
Logic
.
Bool
|
Ltype
(
lt
,
lts
)
->
atype
lt
(
List
.
map
tau_of_ltype
lts
)
let
tau_of_li_type
ltype
=
match
ltype
with
|
None
->
Logic
.
Prop
|
Some
t
->
tau_of_ltype
t
let
tau_of_return
=
function
None
->
Logic
.
Prop
|
Some
t
->
tau_of_ltype
t
(* -------------------------------------------------------------------------- *)
(* --- Datatypes --- *)
...
...
@@ -420,7 +417,7 @@ and source =
let
tau_of_lfun
phi
ts
=
match
phi
with
|
ACSL
f
->
tau_of_
li_type
f
.
l_type
|
ACSL
f
->
tau_of_
return
f
.
l_type
|
CTOR
c
->
if
c
.
ctor_type
.
lt_params
=
[]
then
Logic
.
Data
(
Atype
c
.
ctor_type
,
[]
)
else
raise
Not_found
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/Lang.mli
+
1
−
1
View file @
f57127ee
...
...
@@ -158,7 +158,7 @@ val extern_t:
val
tau_of_object
:
c_object
->
tau
val
tau_of_ctype
:
typ
->
tau
val
tau_of_ltype
:
logic_type
->
tau
val
tau_of_
li_type
:
logic_type
option
->
tau
val
tau_of_
return
:
logic_type
option
->
tau
val
tau_of_lfun
:
lfun
->
tau
option
list
->
tau
val
tau_of_field
:
field
->
tau
val
tau_of_record
:
field
->
tau
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/LogicCompiler.ml
+
3
−
3
View file @
f57127ee
...
...
@@ -440,7 +440,7 @@ struct
let
frame
=
logic_frame
name
types
in
in_frame
frame
begin
fun
()
->
let
tres
=
Lang
.
tau_of_
li_type
tres
in
let
tres
=
Lang
.
tau_of_
return
tres
in
let
env
,
domain
,
sigv
=
profile_env
Logic_var
.
Map
.
empty
[]
[]
profile
in
let
env
=
default_label
env
labels
in
let
result
=
cc
env
data
in
...
...
@@ -563,7 +563,7 @@ struct
in_frame
frame
begin
fun
()
->
let
lfun
=
ACSL
l
in
let
tau
=
Lang
.
tau_of_
li_type
l
.
l_type
in
let
tau
=
Lang
.
tau_of_
return
l
.
l_type
in
let
parp
,
sigp
=
Lang
.
local
profile_sig
l
.
l_profile
in
let
ldef
=
{
d_lfun
=
lfun
;
...
...
@@ -586,7 +586,7 @@ struct
in_frame
frame
begin
fun
()
->
let
lfun
=
ACSL
l
in
let
tau
=
Lang
.
tau_of_
li_type
l
.
l_type
in
let
tau
=
Lang
.
tau_of_
return
l
.
l_type
in
let
parm
,
sigm
=
Lang
.
local
(
profile_mem
l
)
vars
in
let
ldef
=
{
d_lfun
=
lfun
;
...
...
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