1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
(**************************************************************************)
(* *)
(* The Why platform for program certification *)
(* *)
(* Copyright (C) 2002-2011 *)
(* *)
(* Jean-Christophe FILLIATRE, CNRS & Univ. Paris-sud 11 *)
(* Claude MARCHE, INRIA & Univ. Paris-sud 11 *)
(* Yannick MOY, Univ. Paris-sud 11 *)
(* Romain BARDOU, Univ. Paris-sud 11 *)
(* *)
(* Secondary contributors: *)
(* *)
(* Thierry HUBERT, Univ. Paris-sud 11 (former Caduceus front-end) *)
(* Nicolas ROUSSET, Univ. Paris-sud 11 (on Jessie & Krakatoa) *)
(* Ali AYAD, CNRS & CEA Saclay (floating-point support) *)
(* Sylvie BOLDO, INRIA (floating-point support) *)
(* Jean-Francois COUCHOT, INRIA (sort encodings, hyps pruning) *)
(* Mehdi DOGGUY, Univ. Paris-sud 11 (Why GUI) *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Lesser General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
(* Import from Cil *)
open Cil_types
open Cil
open Cilutil
open Cil_datatype
open Ast_info
open Extlib
open Visitor
(* Utility functions *)
open Common
(*****************************************************************************)
(* Retype int field used as pointer. *)
(*****************************************************************************)
class collectIntField
(cast_field_to_type : typ Cil_datatype.Fieldinfo.Hashtbl.t) =
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vexpr e = match e.enode with
| CastE(ty,e) ->
if isPointerType ty then
match (stripCastsAndInfo e).enode with
| Lval(_host,off) ->
begin match lastOffset off with
| Field(fi,_) ->
if isIntegralType fi.ftype
&& bits_sizeof ty = bits_sizeof fi.ftype then
Cil_datatype.Fieldinfo.Hashtbl.replace
cast_field_to_type fi fi.ftype
else ()
| _ -> ()
end
| _ -> ()
else ();
DoChildren
| _ -> DoChildren
end
class retypeIntField
(cast_field_to_type : typ Cil_datatype.Fieldinfo.Hashtbl.t) =
let postaction_expr e = match e.enode with
| Lval(_host,off) ->
begin match lastOffset off with
| Field(fi,_) ->
begin try
new_exp ~loc:e.eloc
(CastE(Cil_datatype.Fieldinfo.Hashtbl.find cast_field_to_type fi,e))
with Not_found -> e end
| _ -> e
end
| _ -> e
in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vglob_aux = function
| GCompTag (compinfo,_) ->
let fields = compinfo.cfields in
let field fi =
if Cil_datatype.Fieldinfo.Hashtbl.mem cast_field_to_type fi then
fi.ftype <- TPtr(!Common.struct_type_for_void,[])
in
List.iter field fields;
DoChildren
| _ -> DoChildren
method vterm =
do_on_term (None,Some postaction_expr)
end
let retype_int_field file =
let cast_field_to_type = Cil_datatype.Fieldinfo.Hashtbl.create 17 in
let visitor = new collectIntField cast_field_to_type in
visitFramacFile visitor file;
let visitor = new retypeIntField cast_field_to_type in
visitFramacFile visitor file
(*****************************************************************************)
(* Organize structure types in hierarchy. *)
(*****************************************************************************)
(* By default, elements should become representant only if they are
* "preferred" according to function [prefer]. Otherwise, decided by ranking.
*)
module UnionFind
(Elem :
sig type t
val equal : t -> t -> bool
val prefer : t -> t -> int
end)
(ElemSet : Set.S with type elt = Elem.t)
(ElemTable : Hashtbl.S with type key = Elem.t) =
struct
let table = ElemTable.create 73
let ranks = ElemTable.create 73
let rec repr e =
try
let r = repr(ElemTable.find table e) in
ElemTable.replace table e r;
r
with Not_found -> e
let rank e =
try ElemTable.find ranks e with Not_found -> 0
let unify e1 e2 =
let r1 = repr e1 and r2 = repr e2 in
if Elem.equal r1 r2 then ()
else
(* Start with preference as defined by function [prefer]. *)
let pref = Elem.prefer r1 r2 in
let k1 = rank r1 and k2 = rank r2 in
if pref < 0 then
begin
ElemTable.replace table r2 r1;
if k1 <= k2 then ElemTable.replace ranks r1 (k2 + 1)
end
else if pref > 0 then
begin
ElemTable.replace table r1 r2;
if k2 <= k1 then ElemTable.replace ranks r2 (k1 + 1)
end
else
(* If no definite preference, resolve to classical ranking. *)
if k1 < k2 then
ElemTable.replace table r1 r2
else if k2 < k1 then
ElemTable.replace table r2 r1
else
begin
ElemTable.replace table r1 r2;
ElemTable.replace ranks r2 (k2 + 1)
end
(* Does not return singleton classes *)
let classes () =
let repr2class = ElemTable.create 17 in
ElemTable.iter (fun e _ ->
let r = repr e in
try
let c = ElemTable.find repr2class r in
let c = ElemSet.add e c in
ElemTable.replace repr2class r c
with Not_found ->
ElemTable.add repr2class r (ElemSet.singleton e)
) table;
ElemTable.fold (fun r c ls -> ElemSet.add r c :: ls) repr2class []
let one_class e =
let r = repr e in
ElemTable.fold (fun e _ ls ->
if Elem.equal r (repr e) then e::ls else ls
) table []
let same_class e1 e2 =
Elem.equal (repr e1) (repr e2)
end
module FieldElem = struct include Cil_datatype.Fieldinfo let prefer _ _ = 1 end
module FieldUnion = UnionFind(FieldElem)(Cil_datatype.Fieldinfo.Set)(Cil_datatype.Fieldinfo.Hashtbl)
let add_field_representant fi1 fi2 =
FieldUnion.unify fi1 fi2
module TypeElem = struct include Typ let prefer _ _ = 0 end
module TypeUnion = UnionFind(TypeElem)(Typ.Set)(Typ.Hashtbl)
let type_to_parent_type = Typ.Hashtbl.create 17
let add_inheritance_relation ty parentty =
if Typ.equal ty parentty then () else
begin
Typ.Hashtbl.add type_to_parent_type ty parentty;
TypeUnion.unify ty parentty
end
let rec subtype ty parentty =
Typ.equal ty parentty ||
try
subtype (Typ.Hashtbl.find type_to_parent_type ty) parentty
with Not_found ->
false
(* module Node = struct *)
(* type t = NodeVar of varinfo | NodeField of fieldinfo | NodeType of typ *)
(* let equal n1 n2 = match n1,n2 with *)
(* | NodeVar v1,NodeVar v2 -> Cil_datatype.Varinfo.equal v1 v2 *)
(* | NodeField f1,NodeField f2 -> Cil_datatype.Fieldinfo.equal f1 f2 *)
(* | NodeType ty1,NodeType ty2 -> TypeComparable.equal ty1 ty2 *)
(* let compare n1 n2 = match n1,n2 with *)
(* | NodeVar v1,NodeVar v2 -> Cil_datatype.Varinfo.compare v1 v2 *)
(* | NodeVar _,_ -> -1 *)
(* | _,NodeVar _ -> 1 *)
(* | NodeField f1,NodeField f2 -> Cil_datatype.Fieldinfo.compare f1 f2 *)
(* | NodeField _,_ -> -1 *)
(* | _,NodeField _ -> 1 *)
(* | NodeType ty1,NodeType ty2 -> TypeComparable.compare ty1 ty2 *)
(* let hash = function *)
(* | NodeVar v -> 17 * Cil_datatype.Varinfo.hash v *)
(* | NodeField f -> 43 * Cil_datatype.Fieldinfo.hash f *)
(* | NodeType ty -> 73 * TypeComparable.hash ty *)
(* end *)
(* module NodeHashtbl = Hashtbl.Make(Node) *)
(* module NodeSet = Set.Make(Node) *)
(* module NodeUnion = UnionFind(Node)(NodeHashtbl)(NodeSet) *)
let sub_list l n =
let rec aux acc n l =
if n = 0 then acc else
match l with [] -> assert false | x::r -> aux (x::acc) (n-1) r
in
List.rev (aux [] n l)
class createStructHierarchy =
let unify_type_hierarchies ty1 ty2 =
(* Extract info from types *)
let compinfo1 = match unrollType (pointed_type ty1) with
| TComp(compinfo,_,_) -> compinfo
| _ -> assert false
in
let sty1 = TComp(compinfo1,empty_size_cache () ,[]) in
let fields1 = compinfo1.cfields in
let compinfo2 = match unrollType (pointed_type ty2) with
| TComp(compinfo,_,_) -> compinfo
| _ -> assert false
in
let fields2 = compinfo2.cfields in
let sty2 = TComp(compinfo2, empty_size_cache () ,[]) in
(* Compare types *)
let minlen = min (List.length fields1) (List.length fields2) in
let prefix,complete = List.fold_left2
(fun (acc,compl) f1 f2 ->
if compl && Typ.equal f1.ftype f2.ftype then
f1::acc,compl
else acc,false
)
([],true)
(sub_list fields1 minlen) (sub_list fields2 minlen)
in
let prefix = List.rev prefix in
if complete then
if List.length prefix = List.length fields1 then
(* [ty2] subtype of [ty1] *)
add_inheritance_relation sty2 sty1
else
(* [ty1] subtype of [ty2] *)
add_inheritance_relation sty1 sty2
else
begin
(* Neither one is subtype of the other *)
(* add_inheritance_relation sty1 !Common.struct_type_for_void; *)
(* add_inheritance_relation sty2 !Common.struct_type_for_void *)
end
in
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
method vexpr e = match e.enode with
| CastE(ty,e) when isPointerType ty ->
let enocast = stripCastsAndInfo e in
let ety = typeOf enocast in
if isPointerType ety then
unify_type_hierarchies ty ety
else ();
DoChildren
| _ -> DoChildren
end
class exploitStructHierarchy =
object
inherit Visitor.generic_frama_c_visitor
(Project.current ()) (Cil.inplace_visit ()) as super
end
let create_struct_hierarchy file =
let struct_fields ty =
match unrollType ty with
| TComp(compinfo,_,_) -> compinfo.cfields
| _ -> assert false
in
let num_fields ty = List.length (struct_fields ty) in
let compare_num_fields ty1 ty2 =
Pervasives.compare (num_fields ty1) (num_fields ty2)
in
let subtype ty1 ty2 =
let fields1 = struct_fields ty1 and fields2 = struct_fields ty2 in
let len1 = List.length fields1 and len2 = List.length fields2 in
if len1 > len2 then
List.fold_left2
(fun eq fi1 fi2 -> eq && Typ.equal fi1.ftype fi2.ftype)
true
(sub_list fields1 len2)
fields2
else
false
in
let compute_hierarchy () =
let classes = TypeUnion.classes () in
List.iter (fun cls ->
let types = Typ.Set.elements cls in
let types = List.sort compare_num_fields types in
let root,types =
match types with [] -> assert false | a::r -> a,r
in
(* First element is new root *)
Typ.Hashtbl.remove type_to_parent_type root;
List.iter
(fun ty ->
add_inheritance_relation ty root;
List.iter
(fun party ->
if subtype ty party then
add_inheritance_relation ty party
) types
) types
) classes;
Typ.Hashtbl.iter
(fun ty party ->
let fields1 = struct_fields ty in
let fields2 = struct_fields party in
let num2 = List.length fields2 in
let subfields1 = sub_list fields1 num2 in
List.iter2 add_field_representant subfields1 fields2)
type_to_parent_type
in
let visitor = new createStructHierarchy in
visitFramacFile visitor file;
compute_hierarchy ();
let visitor = new exploitStructHierarchy in
visitFramacFile visitor file
(*****************************************************************************)
(* Retype the C file for Jessie translation. *)
(*****************************************************************************)
let retype file =
if checking then check_types file;
(* Retype int field casted to pointer. *)
Jessie_options.debug "Retype int field casted to pointer@.";
retype_int_field file;
if checking then check_types file;
(* Organize structure types in hierarchy. *)
Jessie_options.debug "Organize structure types in hierarchy@.";
create_struct_hierarchy file;
if checking then check_types file;
(*
Local Variables:
compile-command: "make"
End:
*)
|