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/not_lr1_1sym.cpp |
Initial commit
Diffstat (limited to 'web/yacco2/qa/not_lr1_1sym.cpp')
-rw-r--r-- | web/yacco2/qa/not_lr1_1sym.cpp | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/web/yacco2/qa/not_lr1_1sym.cpp b/web/yacco2/qa/not_lr1_1sym.cpp new file mode 100644 index 0000000000..c0e63c9e3a --- /dev/null +++ b/web/yacco2/qa/not_lr1_1sym.cpp @@ -0,0 +1,69 @@ +/* + File: not_lr1_1sym.cpp + Date and Time: Mon Oct 13 18:18:15 2014 +*/ +#include "not_lr1_1.h" +using namespace NS_yacco2_T_enum;// enumerate +using namespace NS_yacco2_err_symbols;// error symbols +using namespace NS_yacco2_k_symbols;// lrk +using namespace NS_yacco2_terminals;// terminals +using namespace NS_yacco2_characters;// rc +using namespace yacco2;// yacco2 library +using namespace NS_not_lr1_1;// grammar's ns +// first set terminals +// monolithic grammar --- no thread +void +Cnot_lr1_1::reduce_rhs_of_rule + (yacco2::UINT Sub_rule_no,yacco2::Rule_s_reuse_entry** Recycled_rule){ + int reducing_rule = rhs_to_rules_mapping_[Sub_rule_no]; + Per_rule_s_reuse_table* rule_reuse_tbl_ptr = + fsm_rules_reuse_table.per_rule_s_table_[reducing_rule]; + Rule_s_reuse_entry* re(0); + find_a_recycled_rule(rule_reuse_tbl_ptr,&re); + (*Recycled_rule) = re; + fnd_re: switch (Sub_rule_no){ + case rhs1_Rnot_lr1_1_:{ + Rnot_lr1_1* sym; + if(re->rule_ == 0){ + sym = new Rnot_lr1_1(parser__); + re->rule_ = sym; + }else{ + sym = (Rnot_lr1_1*)re->rule_; + } + // no rule's constructor directive + (*Recycled_rule)->rule_ = sym; + sym->rule_info__.rhs_no_of_parms__ = 2; + + + return;} + case rhs1_RS1_:{ + RS1* sym; + if(re->rule_ == 0){ + sym = new RS1(parser__); + re->rule_ = sym; + }else{ + sym = (RS1*)re->rule_; + } + // no rule's constructor directive + (*Recycled_rule)->rule_ = sym; + sym->rule_info__.rhs_no_of_parms__ = 1; + + + return;} + case rhs2_RS1_:{ + RS1* sym; + if(re->rule_ == 0){ + sym = new RS1(parser__); + re->rule_ = sym; + }else{ + sym = (RS1*)re->rule_; + } + // no rule's constructor directive + (*Recycled_rule)->rule_ = sym; + sym->rule_info__.rhs_no_of_parms__ = 1; + + + return;} + default: return; + } +} |