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
|
open Lexing
open Filename
open Location
open Longident
open Output
open Printf
open Asttypes
open Parsetree
type where = { w_filename : string; w_loc : int }
module Whereset = Set.Make(struct type t = where let compare = compare end)
type entry_type =
| Value
| Constructor
| Field
| Label
| Type
| Exception
| Module
| ModuleType
| Class
| Method
| LexParseRule
| RegExpr
| YaccNonTerminal
| YaccTerminal
type index_entry = { e_name : string; e_type : entry_type }
module Idmap = Map.Make(struct type t = index_entry let compare = compare end)
let defined = ref Idmap.empty
let used = ref Idmap.empty
let add_global table k i =
try
let s = Idmap.find k !table in
table := Idmap.add k (Whereset.add i s) !table
with Not_found ->
table := Idmap.add k (Whereset.singleton i) !table
let current_file = ref ""
let current_offset = ref 0
let current_location loc =
{ w_filename = !current_file;
w_loc = !current_offset + loc.loc_start.pos_cnum }
let add_def loc t s =
if String.length s > 0 then
let e = { e_name = s; e_type = t } in
add_global defined e (current_location loc)
module Stringset = Set.Make(struct type t = string let compare = compare end)
let locals = ref Stringset.empty
let reset_cross f offs =
assert (Stringset.cardinal !locals = 0);
locals := Stringset.empty;
current_file := f;
current_offset := offs
let add_local s =
locals := Stringset.add s !locals
let is_uppercase = function 'A'..'Z' -> true | _ -> false
let add_uses loc t s =
if String.length s > 0 &&
not (is_keyword s) && not (Stringset.mem s !locals)
then
let e = { e_name = s; e_type = t } in
add_global used e (current_location loc)
let add_uses_q loc t q =
let rec addmod = function
| Lident s -> add_uses loc Module s
| Ldot (q,s) -> addmod q; add_uses loc Module s
| Lapply (q1,q2) -> addmod q1; addmod q2
in
match q with
| Lident s -> add_uses loc t s
| Ldot (q,s) -> addmod q; add_uses loc t s
| Lapply (q1,q2) -> addmod q1; addmod q2
let iter_fst f = List.iter (fun x -> f (fst x))
let iter_snd f = List.iter (fun x -> f (snd x))
let option_iter f = function None -> () | Some x -> f x
let ids_of_a_pattern p =
let r = ref [] in
let add id = r := id :: !r in
let rec pattern_d = function
| Ppat_any -> ()
| Ppat_var id -> add id
| Ppat_alias (p,id) -> add id; pattern p
| Ppat_constant _ -> ()
| Ppat_tuple pl -> List.iter pattern pl
| Ppat_construct (_,po,_) -> option_iter pattern po
| Ppat_record l -> iter_snd pattern l
| Ppat_array pl -> List.iter pattern pl
| Ppat_or (p1,p2) -> pattern p1; pattern p2
| Ppat_constraint (p,_) -> pattern p
| Ppat_variant (_,po) -> option_iter pattern po
| Ppat_type _ -> ()
and pattern p =
pattern_d p.ppat_desc
in
pattern p; !r
let pattern_for_def p =
let loc = p.ppat_loc in
let ids = ids_of_a_pattern p in
List.iter (add_def loc Value) ids
let bind_variables ids f x =
let save = !locals in
List.iter add_local ids;
f x;
locals := save
let rec tr_core_type t =
tr_core_type_desc t.ptyp_loc t.ptyp_desc
and tr_core_type_desc loc = function
| Ptyp_any | Ptyp_var _ ->
()
| Ptyp_arrow (l,t1,t2) ->
add_def loc Label l; tr_core_type t1; tr_core_type t2
| Ptyp_tuple tl ->
List.iter tr_core_type tl
| Ptyp_constr (q,tl) ->
add_uses_q loc Type q; List.iter tr_core_type tl
| Ptyp_object l ->
List.iter tr_core_field_type l
| Ptyp_class (id,l,ll) ->
add_uses_q loc Class id;
List.iter (add_def loc Label) ll;
List.iter tr_core_type l
| Ptyp_alias (ct,_) ->
tr_core_type ct
| Ptyp_variant (l,_,_) ->
List.iter tr_row_field l
| Ptyp_poly (_,t) ->
tr_core_type t
and tr_row_field = function
| Rtag (_,_,ctl) -> List.iter tr_core_type ctl
| Rinherit t -> tr_core_type t
and tr_core_field_type ft =
tr_core_field_desc ft.pfield_loc ft.pfield_desc
and tr_core_field_desc loc = function
| Pfield (id,ct) ->
add_uses loc Method id;
tr_core_type ct
| Pfield_var -> ()
let tr_class_infos f p =
add_def p.pci_loc Class p.pci_name;
f p.pci_expr
let bind_pattern f (p,e) =
bind_variables (ids_of_a_pattern p) f e
let bind_patterns f pl e =
let ids = List.flatten (List.map ids_of_a_pattern pl) in
bind_variables ids f e
let rec tr_expression e =
tr_expression_desc e.pexp_loc e.pexp_desc
and tr_expression_desc loc = function
| Pexp_ident q ->
add_uses_q loc Value q
| Pexp_apply (e,lel) ->
tr_expression e;
List.iter (fun (l,e) -> add_uses loc Label l; tr_expression e) lel
| Pexp_ifthenelse (e1,e2,e3) ->
tr_expression e1; tr_expression e2; option_iter tr_expression e3
| Pexp_sequence (e1,e2) ->
tr_expression e1; tr_expression e2
| Pexp_while (e1,e2) ->
tr_expression e1; tr_expression e2
| Pexp_tuple el ->
List.iter tr_expression el
| Pexp_construct (q,e,_) ->
add_uses_q loc Constructor q;
option_iter tr_expression e
| Pexp_function (l,eo,pel) ->
add_def loc Label l;
option_iter tr_expression eo;
List.iter (bind_pattern tr_expression) pel
| Pexp_match (e,pel) ->
tr_expression e; List.iter (bind_pattern tr_expression) pel
| Pexp_try (e,pel) ->
tr_expression e; List.iter (bind_pattern tr_expression) pel
| Pexp_let (recf,pel,e) ->
let pl = List.map fst pel in
if recf = Recursive then
iter_snd (bind_patterns tr_expression pl) pel
else
iter_snd tr_expression pel;
bind_patterns tr_expression pl e
| Pexp_record (l,e) ->
iter_fst (add_uses_q loc Field) l; iter_snd tr_expression l;
option_iter tr_expression e
| Pexp_field (e,q) ->
tr_expression e; add_uses_q loc Field q
| Pexp_setfield (e1,q,e2) ->
tr_expression e1; add_uses_q loc Field q; tr_expression e2
| Pexp_array el ->
List.iter tr_expression el
| Pexp_for (i,e1,e2,_,e) ->
tr_expression e1; tr_expression e2; bind_variables [i] tr_expression e
| Pexp_constraint (e,t1,t2) ->
tr_expression e; option_iter tr_core_type t1; option_iter tr_core_type t2
| Pexp_when (e1,e2) ->
tr_expression e1; tr_expression e2
| Pexp_letmodule (x,m,e) ->
tr_module_expr m; bind_variables [x] tr_expression e
| Pexp_constant _ ->
()
| Pexp_send (e,id) ->
add_uses loc Method id; tr_expression e
| Pexp_new id ->
add_uses_q loc Class id
| Pexp_setinstvar (id,e) ->
add_uses loc Value id; tr_expression e
| Pexp_override l ->
iter_fst (add_uses loc Method) l; iter_snd tr_expression l
| Pexp_variant (_,eo) ->
option_iter tr_expression eo
| Pexp_assert e ->
tr_expression e
| Pexp_assertfalse ->
()
| Pexp_lazy e ->
tr_expression e
| Pexp_poly (e, t) ->
tr_expression e; option_iter tr_core_type t
| Pexp_object cs ->
tr_class_structure cs
and tr_value_description vd =
tr_core_type vd.pval_type
and tr_type_declaration td =
tr_type_kind td.ptype_loc td.ptype_kind;
option_iter tr_core_type td.ptype_manifest
and tr_type_kind loc = function
| Ptype_abstract -> ()
| Ptype_variant (cl,_) ->
iter_fst (add_def loc Constructor) cl;
iter_snd (List.iter tr_core_type) cl
| Ptype_record (fl,_) ->
List.iter (fun (f,_,t) -> add_def loc Field f; tr_core_type t) fl
and tr_exception_declaration ed =
List.iter tr_core_type ed
and tr_class_type c =
tr_class_type_desc c.pcty_loc c.pcty_desc
and tr_class_type_desc loc = function
| Pcty_constr (id,l) ->
add_uses_q loc Class id;
List.iter tr_core_type l
| Pcty_signature cs ->
tr_class_signature cs
| Pcty_fun (l,co,cl) ->
add_def loc Label l;
tr_core_type co;
tr_class_type cl
and tr_class_signature (ct,l) =
tr_core_type ct;
List.iter tr_class_type_field l
and tr_class_type_field = function
| Pctf_inher ct ->
tr_class_type ct
| Pctf_val (id,_,ct,loc) ->
add_def loc Value id;
option_iter tr_core_type ct
| Pctf_virt (id,_,ct,loc) ->
add_def loc Method id;
tr_core_type ct
| Pctf_meth (id,_,ct,loc) ->
add_def loc Method id;
tr_core_type ct
| Pctf_cstr (ct1,ct2,_) ->
tr_core_type ct1;
tr_core_type ct2
and tr_class_description x = tr_class_infos tr_class_type x
and tr_class_type_declaration x = tr_class_infos tr_class_type x
and tr_class_expr ce = tr_class_expr_desc ce.pcl_loc ce.pcl_desc
and tr_class_expr_desc loc = function
| Pcl_constr (id,l) ->
add_uses_q loc Class id;
List.iter tr_core_type l
| Pcl_structure cs ->
tr_class_structure cs
| Pcl_fun (l,eo,p,ce) ->
add_def loc Label l;
option_iter tr_expression eo;
bind_variables (ids_of_a_pattern p) tr_class_expr ce
| Pcl_apply (ce,l) ->
tr_class_expr ce;
List.iter (fun (l,e) -> add_uses loc Label l; tr_expression e) l
| Pcl_let (recf,pel,ce) ->
let pl = List.map fst pel in
if recf = Recursive then
iter_snd (bind_patterns tr_expression pl) pel
else
iter_snd tr_expression pel;
bind_patterns tr_class_expr pl ce
| Pcl_constraint (ce,ct) ->
tr_class_expr ce;
tr_class_type ct
and tr_class_structure (p,l) =
List.iter (fun f -> bind_pattern tr_class_field (p,f)) l
and tr_class_field = function
| Pcf_inher (ce,_) ->
tr_class_expr ce
| Pcf_val (id,_,e,loc) ->
add_def loc Value id;
tr_expression e
| Pcf_virt(id,_,ct,loc) ->
add_def loc Method id;
tr_core_type ct
| Pcf_meth (id,_,e,loc) ->
add_def loc Method id;
tr_expression e
| Pcf_cstr (ct1,ct2,_) ->
tr_core_type ct1;
tr_core_type ct2
| Pcf_let (recf,pel,_) ->
let pl = List.map fst pel in
if recf = Recursive then
iter_snd (bind_patterns tr_expression pl) pel
else
iter_snd tr_expression pel
| Pcf_init e ->
tr_expression e
and tr_class_declaration x = tr_class_infos tr_class_expr x
and tr_module_type mt =
tr_module_type_desc mt.pmty_loc mt.pmty_desc
and tr_module_type_desc loc = function
| Pmty_ident id ->
add_uses_q loc ModuleType id
| Pmty_signature s ->
tr_signature s
| Pmty_functor (id,mt1,mt2) ->
tr_module_type mt1;
bind_variables [id] tr_module_type mt2
| Pmty_with (mt,cl) ->
tr_module_type mt;
List.iter
(fun (id,c) -> add_uses_q loc Type id; tr_with_constraint loc c) cl
and tr_signature s =
List.iter tr_signature_item s
and tr_signature_item i =
tr_signature_item_desc i.psig_loc i.psig_desc
and tr_signature_item_desc loc = function
| Psig_value (x,vd) ->
add_def loc Value x; tr_value_description vd
| Psig_type l ->
iter_fst (add_def loc Type) l; iter_snd tr_type_declaration l
| Psig_exception (id,ed) ->
add_def loc Exception id; tr_exception_declaration ed
| Psig_module (id,mt) ->
add_def loc Module id; tr_module_type mt
| Psig_recmodule l ->
List.iter (fun (id,mt) -> add_def loc Module id; tr_module_type mt) l
| Psig_modtype (id,mtd) ->
add_def loc ModuleType id; tr_modtype_declaration mtd
| Psig_open q ->
add_uses_q loc Module q
| Psig_include mt ->
tr_module_type mt
| Psig_class l ->
List.iter tr_class_description l
| Psig_class_type l ->
List.iter tr_class_type_declaration l
and tr_modtype_declaration = function
| Pmodtype_abstract -> ()
| Pmodtype_manifest mt -> tr_module_type mt
and tr_with_constraint loc = function
| Pwith_type td -> tr_type_declaration td
| Pwith_module id -> add_uses_q loc Module id
and tr_module_expr me =
tr_module_expr_desc me.pmod_loc me.pmod_desc
and tr_module_expr_desc loc = function
| Pmod_ident id ->
add_uses_q loc Module id
| Pmod_structure s ->
tr_structure s
| Pmod_functor (id,mt,me) ->
tr_module_type mt;
bind_variables [id] tr_module_expr me
| Pmod_apply (me1,me2) ->
tr_module_expr me1;
tr_module_expr me2
| Pmod_constraint (me,mt) ->
tr_module_expr me;
tr_module_type mt
and tr_structure l =
List.iter tr_structure_item l
and tr_structure_item i =
tr_structure_item_desc i.pstr_loc i.pstr_desc
and tr_structure_item_desc loc = function
| Pstr_eval e ->
tr_expression e
| Pstr_value (_,pel) ->
iter_fst pattern_for_def pel; iter_snd tr_expression pel
| Pstr_primitive (id,vd) ->
add_def loc Value id; tr_value_description vd
| Pstr_type l ->
iter_fst (add_def loc Type) l; iter_snd tr_type_declaration l
| Pstr_exception (id,ed) ->
add_def loc Exception id; tr_exception_declaration ed
| Pstr_module (id,me) ->
add_def loc Module id; tr_module_expr me
| Pstr_recmodule l ->
List.iter
(fun (id,mt,me) ->
add_def loc Module id; tr_module_type mt; tr_module_expr me) l
| Pstr_modtype (id,mt) ->
add_def loc ModuleType id; tr_module_type mt
| Pstr_open m ->
add_uses_q loc Module m
| Pstr_class l ->
List.iter tr_class_declaration l
| Pstr_class_type l ->
List.iter tr_class_type_declaration l
| Pstr_exn_rebind (id,q) ->
add_def loc Exception id;
add_uses_q loc Exception q
| Pstr_include me ->
tr_module_expr me
let zero = { pos_fname = ""; pos_lnum = 0; pos_bol = 0; pos_cnum = 9 }
let add_module m =
add_def { loc_start = zero; loc_end = zero; loc_ghost = false } Module m
let wrapper parsing_function traverse_function f m =
reset_cross f 0;
add_module m;
let c = open_in f in
let lexbuf = Lexing.from_channel c in
try
traverse_function (parsing_function lexbuf);
close_in c
with Syntaxerr.Error _ | Syntaxerr.Escape_error | Lexer.Error _ -> begin
if not !quiet then
eprintf " ** warning: syntax error while parsing %s\n" f;
close_in c
end
let cross_implem = wrapper Parse.implementation tr_structure
let cross_interf = wrapper Parse.interface tr_signature
let input_string_inside_file ic loc =
seek_in ic loc.Lex_syntax.start_pos.pos_cnum;
let len =
loc.Lex_syntax.end_pos.pos_cnum - loc.Lex_syntax.start_pos.pos_cnum
in
let buf = Bytes.create len in
try
really_input ic buf 0 len;
Bytes.to_string buf
with End_of_file -> assert false
let lexer_function_inside_file ic loc =
seek_in ic loc.Lex_syntax.start_pos.pos_cnum;
let left =
ref (loc.Lex_syntax.end_pos.pos_cnum - loc.Lex_syntax.start_pos.pos_cnum)
in
fun buf len ->
let m = input ic buf 0 (min !left len) in
for i=0 to pred m do
if Bytes.get buf i = '$' then Bytes.set buf i ' '
done;
left := !left - m;
m
let cross_action_inside_file msg f m loc =
reset_cross f loc.Lex_syntax.start_pos.pos_cnum;
let c = open_in f in
let lexbuf = Lexing.from_function (lexer_function_inside_file c loc) in
try
tr_structure (Parse.implementation lexbuf);
close_in c
with Syntaxerr.Error _ | Syntaxerr.Escape_error | Lexer.Error _ -> begin
if not !quiet then begin
eprintf "File \"%s\", character %d\n"
f loc.Lex_syntax.start_pos.pos_cnum;
eprintf " ** warning: syntax error while parsing %s\n" msg
end;
close_in c
end
let cross_type_inside_file f m loc =
reset_cross f (loc.Lex_syntax.start_pos.pos_cnum - 7);
let c = open_in f in
let lexbuf =
Lexing.from_string ("type t=" ^ input_string_inside_file c loc) in
try
tr_structure (Parse.implementation lexbuf);
close_in c
with Syntaxerr.Error _ | Syntaxerr.Escape_error | Lexer.Error _ -> begin
if not !quiet then begin
eprintf "File \"%s\", character %d\n"
f loc.Lex_syntax.start_pos.pos_cnum;
eprintf " ** warning: syntax error while parsing type\n"
end;
close_in c
end
let transl_loc loc =
{ loc_start = loc.Lex_syntax.start_pos;
loc_end = loc.Lex_syntax.end_pos;
loc_ghost = false }
let rec add_used_regexps f m r =
match r with
Lex_syntax.Ident (id,loc) ->
add_uses (transl_loc loc) RegExpr id
| Lex_syntax.Sequence(r1,r2) ->
add_used_regexps f m r1;
add_used_regexps f m r2
| Lex_syntax.Alternative(r1,r2) ->
add_used_regexps f m r1;
add_used_regexps f m r2
| Lex_syntax.Repetition(r) -> add_used_regexps f m r
| Lex_syntax.Epsilon
| Lex_syntax.Characters _ -> ()
let traverse_lex_defs f m lexdefs =
List.iter
(fun (id,loc,regexp) ->
add_def (transl_loc loc) RegExpr id;
add_used_regexps f m regexp)
lexdefs.Lex_syntax.named_regexps;
List.iter
(fun (id,loc,rules) ->
add_def (transl_loc loc) LexParseRule id;
List.iter
(fun (r,_) -> add_used_regexps f m r)
rules)
lexdefs.Lex_syntax.entrypoints;
cross_action_inside_file "header" f m lexdefs.Lex_syntax.header;
List.iter
(fun (id,loc,rules) ->
List.iter
(fun (regexp,action) ->
add_used_regexps f m regexp;
cross_action_inside_file "action" f m action)
rules)
lexdefs.Lex_syntax.entrypoints;
cross_action_inside_file "trailer" f m lexdefs.Lex_syntax.trailer
let cross_lex f m =
reset_cross f 0;
add_module m;
let c = open_in f in
let lexbuf = Lexing.from_channel c in
try
let lexdefs = Lex_parser.lexer_definition Lex_lexer.main lexbuf in
traverse_lex_defs f m lexdefs;
close_in c
with Parsing.Parse_error | Lex_lexer.Lexical_error _ -> begin
if not !quiet then
eprintf " ** warning: syntax error while parsing lex file %s\n" f;
close_in c
end
let traverse_yacc f m yacc_defs =
let tokens =
List.fold_left
(fun acc decl ->
match decl with
| Yacc_syntax.Typed_tokens(typ,idl) ->
List.fold_left
(fun acc (id,loc) ->
add_def (transl_loc loc) YaccTerminal id;
Stringset.add id acc)
acc
idl
| Yacc_syntax.Untyped_tokens(idl) ->
List.fold_left
(fun acc (id,loc) ->
add_def (transl_loc loc) YaccTerminal id;
Stringset.add id acc)
acc
idl
| Yacc_syntax.Non_terminals_type(typ,idl) ->
List.iter
(fun (id,loc) ->
add_uses (transl_loc loc) YaccNonTerminal id)
idl;
acc
| Yacc_syntax.Start_symbols(idl) ->
List.iter
(fun (id,loc) ->
add_uses (transl_loc loc) YaccNonTerminal id)
idl;
acc
| Yacc_syntax.Tokens_assoc(idl) ->
List.iter
(fun (id,loc) ->
add_uses (transl_loc loc) YaccTerminal id)
idl;
acc)
Stringset.empty
yacc_defs.Yacc_syntax.decls
in
List.iter
(fun ((id,loc),rhss) ->
add_def (transl_loc loc) YaccNonTerminal id;
List.iter
(fun (rhs,_) ->
List.iter
(fun (id,loc) ->
if Stringset.mem id tokens
then add_uses (transl_loc loc) YaccTerminal id
else add_uses (transl_loc loc) YaccNonTerminal id)
rhs)
rhss)
yacc_defs.Yacc_syntax.rules;
cross_action_inside_file "header" f m yacc_defs.Yacc_syntax.header;
List.iter
(function
| Yacc_syntax.Typed_tokens(typ,idl) ->
cross_type_inside_file f m typ
| Yacc_syntax.Non_terminals_type(typ,idl) ->
cross_type_inside_file f m typ
| _ -> ())
yacc_defs.Yacc_syntax.decls;
List.iter
(fun (_,rhss) ->
List.iter
(fun (_,action) ->
cross_action_inside_file "action" f m action)
rhss)
yacc_defs.Yacc_syntax.rules;
cross_action_inside_file "trailer" f m yacc_defs.Yacc_syntax.trailer
let cross_yacc f m =
reset_cross f 0;
add_module m;
let c = open_in f in
let lexbuf = Lexing.from_channel c in
try
Yacc_lexer.reset_lexer f lexbuf;
let yacc_defs = Yacc_parser.yacc_definitions Yacc_lexer.main lexbuf in
traverse_yacc f m yacc_defs;
close_in c
with
| Parsing.Parse_error -> begin
Yacc_syntax.issue_warning "syntax error";
close_in c
end
| Yacc_lexer.Lexical_error(msg,line,col) -> begin
Yacc_syntax.issue_warning ("lexical error (" ^ msg ^ ")");
close_in c
end
|