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
bde8bd24
Commit
bde8bd24
authored
5 years ago
by
David Bühler
Committed by
Andre Maroneze
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] New option -eva-alloc-builtin to configure allocation builtins.
parent
e1f4a931
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/value/value_parameters.ml
+19
-0
19 additions, 0 deletions
src/plugins/value/value_parameters.ml
src/plugins/value/value_parameters.mli
+1
-0
1 addition, 0 deletions
src/plugins/value/value_parameters.mli
with
20 additions
and
0 deletions
src/plugins/value/value_parameters.ml
+
19
−
0
View file @
bde8bd24
...
...
@@ -1415,6 +1415,25 @@ let () = add_precision_dep ReductionDepth.parameter
(* --- Dynamic allocation --- *)
(* -------------------------------------------------------------------------- *)
let
()
=
Parameter_customize
.
set_group
malloc
module
AllocBuiltin
=
String
(
struct
let
option_name
=
"-eva-alloc-builtin"
let
help
=
"Select the behavior of allocation builtins. \
By default, they use up to [-eva-mlevel] bases \
for each callstack (<by_stack>). They can also \
use one <imprecise> base for all allocations, \
create a <fresh> strong base at each call, \
or create a <fresh_weak> base at each call."
let
default
=
"by_stack"
let
arg_name
=
"imprecise|by_stack|fresh|fresh_weak"
end
)
let
()
=
add_precision_dep
AllocBuiltin
.
parameter
let
()
=
AllocBuiltin
.
set_possible_values
[
"imprecise"
;
"by_stack"
;
"fresh"
;
"fresh_weak"
]
let
()
=
Parameter_customize
.
set_group
malloc
module
AllocFunctions
=
Filled_string_set
...
...
This diff is collapsed.
Click to expand it.
src/plugins/value/value_parameters.mli
+
1
−
0
View file @
bde8bd24
...
...
@@ -149,6 +149,7 @@ module StopAtNthAlarm: Parameter_sig.Int
(** Dynamic allocation *)
module
AllocBuiltin
:
Parameter_sig
.
String
module
AllocFunctions
:
Parameter_sig
.
String_set
module
AllocReturnsNull
:
Parameter_sig
.
Bool
module
MallocLevel
:
Parameter_sig
.
Int
...
...
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