Skip to content
Snippets Groups Projects
Commit bde8bd24 authored by David Bühler's avatar David Bühler Committed by Andre Maroneze
Browse files

[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
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment