Skip to content
Snippets Groups Projects
Commit ba25aa73 authored by Basile Desloges's avatar Basile Desloges
Browse files

[eacsl] Don't process Variadic generated functions

parent ec8dd1b7
No related branches found
No related tags found
No related merge requests found
...@@ -639,6 +639,9 @@ let inject_in_global (env, main) = function ...@@ -639,6 +639,9 @@ let inject_in_global (env, main) = function
env, main env, main
| g when Rtl.Symbols.mem_global g -> | g when Rtl.Symbols.mem_global g ->
env, main env, main
(* generated function declaration: nothing to do *)
| GFunDecl(_, vi, _) when Misc.is_fc_stdlib_generated vi ->
env, main
(* variable declarations *) (* variable declarations *)
| GVarDecl(vi, _) | GFunDecl(_, vi, _) -> | GVarDecl(vi, _) | GFunDecl(_, vi, _) ->
......
...@@ -36,6 +36,9 @@ let is_fc_or_compiler_builtin vi = ...@@ -36,6 +36,9 @@ let is_fc_or_compiler_builtin vi =
let prefix = String.sub vi.vname 0 prefix_length in let prefix = String.sub vi.vname 0 prefix_length in
Datatype.String.equal prefix "__builtin_") Datatype.String.equal prefix "__builtin_")
let is_fc_stdlib_generated vi =
Cil.hasAttribute "fc_stdlib_generated" vi.vattr
(* ************************************************************************** *) (* ************************************************************************** *)
(** {2 Handling \result} *) (** {2 Handling \result} *)
(* ************************************************************************** *) (* ************************************************************************** *)
......
...@@ -40,6 +40,10 @@ val result_vi: kernel_function -> varinfo ...@@ -40,6 +40,10 @@ val result_vi: kernel_function -> varinfo
val is_fc_or_compiler_builtin: varinfo -> bool val is_fc_or_compiler_builtin: varinfo -> bool
val is_fc_stdlib_generated: varinfo -> bool
(** Returns true if the [varinfo] is a generated stdlib function. (For instance
generated function by the Variadic plug-in. *)
val term_addr_of: loc:location -> term_lval -> typ -> term val term_addr_of: loc:location -> term_lval -> typ -> term
val cty: logic_type -> typ val cty: logic_type -> typ
......
...@@ -392,6 +392,8 @@ let must_duplicate kf vi = ...@@ -392,6 +392,8 @@ let must_duplicate kf vi =
not (is_variadic_function vi) not (is_variadic_function vi)
&& (* it is not a built-in *) && (* it is not a built-in *)
not (Misc.is_fc_or_compiler_builtin vi) not (Misc.is_fc_or_compiler_builtin vi)
&& (* it is not a generated function *)
not (Misc.is_fc_stdlib_generated vi)
&& &&
((* either explicitely listed as to be not instrumented *) ((* either explicitely listed as to be not instrumented *)
not (Functions.instrument kf) not (Functions.instrument kf)
......
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