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 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
|
(*
* 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 Format
module Ast = Ast_cocci
let print_plus_flag = ref true
let print_minus_flag = ref true
let print_newlines_disj = ref true
let start_block _str =
force_newline(); print_string " "; open_box 0
let end_block _str =
close_box(); force_newline ()
let print_string_box s = print_string s; open_box 0
let print_option = Common.do_option
let print_between = Common.print_between
(* --------------------------------------------------------------------- *)
(* Modified code *)
(* avoid polyvariance problems *)
let anything : (Ast.anything -> unit) ref = ref (function _ -> ())
let rec print_anything str = function
[] -> ()
| stream ->
start_block();
print_between force_newline
(function x ->
print_string str; open_box 0; print_anything_list x; close_box())
stream;
end_block()
and print_anything_list = function
[] -> ()
| [x] -> !anything x
| bef::((aft::_) as rest) ->
!anything bef;
let space =
(match bef with
Ast.Rule_elemTag(_) | Ast.AssignOpTag(_) | Ast.BinaryOpTag(_)
| Ast.ArithOpTag(_) | Ast.LogicalOpTag(_)
| Ast.Token("if",_) | Ast.Token("while",_) -> true | _ -> false) ||
(match aft with
Ast.Rule_elemTag(_) | Ast.AssignOpTag(_) | Ast.BinaryOpTag(_)
| Ast.ArithOpTag(_) | Ast.LogicalOpTag(_) | Ast.Token("{",_) -> true
| _ -> false) in
if space then print_string " ";
print_anything_list rest
let print_around printer term = function
Ast.NOTHING -> printer term
| Ast.BEFORE(bef,_) -> print_anything "<<< " bef; printer term
| Ast.AFTER(aft,_) -> printer term; print_anything ">>> " aft
| Ast.BEFOREAFTER(bef,aft,_) ->
print_anything "<<< " bef; printer term; print_anything ">>> " aft
let print_string_befaft fn x info =
let print = function
Ast.Noindent s | Ast.Indent s | Ast.Space s -> print_string s in
List.iter (function (s,_,_) -> print s; force_newline()) info.Ast.strbef;
fn x;
List.iter (function (s,_,_) -> force_newline(); print s) info.Ast.straft
let print_meta (_r,x) = print_string x
let print_pos l =
List.iter
(function
Ast.MetaPos(name,_,_,_,_) ->
let name = Ast.unwrap_mcode name in
print_string "@"; print_meta name; print_space()
| Ast.MetaCom(name,_,_,_) ->
let name = Ast.unwrap_mcode name in
print_string "@"; print_meta name; print_space())
l
let mcode fn = function
(x, _, Ast.MINUS(_,_,_adj,plus_stream), pos) ->
if !print_minus_flag
then print_string (if !Flag.sgrep_mode2 then "*" else "-");
fn x; print_pos pos;
if !print_plus_flag
then
(match plus_stream with
Ast.NOREPLACEMENT -> ()
| Ast.REPLACEMENT(plus_stream,_) -> print_anything ">>> " plus_stream)
| (x, _, Ast.CONTEXT(_,plus_streams), pos) ->
if !print_plus_flag
then
let fn x = fn x; print_pos pos in
print_around fn x plus_streams
else (fn x; print_pos pos)
| (x, info, Ast.PLUS _, pos) ->
let fn x = fn x; print_pos pos in
print_string_befaft fn x info
let print_mcodekind = function
Ast.MINUS(_,_,_,plus_stream) ->
print_string "MINUS";
(match plus_stream with
Ast.NOREPLACEMENT -> ()
| Ast.REPLACEMENT(plus_stream,_) -> print_anything ">>> " plus_stream)
| Ast.CONTEXT(_,plus_streams) ->
print_around (function _ -> print_string "CONTEXT") () plus_streams
| Ast.PLUS _ -> print_string "PLUS"
(* --------------------------------------------------------------------- *)
(* --------------------------------------------------------------------- *)
(* Dots *)
let dots between fn d = print_between between fn (Ast.unwrap d)
let nest_dots starter ender fn f d =
mcode print_string starter;
f(); start_block(); print_between force_newline fn (Ast.unwrap d);
end_block();
mcode print_string ender
(* --------------------------------------------------------------------- *)
(* Disjunctions *)
let print_disj_list fn l sep =
if !print_newlines_disj
then (force_newline(); print_string "("; force_newline())
else print_string "(";
print_between
(function _ ->
if !print_newlines_disj
then (force_newline(); print_string sep; force_newline())
else print_string (" "^sep^" "))
fn l;
if !print_newlines_disj
then (force_newline(); print_string ")"; force_newline())
else print_string ")"
(* --------------------------------------------------------------------- *)
let print_type _keep _info = function
None -> () (*
;print_string "/* notype ";(*
print_string "keep:"; print_unitary keep;
print_string " inherited:"; print_bool inherited;*)
print_string " */" *)
| Some _ty -> () (*
;
print_string "/* ";
print_between (function _ -> print_string ", ") Type_cocci.typeC ty;(*
print_string "keep:"; print_unitary keep;
print_string " inherited:"; print_bool inherited;*)
print_string " */" *)
(* --------------------------------------------------------------------- *)
(* Constraint on Identifier and Function *)
(* FIXME: Not called at the moment *)
let string_or_meta_name = function
Ast.CstrConstant (Ast.CstrString _) | Ast.CstrMeta_name _ -> true
| _ -> false
let print_string_or_meta_name = function
Ast.CstrConstant (Ast.CstrString s) -> Printf.printf " %s" s
| Ast.CstrMeta_name (r, n) -> print_string " "; print_meta (r, n)
| _ -> assert false
let general_constraint = function
Ast.CstrTrue -> print_string "/* No constraint */"
| Ast.CstrOr l when List.for_all string_or_meta_name l ->
print_string " =";
List.iter print_string_or_meta_name l
| Ast.CstrNot (Ast.CstrOr l) when List.for_all string_or_meta_name l ->
print_string " !=";
List.iter print_string_or_meta_name l
| Ast.CstrRegexp (re,_) ->
print_string "~= \""; print_string re; print_string "\""
| Ast.CstrNot (Ast.CstrRegexp (re,_)) ->
print_string "~!= \""; print_string re; print_string "\""
| Ast.CstrScript _ -> print_string ": [script]"
| _ -> print_string ": ??"
(* --------------------------------------------------------------------- *)
(* Identifier *)
let rec ident i =
match Ast.unwrap i with
Ast.Id(name) -> mcode print_string name
| Ast.MetaId(name,_,keep,inherited) -> mcode print_meta name
| Ast.MetaFunc(name,_,_,_) -> mcode print_meta name
| Ast.MetaLocalFunc(name,_,_,_) -> mcode print_meta name
| Ast.AsIdent(id,asid) -> ident id; print_string "@"; ident asid
| Ast.DisjId(id_list) -> print_disj_list ident id_list "|"
| Ast.ConjId(id_list) -> print_disj_list ident id_list "&"
| Ast.OptIdent(id) -> print_string "?"; ident id
and print_unitary = function
Ast.Unitary -> print_string "unitary"
| Ast.Nonunitary -> print_string "nonunitary"
| Ast.Saved -> print_string "saved"
(* --------------------------------------------------------------------- *)
(* Expression *)
let rec expression e =
match Ast.unwrap e with
Ast.Ident(id) -> ident id
| Ast.Constant(const) -> mcode constant const
| Ast.StringConstant(lq,str,rq) ->
mcode print_string lq;
dots (function _ -> ()) string_fragment str;
mcode print_string rq
| Ast.FunCall(fn,lp,args,rp) ->
expression fn; mcode print_string_box lp;
dots (function _ -> ()) expression args;
close_box(); mcode print_string rp
| Ast.Assignment(left,op,right,simple) ->
expression left; print_string " "; assignOp op;
print_string " "; expression right
| Ast.Sequence(left,op,right) ->
expression left; mcode print_string op;
print_string " "; expression right
| Ast.CondExpr(exp1,why,exp2,colon,exp3) ->
expression exp1; print_string " "; mcode print_string why;
print_option (function e -> print_string " "; expression e) exp2;
print_string " "; mcode print_string colon; expression exp3
| Ast.Postfix(exp,op) -> expression exp; mcode fixOp op
| Ast.Infix(exp,op) -> mcode fixOp op; expression exp
| Ast.Unary(exp,op) -> mcode unaryOp op; expression exp
| Ast.Binary(left,op,right) ->
expression left; print_string " "; binaryOp op; print_string " ";
expression right
| Ast.Nested(left,op,right) ->
expression left; print_string " "; binaryOp op; print_string " ";
expression right
| Ast.Paren(lp,exp,rp) ->
mcode print_string_box lp; expression exp; close_box();
mcode print_string rp
| Ast.ArrayAccess(exp1,lb,exp2,rb) ->
expression exp1; mcode print_string_box lb; expression exp2; close_box();
mcode print_string rb
| Ast.RecordAccess(exp,pt,field) ->
expression exp; mcode print_string pt; ident field
| Ast.RecordPtAccess(exp,ar,field) ->
expression exp; mcode print_string ar; ident field
| Ast.Cast(lp,ty,rp,exp) ->
mcode print_string_box lp; fullType ty; close_box();
mcode print_string rp; expression exp
| Ast.SizeOfExpr(sizeof,exp) ->
mcode print_string sizeof; expression exp
| Ast.SizeOfType(sizeof,lp,ty,rp) ->
mcode print_string sizeof;
mcode print_string_box lp; fullType ty; close_box();
mcode print_string rp
| Ast.TypeExp(ty) -> fullType ty
| Ast.Constructor(lp,ty,rp,init) ->
mcode print_string_box lp; fullType ty; close_box();
mcode print_string rp; initialiser init
| Ast.MetaErr(name,_,_,_) -> mcode print_meta name
| Ast.MetaExpr(name,_,keep,ty,form,inherited,_) ->
mcode print_meta name; print_type keep inherited ty
| Ast.MetaExprList(name,_,_,_,_) -> mcode print_meta name
| Ast.AsExpr(exp,asexp) -> expression exp; print_string "@"; expression asexp
| Ast.AsSExpr(exp,asstm) ->
expression exp; print_string "@"; rule_elem "" asstm
| Ast.EComma(cm) -> mcode print_string cm; print_space()
| Ast.DisjExpr(exp_list) -> print_disj_list expression exp_list "|"
| Ast.ConjExpr(exp_list) -> print_disj_list expression exp_list "&"
| Ast.NestExpr(starter,expr_dots,ender,Some whencode,multi) ->
nest_dots starter ender expression
(function _ -> print_string " when != "; expression whencode)
expr_dots
| Ast.NestExpr(starter,expr_dots,ender,None,multi) ->
nest_dots starter ender expression (function _ -> ()) expr_dots
| Ast.Edots(dots,Some whencode) ->
mcode print_string dots; print_string " when != "; expression whencode
| Ast.Edots(dots,None) -> mcode print_string dots
| Ast.OptExp(exp) -> print_string "?"; expression exp
and string_fragment e =
match Ast.unwrap e with
Ast.ConstantFragment(str) -> mcode print_string str
| Ast.FormatFragment(pct,fmt) ->
mcode print_string pct;
string_format fmt
| Ast.Strdots dots -> mcode print_string dots
| Ast.MetaFormatList(pct,name,lenname,_,_,_) ->
mcode print_string pct;
mcode print_meta name
and string_format e =
match Ast.unwrap e with
Ast.ConstantFormat(str) -> mcode print_string str
| Ast.MetaFormat(name,_,_,_) -> mcode print_meta name
and unaryOp = function
Ast.GetRef -> print_string "&"
| Ast.GetRefLabel -> print_string "&&"
| Ast.DeRef -> print_string "*"
| Ast.UnPlus -> print_string "+"
| Ast.UnMinus -> print_string "-"
| Ast.Tilde -> print_string "~"
| Ast.Not -> print_string "!"
and assignOp op =
match Ast.unwrap op with
Ast.SimpleAssign op -> mcode print_string op
| Ast.OpAssign(aop) ->
mcode (function op -> arithOp op; print_string "=") aop
| Ast.MetaAssign(metavar,_,_,_) -> mcode print_meta metavar
and simpleAssignOp op = print_string "="
and opAssignOp aop = arithOp aop; print_string "="
and fixOp = function
Ast.Dec -> print_string "--"
| Ast.Inc -> print_string "++"
and binaryOp op =
match Ast.unwrap op with
Ast.Arith(aop) -> mcode arithOp aop
| Ast.Logical(lop) -> mcode logicalOp lop
| Ast.MetaBinary(metavar,_,_,_) -> mcode print_meta metavar
and arithOp = function
Ast.Plus -> print_string "+"
| Ast.Minus -> print_string "-"
| Ast.Mul -> print_string "*"
| Ast.Div -> print_string "/"
| Ast.Min -> print_string "<?"
| Ast.Max -> print_string ">?"
| Ast.Mod -> print_string "%"
| Ast.DecLeft -> print_string "<<"
| Ast.DecRight -> print_string ">>"
| Ast.And -> print_string "&"
| Ast.Or -> print_string "|"
| Ast.Xor -> print_string "^"
and logicalOp = function
Ast.Inf -> print_string "<"
| Ast.Sup -> print_string ">"
| Ast.InfEq -> print_string "<="
| Ast.SupEq -> print_string ">="
| Ast.Eq -> print_string "=="
| Ast.NotEq -> print_string "!="
| Ast.AndLog -> print_string "&&"
| Ast.OrLog -> print_string "||"
and constant = function
Ast.String(s) -> print_string "\""; print_string s; print_string "\""
| Ast.Char(s) -> print_string "'"; print_string s; print_string "'"
| Ast.Int(s) -> print_string s
| Ast.Float(s) -> print_string s
| Ast.DecimalConst(s,_,_) -> print_string s
(* --------------------------------------------------------------------- *)
(* Declarations *)
and storage = function
Ast.Static -> print_string "static "
| Ast.Auto -> print_string "auto "
| Ast.Register -> print_string "register "
| Ast.Extern -> print_string "extern "
(* --------------------------------------------------------------------- *)
(* Types *)
and fullType ft =
match Ast.unwrap ft with
Ast.Type(_,cv,ty) ->
(match Ast.unwrap ty with
Ast.Pointer(_,_) ->
typeC ty;
print_option (function x -> print_string " "; mcode const_vol x) cv
| _ ->
print_option (function x -> mcode const_vol x; print_string " ") cv;
typeC ty)
| Ast.AsType(ty,asty) -> fullType ty; print_string "@"; fullType asty
| Ast.DisjType(decls) -> print_disj_list fullType decls "|"
| Ast.ConjType(decls) -> print_disj_list fullType decls "&"
| Ast.OptType(ty) -> print_string "?"; fullType ty
and print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2) fn =
fullType ty; print_string " ";
mcode print_string lp1; mcode print_string star; fn();
mcode print_string rp1; mcode print_string lp1;
parameter_list params; mcode print_string rp2
and varargs = function
| None -> ()
| Some (comma, ellipsis) ->
mcode print_string comma;
mcode print_string ellipsis
and print_fninfo = function
Ast.FStorage(stg) -> mcode storage stg
| Ast.FType(ty) -> fullType ty
| Ast.FInline(inline) -> mcode print_string inline; print_string " "
| Ast.FAttr(attr) -> mcode print_string attr; print_string " "
and typeC ty =
match Ast.unwrap ty with
Ast.BaseType(ty,strings) ->
List.iter (function s -> mcode print_string s; print_string " ") strings
| Ast.SignedT(sgn,ty) -> mcode sign sgn; print_option typeC ty
| Ast.Pointer(ty,star) -> fullType ty; mcode print_string star
| Ast.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) ->
print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2)
(function _ -> ())
| Ast.Array(ty,lb,size,rb) ->
fullType ty; mcode print_string lb; print_option expression size;
mcode print_string rb
| Ast.Decimal(dec,lp,length,comma,precision_opt,rp) ->
mcode print_string dec;
mcode print_string lp;
expression length;
print_option (mcode print_string) comma;
print_option expression precision_opt;
mcode print_string rp
| Ast.EnumName(kind,name) ->
mcode print_string kind;
print_option (function x -> ident x; print_string " ") name
| Ast.EnumDef(ty,lb,ids,rb) ->
fullType ty; mcode print_string lb;
dots force_newline expression ids;
mcode print_string rb
| Ast.StructUnionName(kind,name) ->
mcode structUnion kind;
print_option (function x -> ident x; print_string " ") name
| Ast.StructUnionDef(ty,lb,decls,rb) ->
fullType ty; mcode print_string lb;
dots force_newline (annotated_field "") decls;
mcode print_string rb
| Ast.TypeOfExpr(typeof,lp,exp,rp) ->
mcode print_string typeof;
mcode print_string_box lp; expression exp; close_box();
mcode print_string rp
| Ast.TypeOfType(typeof,lp,ty,rp) ->
mcode print_string typeof;
mcode print_string_box lp; fullType ty; close_box();
mcode print_string rp
| Ast.TypeName(name) -> mcode print_string name; print_string " "
| Ast.MetaType(name,_,_,_) ->
mcode print_meta name; print_string " "
and baseType ty = print_string (Ast.string_of_baseType ty ^ " ")
and structUnion ty = print_string (Ast.string_of_structUnion ty ^ " ")
and sign s = print_string (Ast.string_of_sign s ^ " ")
and const_vol const_vol = print_string (Ast.string_of_const_vol const_vol ^ " ")
(* --------------------------------------------------------------------- *)
(* Variable declaration *)
(* Even if the Cocci program specifies a list of declarations, they are
split out into multiple declarations of a single variable each. *)
and print_named_type ty id =
match Ast.unwrap ty with
Ast.Type(_,None,ty1) ->
(match Ast.unwrap ty1 with
Ast.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) ->
print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2)
(function _ -> id())
| Ast.Array(ty,lb,size,rb) ->
let rec loop ty k =
match Ast.unwrap ty with
Ast.Array(ty,lb,size,rb) ->
(match Ast.unwrap ty with
Ast.Type(_,cv,ty) ->
print_option
(function x -> mcode const_vol x; print_string " ")
cv;
loop ty
(function _ ->
k ();
mcode print_string lb;
print_option expression size;
mcode print_string rb)
| _ -> failwith "complex array types not supported")
| _ -> typeC ty; id(); k () in
loop ty1 (function _ -> ())
| _ -> fullType ty; id())
| _ -> fullType ty; id()
and declaration d =
match Ast.unwrap d with
Ast.MetaDecl(name,_,_,_) ->
mcode print_meta name
| Ast.AsDecl(decl,asdecl) -> declaration decl; print_string "@";
declaration asdecl
| Ast.Init(stg,ty,id,attr,eq,ini,sem) ->
print_option (mcode storage) stg;
print_named_type ty (fun _ -> ident id);
(if not (attr = []) then print_string " ");
print_between print_space (mcode print_string) attr;
print_string " "; mcode print_string eq;
print_string " "; initialiser ini; mcode print_string sem
| Ast.UnInit(stg,ty,id,attr,sem) ->
print_option (mcode storage) stg;
print_named_type ty (fun _ -> ident id);
(if not (attr = []) then print_string " ");
print_between print_space (mcode print_string) attr;
mcode print_string sem
| Ast.FunProto (fninfo,name,lp1,params,va,rp1,sem) ->
List.iter print_fninfo fninfo;
ident name; mcode print_string_box lp1;
parameter_list params; varargs va;
close_box(); mcode print_string rp1;
mcode print_string sem
| Ast.MacroDecl(stg,name,lp,args,rp,sem) ->
print_option (mcode storage) stg; ident name; mcode print_string_box lp;
dots (function _ -> ()) expression args;
close_box(); mcode print_string rp; mcode print_string sem
| Ast.MacroDeclInit(stg,name,lp,args,rp,eq,ini,sem) ->
print_option (mcode storage) stg; ident name; mcode print_string_box lp;
dots (function _ -> ()) expression args;
close_box(); mcode print_string rp;
print_string " "; mcode print_string eq;
print_string " "; initialiser ini; mcode print_string sem
| Ast.TyDecl(ty,sem) -> fullType ty; mcode print_string sem
| Ast.Typedef(stg,ty,id,sem) ->
mcode print_string stg; print_string " ";
print_named_type ty (fun _ -> typeC id);
mcode print_string sem
| Ast.DisjDecl(decls) -> print_disj_list declaration decls "|"
| Ast.ConjDecl(decls) -> print_disj_list declaration decls "&"
| Ast.OptDecl(decl) -> print_string "?"; declaration decl
and annotated_decl arity d =
match Ast.unwrap d with
Ast.DElem(bef,allminus,decl) ->
mcode (function _ -> ()) ((),Ast.no_info,bef,[]);
print_string arity;
declaration decl
(* --------------------------------------------------------------------- *)
(* Field declaration *)
and field d =
match Ast.unwrap d with
Ast.MetaField(name,_,_,_)
| Ast.MetaFieldList(name,_,_,_,_) ->
mcode print_meta name
| Ast.Field(ty,id,bf,sem) ->
begin
match id with
None -> fullType ty
| Some id -> print_named_type ty (fun _ -> ident id);
end;
let bitfield (c, e) =
mcode print_string c;
expression e in
print_option bitfield bf;
mcode print_string sem
| Ast.DisjField(decls) -> print_disj_list field decls "|"
| Ast.ConjField(decls) -> print_disj_list field decls "&"
| Ast.OptField(decl) -> print_string "?"; field decl
and annotated_field arity d =
match Ast.unwrap d with
Ast.FElem(bef,allminus,decl) ->
mcode (function _ -> ()) ((),Ast.no_info,bef,[]);
print_string arity;
field decl
| Ast.Fdots(dots,Some whencode) ->
mcode print_string dots; print_string " when != "; field whencode
| Ast.Fdots(dots,None) -> mcode print_string dots
(* --------------------------------------------------------------------- *)
(* Initialiser *)
and initialiser i =
match Ast.unwrap i with
Ast.MetaInit(name,_,_,_) ->
mcode print_meta name; print_string " "
| Ast.MetaInitList(name,_,_,_,_) ->
mcode print_meta name; print_string " "
| Ast.AsInit(ini,asini) -> initialiser ini; print_string "@";
initialiser asini
| Ast.InitExpr(exp) -> expression exp
| Ast.ArInitList(lb,initlist,rb) ->
mcode print_string lb; open_box 0;
dots force_newline initialiser initlist; close_box();
mcode print_string rb
| Ast.StrInitList(allminus,lb,initlist,rb,whencode) ->
mcode print_string lb; open_box 0;
if not (whencode = [])
then
(print_string " WHEN != ";
print_between (function _ -> print_string " v ")
initialiser whencode;
force_newline());
List.iter initialiser initlist; close_box();
mcode print_string rb
| Ast.InitGccExt(designators,eq,ini) ->
List.iter designator designators; print_string " ";
mcode print_string eq; print_string " "; initialiser ini
| Ast.InitGccName(name,eq,ini) ->
ident name; mcode print_string eq; initialiser ini
| Ast.IComma(comma) -> mcode print_string comma; force_newline()
| Ast.Idots(dots,Some whencode) ->
mcode print_string dots; print_string " when != "; initialiser whencode
| Ast.Idots(dots,None) -> mcode print_string dots
| Ast.OptIni(ini) -> print_string "?"; initialiser ini
and designator = function
Ast.DesignatorField(dot,id) -> mcode print_string dot; ident id
| Ast.DesignatorIndex(lb,exp,rb) ->
mcode print_string lb; expression exp; mcode print_string rb
| Ast.DesignatorRange(lb,min,dots,max,rb) ->
mcode print_string lb; expression min; mcode print_string dots;
expression max; mcode print_string rb
(* --------------------------------------------------------------------- *)
(* Parameter *)
and parameterTypeDef p =
match Ast.unwrap p with
Ast.VoidParam(ty) -> fullType ty
| Ast.Param(ty,Some id) -> print_named_type ty (fun _ -> ident id);
| Ast.Param(ty,None) -> fullType ty
| Ast.MetaParam(name,_,_,_) -> mcode print_meta name
| Ast.MetaParamList(name,_,_,_,_) -> mcode print_meta name
| Ast.PComma(cm) -> mcode print_string cm; print_space()
| Ast.Pdots(dots) -> mcode print_string dots
| Ast.OptParam(param) -> print_string "?"; parameterTypeDef param
| Ast.AsParam(p,asexp) ->
parameterTypeDef p; print_string "@"; expression asexp
and parameter_list l = dots (function _ -> ()) parameterTypeDef l
(* --------------------------------------------------------------------- *)
(* Top-level code *)
and rule_elem arity re =
match Ast.unwrap re with
Ast.FunHeader(bef,allminus,fninfo,name,lp,params,va,rp) ->
mcode (function _ -> ()) ((),Ast.no_info,bef,[]);
print_string arity; List.iter print_fninfo fninfo;
ident name; mcode print_string_box lp;
parameter_list params;
begin match va with
| None -> ()
| Some (comma,ellipsis) ->
mcode print_string comma;
mcode print_string ellipsis
end; close_box(); mcode print_string rp;
print_string " "
| Ast.Decl(ann_decl) -> annotated_decl arity ann_decl
| Ast.SeqStart(brace) ->
print_string arity; mcode print_string brace;
if !print_newlines_disj then start_block()
| Ast.SeqEnd(brace) ->
if !print_newlines_disj then end_block();
print_string arity; mcode print_string brace
| Ast.ExprStatement(exp,sem) ->
print_string arity; print_option expression exp; mcode print_string sem
| Ast.IfHeader(iff,lp,exp,rp) ->
print_string arity;
mcode print_string iff; print_string " "; mcode print_string_box lp;
expression exp; close_box(); mcode print_string rp; print_string " "
| Ast.Else(els) ->
print_string arity; mcode print_string els; print_string " "
| Ast.WhileHeader(whl,lp,exp,rp) ->
print_string arity;
mcode print_string whl; print_string " "; mcode print_string_box lp;
expression exp; close_box(); mcode print_string rp; print_string " "
| Ast.DoHeader(d) ->
print_string arity; mcode print_string d; print_string " "
| Ast.WhileTail(whl,lp,exp,rp,sem) ->
print_string arity;
mcode print_string whl; print_string " "; mcode print_string_box lp;
expression exp; close_box(); mcode print_string rp;
mcode print_string sem
| Ast.ForHeader(fr,lp,first,e2,sem2,e3,rp) ->
print_string arity;
mcode print_string fr; mcode print_string_box lp; forinfo first;
print_option expression e2; mcode print_string sem2;
print_option expression e3; close_box();
mcode print_string rp; print_string " "
| Ast.IteratorHeader(nm,lp,args,rp) ->
print_string arity;
ident nm; print_string " "; mcode print_string_box lp;
dots (function _ -> ()) expression args; close_box();
mcode print_string rp; print_string " "
| Ast.SwitchHeader(switch,lp,exp,rp) ->
print_string arity;
mcode print_string switch; print_string " "; mcode print_string_box lp;
expression exp; close_box(); mcode print_string rp; print_string " "
| Ast.Break(br,sem) ->
print_string arity; mcode print_string br; mcode print_string sem
| Ast.Continue(cont,sem) ->
print_string arity; mcode print_string cont; mcode print_string sem
| Ast.Label(l,dd) -> ident l; mcode print_string dd
| Ast.Goto(goto,l,sem) ->
mcode print_string goto; print_space(); ident l; mcode print_string sem
| Ast.Return(ret,sem) ->
print_string arity; mcode print_string ret; mcode print_string sem
| Ast.ReturnExpr(ret,exp,sem) ->
print_string arity; mcode print_string ret; print_string " ";
expression exp; mcode print_string sem
| Ast.Exec(exec,lang,code,sem) ->
print_string arity; mcode print_string exec; print_string " ";
mcode print_string lang; print_string " ";
dots (function _ -> print_string " ") exec_code code;
mcode print_string sem
| Ast.MetaRuleElem(name,_,_,_) ->
print_string arity; mcode print_meta name
| Ast.MetaStmt(name,_,_,_,_) ->
print_string arity; mcode print_meta name
| Ast.MetaStmtList(name,_,_,_,_) ->
print_string arity; mcode print_meta name
| Ast.Exp(exp) -> print_string arity; expression exp
| Ast.TopExp(exp) -> print_string arity; expression exp
| Ast.Ty(ty) -> print_string arity; fullType ty
| Ast.TopId(id) -> print_string arity; ident id
| Ast.TopInit(init) -> initialiser init
| Ast.Include(inc,s) ->
mcode print_string inc; print_string " "; mcode inc_file s
| Ast.MetaInclude(inc,s) ->
mcode print_string inc; print_string " "; expression s
| Ast.Undef(def,id) ->
mcode print_string def; print_string " "; ident id
| Ast.DefineHeader(def,id,params) ->
mcode print_string def; print_string " "; ident id;
print_define_parameters params
| Ast.Pragma(prg,id,body) ->
mcode print_string prg; print_string " "; ident id; print_string " ";
pragmainfo body
| Ast.Default(def,colon) ->
mcode print_string def; mcode print_string colon; print_string " "
| Ast.AsRe(re,asre) ->
rule_elem arity re; print_string "@"; rule_elem arity asre
| Ast.Case(case,exp,colon) ->
mcode print_string case; print_string " "; expression exp;
mcode print_string colon; print_string " "
| Ast.DisjRuleElem(res) ->
print_string arity;
force_newline(); print_string "("; force_newline();
print_between
(function _ -> force_newline();print_string "|"; force_newline())
(rule_elem arity)
res;
force_newline(); print_string ")"
and forinfo = function
Ast.ForExp(e1,sem1) ->
print_option expression e1; mcode print_string sem1
| Ast.ForDecl(ann_decl) -> annotated_decl "" ann_decl
and pragmainfo pi =
match Ast.unwrap pi with
Ast.PragmaString(s) -> mcode print_string s
| Ast.PragmaDots (dots) -> mcode print_string dots
and print_define_parameters params =
match Ast.unwrap params with
Ast.NoParams -> ()
| Ast.DParams(lp,params,rp) ->
mcode print_string lp;
dots (function _ -> ()) print_define_param params; mcode print_string rp
and print_define_param param =
match Ast.unwrap param with
Ast.DParam(id) -> ident id
| Ast.MetaDParamList(name,_,_,_,_) -> mcode print_meta name
| Ast.DPComma(comma) -> mcode print_string comma
| Ast.DPdots(dots) -> mcode print_string dots
| Ast.OptDParam(dp) -> print_string "?"; print_define_param dp
and statement arity s =
match Ast.unwrap s with
Ast.Seq(lbrace,body,rbrace) ->
rule_elem arity lbrace;
dots force_newline (statement arity) body;
rule_elem arity rbrace
| Ast.IfThen(header,branch,(_,_,_,aft)) ->
rule_elem arity header; statement arity branch;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.IfThenElse(header,branch1,els,branch2,(_,_,_,aft)) ->
rule_elem arity header; statement arity branch1; print_string " ";
rule_elem arity els; statement arity branch2;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.While(header,body,(_,_,_,aft)) ->
rule_elem arity header; statement arity body;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.Do(header,body,tail) ->
rule_elem arity header; statement arity body;
rule_elem arity tail
| Ast.For(header,body,(_,_,_,aft)) ->
rule_elem arity header; statement arity body;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.Iterator(header,body,(_,_,_,aft)) ->
rule_elem arity header; statement arity body;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.Switch(header,lb,decls,cases,rb) ->
rule_elem arity header; rule_elem arity lb;
dots force_newline (statement arity) decls;
List.iter (function x -> case_line arity x; force_newline()) cases;
rule_elem arity rb
| Ast.Atomic(re) -> rule_elem arity re
| Ast.FunDecl(header,lbrace,body,rbrace,(_,_,_,aft)) ->
rule_elem arity header; rule_elem arity lbrace;
dots force_newline (statement arity) body;
rule_elem arity rbrace;
mcode (function _ -> ()) ((),Ast.no_info,aft,[])
| Ast.Disj([stmt_dots]) (* useful why? *)
| Ast.Conj([stmt_dots]) ->
print_string arity;
dots (function _ -> if !print_newlines_disj then force_newline())
(statement arity) stmt_dots
| Ast.Disj(stmt_dots_list) -> (* ignores newline directive for readability *)
print_string arity;
force_newline(); print_string "("; force_newline();
print_between
(function _ -> force_newline();print_string "|"; force_newline())
(dots force_newline (statement arity))
stmt_dots_list;
force_newline(); print_string ")"
| Ast.Conj(stmt_dots_list) -> (* ignores newline directive for readability *)
print_string arity;
force_newline(); print_string "("; force_newline();
print_between
(function _ -> force_newline();print_string "&"; force_newline())
(dots force_newline (statement arity))
stmt_dots_list;
force_newline(); print_string ")"
| Ast.Define(header,body) ->
rule_elem arity header; print_string " ";
dots force_newline (statement arity) body
| Ast.AsStmt(stm,asstm) ->
statement arity stm; print_string "@"; statement arity asstm
| Ast.Nest(starter,stmt_dots,ender,whn,multi,_,_) ->
print_string arity;
nest_dots starter ender (statement arity)
(function _ ->
open_box 0;
print_between force_newline
(whencode (dots force_newline (statement "")) (statement "")) whn;
close_box(); force_newline())
stmt_dots
| Ast.Dots(d,whn,_,_) ->
print_string arity; mcode print_string d;
open_box 0;
print_between force_newline
(whencode (dots force_newline (statement "")) (statement "")) whn;
close_box(); force_newline()
| Ast.OptStm(s) -> statement "?" s
and whencode notfn alwaysfn = function
Ast.WhenNot a ->
print_string " WHEN != "; open_box 0; notfn a; close_box()
| Ast.WhenAlways a ->
print_string " WHEN = "; open_box 0; alwaysfn a; close_box()
| Ast.WhenModifier x -> print_string " WHEN "; print_when_modif x
| Ast.WhenNotTrue a ->
print_string " WHEN != true "; open_box 0; rule_elem "" a; close_box()
| Ast.WhenNotFalse a ->
print_string " WHEN != false "; open_box 0; rule_elem "" a; close_box()
and print_when_modif = function
| Ast.WhenAny -> print_string "any"
| Ast.WhenStrict -> print_string "strict"
| Ast.WhenForall -> print_string "forall"
| Ast.WhenExists -> print_string "exists"
and case_line arity c =
match Ast.unwrap c with
Ast.CaseLine(header,code) ->
rule_elem arity header; print_string " ";
dots force_newline (statement arity) code
| Ast.OptCase(case) -> case_line "?" case
and exec_code e =
match Ast.unwrap e with
Ast.ExecEval(colon,id) -> mcode print_string colon; expression id
| Ast.ExecToken(tok) -> mcode print_string tok
| Ast.ExecDots(dots) -> mcode print_string dots
(* --------------------------------------------------------------------- *)
(* CPP code *)
and inc_file = function
Ast.Local(elems) ->
print_string "\"";
print_between (function _ -> print_string "/") inc_elem elems;
print_string "\""
| Ast.NonLocal(elems) ->
print_string "<";
print_between (function _ -> print_string "/") inc_elem elems;
print_string ">"
| Ast.AnyInc -> print_string "..."
and inc_elem = function
Ast.IncPath s -> print_string s
| Ast.IncDots -> print_string "..."
(* for export only *)
let statement_dots l = dots force_newline (statement "") l
(* --------------------------------------------------------------------- *)
(* metavars *)
let print_name rule r n =
if rule = r
then print_string n
else print_string (Printf.sprintf "%s.%s" r n)
let print_listlen rule = function
Ast.MetaLen((r,n),_) ->
print_string "["; print_name rule r n; print_string "] "
| Ast.CstLen(n) -> print_string "["; print_string (string_of_int n);
print_string "] "
| Ast.AnyLen -> print_string " "
(* why does this not use typeC? *)
let print_types = function
None -> ()
| Some [ty] -> print_string (Ast.string_of_fullType ty); print_string " "
| Some l ->
print_string "{";
print_between (fun _ -> print_string ",")
(fun ty -> print_string (Ast.string_of_fullType ty))
l;
print_string "} "
let print_seed_elem rule = function
Ast.SeedString(s) -> print_string (Printf.sprintf "\"%s\"" s)
| Ast.SeedId(r,n) -> print_name rule r n
let print_seed rule = function
Ast.NoVal -> ()
| Ast.StringSeed(s) -> print_string " = "; print_string s
| Ast.ListSeed(ss) ->
print_string " = ";
print_between (fun _ -> print_string " ## ") (print_seed_elem rule) ss
let contains_unknown ty =
try
Ast.fullType_iter { Ast.empty_transformer with
Ast.baseType =
Some (fun ty _ -> match ty with Ast.Unknown -> raise Exit | _ -> ())
} ty;
false
with Exit -> true
let unparse_cocci_mv rule = function
Ast.MetaMetaDecl _ -> failwith "should be removed"
| Ast.MetaIdDecl(_,(r,n)) ->
print_string "identifier "; print_name rule r n; print_string ";"
| Ast.MetaFreshIdDecl((r,n),seed) ->
print_string "fresh identifier "; print_name rule r n;
print_string " = "; print_seed rule seed; print_string ";"
| Ast.MetaTypeDecl(_,(r,n)) ->
print_string "type "; print_name rule r n; print_string ";"
| Ast.MetaInitDecl(_,(r,n)) ->
print_string "initializer "; print_name rule r n; print_string ";"
| Ast.MetaInitListDecl(_,(r,n),len) ->
print_string "initializer list"; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaListlenDecl(r,n) -> ()
| Ast.MetaParamDecl(_,(r,n)) ->
print_string "parameter "; print_name rule r n; print_string ";"
| Ast.MetaBinaryOperatorDecl(_,(r,n)) -> (* missing constraints *)
print_string "binary operator "; print_name rule r n; print_string ";"
| Ast.MetaAssignmentOperatorDecl(_,(r,n)) -> (* missing constraints *)
print_string "assignment operator "; print_name rule r n;
print_string ";"
| Ast.MetaParamListDecl(_,(r,n),len) ->
print_string "parameter list"; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaConstDecl(_,(r,n),ty) ->
print_string "constant "; print_types ty;
print_name rule r n; print_string ";"
| Ast.MetaErrDecl(_,(r,n)) ->
print_string "error "; print_name rule r n; print_string ";"
| Ast.MetaExpDecl(_,(r,n),None,_bitfield) ->
print_string "expression "; print_name rule r n; print_string ";"
| Ast.MetaExpDecl(_,(r,n),ty,_bitfield) ->
(match ty with
None -> ()
| Some ty -> (* unknown only possible when there is only one type? *)
if List.exists contains_unknown ty then print_string "expression ");
print_types ty; print_name rule r n; print_string ";"
| Ast.MetaIdExpDecl(_,(r,n),ty) ->
print_string "idexpression "; print_types ty;
print_name rule r n; print_string ";"
| Ast.MetaLocalIdExpDecl(_,(r,n),ty) ->
print_string "local idexpression "; print_types ty;
print_name rule r n; print_string ";"
| Ast.MetaGlobalIdExpDecl(_,(r,n),ty) ->
print_string "global idexpression "; print_types ty;
print_name rule r n; print_string ";"
| Ast.MetaExpListDecl(_,(r,n),len) ->
print_string "expression list"; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaDeclDecl(_,(r,n)) ->
print_string "declaration "; print_name rule r n; print_string ";"
| Ast.MetaFieldDecl(_,(r,n)) ->
print_string "field "; print_name rule r n; print_string ";"
| Ast.MetaFieldListDecl(_,(r,n),len) ->
print_string "field list"; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaStmDecl(_,(r,n)) ->
print_string "statement "; print_name rule r n; print_string ";"
| Ast.MetaStmListDecl(_,(r,n),len) ->
print_string "statement list "; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaDParamListDecl(_,(r,n),len) ->
print_string "identifier list "; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaFuncDecl(_,(r,n)) ->
print_string "function "; print_name rule r n; print_string ";"
| Ast.MetaLocalFuncDecl(_,(r,n)) ->
print_string "local function "; print_name rule r n; print_string ";"
| Ast.MetaPosDecl(_,(r,n)) -> (* constraints missing! *)
print_string "position "; print_name rule r n; print_string ";"
| Ast.MetaComDecl(_,(r,n)) ->
print_string "comments "; print_name rule r n; print_string ";"
| Ast.MetaFmtDecl(_,(r,n)) ->
print_string "format "; print_name rule r n; print_string ";"
| Ast.MetaFragListDecl(_,(r,n),len) ->
print_string "fragment list"; print_listlen rule len;
print_name rule r n; print_string ";"
| Ast.MetaAnalysisDecl(analyzer,(r,n)) ->
failwith "analyzer not supported"
| Ast.MetaDeclarerDecl(_,(r,n)) ->
print_string "declarer "; print_name rule r n; print_string ";"
| Ast.MetaIteratorDecl(_,(r,n)) ->
print_string "iterator "; print_name rule r n; print_string ";"
| Ast.MetaScriptDecl _ -> failwith "not a cocci decl"
(* --------------------------------------------------------------------- *)
let top_level t =
match Ast.unwrap t with
Ast.FILEINFO(old_file,new_file) ->
print_string "--- "; mcode print_string old_file; force_newline();
print_string "+++ "; mcode print_string new_file
| Ast.NONDECL(stmt) -> statement "" stmt
| Ast.CODE(stmt_dots) ->
dots force_newline (statement "") stmt_dots
| Ast.ERRORWORDS(exps) ->
print_string "error words = [";
print_between (function _ -> print_string ", ") expression exps;
print_string "]"
let rule =
print_between (function _ -> force_newline(); force_newline()) top_level
let pp_print_anything x = !anything x
let _ =
anything := function
Ast.FullTypeTag(x) -> fullType x
| Ast.BaseTypeTag(x) -> baseType x
| Ast.StructUnionTag(x) -> structUnion x
| Ast.SignTag(x) -> sign x
| Ast.IdentTag(x) -> ident x
| Ast.ExpressionTag(x) -> expression x
| Ast.ConstantTag(x) -> constant x
| Ast.UnaryOpTag(x) -> unaryOp x
| Ast.AssignOpTag(x) -> assignOp x
| Ast.SimpleAssignOpTag(x) -> simpleAssignOp (Ast.make_mcode x)
| Ast.OpAssignOpTag(x) -> opAssignOp x
| Ast.FixOpTag(x) -> fixOp x
| Ast.BinaryOpTag(x) -> binaryOp x
| Ast.ArithOpTag(x) -> arithOp x
| Ast.LogicalOpTag(x) -> logicalOp x
| Ast.InitTag(x) -> initialiser x
| Ast.DeclarationTag(x) -> declaration x
| Ast.FieldTag(x) -> field x
| Ast.StorageTag(x) -> storage x
| Ast.IncFileTag(x) -> inc_file x
| Ast.Rule_elemTag(x) -> rule_elem "" x
| Ast.StatementTag(x) -> statement "" x
| Ast.ForInfoTag(x) -> forinfo x
| Ast.CaseLineTag(x) -> case_line "" x
| Ast.StringFragmentTag(x) -> string_fragment x
| Ast.ConstVolTag(x) -> const_vol x
| Ast.Token(x,Some info) -> print_string_befaft print_string x info
| Ast.Token(x,None) -> print_string x
| Ast.Directive(xs) ->
let print = function
Ast.Noindent s | Ast.Indent s | Ast.Space s -> print_string s in
print_between force_newline print xs
| Ast.Code(x) -> let _ = top_level x in ()
| Ast.ExprDotsTag(x) -> dots (function _ -> ()) expression x
| Ast.ParamDotsTag(x) -> parameter_list x
| Ast.StmtDotsTag(x) -> dots (function _ -> ()) (statement "") x
| Ast.AnnDeclDotsTag(x) -> dots (function _ -> ()) (annotated_decl "") x
| Ast.AnnFieldDotsTag(x) -> dots (function _ -> ()) (annotated_field "") x
| Ast.DefParDotsTag(x) -> dots (function _ -> ()) print_define_param x
| Ast.TypeCTag(x) -> typeC x
| Ast.ParamTag(x) -> parameterTypeDef x
| Ast.SgrepStartTag(x) -> print_string x
| Ast.SgrepEndTag(x) -> print_string x
let rec dep in_and = function
Ast.Dep(s) -> print_string s
| Ast.AntiDep(s) -> print_string "!"; print_string s
| Ast.EverDep(s) -> print_string "ever "; print_string s
| Ast.NeverDep(s) -> print_string "never "; print_string s
| Ast.AndDep(s1,s2) ->
let print_and _ =
dep true s1; print_string " && "; dep true s2 in
if in_and
then print_and ()
else (print_string "("; print_and(); print_string ")")
| Ast.OrDep(s1,s2) ->
let print_or _ =
dep false s1; print_string " || "; dep false s2 in
if not in_and
then print_or ()
else (print_string "("; print_or(); print_string ")")
| Ast.FileIn s -> print_string "file in "; print_string s
| Ast.NotFileIn s -> print_string "not file in "; print_string s
let dependency = function
Ast.NoDep -> print_string "no_dep"
| Ast.FailDep -> print_string "fail_dep"
| Ast.ExistsDep d -> dep true d
| Ast.ForallDep d -> print_string "forall "; dep true d
let script_header str lang deps mv code =
print_string (Printf.sprintf "@%s:%s" str lang);
(match deps with
Ast.NoDep -> ()
| _ -> print_string " depends on "; dependency deps);
print_string "@";
force_newline();
List.iter
(function (script_name,inh_name,_ty,init) ->
(match script_name with
(None,None) -> print_string "(_,_)"
| (Some x,None) -> print_string x
| (None,Some a) -> print_string (Printf.sprintf "(_,%s)" a)
| (Some x,Some a) -> print_string (Printf.sprintf "(%s,%s)" x a));
print_string " << ";
print_string (Printf.sprintf "%s.%s" (fst inh_name) (snd inh_name));
(match init with
Ast.NoMVInit -> ()
| Ast.MVInitString s ->
print_space(); print_string "="; print_space();
print_string "\""; print_string s; print_string "\""
| Ast.MVInitPosList ->
print_space(); print_string "="; print_space(); print_string "[]");
print_string ";";
force_newline())
mv;
print_string "@@";
force_newline();
let code =
String.concat "\n"
(Str.split (Str.regexp "[\n\r\011\012]#.*[\n\r\011\012]") code) in
print_string code;
force_newline()
let unparse mvs z =
match z with
Ast.InitialScriptRule (name,lang,deps,mv,_pos,code) ->
script_header "initialize" lang deps mv code
| Ast.FinalScriptRule (name,lang,deps,mv,_pos,code) ->
script_header "finalize" lang deps mv code
| Ast.ScriptRule (name,lang,deps,bindings,script_vars,_pos,code) ->
script_header "script" lang deps bindings code
| Ast.CocciRule (nm, (deps, drops, exists), x, _, _) ->
print_string "@";
print_string nm;
(match deps with
Ast.NoDep -> ()
| _ -> print_string " depends on "; dependency deps);
(match drops with
[] -> ()
| _ -> print_string " disable "; print_string (String.concat "," drops));
(match exists with
Ast.Exists -> print_string " exists"
| Ast.Forall -> print_string " forall"
| Ast.Undetermined -> ());
print_string "@";
force_newline();
List.iter (fun mv -> unparse_cocci_mv nm mv; force_newline()) mvs;
print_string "@@";
print_newlines_disj := true;
force_newline();
force_newline();
rule x;
force_newline();
force_newline()
let rule_elem_to_string x =
print_newlines_disj := true;
Common.format_to_string (function _ -> rule_elem "" x)
let ident_to_string x =
print_newlines_disj := true;
Common.format_to_string (function _ -> ident x)
let unparse_to_string x =
print_newlines_disj := true;
Common.format_to_string (function _ -> unparse [] x)
let print_rule_elem re =
let nl = !print_newlines_disj in
print_newlines_disj := false;
rule_elem "" re;
print_newlines_disj := nl
|