147 lines
5 KiB
C++
147 lines
5 KiB
C++
|
/*
|
||
|
Copyright (c) 2015, Matthias Schiffer <mschiffer@universe-factory.net>
|
||
|
All rights reserved.
|
||
|
|
||
|
Redistribution and use in source and binary forms, with or without
|
||
|
modification, are permitted provided that the following conditions are met:
|
||
|
|
||
|
1. Redistributions of source code must retain the above copyright notice,
|
||
|
this list of conditions and the following disclaimer.
|
||
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
||
|
this list of conditions and the following disclaimer in the documentation
|
||
|
and/or other materials provided with the distribution.
|
||
|
|
||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "output_lr0.hpp"
|
||
|
|
||
|
|
||
|
namespace solar {
|
||
|
|
||
|
void output_lr0_t::emit_state_shift(unsigned i) {
|
||
|
std::fprintf(source_file, "\t\t\tswitch (token) {\n");
|
||
|
|
||
|
if (generator->get_shifts().find(std::make_pair(i, symbol_t::make_nonterm(""))) != generator->get_shifts().end()) {
|
||
|
std::fprintf(source_file, "\t\t\tcase 0:\n");
|
||
|
std::fprintf(source_file, "\t\t\t\treturn 0;\n\n");
|
||
|
}
|
||
|
|
||
|
for (const auto &token : generator->get_terminals()) {
|
||
|
auto it = generator->get_shifts().find(std::make_pair(i, token));
|
||
|
if (it == generator->get_shifts().end())
|
||
|
continue;
|
||
|
|
||
|
if (token.get_type() == SYMBOL_TYPE_CHAR)
|
||
|
std::fprintf(source_file, "\t\t\tcase '%c':\n", token.get_value()[0]);
|
||
|
else
|
||
|
std::fprintf(source_file, "\t\t\tcase %s%s:\n", token_prefix(), token.get_value().c_str());
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\t\tparser->stack[parser->top].value.token = *value;\n");
|
||
|
std::fprintf(source_file, "\t\t\t\tparser->stack[++parser->top].state = %u;\n", unsigned(it->second));
|
||
|
std::fprintf(source_file, "\t\t\t\treturn 1;\n\n");
|
||
|
}
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\tdefault:\n");
|
||
|
std::fprintf(source_file, "\t\t\t\treturn -1;\n");
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\t}\n");
|
||
|
}
|
||
|
|
||
|
void output_lr0_t::emit_state_reduce(const item_t &item, int rule_id) {
|
||
|
const auto &rhs = item.get_rhs();
|
||
|
if (rhs.size())
|
||
|
std::fprintf(source_file, "\t\t\tparser->top -= %u;\n", unsigned(rhs.size()));
|
||
|
|
||
|
if (rule_id >= 0) {
|
||
|
const std::string &type = generator->get_grammar().get_nonterm_type(item.get_lhs());
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\t");
|
||
|
if (!type.empty())
|
||
|
std::fprintf(source_file, "parser->stack[parser->top].value.symbol_%s = ", item.get_lhs().c_str());
|
||
|
std::fprintf(source_file, "%sreduce_%i(", prefix(), rule_id);
|
||
|
|
||
|
bool empty = true;
|
||
|
const auto &vars = generator->get_grammar().rules[rule_id].variables;
|
||
|
for (unsigned i = 0; i < vars.size(); i++) {
|
||
|
const std::string &var = vars[i];
|
||
|
if (var.empty())
|
||
|
continue;
|
||
|
|
||
|
if (!empty)
|
||
|
std::fprintf(source_file, ", ");
|
||
|
|
||
|
std::fprintf(source_file, "parser->stack[parser->top + %u].value.%s", i, symbol_values[rhs[i]].c_str());
|
||
|
empty = false;
|
||
|
}
|
||
|
|
||
|
for (const auto &arg : generator->get_grammar().extra_args) {
|
||
|
if (!empty)
|
||
|
std::fprintf(source_file, ", ");
|
||
|
|
||
|
std::fprintf(source_file, "%s", arg.second.c_str());
|
||
|
|
||
|
empty = false;
|
||
|
}
|
||
|
|
||
|
std::fprintf(source_file, ");\n");
|
||
|
}
|
||
|
|
||
|
std::vector<std::pair<unsigned, unsigned>> gotos;
|
||
|
|
||
|
for (size_t i = 0; i < generator->get_state_count(); i++) {
|
||
|
auto it = generator->get_gotos().find(std::make_pair(i, item.get_lhs()));
|
||
|
if (it == generator->get_gotos().end())
|
||
|
continue;
|
||
|
|
||
|
gotos.emplace_back(i, it->second);
|
||
|
}
|
||
|
|
||
|
if (gotos.size() == 1) {
|
||
|
std::fprintf(source_file, "\t\t\tparser->stack[++parser->top].state = %u;\n", gotos[0].second);
|
||
|
}
|
||
|
else {
|
||
|
std::fprintf(source_file, "\t\t\tswitch (parser->stack[parser->top].state) {\n");
|
||
|
|
||
|
for (size_t i = 0; i < generator->get_state_count(); i++) {
|
||
|
auto it = generator->get_gotos().find(std::make_pair(i, item.get_lhs()));
|
||
|
if (it == generator->get_gotos().end())
|
||
|
continue;
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\tcase %u:\n", unsigned(i));
|
||
|
std::fprintf(source_file, "\t\t\t\tparser->stack[++parser->top].state = %u;\n", unsigned(it->second));
|
||
|
std::fprintf(source_file, "\t\t\t\tbreak;\n");
|
||
|
}
|
||
|
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\t}\n");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void output_lr0_t::emit_state(unsigned i) {
|
||
|
std::fprintf(source_file, "\t\tcase %u:\n", i);
|
||
|
|
||
|
auto it = generator->get_reductions().find(i);
|
||
|
if (it == generator->get_reductions().end()) {
|
||
|
emit_state_shift(i);
|
||
|
}
|
||
|
else {
|
||
|
const rule_t &rule = generator->get_grammar().rules[it->second];
|
||
|
emit_state_reduce(rule.item, rule.action.empty() ? -1 : it->second);
|
||
|
}
|
||
|
|
||
|
std::fprintf(source_file, "\t\t\tbreak;\n\n");
|
||
|
}
|
||
|
|
||
|
}
|