diff options
author | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
commit | e0c6872cf40896c7be36b11dcc744620f10adf1d (patch) | |
tree | 60335e10d2f4354b0674ec22d7b53f0f8abee672 /web/yacco2/qa/lalr1_dp1.h |
Initial commit
Diffstat (limited to 'web/yacco2/qa/lalr1_dp1.h')
-rw-r--r-- | web/yacco2/qa/lalr1_dp1.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/web/yacco2/qa/lalr1_dp1.h b/web/yacco2/qa/lalr1_dp1.h new file mode 100644 index 0000000000..e323612d6b --- /dev/null +++ b/web/yacco2/qa/lalr1_dp1.h @@ -0,0 +1,76 @@ +/* + File: lalr1_dp1.h + Date and Time: Mon Oct 13 18:18:14 2014 +*/ +#ifndef __lalr1_dp1_h__ +#define __lalr1_dp1_h__ 1 +#include "yacco2.h" +#include "yacco2_T_enumeration.h" +#include "yacco2_k_symbols.h" +#include "yacco2_err_symbols.h" +#include "yacco2_terminals.h" +#include "yacco2_characters.h" +// monolithic grammar: no thread +extern yacco2::State S1_Clalr1_dp1; +namespace NS_lalr1_dp1 { +using namespace NS_yacco2_T_enum;// enumerate +using namespace yacco2; +struct fsm_rules_reuse_table_type{ + fsm_rules_reuse_table_type(); + int no_rules_entries_; + Per_rule_s_reuse_table* per_rule_s_table_[4]; +}; +class Clalr1_dp1: public yacco2::CAbs_fsm { + public: + enum rules_and_subrules{ + start_of_rule_list = NS_yacco2_T_enum::T_Enum::sum_total_T + ,R_Rlalr1_dp1_ = 569//start_of_rule_list + 0 + ,rhs1_Rlalr1_dp1_ = 1 + ,R_RS1_ = 570//start_of_rule_list + 2 + ,rhs1_RS1_ = 2 + ,rhs2_RS1_ = 3 + ,rhs3_RS1_ = 4 + ,rhs4_RS1_ = 5 + ,R_RA_ = 571//start_of_rule_list + 4 + ,rhs1_RA_ = 6 + ,R_RB_ = 572//start_of_rule_list + 6 + ,rhs1_RB_ = 7 + }; + //no of la sets = 4 + //no of states = 15 + Clalr1_dp1(); + ~Clalr1_dp1(); + void op(); + bool failed(); + void reduce_rhs_of_rule + (yacco2::UINT Sub_rule_no,yacco2::Rule_s_reuse_entry** Recycled_rule); + fsm_rules_reuse_table_type fsm_rules_reuse_table; + static int rhs_to_rules_mapping_[8]; + }; +struct Rlalr1_dp1; +struct RS1; +struct RA; +struct RB; +struct Rlalr1_dp1:public yacco2::CAbs_lr1_sym { + Rlalr1_dp1(yacco2::Parser* P); + public: +}; + +struct RS1:public yacco2::CAbs_lr1_sym { + RS1(yacco2::Parser* P); + public: +}; + +struct RA:public yacco2::CAbs_lr1_sym { + RA(yacco2::Parser* P); + public: +}; + +struct RB:public yacco2::CAbs_lr1_sym { + RB(yacco2::Parser* P); + public: +}; + +} // end of namespace + +#endif |