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 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
|
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
open Common
module F = Control_flow_c
(*****************************************************************************)
(* Debugging functions *)
(*****************************************************************************)
let show_or_not_predicate pred =
if !Flag_matcher.debug_engine then begin
indent_do (fun () ->
adjust_pp_with_indent_and_header "labeling: pred = " (fun () ->
Pretty_print_engine.pp_predicate pred;
);
)
end
let show_or_not_nodes nodes =
if !Flag_matcher.debug_engine then begin
indent_do (fun () ->
adjust_pp_with_indent_and_header "labeling: result = " (fun () ->
Common.pp_do_in_box (fun () ->
pp "{";
Common.print_between
(fun () -> pp ";"; Format.print_cut())
(fun (nodei, (_predTODO, subst)) ->
Format.print_int nodei;
Common.pp_do_in_box (fun () ->
Pretty_print_engine.pp_binding2_ctlsubst subst
)
) nodes;
pp "}";
);
)
)
end
let show_isos rule_elem =
match Ast_cocci.get_isos rule_elem with
[] -> ()
| isos ->
let line = Ast_cocci.get_line rule_elem in
Printf.printf "rule elem: ";
Pretty_print_cocci.rule_elem "" rule_elem;
Format.print_newline();
List.iter
(function (nm,x) ->
Printf.printf " iso: %s(%d): " nm line;
Pretty_print_cocci.pp_print_anything x;
Format.print_newline())
isos
(*****************************************************************************)
(* Labeling function *)
(*****************************************************************************)
let (-->) x v = Ast_ctl.Subst (x,v);;
type vp = SUCCESS_POS | FAIL_POS | NOPOS
let valid_positions binding = function
Lib_engine.Match re ->
let vars = re.Ast_cocci.positive_inherited_positions in
(match vars with
[] -> NOPOS
| _ ->
let res =
List.for_all
(function v ->
try
let b = List.assoc v binding in
match b with
Ast_c.MetaPosValList l ->
List.exists
(function (_,elem,_,_,_) -> !Flag.current_element = elem)
l
| _ ->
failwith "position variable should have a position binding"
with Not_found -> false)
vars in
if res then SUCCESS_POS else FAIL_POS)
| _ -> NOPOS
(* Take list of predicate and for each predicate returns where in the
* control flow it matches, and the set of substitutions for this match.
*)
let loop_nodes p check nodes =
List.fold_left
(fun prev (nodei,node) ->
if check node
then (nodei, (p,[])) :: prev
else prev)
[] nodes
let labels_for_ctl (dropped_isos : string list)
(nodes : (F.G.key * F.node) list)
(binding : Lib_engine.metavars_binding)
p =
show_or_not_predicate p;
let nodes' =
nodes +>
match p with
| Lib_engine.Match (re) ->
List.fold_left
(fun prev (nodei,node) ->
Pattern_c.match_re_node dropped_isos re node binding +>
List.fold_left (fun prev (re', subst) ->
let p' = Lib_engine.Match (re') in
(nodei,
(p',
subst +> List.map (fun (s, meta) ->
s --> Lib_engine.NormalMetaVal meta)))
:: prev)
prev)
[]
| Lib_engine.Paren s ->
List.fold_left
(fun prev (nodei,node) ->
match F.unwrap node with
F.SeqStart (_, bracelevel, _) ->
let make_var x = ("",string_of_int x) in
let vl = Lib_engine.ParenVal (make_var bracelevel) in
(nodei, (p,[(s --> vl)])) :: prev
| F.SeqEnd (bracelevel, _) ->
let make_var x = ("",string_of_int x) in
let vl = Lib_engine.ParenVal (make_var bracelevel) in
(nodei, (p,[(s --> vl)])) :: prev
| _ -> prev)
[]
| Lib_engine.Label s ->
List.map
(function (nodei,node) ->
let labels = F.extract_labels node in
let vl = Lib_engine.LabelVal (Lib_engine.Absolute labels) in
(nodei, (p,[(s --> vl)])))
| Lib_engine.BCLabel s ->
List.fold_left
(fun prev (nodei,node) ->
match F.extract_bclabels node with
[] -> (* null for all nodes that are not break or continue *)
prev
| labels ->
let vl = Lib_engine.LabelVal (Lib_engine.Absolute labels) in
(nodei, (p,[(s --> vl)]))::prev)
[]
| Lib_engine.PrefixLabel s ->
List.map
(function (nodei,node) ->
let labels = F.extract_labels node in
let vl = Lib_engine.LabelVal (Lib_engine.Prefix labels) in
(nodei, (p,[(s --> vl)])))
| Lib_engine.InLoop ->
loop_nodes p
(function node ->
match F.unwrap node with F.InLoopNode -> true | _ -> false)
| Lib_engine.TrueBranch ->
loop_nodes p
(function node ->
match F.unwrap node with F.TrueNode _ -> true | _ -> false)
| Lib_engine.EscTrueBranch ->
loop_nodes p
(function node ->
match F.unwrap node with
F.TrueNode esc when !esc -> true
| _ -> false)
| Lib_engine.FalseBranch ->
loop_nodes p
(function node ->
match F.unwrap node with F.FalseNode -> true | _ -> false)
| Lib_engine.After ->
loop_nodes p
(function node ->
match F.unwrap node with F.AfterNode _ -> true | _ -> false)
| Lib_engine.GotoAfter ->
loop_nodes p
(function node -> F.unwrap node = F.AfterNode F.GotoAfterNode)
| Lib_engine.FallThrough ->
loop_nodes p
(function node ->
match F.unwrap node with F.FallThroughNode -> true | _ -> false)
| Lib_engine.LoopFallThrough ->
loop_nodes p
(function node ->
match F.unwrap node with
F.LoopFallThroughNode -> true
| _ -> false)
| Lib_engine.FunHeader ->
loop_nodes p
(function node ->
match F.unwrap node with F.FunHeader _ -> true | _ -> false)
| Lib_engine.Top ->
loop_nodes p
(function node ->
match F.unwrap node with F.TopNode -> true | _ -> false)
| Lib_engine.Exit ->
loop_nodes p
(function node ->
match F.unwrap node with F.Exit | F.EndNode -> true | _ -> false)
| Lib_engine.ErrorExit ->
loop_nodes p
(function node ->
match F.unwrap node with F.ErrorExit -> true | _ -> false)
| Lib_engine.Goto ->
loop_nodes p
(function node ->
match F.unwrap node with F.Goto _ -> true | _ -> false)
| Lib_engine.Return ->
loop_nodes p
(function node ->
(* todo? should match the Exit code ?
* todo: one day try also to match the special function
* such as panic();
*)
match F.unwrap node with
| F.Return _ -> true
| F.ReturnExpr _ -> true
| _ -> false)
| Lib_engine.FakeBrace ->
loop_nodes p F.extract_is_fake
| Lib_engine.BindGood s ->
List.map
(function (nodei,_) -> (nodei, (p,[(s --> Lib_engine.GoodVal)])))
| Lib_engine.BindBad s ->
List.map
(function (nodei,_) -> (nodei, (p,[(s --> Lib_engine.BadVal)])))
| Lib_engine.UnsafeBrace ->
(* cases where it it not safe to put something on the outer side
of braces *)
List.fold_left
(fun prev (nodei,node) ->
match F.unwrap node with
F.FunHeader _ | F.DoHeader _ | F.TrueNode _ | F.Else _
| F.InLoopNode (* while, for *) | F.SwitchHeader _ ->
(nodei, (p,[])) :: prev
| _ -> prev)
[] in
show_or_not_nodes nodes';
nodes'
let quick_labels_for_ctl dropped_isos nodes binding p =
show_or_not_predicate p;
match valid_positions binding p with
SUCCESS_POS -> true
| FAIL_POS -> false
| NOPOS ->
(match p with
Lib_engine.Match (re) ->
List.exists
(function (_,node) ->
not (Pattern_c.match_re_node dropped_isos re node binding = []))
nodes
| _ -> true)
(*****************************************************************************)
(* Some fix flow, for CTL, for unparse *)
(*****************************************************************************)
(* could erase info on nodes, and edge, because they are not used by rene *)
let (control_flow_for_ctl: F.cflow -> 'a F.G.ograph_mutable) =
fun cflow -> cflow
(* Just make the final node of the control flow loop over itself.
* It seems that one hypothesis of the SAT algorithm is that each node has at
* least a successor.
*
* update: do same for errorexit node.
*
* update: also erase the fake nodes (and adjust the edges accordingly),
* so that AX in CTL can now work.
* Indeed, � la fin de la branche then (et else), on devrait aller directement
* au suivant du endif, sinon si ecrit if(1) { foo(); }; bar();
* sans '...' entre le if et bar(), alors ca matchera pas car le CTL
* generera un AX bar() qui il tombera d'abord sur le [endif] :(
* Mais chiant de changer l'algo de generation, marche pas tres bien avec
* ma facon de faire recursive et compositionnel.
* => faire une fonction qui applique des fixes autour de ce control flow,
* comme ca passe un bon flow a rene, mais garde un flow a moi pour pouvoir
* facilement generate back the ast.
* alt: faire un wrapper autourde mon graphe pour lui passer dans le module CFG
* une fonction qui passe a travers les Fake, mais bof.
*
* update: also make loop the deadcode nodes, the one that have
* no predecessor.
*)
let fix_flow_ctl2 (flow : F.cflow) : F.cflow =
let g = ref flow in
let topi = F.first_node !g in
!g#add_arc ((topi, topi), F.Direct);
(* for the #define CFG who have no Exit but have at least a EndNode *)
(try
let endi = F.find_node (fun x -> x = F.EndNode) !g in
!g#add_arc ((endi, endi), F.Direct);
with Not_found -> ()
);
(* for the regular functions *)
(try
let exitnodei = F.find_node (fun x -> x = F.Exit) !g in
let errornodei = F.find_node (fun x -> x = F.ErrorExit) !g in
!g#add_arc ((exitnodei, exitnodei), F.Direct);
if (F.KeyEdgeSet.is_empty (!g#successors errornodei)) &&
(F.KeyEdgeSet.is_empty (!g#predecessors errornodei))
then !g#del_node errornodei
else !g#add_arc ((errornodei, errornodei), F.Direct);
with Not_found -> ()
);
let pred nodei node = match F.unwrap node with
| F.CaseNode _
| F.Enter
(*| F.Fake*) (* [endif], [endswitch], ... *)
-> true
| _ -> false in
let fake_nodes = F.KeyMap.filter pred !g#nodes in
F.KeyMap.iter (fun nodei node -> F.remove_one_node nodei !g) fake_nodes;
(* even when have deadcode, julia want loop over those nodes *)
F.KeyMap.iter (fun nodei node ->
if (F.KeyEdgeSet.is_empty (!g#predecessors nodei))
then begin
let fakei = !g#add_node (F.mk_node F.Fake [] [] "DEADCODELOOP") in
!g#add_arc ((fakei, nodei), F.Direct);
!g#add_arc ((fakei, fakei), F.Direct);
end
) !g#nodes;
F.KeyMap.iter (fun nodei node ->
assert (F.KeyEdgeSet.cardinal (!g#successors nodei) >= 1);
) !g#nodes;
!g
let fix_flow_ctl a =
Common.profile_code "fix_flow" (fun () -> fix_flow_ctl2 a)
(*****************************************************************************)
(* subtil: the label must operate on newflow, not (old) cflow
* update: now I supposed that we give me a fixed_flow
*)
let model_for_ctl dropped_isos cflow binding =
let newflow = cflow (* old: fix_flow_ctl (control_flow_for_ctl cflow) *) in
let labels = labels_for_ctl dropped_isos (F.KeyMap.bindings newflow#nodes) binding in
let quicklabels =
quick_labels_for_ctl dropped_isos (F.KeyMap.bindings newflow#nodes) binding in
let states = List.map fst (F.KeyMap.bindings newflow#nodes) in
newflow, labels, quicklabels, states
(*****************************************************************************)
module PRED =
struct
type t = Lib_engine.predicate
let print_predicate x =
Pretty_print_cocci.print_plus_flag := false;
Pretty_print_cocci.print_minus_flag := false;
Pretty_print_engine.pp_predicate x
end
(* prefix has to be nonempty *)
let prefix l1 l2 =
let rec loop = function
([],_) -> true
| (_,[]) -> false
| (x::xs,y::ys) when x = y -> loop (xs,ys)
| _ -> false in
loop(l1,l2)
let compatible_labels l1 l2 =
match (l1,l2) with
(Lib_engine.Absolute(l1),Lib_engine.Absolute(l2)) -> l1 = l2
| (Lib_engine.Absolute(l1),Lib_engine.Prefix(l2)) -> prefix l1 l2
| (Lib_engine.Prefix(l1),Lib_engine.Absolute(l2)) -> prefix l2 l1
| (Lib_engine.Prefix(l1),Lib_engine.Prefix(l2)) ->
not (l1 = []) && not (l2 = []) &&
List.hd l1 = List.hd l2 (* labels are never empty *)
let merge_labels l1 l2 =
match (l1,l2) with
(* known to be compatible *)
(Lib_engine.Absolute(_),Lib_engine.Absolute(_)) -> l1
| (Lib_engine.Absolute(_),Lib_engine.Prefix(_)) -> l1
| (Lib_engine.Prefix(_),Lib_engine.Absolute(_)) -> l2
| (Lib_engine.Prefix(l1),Lib_engine.Prefix(l2)) ->
let rec max_prefix = function
(x::xs,y::ys) when x = y -> x::(max_prefix(xs,ys))
| (l1,l2) -> [] in
Lib_engine.Prefix(max_prefix(l1,l2))
module ENV =
struct
type value = Lib_engine.metavar_binding_kind2
type mvar = Ast_cocci.meta_name
let eq_mvar x x' = x = x'
let eq_val v v' =
(* v = v' *)
match (v,v') with
(Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min1,max1)),
Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min2,max2))) ->
((min1 <= min2) && (max1 >= max2)) ||
((min2 <= min1) && (max2 >= max1))
| (Lib_engine.NormalMetaVal(Ast_c.MetaTypeVal a),
Lib_engine.NormalMetaVal(Ast_c.MetaTypeVal b)) ->
C_vs_c.eq_type a b
| (Lib_engine.NormalMetaVal(Ast_c.MetaStmtVal(a,_,_)),
Lib_engine.NormalMetaVal(Ast_c.MetaStmtVal(b,_,_))) -> a = b
| (Lib_engine.NormalMetaVal(Ast_c.MetaDeclVal(a,_)),
Lib_engine.NormalMetaVal(Ast_c.MetaDeclVal(b,_))) -> a = b
| (Lib_engine.LabelVal(l1),Lib_engine.LabelVal(l2)) ->
compatible_labels l1 l2
| _ -> v = v'
let merge_val v v' = (* values guaranteed to be compatible *)
(* v *)
match (v,v') with
(Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min1,max1)),
Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min2,max2))) ->
if (min1 <= min2) && (max1 >= max2)
then Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min1,max1))
else
if (min2 <= min1) && (max2 >= max1)
then Lib_engine.NormalMetaVal(Ast_c.MetaPosVal(min2,max2))
else failwith "incompatible positions give to merge"
| (Lib_engine.NormalMetaVal(Ast_c.MetaTypeVal a),
Lib_engine.NormalMetaVal(Ast_c.MetaTypeVal b)) ->
Lib_engine.NormalMetaVal (Ast_c.MetaTypeVal (C_vs_c.merge_type a b))
| (Lib_engine.LabelVal(l1),Lib_engine.LabelVal(l2)) ->
Lib_engine.LabelVal(merge_labels l1 l2)
| _ -> v
let print_mvar (_,s) = Format.print_string s
let print_value x = Pretty_print_engine.pp_binding_kind2 x
end
module CFG =
struct
type node = F.G.key
type cfg = F.node F.G.ograph_mutable
let predecessors cfg n =
List.map fst (F.KeyEdgeSet.elements (cfg#predecessors n))
let successors cfg n =
List.map fst (F.KeyEdgeSet.elements (cfg#successors n))
let direct_predecessors cfg n =
List.map fst
(List.filter (fun (a,c) -> c = F.Direct)
(F.KeyEdgeSet.elements (cfg#predecessors n)))
let direct_successors cfg n =
List.map fst
(List.filter (fun (a,c) -> c = F.Direct)
(F.KeyEdgeSet.elements (cfg#successors n)))
let extract_is_loop cfg n =
Control_flow_c.extract_is_loop (F.KeyMap.find n cfg#nodes)
let print_node i = Format.print_string (string_of_int i)
let size cfg = F.KeyMap.cardinal cfg#nodes
(* In ctl_engine, we use 'node' for the node but in the Ograph_extended
* terminology, this 'node' is in fact an index to access the real
* node information (that ctl/ wants to abstract away to be more generic),
* the 'Ograph_extended.nodei'.
*)
let print_graph cfg label border_colors fill_colors filename =
F.G.print_ograph_mutable_generic cfg label
(fun (nodei, (node: F.node)) ->
(* the string julia wants to put ? *)
let bc = try Some(List.assoc nodei border_colors) with _ -> None in
let fc = try Some(List.assoc nodei fill_colors) with _ -> None in
(* the string yoann put as debug information in the cfg *)
let str = snd node in
(str,bc,fc)
)
~output_file:filename
~launch_gv:false
end
module WRAPPED_ENGINE = Wrapper_ctl.CTL_ENGINE_BIS (ENV) (CFG) (PRED)
let print_bench _ = WRAPPED_ENGINE.print_bench()
type pred = Lib_engine.predicate * Ast_cocci.meta_name Ast_ctl.modif
(*****************************************************************************)
let metavars_binding2_to_binding binding2 =
binding2 +> Common.map_filter (fun (s, kind2) ->
match kind2 with
| Lib_engine.NormalMetaVal kind -> Some (s, kind)
(* I thought it was Impossible to have this when called from
satbis_to_trans_info but it does not seems so *)
| Lib_engine.ParenVal _ -> None
| Lib_engine.LabelVal _ -> None
| Lib_engine.BadVal -> None (* should not occur *)
| Lib_engine.GoodVal -> None (* should not occur *)
)
let metavars_binding_to_binding2 binding =
binding +> List.map (fun (s, kind) -> s, Lib_engine.NormalMetaVal kind)
let (satbis_to_trans_info:
(int list *
(F.G.key * Lib_engine.metavars_binding2 * Lib_engine.predicate)) list ->
(int list *
(F.G.key * Lib_engine.metavars_binding * Ast_cocci.rule_elem)) list) =
fun xs ->
xs +> List.fold_left (fun prev (index,(nodei, binding2, pred)) ->
match pred with
| Lib_engine.Match (rule_elem) ->
if !Flag.track_iso_usage then show_isos rule_elem;
(index,
(nodei, metavars_binding2_to_binding binding2, rule_elem))
::prev
(* see BindGood in asttotctl2 *)
| Lib_engine.BindGood (_) -> prev
| _ -> raise (Impossible 50)
) []
(*****************************************************************************)
let rec coalesce_positions = function
[] -> []
| (x,Ast_c.MetaPosValList l)::rest ->
let (same,others) = List.partition (function (x1,_) -> x = x1) rest in
let ls =
List.fold_left
(function prev ->
function
(_,Ast_c.MetaPosValList l) -> l@prev
| _ -> failwith "unexpected non-position")
[] same in
let new_ls = List.sort compare (l@ls) in
(x,Ast_c.MetaPosValList new_ls) :: coalesce_positions others
| (x,Ast_c.MetaComValList l)::rest ->
let (same,others) = List.partition (function (x1,_) -> x = x1) rest in
let ls =
List.fold_left
(function prev ->
function
(_,Ast_c.MetaComValList l) -> l@prev
| _ -> failwith "unexpected non-position")
[] same in
let new_ls = List.sort compare (l@ls) in
(x,Ast_c.MetaComValList new_ls) :: coalesce_positions others
| x::rest -> x :: coalesce_positions rest
let strip env =
List.map
(function (v,vl) ->
let vl =
match vl with
Ast_c.MetaExprVal (a,c,ty) ->
Ast_c.MetaExprVal(Lib_parsing_c.al_inh_expr a,c,ty)
| Ast_c.MetaExprListVal a ->
Ast_c.MetaExprListVal(Lib_parsing_c.al_inh_arguments a)
| Ast_c.MetaStmtVal(a,orig,ty) ->
Ast_c.MetaStmtVal(Lib_parsing_c.al_inh_statement a,orig,ty)
| Ast_c.MetaInitVal a ->
Ast_c.MetaInitVal(Lib_parsing_c.al_inh_init a)
| Ast_c.MetaInitListVal a ->
Ast_c.MetaInitListVal(Lib_parsing_c.al_inh_inits a)
| x -> (*don't contain binding info*) x in
(v,vl))
env
(*****************************************************************************)
(* Call ctl engine *)
(*****************************************************************************)
let (mysat2:
Lib_engine.model ->
(Lib_engine.ctlcocci * (pred list list)) ->
(string (*rulename*) * Lib_engine.mvar list*Lib_engine.metavars_binding) ->
(Lib_engine.numbered_transformation_info * bool *
Lib_engine.metavars_binding * Lib_engine.metavars_binding list)) =
fun ((flow, label, preproc, states) as m)
ctl (rulename, used_after, binding) ->
let binding2 = metavars_binding_to_binding2 binding in
let (triples,(trans_info2, returned_any_states, used_after_envs)) =
WRAPPED_ENGINE.satbis m ctl (used_after, binding2) in
if not (!Flag_parsing_cocci.sgrep_mode || !Flag.sgrep_mode2 ||
!Flag_matcher.allow_inconsistent_paths)
then Check_reachability.check_reachability rulename triples flow;
let (trans_info2,used_after_fresh_envs) =
Postprocess_transinfo.process used_after binding2 trans_info2 in
let used_after_envs =
Common.nub (List.map2 (@) used_after_fresh_envs used_after_envs) in
let trans_info = satbis_to_trans_info trans_info2 in
let newbindings = List.map metavars_binding2_to_binding used_after_envs in
let newbindings = List.map coalesce_positions newbindings in
let newbindings = List.map strip newbindings in
let newbindings = Common.nub newbindings in
(trans_info, returned_any_states, binding, newbindings)
let mysat a b c =
Common.profile_code "mysat" (fun () -> mysat2 a b c)
|