1 /* BEGIN INCLUDE FILE ..... lalr_default_trans.incl.pl1 ..... 07/21/81 */ 2 /* 10/11/83 */ 3 4 /* format: style4,indattr,idind30 */ 5 dcl default_transitions_size fixed bin; 6 dcl default_transitions_ptr ptr; 7 dcl default_transitions (default_transitions_size) fixed bin based (default_transitions_ptr); 8 9 /* For i = 1, 2+default_transitions (2), ...: 10 default_transitions (i) => The DPDA state number of an apply with look back table state. 11 default_transitions (i+1) => Number of default transitions made by that state. 12 default_transitions (i+2) ... default_transitions (i+1+default_transitions (i+1)) => 13 The look back values for those transitions. */ 14 15 dcl mlook_size fixed bin; 16 dcl mlook_ptr ptr; 17 dcl 1 mlook (mlook_size) based (mlook_ptr), /* List for multiple look ahead states. */ 18 2 state fixed bin, /* DPDA-index of a multiple look ahead state. */ 19 2 lookahead fixed bin; /* Its look ahead level. */ 20 21 /* END INCLUDE FILE lalr_default_trans.incl.pl1 */