Skip to content
Snippets Groups Projects
Commit 3c452827 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Kernel] move is_in_libc from Metrics to Cil; add global_is_in_libc

parent 1caffe76
No related branches found
No related tags found
No related merge requests found
......@@ -5362,6 +5362,13 @@ let global_attributes = function
| GAnnot (gannot,_) -> global_annotation_attributes gannot
| GAsm _ | GText _ -> []
let is_in_libc attrs =
hasAttribute "fc_stdlib" attrs ||
hasAttribute "fc_stdlib_generated" attrs
let global_is_in_libc g =
is_in_libc (global_attributes g)
(***************************************************************************)
(* Convert an expression into an attribute, if possible. Otherwise raise
......
......@@ -1392,6 +1392,18 @@ val global_annotation_attributes: global_annotation -> attributes
*)
val global_attributes: global -> attributes
(**
Whether the given attributes contain libc indicators.
@since Frama-C+dev
*)
val is_in_libc: attributes -> bool
(**
Whether the given global contains libc indicators.
@since Frama-C+dev
*)
val global_is_in_libc: global -> bool
exception NotAnAttrParam of exp
(* ************************************************************************* *)
......
......@@ -301,11 +301,8 @@ let pretty_extern_vars fmt s =
Pretty_utils.pp_iter ~pre:"@[" ~suf:"@]" ~sep:";@ "
VInfoSet.iter Printer.pp_varinfo fmt s
let is_in_libc attrs = Cil.hasAttribute "fc_stdlib" attrs ||
Cil.hasAttribute "fc_stdlib_generated" attrs
let is_entry_point vinfo times_called =
times_called = 0 && not vinfo.vaddrof && not (is_in_libc vinfo.vattr)
times_called = 0 && not vinfo.vaddrof && not (Cil.is_in_libc vinfo.vattr)
;;
let number_entry_points fs =
......@@ -371,11 +368,11 @@ let consider_function ~libc vinfo =
not (!Db.Value.mem_builtin vinfo.vname
|| Ast_info.is_frama_c_builtin vinfo.vname
|| Cil_builtins.is_unused_builtin vinfo
) && (libc || not (is_in_libc vinfo.vattr))
) && (libc || not (Cil.is_in_libc vinfo.vattr))
let consider_variable ~libc vinfo =
not (Cil.hasAttribute "FRAMA_C_MODEL" vinfo.vattr) &&
(libc || not (is_in_libc vinfo.vattr))
(libc || not (Cil.is_in_libc vinfo.vattr))
let float_to_string f =
let s = Format.sprintf "%F" f in
......
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