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
4535a2a9
Commit
4535a2a9
authored
3 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
In plugins using Eva, uses Eva.Analysis.is_computed instead of Db.Value.is_computed.
parent
e50975c5
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/callgraph/cg.ml
+1
-1
1 addition, 1 deletion
src/plugins/callgraph/cg.ml
src/plugins/from/callwise.ml
+1
-1
1 addition, 1 deletion
src/plugins/from/callwise.ml
src/plugins/from/from_register_gui.ml
+1
-1
1 addition, 1 deletion
src/plugins/from/from_register_gui.ml
with
3 additions
and
3 deletions
src/plugins/callgraph/cg.ml
+
1
−
1
View file @
4535a2a9
...
...
@@ -231,7 +231,7 @@ let compute () =
!
Db
.
Value
.
compute
()
;
semantic_compute
g
end
else
(
if
Db
.
Value
.
is_computed
()
then
semantic_compute
else
syntactic_compute
)
g
;
(
if
Eva
.
Analysis
.
is_computed
()
then
semantic_compute
else
syntactic_compute
)
g
;
g
let
get
()
=
State
.
memo
compute
...
...
This diff is collapsed.
Click to expand it.
src/plugins/from/callwise.ml
+
1
−
1
View file @
4535a2a9
...
...
@@ -197,7 +197,7 @@ let () = From_parameters.ForceCallDeps.add_update_hook
let
force_compute_all_calldeps
()
=
if
Db
.
Value
.
is_computed
()
then
if
Eva
.
Analysis
.
is_computed
()
then
Project
.
clear
~
selection
:
(
State_selection
.
with_dependencies
Eva
.
Analysis
.
self
)
()
;
...
...
This diff is collapsed.
Click to expand it.
src/plugins/from/from_register_gui.ml
+
1
−
1
View file @
4535a2a9
...
...
@@ -25,7 +25,7 @@ open Cil_types
let
main
(
main_ui
:
Design
.
main_window_extension_points
)
=
let
filetree_selector
~
was_activated
~
activating
node
=
(* [JS 2009/30/03] GUI may become too slow if froms are displayed *)
if
false
&&
Db
.
Value
.
is_computed
()
then
begin
if
false
&&
Eva
.
Analysis
.
is_computed
()
then
begin
if
not
was_activated
&&
activating
then
begin
match
node
with
|
Filetree
.
Global
(
Cil_types
.
GFun
({
svar
=
v
}
,_
))
->
...
...
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