Skip to content
Snippets Groups Projects
Commit 81c535ac authored by Thibault Martin's avatar Thibault Martin Committed by Virgile Prevosto
Browse files

Create Cil_builtins.is_builtin : checks for frama_c and special builtins

parent 18e9f784
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,9 @@ let special_builtins = Queue.create ()
let is_special_builtin s =
Queue.fold (fun res f -> res || f s) false special_builtins
let is_builtin v =
has_fc_builtin_attr v || is_special_builtin v.vname
let add_special_builtin_family f = Queue.add f special_builtins
let add_special_builtin s =
......
......@@ -56,10 +56,15 @@ open Cil_types
module Frama_c_builtins:
State_builder.Hashtbl with type key = string and type data = varinfo
val is_frama_c_builtin: varinfo -> bool
(** @return true if the given variable refers to a Frama-C builtin.
val is_builtin: varinfo -> bool
(** @return true if {!has_fc_builtin_attr} or {!is_special_builtin} are true.
@before Frama-C+dev Only check for {!has_fc_builtin_attr}.
@since Fluorine-20130401 *)
val has_fc_builtin_attr: varinfo -> bool
(** @return true if the given variable refers to a Frama-C builtin.
@since Frama-C+dev *)
val is_unused_builtin: varinfo -> bool
(** @return true if the given variable refers to a Frama-C builtin that
is not used in the current program. Plugins may (and in fact should)
......
......@@ -225,9 +225,7 @@ end
let consider_function vi =
vi.Cil_types.vdefined &&
not (Cil_builtins.has_fc_builtin_attr vi
|| Cil_builtins.is_special_builtin vi.vname
|| Cil.is_in_libc vi.vattr)
not (Cil_builtins.is_builtin vi || Cil.is_in_libc vi.vattr)
let compute_events () =
let eva = Events.make () and kernel = Events.make () in
......
......@@ -101,8 +101,7 @@ class visitor = object
else begin
if Cil.isFunctionType vi.vtype then begin
if vi.vname <> "main"
&& not (Cil_builtins.has_fc_builtin_attr vi)
&& not (Cil_builtins.is_special_builtin vi.vname)
&& not (Cil_builtins.is_builtin vi)
&& not (Cil.is_in_libc vi.vattr) then
vi.vname <- Dictionary.fresh Obfuscator_kind.Function vi.vname
end
......
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