-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathla-trie.c
545 lines (502 loc) · 20.1 KB
/
la-trie.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
/*
Copyright (C) 1997-2016 Vladimir Makarov.
Written by Vladimir Makarov <[email protected]>
This file is part of the tool MSTA.
This is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* #ifdef HAVE_CONFIG_H */
#include <stdio.h>
#include <stdlib.h>
#include "vlobject.h"
#include "common.h"
#include "ird.h"
#include "contexts.h"
#include "lr-sets.h"
#include "gen-comm.h"
#include "la-trie.h"
#include <assert.h>
/* The following variable value is the first trie node of free trie
nodes list. The list is formed with the aid of field
`next_brother'. */
static IR_node_t first_free_LR_set_look_ahead_trie_node;
/* The following variable length object is used for storing vector of
token strings of context being transformed into trie
representation. */
static vlo_t LR_set_look_ahead_trie_token_strings_vector;
static void
free_LR_set_look_ahead_trie_node (IR_node_t trie_node)
{
IR_set_next_brother (trie_node, first_free_LR_set_look_ahead_trie_node);
first_free_LR_set_look_ahead_trie_node = trie_node;
}
static IR_node_t
get_free_LR_set_look_ahead_trie_node (IR_node_t single_term_definition)
{
IR_node_t trie_node;
if (first_free_LR_set_look_ahead_trie_node == NULL)
trie_node
= IR_new_LR_set_look_ahead_trie_node
(single_term_definition, NULL, NULL, NULL);
else
{
trie_node = first_free_LR_set_look_ahead_trie_node;
first_free_LR_set_look_ahead_trie_node
= IR_next_brother (first_free_LR_set_look_ahead_trie_node);
IR_set_corresponding_single_term_definition (trie_node,
single_term_definition);
IR_set_corresponding_LR_situation (trie_node, NULL);
IR_set_first_son (trie_node, NULL);
IR_set_next_brother (trie_node, NULL);
}
return trie_node;
}
struct LR_set_look_ahead_trie_token_strings_vector_element
{
/* The following member refers to LR-situation (reduce situation or
the first symbol (terminal) shift situation). */
IR_node_t corresponding_LR_situation;
token_string_t token_string;
};
/* The following variable value is LR-situation whose look ahead
context is processed. */
static IR_node_t LR_situation_corresponding_context;
static void
add_token_string_to_LR_set_lookahead_trie_token_strings_vector
(token_string_t token_string)
{
struct LR_set_look_ahead_trie_token_strings_vector_element element;
element.corresponding_LR_situation = LR_situation_corresponding_context;
element.token_string = token_string;
VLO_ADD_MEMORY
(LR_set_look_ahead_trie_token_strings_vector, &element,
sizeof (struct LR_set_look_ahead_trie_token_strings_vector_element));
}
static int
compare_LR_set_look_ahead_trie_token_strings
(const void *token_string_1, const void *token_string_2)
{
int result;
struct LR_set_look_ahead_trie_token_strings_vector_element *element_1;
struct LR_set_look_ahead_trie_token_strings_vector_element *element_2;
element_1 = ((struct LR_set_look_ahead_trie_token_strings_vector_element *)
token_string_1);
element_2 = ((struct LR_set_look_ahead_trie_token_strings_vector_element *)
token_string_2);
result = token_string_comparison (element_1->token_string,
element_2->token_string);
/* This is specific thing of the used contexts. */
assert (result != 0
|| (IR_under_control_point_flag (element_1
->corresponding_LR_situation)
&& IR_under_control_point_flag (element_2
->corresponding_LR_situation)));
return result;
}
static int
compare_pointers (const void *pointer_1, const void *pointer_2)
{
if (*(IR_node_t *) pointer_1 < *(IR_node_t *) pointer_2)
return -1;
else if (*(IR_node_t *) pointer_1 == *(IR_node_t *) pointer_2)
return 0;
else
return 1;
}
static IR_node_t
set_up_default_LR_situation_of_trie_level
(IR_node_t default_reduce_LR_situation, IR_node_t first_trie_node,
int trie_level)
{
IR_node_t current_trie_node;
IR_node_t previous_trie_node;
IR_node_t next_trie_node;
IR_node_t default_trie_node;
IR_node_t *current_LR_situation_ptr;
IR_node_t *next_LR_situation_ptr;
int reduces_number;
int shifts_number;
IR_node_t current_LR_situation;
vlo_t reduce_LR_situations;
if (default_reduce_LR_situation != NULL)
{
assert (trie_level == 0);
for (previous_trie_node = NULL, current_trie_node = first_trie_node;
current_trie_node != NULL;
previous_trie_node = current_trie_node,
current_trie_node = IR_next_brother (current_trie_node))
;
assert (previous_trie_node == NULL);
}
else
{
for (current_trie_node = first_trie_node;
current_trie_node != NULL;
current_trie_node = IR_next_brother (current_trie_node))
if (IR_first_son (current_trie_node) != NULL)
IR_set_first_son
(current_trie_node,
set_up_default_LR_situation_of_trie_level
(NULL, IR_first_son (current_trie_node), trie_level + 1));
shifts_number = 0;
VLO_CREATE (reduce_LR_situations, 0);
for (current_trie_node = first_trie_node;
current_trie_node != NULL;
current_trie_node = IR_next_brother (current_trie_node))
if (IR_first_son (current_trie_node) == NULL)
{
current_LR_situation
= IR_corresponding_LR_situation (current_trie_node);
if (IR_IS_OF_TYPE (IR_element_after_dot (current_LR_situation),
IR_NM_canonical_rule_end))
VLO_ADD_MEMORY (reduce_LR_situations,
¤t_LR_situation, sizeof (IR_node_t));
else
shifts_number++;
}
qsort (VLO_BEGIN (reduce_LR_situations),
VLO_LENGTH (reduce_LR_situations) / sizeof (IR_node_t),
sizeof (IR_node_t), compare_pointers);
default_reduce_LR_situation = NULL;
reduces_number = 0;
current_LR_situation_ptr = VLO_BEGIN (reduce_LR_situations);
if (error_reduce_flag
|| (current_LR_situation_ptr
> (IR_node_t *) VLO_END (reduce_LR_situations))
|| (!IR_it_is_errored_LR_set (IR_LR_set (*current_LR_situation_ptr))
&& (characteristic_symbol_of_LR_set
(IR_LR_set (*current_LR_situation_ptr))
!= error_single_definition)))
for (;
current_LR_situation_ptr
<= (IR_node_t *) VLO_END (reduce_LR_situations);
current_LR_situation_ptr = next_LR_situation_ptr)
{
for (next_LR_situation_ptr = current_LR_situation_ptr;
next_LR_situation_ptr
<= (IR_node_t *) VLO_END (reduce_LR_situations);
next_LR_situation_ptr++)
if (*current_LR_situation_ptr != *next_LR_situation_ptr)
break;
if (default_reduce_LR_situation == NULL
|| (reduces_number
< next_LR_situation_ptr - current_LR_situation_ptr))
{
default_reduce_LR_situation = *current_LR_situation_ptr;
reduces_number
= next_LR_situation_ptr - current_LR_situation_ptr;
}
}
VLO_DELETE (reduce_LR_situations);
if (default_reduce_LR_situation != NULL
|| (trie_level != 0 && shifts_number > reduces_number))
{
if (trie_level != 0 && shifts_number > reduces_number)
default_reduce_LR_situation = NULL;
for (previous_trie_node = NULL, current_trie_node = first_trie_node;
current_trie_node != NULL;
current_trie_node = next_trie_node)
{
next_trie_node = IR_next_brother (current_trie_node);
if (IR_first_son (current_trie_node) == NULL
&& ((trie_level != 0 && shifts_number > reduces_number
&& !IR_IS_OF_TYPE (IR_element_after_dot
(IR_corresponding_LR_situation
(current_trie_node)),
IR_NM_canonical_rule_end))
|| (IR_corresponding_LR_situation (current_trie_node)
== default_reduce_LR_situation)))
{
assert
(default_reduce_LR_situation == NULL
||
(default_reduce_LR_situation
== IR_corresponding_LR_situation (current_trie_node)));
/* This default LR-situation is the single shift
LR-situatuion for look ahead number 2, 3, ... */
default_reduce_LR_situation
= IR_corresponding_LR_situation (current_trie_node);
if (previous_trie_node == NULL)
first_trie_node = next_trie_node;
else
IR_set_next_brother (previous_trie_node, next_trie_node);
free_LR_set_look_ahead_trie_node (current_trie_node);
}
else
previous_trie_node = current_trie_node;
}
}
}
if (default_reduce_LR_situation != NULL)
{
assert (previous_trie_node != NULL || first_trie_node == NULL);
default_trie_node = get_free_LR_set_look_ahead_trie_node (NULL);
IR_set_corresponding_LR_situation (default_trie_node,
default_reduce_LR_situation);
if (previous_trie_node == NULL)
first_trie_node = default_trie_node;
else
IR_set_next_brother (previous_trie_node, default_trie_node);
}
return first_trie_node;
}
static void
set_up_LR_set_look_ahead_trie (IR_node_t LR_set)
{
IR_node_t *the_rightmost_trie_nodes_array;
IR_node_t current_LR_set_look_ahead_trie_node;
IR_node_t previous_brother;
int current_look_ahead;
struct LR_set_look_ahead_trie_token_strings_vector_element
*current_token_string_ptr;
int current_the_rightmost_trie_nodes_array_size;
IR_node_t default_reduce_LR_situation;
IR_node_t first_LR_set_look_ahead_trie_node;
IR_node_t single_term_definition;
IR_node_t back_track_alternative;
vlo_t the_rightmost_trie_nodes;
#ifndef NDEBUG
if (debug_level >= 2)
{
fprintf (stderr, "build look ahead trie of LR-set:\n");
output_LR_set_situations (stderr, LR_set, "\t");
}
#endif
assert (IR_reachable_flag (LR_set));
VLO_NULLIFY (LR_set_look_ahead_trie_token_strings_vector);
default_reduce_LR_situation = NULL;
for (LR_situation_corresponding_context = IR_LR_situation_list (LR_set);
LR_situation_corresponding_context != NULL;
LR_situation_corresponding_context
= IR_next_LR_situation (LR_situation_corresponding_context))
{
#ifndef NDEBUG
if (debug_level >= 2)
{
fprintf (stderr, " process LR-situation:");
output_LR_situation (stderr, LR_situation_corresponding_context,
"\t", TRUE);
}
#endif
if (IR_IS_OF_TYPE (IR_element_after_dot
(LR_situation_corresponding_context),
IR_NM_canonical_rule_end))
{
if (IR_look_ahead_context (LR_situation_corresponding_context)
!= NULL)
process_context_token_strings
(IR_look_ahead_context (LR_situation_corresponding_context),
add_token_string_to_LR_set_lookahead_trie_token_strings_vector);
else
{
assert (default_reduce_LR_situation == NULL);
default_reduce_LR_situation = LR_situation_corresponding_context;
}
}
else if (IR_first_symbol_LR_situation
(LR_situation_corresponding_context)
&& (!IR_goto_arc_has_been_removed
(LR_situation_corresponding_context)
|| (IR_corresponding_regular_arc
(LR_situation_corresponding_context) != NULL))
&& IR_IS_OF_TYPE (IR_element_itself
(IR_element_after_dot
(LR_situation_corresponding_context)),
IR_NM_single_term_definition))
{
if (IR_look_ahead_context (LR_situation_corresponding_context)
== NULL)
{
single_term_definition
= IR_element_itself (IR_element_after_dot
(LR_situation_corresponding_context));
add_token_string_to_LR_set_lookahead_trie_token_strings_vector
(get_new_token_string (&single_term_definition, 1));
}
else
process_context_token_strings
(IR_look_ahead_context (LR_situation_corresponding_context),
add_token_string_to_LR_set_lookahead_trie_token_strings_vector);
}
}
qsort (VLO_BEGIN (LR_set_look_ahead_trie_token_strings_vector),
VLO_LENGTH (LR_set_look_ahead_trie_token_strings_vector)
/ sizeof (struct LR_set_look_ahead_trie_token_strings_vector_element),
sizeof (struct LR_set_look_ahead_trie_token_strings_vector_element),
compare_LR_set_look_ahead_trie_token_strings);
VLO_CREATE (the_rightmost_trie_nodes,
max_look_ahead_number * sizeof (IR_node_t));
the_rightmost_trie_nodes_array = VLO_BEGIN (the_rightmost_trie_nodes);
current_the_rightmost_trie_nodes_array_size = 0;
first_LR_set_look_ahead_trie_node = NULL;
for (current_token_string_ptr
= VLO_BEGIN (LR_set_look_ahead_trie_token_strings_vector);
(char *) current_token_string_ptr
<= (char *) VLO_END (LR_set_look_ahead_trie_token_strings_vector);
current_token_string_ptr++)
{
previous_brother = NULL;
for (current_look_ahead = 0;
current_look_ahead < current_the_rightmost_trie_nodes_array_size;
current_look_ahead++)
{
single_term_definition
= get_n_th_token (current_token_string_ptr->token_string,
current_look_ahead);
previous_brother
= the_rightmost_trie_nodes_array [current_look_ahead];
assert (previous_brother != NULL
/* There is not possible situation when there are token
strings 'ab' and 'abc' in the contexts (i.e. one
token string is a prefix of the second token string).
The following reflects it. */
&& single_term_definition != NULL);
if (IR_corresponding_single_term_definition (previous_brother)
!= single_term_definition)
break;
}
if (current_look_ahead < current_the_rightmost_trie_nodes_array_size
|| ((current_token_string_ptr
== VLO_BEGIN (LR_set_look_ahead_trie_token_strings_vector))
&& current_the_rightmost_trie_nodes_array_size == 0
&& previous_brother == NULL))
{
single_term_definition
= get_n_th_token (current_token_string_ptr->token_string,
current_look_ahead);
current_LR_set_look_ahead_trie_node
= get_free_LR_set_look_ahead_trie_node (single_term_definition);
if (previous_brother == NULL)
first_LR_set_look_ahead_trie_node
= current_LR_set_look_ahead_trie_node;
else
IR_set_next_brother (previous_brother,
current_LR_set_look_ahead_trie_node);
for (;;)
{
the_rightmost_trie_nodes_array [current_look_ahead]
= current_LR_set_look_ahead_trie_node;
current_look_ahead++;
current_the_rightmost_trie_nodes_array_size = current_look_ahead;
single_term_definition
= get_n_th_token (current_token_string_ptr->token_string,
current_look_ahead);
if (single_term_definition == NULL)
break;
IR_set_first_son
(current_LR_set_look_ahead_trie_node,
get_free_LR_set_look_ahead_trie_node
(single_term_definition));
current_LR_set_look_ahead_trie_node
= IR_first_son (current_LR_set_look_ahead_trie_node);
}
IR_set_corresponding_LR_situation
(current_LR_set_look_ahead_trie_node,
current_token_string_ptr->corresponding_LR_situation);
}
else
{
/* New back track alternative: */
assert (current_look_ahead == 1
&& IR_under_control_point_flag (current_token_string_ptr
->corresponding_LR_situation)
&& IR_under_control_point_flag (IR_corresponding_LR_situation
(previous_brother)));
back_track_alternative
= IR_new_back_track_alternative (previous_brother, NULL);
if (IR_first_back_track_alternative (previous_brother) == NULL)
{
IR_set_first_back_track_alternative (previous_brother,
back_track_alternative);
IR_set_last_back_track_alternative (previous_brother,
back_track_alternative);
}
else
IR_set_last_back_track_alternative
(IR_last_back_track_alternative (previous_brother),
back_track_alternative);
}
}
VLO_DELETE (the_rightmost_trie_nodes);
IR_set_LR_set_look_ahead_trie (LR_set,
set_up_default_LR_situation_of_trie_level
(default_reduce_LR_situation,
first_LR_set_look_ahead_trie_node, 0));
}
void
create_LR_set_look_ahead_trie (void)
{
IR_node_t current_LR_core;
IR_node_t current_LR_set;
for (current_LR_core = IR_LR_core_list (description);
current_LR_core != NULL;
current_LR_core = IR_next_LR_core (current_LR_core))
for (current_LR_set = IR_LR_set_list (current_LR_core);
current_LR_set != NULL;
current_LR_set = IR_next_LR_set (current_LR_set))
if (IR_reachable_flag (current_LR_set))
set_up_LR_set_look_ahead_trie (current_LR_set);
}
void
initiate_LR_set_look_ahead_tries (void)
{
first_free_LR_set_look_ahead_trie_node = NULL;
VLO_CREATE (LR_set_look_ahead_trie_token_strings_vector, 10000);
}
void
finish_LR_set_look_ahead_tries (void)
{
VLO_DELETE (LR_set_look_ahead_trie_token_strings_vector);
}
static int
get_trie_height (IR_node_t first_trie_node)
{
int result;
int trie_height;
IR_node_t current_trie_node;
result = 0;
for (current_trie_node = first_trie_node;
current_trie_node != NULL;
current_trie_node = IR_next_brother (current_trie_node))
{
trie_height = get_trie_height (IR_first_son (current_trie_node)) + 1;
if (trie_height > result)
result = trie_height;
}
return result;
}
int
get_max_look_ahead_string_length (void)
{
IR_node_t current_LR_core;
IR_node_t current_LR_set;
int trie_height;
int result;
result = 0;
for (current_LR_core = IR_LR_core_list (description);
current_LR_core != NULL;
current_LR_core = IR_next_LR_core (current_LR_core))
for (current_LR_set = IR_LR_set_list (current_LR_core);
current_LR_set != NULL;
current_LR_set = IR_next_LR_set (current_LR_set))
if (IR_reachable_flag (current_LR_set))
{
trie_height
= get_trie_height (IR_LR_set_look_ahead_trie (current_LR_set));
if (trie_height > result)
result = trie_height;
}
return result;
}