src/Pure/Syntax/parser.ML
author wenzelm
Tue, 30 Jan 2018 18:38:18 +0100
changeset 67539 1b8aad1909b7
parent 67538 7747761fa067
child 67540 15297abe6472
permissions -rw-r--r--
tuned data structure and operations;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Syntax/parser.ML
2186
35ade4941904 removed silly message;
wenzelm
parents: 1580
diff changeset
     2
    Author:     Carsten Clasohm, Sonia Mahjoub, and Markus Wenzel, TU Muenchen
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
     3
15979
wenzelm
parents: 15752
diff changeset
     4
General context-free parser for the inner syntax of terms, types, etc.
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
     5
*)
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
     6
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
     7
signature PARSER =
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
     8
sig
1507
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
     9
  type gram
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    10
  val empty_gram: gram
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42282
diff changeset
    11
  val extend_gram: Syntax_Ext.xprod list -> gram -> gram
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 44102
diff changeset
    12
  val make_gram: Syntax_Ext.xprod list -> gram
1507
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    13
  val pretty_gram: gram -> Pretty.T list
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    14
  datatype parsetree =
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    15
    Node of string * parsetree list |
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    16
    Tip of Lexicon.token
42374
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
    17
  exception PARSETREE of parsetree
42205
22f5cc06c419 direct pretty printing of parsetrees -- prevent diagnostic output from crashing due to undeclared entities;
wenzelm
parents: 41378
diff changeset
    18
  val pretty_parsetree: parsetree -> Pretty.T
45641
20ef9135a9fb removed obsolete argument (cf. 954e9d6782ea);
wenzelm
parents: 45632
diff changeset
    19
  val parse: gram -> string -> Lexicon.token list -> parsetree list
26678
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
    20
  val guess_infix_lr: gram -> string -> (string * bool * bool * int) option
41378
55286df6a423 configuration option "syntax_branching_level";
wenzelm
parents: 40959
diff changeset
    21
  val branching_level: int Config.T
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
    22
end;
1507
f600215b6ea7 Elimination of fully-functorial style.
paulson
parents: 1438
diff changeset
    23
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
    24
structure Parser: PARSER =
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
    25
struct
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
    26
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
    27
