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
47f37743
Commit
47f37743
authored
2 years ago
by
Maxime Jacquemin
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] Adding a cache system to the <markerFromTerm> request
parent
df06146d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/server/kernel_ast.ml
+23
-6
23 additions, 6 deletions
src/plugins/server/kernel_ast.ml
with
23 additions
and
6 deletions
src/plugins/server/kernel_ast.ml
+
23
−
6
View file @
47f37743
...
...
@@ -751,6 +751,17 @@ let () =
type
marker_term_input
=
{
atStmt
:
stmt
;
term
:
string
}
module
MarkerTermInputAsKey
=
struct
type
t
=
marker_term_input
let
compare
x
y
=
let
c
=
Cil_datatype
.
Stmt
.
compare
x
.
atStmt
y
.
atStmt
in
if
c
=
0
then
String
.
compare
x
.
term
y
.
term
else
c
let
equal
x
y
=
compare
x
y
=
0
let
hash
x
=
17
*
Cil_datatype
.
Stmt
.
hash
x
.
atStmt
+
Hashtbl
.
hash
x
.
term
end
module
MarkerTermInputCache
=
Hashtbl
.
Make
(
MarkerTermInputAsKey
)
module
MarkerTermInput
=
struct
type
record
let
record
:
record
Record
.
signature
=
Record
.
signature
()
...
...
@@ -792,12 +803,18 @@ let logic_environment () =
let
open
Logic_typing
in
Lenv
.
empty
()
|>
append_pre_label
|>
append_init_label
|>
append_here_label
let
build_marker
=
Option
.
map
@@
fun
input
->
let
env
=
logic_environment
()
in
let
kf
=
Kernel_function
.
find_englobing_kf
input
.
atStmt
in
let
term
=
!
Db
.
Properties
.
Interp
.
term
~
env
kf
input
.
term
in
let
exp
=
!
Db
.
Properties
.
Interp
.
term_to_exp
~
result
:
None
term
in
Printer_tag
.
PExp
(
Some
kf
,
Kstmt
input
.
atStmt
,
exp
)
let
build_marker
=
let
table
=
MarkerTermInputCache
.
create
10
in
Option
.
map
@@
fun
input
->
match
MarkerTermInputCache
.
find_opt
table
input
with
|
Some
tag
->
tag
|
None
->
let
env
=
logic_environment
()
in
let
kf
=
Kernel_function
.
find_englobing_kf
input
.
atStmt
in
let
term
=
!
Db
.
Properties
.
Interp
.
term
~
env
kf
input
.
term
in
let
exp
=
!
Db
.
Properties
.
Interp
.
term_to_exp
~
result
:
None
term
in
let
tag
=
Printer_tag
.
PExp
(
Some
kf
,
Kstmt
input
.
atStmt
,
exp
)
in
MarkerTermInputCache
.
add
table
input
tag
;
tag
let
descr
=
"Build a marker from an ACSL term."
...
...
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