(** datatype gram **)
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
    28
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    29
(* tokens *)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    30
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    31
fun tokens_match toks =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    32
  (case apply2 Lexicon.kind_of_token toks of
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    33
    (Lexicon.Literal, Lexicon.Literal) => op = (apply2 Lexicon.str_of_token toks)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    34
  | kinds => op = kinds);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    35
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    36
fun tokens_match_ord toks =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    37
  (case apply2 Lexicon.kind_of_token toks of
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    38
    (Lexicon.Literal, Lexicon.Literal) => fast_string_ord (apply2 Lexicon.str_of_token toks)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    39
  | kinds => Lexicon.token_kind_ord kinds);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    40
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    41
structure Tokens = Table(type key = Lexicon.token val ord = tokens_match_ord);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    42
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    43
type tokens = Tokens.set;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    44
val tokens_empty: tokens = Tokens.empty;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    45
val tokens_merge: tokens * tokens -> tokens = Tokens.merge (K true);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    46
fun tokens_insert tk : tokens -> tokens = Tokens.insert_set tk;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    47
fun tokens_remove tk : tokens -> tokens = Tokens.remove_set tk;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    48
fun tokens_member (tokens: tokens) = Tokens.defined tokens;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    49
fun tokens_is_empty (tokens: tokens) = Tokens.is_empty tokens;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    50
fun tokens_fold f (tokens: tokens) = Tokens.fold (f o #1) tokens;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    51
val tokens_union = tokens_fold tokens_insert;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    52
val tokens_subtract = tokens_fold tokens_remove;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    53
fun tokens_find P (tokens: tokens) =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    54
  Tokens.get_first (fn (tok, ()) => if P tok then SOME tok else NONE) tokens;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    55
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    56
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    57
(* nonterminals *)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    58
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    59
(*production for the NTs are stored in a vector
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    60
  so we can identify NTs by their index*)
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    61
type nt = int;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    62
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    63
type nts = Inttab.set;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    64
val nts_empty: nts = Inttab.empty;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    65
val nts_merge: nts * nts -> nts = Inttab.merge (K true);
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    66
fun nts_insert nt : nts -> nts = Inttab.insert_set nt;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    67
fun nts_member (nts: nts) = Inttab.defined nts;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    68
fun nts_fold f (nts: nts) = Inttab.fold (f o #1) nts;
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
    69
fun nts_subset (nts1: nts, nts2: nts) = Inttab.forall (nts_member nts2 o #1) nts1;
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
    70
fun nts_is_empty (nts: nts) = Inttab.is_empty nts;
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
    71
fun nts_is_unique (nts: nts) = nts_is_empty nts orelse Inttab.is_single nts;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
    72
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    73
datatype symb =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    74
  Terminal of Lexicon.token
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    75
| Nonterminal of nt * int;  (*(tag, precedence)*)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    76
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    77
type nt_gram =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    78
  ((nts * tokens) *
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
    79
    (Lexicon.token * (symb list * string * int) list) list);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    80
  (*(([dependent_nts], [start_tokens]), [(start_token, [(rhs, name, prio)])])*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
    81
  (*depent_nts is a list of all NTs whose lookahead depends on this NT's lookahead*)
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
    82
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
    83
val nt_gram_empty: nt_gram = ((nts_empty, tokens_empty), []);
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    84
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
    85
type tags = nt Symtab.table;
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    86
val tags_empty: tags = Symtab.empty;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    87
fun tags_content (tags: tags) = sort_by #1 (Symtab.dest tags);
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    88
fun tags_lookup (tags: tags) = Symtab.lookup tags;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    89
fun tags_insert tag (tags: tags) = Symtab.update_new tag tags;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    90
fun tags_name (tags: tags) = the o Inttab.lookup (Inttab.make (map swap (Symtab.dest tags)));
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    91
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    92
type chains = unit Int_Graph.T;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    93
fun chains_preds (chains: chains) = Int_Graph.immediate_preds chains;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    94
fun chains_all_preds (chains: chains) = Int_Graph.all_preds chains;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    95
fun chains_all_succs (chains: chains) = Int_Graph.all_succs chains;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    96
val chains_empty: chains = Int_Graph.empty;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    97
fun chains_member (chains: chains) = Int_Graph.is_edge chains;
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    98
fun chains_declare nt : chains -> chains = Int_Graph.default_node (nt, ());
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
    99
fun chains_insert (from, to) =
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   100
  chains_declare from #> chains_declare to #> Int_Graph.add_edge (from, to);
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   101
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   102
datatype gram =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   103
  Gram of
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   104
   {nt_count: int,
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   105
    prod_count: int,
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   106
    tags: tags,
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   107
    chains: chains,
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   108
    lambdas: nts,
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   109
    prods: nt_gram Vector.vector};
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   110
    (*"tags" is used to map NT names (i.e. strings) to tags;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   111
     chain productions are not stored as normal productions
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   112
     but instead as an entry in "chains": from -> to;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   113
     lambda productions are stored as normal productions
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   114
     and also as an entry in "lambdas"*)
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   115
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   116
val token_none = Lexicon.Token (Lexicon.Space, "", Position.no_range);
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   117
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   118
(*productions for which no starting token is
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   119
  known yet are associated with this token*)
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   120
val unknown_start = Lexicon.eof;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   121
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   122
fun get_start tks =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   123
  (case Tokens.min tks of
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   124
    SOME (tk, _) => tk
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   125
  | NONE => unknown_start);
67516
wenzelm
parents: 67515
diff changeset
   126
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   127
(*convert productions to grammar;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   128
  prod_count is of type "int option" and is only updated if it is <> NONE*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   129
fun add_prods _ chains lambdas prod_count [] = (chains, lambdas, prod_count)
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   130
  | add_prods prods chains lambdas prod_count ((lhs, new_prod as (rhs, _, pri)) :: ps) =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   131
      let
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   132
        (*store chain if it does not already exist*)
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   133
        val (chain, new_chain, chains') =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   134
          (case (pri, rhs) of
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   135
            (~1, [Nonterminal (from, ~1)]) =>
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   136
              if chains_member chains (from, lhs)
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   137
              then (SOME from, false, chains)
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   138
              else (SOME from, true, chains_insert (from, lhs) chains)
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   139
          | _ => (NONE, false, chains_declare lhs chains));
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   140
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   141
        (*propagate new chain in lookahead and lambdas;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   142
          added_starts is used later to associate existing
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   143
          productions with new starting tokens*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   144
        val (added_starts, lambdas') =
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   145
          if not new_chain then ([], lambdas)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   146
          else
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   147
            let (*lookahead of chain's source*)
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   148
              val ((_, from_tks), _) = Array.sub (prods, the chain);
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   149
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   150
              (*copy from's lookahead to chain's destinations*)
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   151
              fun copy_lookahead to added =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   152
                let
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   153
                  val ((to_nts, to_tks), ps) = Array.sub (prods, to);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   154
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   155
                  val new_tks = tokens_subtract to_tks from_tks;  (*added lookahead tokens*)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   156
                  val to_tks' = tokens_merge (to_tks, new_tks);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   157
                  val _ = Array.update (prods, to, ((to_nts, to_tks'), ps));
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   158
                in if tokens_is_empty new_tks then added else (to, new_tks) :: added end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   159
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   160
              val tos = chains_all_succs chains' [lhs];
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   161
            in
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   162
              (fold copy_lookahead tos [],
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   163
                lambdas |> nts_member lambdas lhs ? fold nts_insert tos)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   164
            end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   165
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   166
        (*test if new production can produce lambda
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   167
          (rhs must either be empty or only consist of lambda NTs)*)
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   168
        val new_lambdas =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   169
          if forall
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   170
            (fn Nonterminal (id, _) => nts_member lambdas' id
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   171
              | Terminal _ => false) rhs
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   172
          then SOME (filter_out (nts_member lambdas') (chains_all_succs chains' [lhs]))
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   173
          else NONE;
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   174
        val lambdas'' = fold nts_insert (these new_lambdas) lambdas';
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   175
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   176
        (*list optional terminal and all nonterminals on which the lookahead
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   177
          of a production depends*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   178
        fun lookahead_dependency _ [] nts = (NONE, nts)
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   179
          | lookahead_dependency _ (Terminal tk :: _) nts = (SOME tk, nts)
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   180
          | lookahead_dependency lambdas (Nonterminal (nt, _) :: symbs) nts =
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   181
              if nts_member lambdas nt then
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   182
                lookahead_dependency lambdas symbs (nts_insert nt nts)
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   183
              else (NONE, nts_insert nt nts);
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   184
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   185
        (*get all known starting tokens for a nonterminal*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   186
        fun starts_for_nt nt = snd (fst (Array.sub (prods, nt)));
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   187
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   188
        (*update prods, lookaheads, and lambdas according to new lambda NTs*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   189
        val (added_starts', lambdas') =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   190
          let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   191
            (*propagate added lambda NT*)
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   192
            fun propagate_lambda [] added_starts lambdas = (added_starts, lambdas)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   193
              | propagate_lambda (l :: ls) added_starts lambdas =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   194
                  let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   195
                    (*get lookahead for lambda NT*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   196
                    val ((dependent, l_starts), _) = Array.sub (prods, l);
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   197
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   198
                    (*check productions whose lookahead may depend on lambda NT*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   199
                    fun examine_prods [] add_lambda nt_dependencies added_tks nt_prods =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   200
                          (add_lambda, nt_dependencies, added_tks, nt_prods)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   201
                      | examine_prods ((p as (rhs, _, _)) :: ps) add_lambda
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   202
                            nt_dependencies added_tks nt_prods =
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   203
                          let val (tk, nts) = lookahead_dependency lambdas rhs nts_empty in
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   204
                            if nts_member nts l then       (*update production's lookahead*)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   205
                              let
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   206
                                val new_lambda =
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   207
                                  is_none tk andalso nts_subset (nts, lambdas);
1175
1b15a4b1a4f7 added comments; fixed a bug; reduced memory usage slightly
clasohm
parents: 1147
diff changeset
   208
42218
8e0a4d500e5b streamlined token list operations, assuming that the order of union does not matter;
wenzelm
parents: 42217
diff changeset
   209
                                val new_tks =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   210
                                  tokens_empty
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   211
                                  |> fold tokens_insert (the_list tk)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   212
                                  |> nts_fold (tokens_union o starts_for_nt) nts
67536
f0b2cc2ad464 prefer specific tokens_subtract: subtle change of comparison via tokens_match;
wenzelm
parents: 67535
diff changeset
   213
                                  |> tokens_subtract l_starts;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   214
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   215
                                val added_tks' = tokens_merge (added_tks, new_tks);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   216
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   217
                                val nt_dependencies' = nts_merge (nt_dependencies, nts);
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   218
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   219
                                (*associate production with new starting tokens*)
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   220
                                fun copy (tk: Lexicon.token) nt_prods =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   221
                                  let val old_prods = these (AList.lookup (op =) nt_prods tk);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   222
                                  in AList.update (op =) (tk, p :: old_prods) nt_prods end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   223
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   224
                                val nt_prods' = nt_prods
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   225
                                  |> tokens_fold copy new_tks
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   226
                                  |> new_lambda ? copy token_none;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   227
                              in
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   228
                                examine_prods ps (add_lambda orelse new_lambda)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   229
                                  nt_dependencies' added_tks' nt_prods'
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   230
                              end
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   231
                            else (*skip production*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   232
                              examine_prods ps add_lambda nt_dependencies added_tks nt_prods
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   233
                          end;
1175
1b15a4b1a4f7 added comments; fixed a bug; reduced memory usage slightly
clasohm
parents: 1147
diff changeset
   234
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   235
                    (*check each NT whose lookahead depends on new lambda NT*)
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   236
                    fun process_nts nt (added_lambdas, added_starts) =
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   237
                      let
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   238
                        val ((old_nts, old_tks), nt_prods) = Array.sub (prods, nt);
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   239
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   240
                        (*existing productions whose lookahead may depend on l*)
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   241
                        val tk_prods =
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   242
                          these (AList.lookup (op =) nt_prods (get_start l_starts));
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   243
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   244
                        (*add_lambda is true if an existing production of the nt
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   245
                          produces lambda due to the new lambda NT l*)
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   246
                        val (add_lambda, nt_dependencies, added_tks, nt_prods') =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   247
                          examine_prods tk_prods false nts_empty tokens_empty nt_prods;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   248
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   249
                        val new_nts = nts_merge (old_nts, nt_dependencies);
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   250
                        val new_tks = tokens_merge (old_tks, added_tks);
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   251
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   252
                        val added_lambdas' = added_lambdas |> add_lambda ? cons nt;
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   253
                        val _ = Array.update (prods, nt, ((new_nts, new_tks), nt_prods'));
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   254
                          (*N.B. that because the tks component
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   255
                            is used to access existing
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   256
                            productions we have to add new
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   257
                            tokens at the _end_ of the list*)
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   258
                        val added_starts' =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   259
                          if tokens_is_empty added_tks then added_starts
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   260
                          else ((nt, added_tks) :: added_starts);
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   261
                      in (added_lambdas', added_starts') end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   262
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   263
                    val (added_lambdas, added_starts') =
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   264
                      nts_fold process_nts dependent ([], added_starts);
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   265
                    val added_lambdas' = filter_out (nts_member lambdas) added_lambdas;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   266
                  in
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   267
                    propagate_lambda (ls @ added_lambdas') added_starts'
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   268
                      (fold nts_insert added_lambdas' lambdas)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   269
                  end;
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   270
          in
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   271
            propagate_lambda
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   272
              (nts_fold (fn l => not (nts_member lambdas l) ? cons l) lambdas'' [])
67530
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   273
              added_starts lambdas''
a7de81d847b0 tuned data structure: potentially more efficient add_prods;
wenzelm
parents: 67518
diff changeset
   274
          end;
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   275
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   276
        (*insert production into grammar*)
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   277
        val (added_starts', _) =
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   278
          if is_some chain
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   279
          then (added_starts', prod_count)  (*don't store chain production*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   280
          else
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   281
            let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   282
              (*lookahead tokens of new production and on which
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   283
                NTs lookahead depends*)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   284
              val (start_tk, start_nts) = lookahead_dependency lambdas' rhs nts_empty;
1175
1b15a4b1a4f7 added comments; fixed a bug; reduced memory usage slightly
clasohm
parents: 1147
diff changeset
   285
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   286
              val start_tks =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   287
                tokens_empty
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   288
                |> fold tokens_insert (the_list start_tk)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   289
                |> nts_fold (tokens_union o starts_for_nt) start_nts;
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   290
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   291
              val start_tks' =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   292
                start_tks
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   293
                |> (if is_some new_lambdas then tokens_insert token_none
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   294
                    else if tokens_is_empty start_tks then tokens_insert unknown_start
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   295
                    else I);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   296
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   297
              (*add lhs NT to list of dependent NTs in lookahead*)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   298
              fun add_nts nt initial =
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   299
                (if initial then
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   300
                  let val ((old_nts, old_tks), ps) = Array.sub (prods, nt) in
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   301
                    if nts_member old_nts lhs then ()
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   302
                    else Array.update (prods, nt, ((nts_insert lhs old_nts, old_tks), ps))
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   303
                  end
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   304
                 else (); false);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   305
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   306
              (*add new start tokens to chained NTs' lookahead list;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   307
                also store new production for lhs NT*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   308
              fun add_tks [] added prod_count = (added, prod_count)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   309
                | add_tks (nt :: nts) added prod_count =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   310
                    let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   311
                      val ((old_nts, old_tks), nt_prods) = Array.sub (prods, nt);
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   312
67532
71b36ff8f94d clarified modules;
wenzelm
parents: 67531
diff changeset
   313
                      val new_tks = tokens_subtract old_tks start_tks;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   314
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   315
                      (*store new production*)
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   316
                      fun store tk (prods, is_new) =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   317
                        let
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   318
                          val tk_prods = these (AList.lookup (op =) prods tk);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   319
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   320
                          (*if prod_count = NONE then we can assume that
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   321
                            grammar does not contain new production already*)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   322
                          val (tk_prods', is_new') =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   323
                            if is_some prod_count then
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   324
                              if member (op =) tk_prods new_prod then (tk_prods, false)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   325
                              else (new_prod :: tk_prods, true)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   326
                            else (new_prod :: tk_prods, true);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   327
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   328
                          val prods' = prods
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   329
                            |> is_new' ? AList.update (op =) (tk, tk_prods');
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   330
                        in (prods', is_new orelse is_new') end;
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   331
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   332
                      val (nt_prods', changed) = (nt_prods, false)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   333
                        |> nt = lhs ? tokens_fold store start_tks';
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   334
                      val prod_count' =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   335
                        if is_some prod_count andalso changed then
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   336
                          Option.map (fn x => x + 1) prod_count
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   337
                        else prod_count;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   338
                      val _ =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   339
                        if not changed andalso tokens_is_empty new_tks then ()
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   340
                        else
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   341
                          Array.update
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   342
                            (prods, nt, ((old_nts, tokens_merge (old_tks, new_tks)), nt_prods'));
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   343
                    in
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   344
                      add_tks nts
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   345
                        (if tokens_is_empty new_tks then added else (nt, new_tks) :: added)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   346
                        prod_count'
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   347
                    end;
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   348
              val _ = nts_fold add_nts start_nts true;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   349
            in
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   350
              add_tks (chains_all_succs chains' [lhs]) [] prod_count
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   351
            end;
1175
1b15a4b1a4f7 added comments; fixed a bug; reduced memory usage slightly
clasohm
parents: 1147
diff changeset
   352
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   353
        (*associate productions with new lookaheads*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   354
        val _ =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   355
          let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   356
            (*propagate added start tokens*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   357
            fun add_starts [] = ()
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   358
              | add_starts ((changed_nt, new_tks) :: starts) =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   359
                  let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   360
                    (*token under which old productions which
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   361
                      depend on changed_nt could be stored*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   362
                    val key =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   363
                      tokens_find (not o tokens_member new_tks) (starts_for_nt changed_nt)
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   364
                      |> the_default unknown_start;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   365
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   366
                    (*copy productions whose lookahead depends on changed_nt;
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   367
                      if key = SOME unknown_start then tk_prods is used to hold
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   368
                      the productions not copied*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   369
                    fun update_prods [] result = result
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   370
                      | update_prods ((p as (rhs, _: string, _: nt)) :: ps)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   371
                            (tk_prods, nt_prods) =
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   372
                          let
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   373
                            (*lookahead dependency for production*)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   374
                            val (tk, depends) = lookahead_dependency lambdas' rhs nts_empty;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   375
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   376
                            (*test if this production has to be copied*)
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   377
                            val update = nts_member depends changed_nt;
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   378
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   379
                            (*test if production could already be associated with
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   380
                              a member of new_tks*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   381
                            val lambda =
67538
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   382
                              not (nts_is_unique depends) orelse
7747761fa067 tuned data structure and operations;
wenzelm
parents: 67536
diff changeset
   383
                              not (nts_is_empty depends) andalso is_some tk
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   384
                              andalso tokens_member new_tks (the tk);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   385
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   386
                            (*associate production with new starting tokens*)
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   387
                            fun copy tk nt_prods =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   388
                              let
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   389
                                val tk_prods = these (AList.lookup (op =) nt_prods tk);
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   390
                                val tk_prods' =
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   391
                                  if not lambda then p :: tk_prods
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   392
                                  else insert (op =) p tk_prods;
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   393
                                   (*if production depends on lambda NT we
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   394
                                     have to look for duplicates*)
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   395
                              in AList.update (op =) (tk, tk_prods') nt_prods end;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   396
                            val result =
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   397
                              if update then (tk_prods, tokens_fold copy new_tks nt_prods)
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   398
                              else if key = unknown_start then (p :: tk_prods, nt_prods)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   399
                              else (tk_prods, nt_prods);
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   400
                          in update_prods ps result end;
377
ab8917806779 lookaheads are now computed faster (during the grammar is built)
clasohm
parents: 373
diff changeset
   401
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   402
                    (*copy existing productions for new starting tokens*)
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   403
                    fun process_nts nt added =
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   404
                      let
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   405
                        val (lookahead as (old_nts, old_tks), nt_prods) = Array.sub (prods, nt);
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   406
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   407
                        val tk_prods = these (AList.lookup (op =) nt_prods key);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   408
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   409
                        (*associate productions with new lookahead tokens*)
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   410
                        val (tk_prods', nt_prods') = update_prods tk_prods ([], nt_prods);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   411
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   412
                        val nt_prods'' =
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   413
                          if key = unknown_start then
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   414
                            AList.update (op =) (key, tk_prods') nt_prods'
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   415
                          else nt_prods';
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   416
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   417
                        val added_tks = tokens_subtract old_tks new_tks;
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   418
                      in
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   419
                        if tokens_is_empty added_tks then
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   420
                          (Array.update (prods, nt, (lookahead, nt_prods''));
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   421
                            added)
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   422
                        else
67539
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   423
                          (Array.update
1b8aad1909b7 tuned data structure and operations;
wenzelm
parents: 67538
diff changeset
   424
                             (prods, nt, ((old_nts, tokens_merge (old_tks, added_tks)), nt_prods''));
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   425
                            ((nt, added_tks) :: added))
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   426
                      end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   427
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   428
                    val ((dependent, _), _) = Array.sub (prods, changed_nt);
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   429
                  in add_starts (starts @ nts_fold process_nts dependent []) end;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   430
          in add_starts added_starts' end;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   431
      in add_prods prods chains' lambdas' prod_count ps end;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   432
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   433
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   434
(* pretty_gram *)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   435
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   436
fun pretty_gram (Gram {tags, prods, chains, ...}) =
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   437
  let
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   438
    val print_nt = tags_name tags;
67518
wenzelm
parents: 67517
diff changeset
   439
    fun print_pri p = if p < 0 then "" else Symbol.make_sup ("(" ^ string_of_int p ^ ")");
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   440
67513
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   441
    fun pretty_symb (Terminal (Lexicon.Token (kind, s, _))) =
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   442
          if kind = Lexicon.Literal then Pretty.quote (Pretty.keyword1 s) else Pretty.str s
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   443
      | pretty_symb (Nonterminal (tag, p)) = Pretty.str (print_nt tag ^ print_pri p);
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   444
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   445
    fun pretty_const "" = []
67513
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   446
      | pretty_const c = [Pretty.str ("\<^bold>\<Rightarrow> " ^ quote c)];
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   447
67513
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   448
    fun prod_of_chain from = ([Nonterminal (from, ~1)], "", ~1);
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   449
67513
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   450
    fun pretty_prod (name, tag) =
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   451
      (fold (union (op =) o #2) (#2 (Vector.sub (prods, tag))) [] @
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   452
        map prod_of_chain (chains_preds chains tag))
67513
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   453
      |> map (fn (symbs, const, p) =>
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   454
          Pretty.block (Pretty.breaks
731b1ad6759a tuned output;
wenzelm
parents: 64556
diff changeset
   455
            (Pretty.str (name ^ print_pri p ^ " =") :: map pretty_symb symbs @ pretty_const const)));
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   456
  in maps pretty_prod (tags_content tags) end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   457
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   458
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   459
1438
3cc22794ce71 added comments
clasohm
parents: 1177
diff changeset
   460
(** Operations on gramars **)
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   461
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   462
val empty_gram =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   463
  Gram
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   464
   {nt_count = 0,
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   465
    prod_count = 0,
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   466
    tags = tags_empty,
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   467
    chains = chains_empty,
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   468
    lambdas = nts_empty,
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   469
    prods = Vector.fromList [nt_gram_empty]};
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   470
1438
3cc22794ce71 added comments
clasohm
parents: 1177
diff changeset
   471
3cc22794ce71 added comments
clasohm
parents: 1177
diff changeset
   472
(*Add productions to a grammar*)
37684
d123b1e08856 standard argument order;
wenzelm
parents: 37683
diff changeset
   473
fun extend_gram [] gram = gram
d123b1e08856 standard argument order;
wenzelm
parents: 37683
diff changeset
   474
  | extend_gram xprods (Gram {nt_count, prod_count, tags, chains, lambdas, prods}) =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   475
      let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   476
        (*Get tag for existing nonterminal or create a new one*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   477
        fun get_tag nt_count tags nt =
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   478
          (case tags_lookup tags nt of
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   479
            SOME tag => (nt_count, tags, tag)
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   480
          | NONE => (nt_count + 1, tags_insert (nt, nt_count) tags, nt_count));
1438
3cc22794ce71 added comments
clasohm
parents: 1177
diff changeset
   481
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   482
        (*Convert symbols to the form used by the parser;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   483
          delimiters and predefined terms are stored as terminals,
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   484
          nonterminals are converted to integer tags*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   485
        fun symb_of [] nt_count tags result = (nt_count, tags, rev result)
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42282
diff changeset
   486
          | symb_of (Syntax_Ext.Delim s :: ss) nt_count tags result =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   487
              symb_of ss nt_count tags
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   488
                (Terminal (Lexicon.Token (Lexicon.Literal, s, Position.no_range)) :: result)
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42282
diff changeset
   489
          | symb_of (Syntax_Ext.Argument (s, p) :: ss) nt_count tags result =
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   490
              let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   491
                val (nt_count', tags', new_symb) =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   492
                  (case Lexicon.predef_term s of
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   493
                    NONE =>
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   494
                      let val (nt_count', tags', s_tag) = get_tag nt_count tags s;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   495
                      in (nt_count', tags', Nonterminal (s_tag, p)) end
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   496
                  | SOME tk => (nt_count, tags, Terminal tk));
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   497
              in symb_of ss nt_count' tags' (new_symb :: result) end
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   498
          | symb_of (_ :: ss) nt_count tags result = symb_of ss nt_count tags result;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   499
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   500
        (*Convert list of productions by invoking symb_of for each of them*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   501
        fun prod_of [] nt_count prod_count tags result =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   502
              (nt_count, prod_count, tags, result)
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42282
diff changeset
   503
          | prod_of (Syntax_Ext.XProd (lhs, xsymbs, const, pri) :: ps)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   504
                nt_count prod_count tags result =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   505
              let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   506
                val (nt_count', tags', lhs_tag) = get_tag nt_count tags lhs;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   507
                val (nt_count'', tags'', prods) = symb_of xsymbs nt_count' tags' [];
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   508
              in
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   509
                prod_of ps nt_count'' (prod_count + 1) tags''
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   510
                  ((lhs_tag, (prods, const, pri)) :: result)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   511
              end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   512
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   513
        val (nt_count', prod_count', tags', xprods') =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   514
          prod_of xprods nt_count prod_count tags [];
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   515
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   516
        (*Copy array containing productions of old grammar;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   517
          this has to be done to preserve the old grammar while being able
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   518
          to change the array's content*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   519
        val prods' =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   520
          let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   521
            fun get_prod i =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   522
              if i < nt_count then Vector.sub (prods, i)
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   523
              else nt_gram_empty;
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   524
          in Array.tabulate (nt_count', get_prod) end;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   525
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   526
        (*Add new productions to old ones*)
67517
add9a9f6a290 explicit graph for chains, which contains all nts as nodes;
wenzelm
parents: 67516
diff changeset
   527
        val (chains', lambdas', _) = add_prods prods' chains lambdas NONE xprods';
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   528
      in
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   529
        Gram
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   530
         {nt_count = nt_count',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   531
          prod_count = prod_count',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   532
          tags = tags',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   533
          chains = chains',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   534
          lambdas = lambdas',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   535
          prods = Array.vector prods'}
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   536
      end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   537
45632
b23c42b9f78a prefer Parser.make_gram over Parser.merge_gram, to approximate n-ary merges on theory import;
wenzelm
parents: 44102
diff changeset
   538
fun make_gram xprods = extend_gram xprods empty_gram;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   539
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   540
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   541
42374
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   542
(** parser **)
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   543
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   544
(* parsetree *)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   545
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   546
datatype parsetree =
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   547
  Node of string * parsetree list |
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   548
  Tip of Lexicon.token;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   549
42374
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   550
exception PARSETREE of parsetree;
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   551
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   552
fun pretty_parsetree parsetree =
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   553
  let
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   554
    fun pretty (Node (c, pts)) =
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   555
          [Pretty.enclose "(" ")" (Pretty.breaks (Pretty.quote (Pretty.str c) :: maps pretty pts))]
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   556
      | pretty (Tip tok) =
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   557
          if Lexicon.valued_token tok then [Pretty.str (Lexicon.str_of_token tok)] else [];
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   558
  in (case pretty parsetree of [prt] => prt | _ => raise PARSETREE parsetree) end;
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   559
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   560
b9a6b465da25 clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents: 42288
diff changeset
   561
(* parser state *)
42205
22f5cc06c419 direct pretty printing of parsetrees -- prevent diagnostic output from crashing due to undeclared entities;
wenzelm
parents: 41378
diff changeset
   562
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   563
type state =
67533
f253e5eaf995 clarified types and operations: potentially more efficient add_prods;
wenzelm
parents: 67532
diff changeset
   564
  nt * int *    (*identification and production precedence*)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   565
  parsetree list *  (*already parsed nonterminals on rhs*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   566
  symb list *       (*rest of rhs*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   567
  string *          (*name of production*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   568
  int;              (*index for previous state list*)
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   569
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   570
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   571
(*Get all rhss with precedence >= min_prec*)
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   572
fun get_RHS min_prec = filter (fn (_, _, prec: int) => prec >= min_prec);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   573
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   574
(*Get all rhss with precedence >= min_prec and < max_prec*)
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   575
fun get_RHS' min_prec max_prec =
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   576
  filter (fn (_, _, prec: int) => prec >= min_prec andalso prec < max_prec);
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   577
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   578
(*Make states using a list of rhss*)
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   579
fun mk_states i lhs_ID rhss =
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   580
  let fun mk_state (rhs, id, prod_prec) = (lhs_ID, prod_prec, [], rhs, id, i);
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   581
  in map mk_state rhss end;
697
40f72ab196f8 changed warning for extremely ambiguous expressions
clasohm
parents: 682
diff changeset
   582
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
   583
(*Add parse tree to list and eliminate duplicates
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   584
  saving the maximum precedence*)
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   585
fun conc (t: parsetree list, prec: int) [] = (NONE, [(t, prec)])
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   586
  | conc (t, prec) ((t', prec') :: ts) =
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   587
      if t = t' then
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   588
        (SOME prec',
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   589
          if prec' >= prec then (t', prec') :: ts
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   590
          else (t, prec) :: ts)
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   591
      else
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   592
        let val (n, ts') = conc (t, prec) ts
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   593
        in (n, (t', prec') :: ts') end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   594
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   595
(*Update entry in used*)
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   596
fun update_trees (A, t) used =
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   597
  let
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   598
    val (i, ts) = the (Inttab.lookup used A);
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   599
    val (n, ts') = conc t ts;
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   600
  in (n, Inttab.update (A, (i, ts')) used) end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   601
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   602
(*Replace entry in used*)
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   603
fun update_prec (A, prec) =
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   604
  Inttab.map_entry A (fn (_, ts) => (prec, ts));
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   605
42220
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   606
fun getS A max_prec NONE Si =
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   607
      filter
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   608
        (fn (_, _, _, Nonterminal (B, prec) :: _, _, _) => A = B andalso prec <= max_prec
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   609
          | _ => false) Si
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   610
  | getS A max_prec (SOME min_prec) Si =
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   611
      filter
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   612
        (fn (_, _, _, Nonterminal (B, prec) :: _, _, _) =>
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   613
            A = B andalso prec > min_prec andalso prec <= max_prec
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   614
          | _ => false) Si;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   615
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   616
fun get_states Estate j A max_prec =
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33063
diff changeset
   617
  filter
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   618
    (fn (_, _, _, Nonterminal (B, prec) :: _, _, _) => A = B andalso prec <= max_prec
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   619
      | _ => false)
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   620
    (Array.sub (Estate, j));
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   621
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   622
42219
19c23372c686 tuned signatures;
wenzelm
parents: 42218
diff changeset
   623
fun movedot_term c (A, j, ts, Terminal a :: sa, id, i) =
42282
4fa41e068ff0 report literal tokens according to parsetree head;
wenzelm
parents: 42226
diff changeset
   624
  if Lexicon.valued_token c orelse id <> ""
4fa41e068ff0 report literal tokens according to parsetree head;
wenzelm
parents: 42226
diff changeset
   625
  then (A, j, Tip c :: ts, sa, id, i)
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   626
  else (A, j, ts, sa, id, i);
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   627
42219
19c23372c686 tuned signatures;
wenzelm
parents: 42218
diff changeset
   628
fun movedot_nonterm tt (A, j, ts, Nonterminal _ :: sa, id, i) =
42282
4fa41e068ff0 report literal tokens according to parsetree head;
wenzelm
parents: 42226
diff changeset
   629
  (A, j, tt @ ts, sa, id, i);
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   630
42219
19c23372c686 tuned signatures;
wenzelm
parents: 42218
diff changeset
   631
fun movedot_lambda [] _ = []
42221
wenzelm
parents: 42220
diff changeset
   632
  | movedot_lambda ((t, ki) :: ts) (state as (B, j, tss, Nonterminal (A, k) :: sa, id, i)) =
42282
4fa41e068ff0 report literal tokens according to parsetree head;
wenzelm
parents: 42226
diff changeset
   633
      if k <= ki then (B, j, t @ tss, sa, id, i) :: movedot_lambda ts state
42221
wenzelm
parents: 42220
diff changeset
   634
      else movedot_lambda ts state;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   635
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   636
41378
55286df6a423 configuration option "syntax_branching_level";
wenzelm
parents: 40959
diff changeset
   637
(*trigger value for warnings*)
56438
7f6b2634d853 more source positions;
wenzelm
parents: 55624
diff changeset
   638
val branching_level =
64556
851ae0e7b09c more symbols;
wenzelm
parents: 62669
diff changeset
   639
  Config.int (Config.declare ("syntax_branching_level", \<^here>) (fn _ => Config.Int 600));
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   640
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   641
(*get all productions of a NT and NTs chained to it which can
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   642
  be started by specified token*)
67515
wenzelm
parents: 67513
diff changeset
   643
fun prods_for (Gram {prods, chains, ...}) include_none tk nts =
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   644
  let
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   645
    fun token_assoc (list, key) =
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   646
      let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   647
        fun assoc [] result = result
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   648
          | assoc ((keyi, pi) :: pairs) result =
67535
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   649
              if keyi <> token_none andalso tokens_match (keyi, key)
99c08d541a7a tuned type: absorb NONE: token option as token_none: token;
wenzelm
parents: 67534
diff changeset
   650
                 orelse include_none andalso keyi = token_none then
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   651
                assoc pairs (pi @ result)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   652
              else assoc pairs result;
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   653
      in assoc list [] end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   654
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   655
    fun get_prods [] result = result
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   656
      | get_prods (nt :: nts) result =
38711
79d3cbfb4730 keep persistent production tables as immutable vectors -- potential performance improvement on modern hardware;
wenzelm
parents: 37852
diff changeset
   657
          let val nt_prods = snd (Vector.sub (prods, nt));
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   658
          in get_prods nts (token_assoc (nt_prods, tk) @ result) end;
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   659
  in get_prods (chains_all_preds chains nts) [] end;
1147
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   660
57b5f55bf879 removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents: 890
diff changeset
   661
67515
wenzelm
parents: 67513
diff changeset
   662
fun PROCESSS gram Estate i c states =
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   663
  let
67515
wenzelm
parents: 67513
diff changeset
   664
    fun all_prods_for nt = prods_for gram true c [nt];
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   665
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   666
    fun processS _ [] (Si, Sii) = (Si, Sii)
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   667
      | processS used (S :: States) (Si, Sii) =
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   668
          (case S of
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   669
            (_, _, _, Nonterminal (nt, min_prec) :: _, _, _) =>
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   670
              let (*predictor operation*)
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   671
                val (used', new_states) =
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   672
                  (case Inttab.lookup used nt of
38713
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   673
                    SOME (used_prec, l) => (*nonterminal has been processed*)
29d0298439be eliminated some old camel case stuff;
wenzelm
parents: 38712
diff changeset
   674
                      if used_prec <= min_prec then
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   675
                        (*wanted precedence has been processed*)
42219
19c23372c686 tuned signatures;
wenzelm
parents: 42218
diff changeset
   676
                        (used, movedot_lambda l S)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   677
                      else (*wanted precedence hasn't been parsed yet*)
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   678
                        let
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   679
                          val tk_prods = all_prods_for nt;
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   680
                          val States' =
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   681
                            mk_states i nt (get_RHS' min_prec used_prec tk_prods);
42219
19c23372c686 tuned signatures;
wenzelm
parents: 42218
diff changeset
   682
                        in (update_prec (nt, min_prec) used, movedot_lambda l S @ States') end
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   683
                  | NONE => (*nonterminal is parsed for the first time*)
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   684
                      let
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   685
                        val tk_prods = all_prods_for nt;
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   686
                        val States' = mk_states i nt (get_RHS min_prec tk_prods);
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   687
                      in (Inttab.update (nt, (min_prec, [])) used, States') end);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   688
              in
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   689
                processS used' (new_states @ States) (S :: Si, Sii)
15752
8cdc6249044b added make_gram;
wenzelm
parents: 15570
diff changeset
   690
              end
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   691
          | (_, _, _, Terminal a :: _, _, _) => (*scanner operation*)
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   692
              processS used States
67532
71b36ff8f94d clarified modules;
wenzelm
parents: 67531
diff changeset
   693
                (S :: Si, if tokens_match (a, c) then movedot_term c S :: Sii else Sii)
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   694
          | (A, prec, ts, [], id, j) => (*completer operation*)
42222
ff50c436b199 accumulate parsetrees in canonical reverse order;
wenzelm
parents: 42221
diff changeset
   695
              let val tt = if id = "" then ts else [Node (id, rev ts)] in
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   696
                if j = i then (*lambda production?*)
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   697
                  let
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   698
                    val (prec', used') = update_trees (A, (tt, prec)) used;
42220
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   699
                    val Slist = getS A prec prec' Si;
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   700
                    val States' = map (movedot_nonterm tt) Slist;
db18095532d8 tuned -- removed redundancy;
wenzelm
parents: 42219
diff changeset
   701
                  in processS used' (States' @ States) (S :: Si, Sii) end
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   702
                else
62669
c95b76681e65 tuned -- fewer warnings;
wenzelm
parents: 60924
diff changeset
   703
                  let val Slist = get_states Estate j A prec
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   704
                  in processS used (map (movedot_nonterm tt) Slist @ States) (S :: Si, Sii) end
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   705
              end)
42226
cb650789f2f0 use standard tables with standard argument order;
wenzelm
parents: 42222
diff changeset
   706
  in processS Inttab.empty states ([], []) end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   707
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   708
67515
wenzelm
parents: 67513
diff changeset
   709
fun produce gram stateset i indata prev_token =
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   710
  (case Array.sub (stateset, i) of
25986
26f1e4c172c3 syntax error: reduced spam -- print expected nonterminals instead of terminals;
wenzelm
parents: 24245
diff changeset
   711
    [] =>
26f1e4c172c3 syntax error: reduced spam -- print expected nonterminals instead of terminals;
wenzelm
parents: 24245
diff changeset
   712
      let
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   713
        val toks = if Lexicon.is_eof prev_token then indata else prev_token :: indata;
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 47060
diff changeset
   714
        val pos = Position.here (Lexicon.pos_of_token prev_token);
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   715
      in
55624
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   716
        if null toks then
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   717
          error ("Inner syntax error: unexpected end of input" ^ pos)
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   718
        else
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   719
          error ("Inner syntax error" ^ pos ^
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   720
            Markup.markup Markup.no_report
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   721
              ("\n" ^ Pretty.string_of
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   722
                (Pretty.block [
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   723
                  Pretty.str "at", Pretty.brk 1,
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   724
                  Pretty.block
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   725
                   (Pretty.str "\"" ::
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   726
                    Pretty.breaks (map (Pretty.str o Lexicon.str_of_token) (#1 (split_last toks))) @
d52409077135 tuned messages;
wenzelm
parents: 48992
diff changeset
   727
                    [Pretty.str "\""])])))
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   728
      end
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   729
  | s =>
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   730
      (case indata of
42218
8e0a4d500e5b streamlined token list operations, assuming that the order of union does not matter;
wenzelm
parents: 42217
diff changeset
   731
        [] => s
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   732
      | c :: cs =>
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   733
          let
67515
wenzelm
parents: 67513
diff changeset
   734
            val (si, sii) = PROCESSS gram stateset i c s;
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   735
            val _ = Array.update (stateset, i, si);
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   736
            val _ = Array.update (stateset, i + 1, sii);
67515
wenzelm
parents: 67513
diff changeset
   737
          in produce gram stateset (i + 1) cs c end));
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   738
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   739
42217
1a2a53d03c31 misc tuning and clarification;
wenzelm
parents: 42205
diff changeset
   740
fun get_trees states = map_filter (fn (_, _, [pt], _, _, _) => SOME pt | _ => NONE) states;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   741
67515
wenzelm
parents: 67513
diff changeset
   742
fun earley (gram as Gram {tags, ...}) startsymbol indata =
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   743
  let
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   744
    val start_tag =
67531
d19686205f86 tuned: more explicit types;
wenzelm
parents: 67530
diff changeset
   745
      (case tags_lookup tags startsymbol of
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   746
        SOME tag => tag
40959
49765c1104d4 added Syntax.default_root;
wenzelm
parents: 38875
diff changeset
   747
      | NONE => error ("Inner syntax: bad grammar root symbol " ^ quote startsymbol));
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   748
    val S0 = [(~1, 0, [], [Nonterminal (start_tag, 0), Terminal Lexicon.eof], "", 0)];
330
2fda15dd1e0f changed the way a grammar is generated to allow the new parser to work;
clasohm
parents: 258
diff changeset
   749
    val s = length indata + 1;
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   750
    val Estate = Array.array (s, []);
38712
f7688fd819a8 some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents: 38711
diff changeset
   751
    val _ = Array.update (Estate, 0, S0);
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   752
  in
67515
wenzelm
parents: 67513
diff changeset
   753
    get_trees (produce gram Estate 0 indata Lexicon.eof)
237
a7d3e712767a MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents: 46
diff changeset
   754
  end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   755
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   756
67515
wenzelm
parents: 67513
diff changeset
   757
fun parse gram start toks =
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   758
  let
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   759
    val end_pos =
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   760
      (case try List.last toks of
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   761
        NONE => Position.none
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   762
      | SOME (Lexicon.Token (_, _, (_, end_pos))) => end_pos);
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   763
    val r =
67515
wenzelm
parents: 67513
diff changeset
   764
      (case earley gram start (toks @ [Lexicon.mk_eof end_pos]) of
37852
a902f158b4fc eliminated old-style sys_error/SYS_ERROR in favour of exception Fail -- after careful checking that there is no overlap with existing handling of that;
wenzelm
parents: 37684
diff changeset
   765
        [] => raise Fail "Inner syntax: no parse trees"
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   766
      | pts => pts);
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   767
  in r end;
26678
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   768
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   769
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   770
fun guess_infix_lr (Gram gram) c = (*based on educated guess*)
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   771
  let
38711
79d3cbfb4730 keep persistent production tables as immutable vectors -- potential performance improvement on modern hardware;
wenzelm
parents: 37852
diff changeset
   772
    fun freeze a = map_range (curry Vector.sub a) (Vector.length a);
27801
0d0adaf0228d datatype token: maintain range, tuned representation;
wenzelm
parents: 26678
diff changeset
   773
    val prods = maps snd (maps snd (freeze (#prods gram)));
37683
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   774
    fun guess (SOME ([Nonterminal (_, k),
ece640e48a6c do not open auxiliary ML structures;
wenzelm
parents: 37216
diff changeset
   775
            Terminal (Lexicon.Token (Lexicon.Literal, s, _)), Nonterminal (_, l)], _, j)) =
26678
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   776
          if k = j andalso l = j + 1 then SOME (s, true, false, j)
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   777
          else if k = j + 1 then if l = j then SOME (s, false, true, j)
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   778
            else if l = j + 1 then SOME (s, false, false, j)
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   779
            else NONE
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   780
          else NONE
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   781
      | guess _ = NONE;
a3ae088dc20f educated guess for infix syntax
haftmann
parents: 26069
diff changeset
   782
  in guess (find_first (fn (_, s, _) => s = c) prods) end;
18
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   783
c9ec452ff08f lots of internal cleaning and tuning;
wenzelm
parents:
diff changeset
   784
end;