/* Copyright (c) 2015, Matthias Schiffer 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.hpp" #include #include #include namespace solar { output_t::output_t(const char *header, const char *source) : prefix_str("parse_"), token_prefix_str("TOK_"), stack_size(100), header_filename(header) { header_file = std::fopen(header, "w"); if (!header_file) throw std::system_error(errno, std::generic_category(), "unable to open header output file for writing"); source_file = std::fopen(source, "w"); if (!source_file) throw std::system_error(errno, std::generic_category(), "unable to open source output file for writing"); } output_t::~output_t() { std::fclose(header_file); std::fclose(source_file); } void output_t::initialize() { for (const std::string &nonterm : get_generator()->get_nonterminals()) symbol_values.insert(std::make_pair(symbol_t::make_nonterm(nonterm.c_str()), "symbol_" + nonterm)); for (const symbol_t &term : get_generator()->get_terminals()) { if (term.get_type() == SYMBOL_TYPE_TERM) tokens.insert(std::make_pair(term.get_value(), tokens.size())); symbol_values.insert(std::make_pair(term, "token." + get_generator()->get_grammar().get_term_type(term).second)); } } void output_t::emit_tokens() { if (tokens.empty()) return; std::fprintf(header_file, "enum %stoken_t {\n", prefix()); for (const auto &token : tokens) std::fprintf(header_file, "\t%s%s = %u,\n", token_prefix(), token.first.c_str(), token.second + 256); std::fprintf(header_file, "};\n\n"); } void output_t::emit_token_value() { std::fprintf(header_file, "typedef struct %stoken_value {\n", prefix()); std::map token_values; for (const symbol_t &term : get_generator()->get_terminals()) { const auto &type = get_generator()->get_grammar().get_term_type(term); if (!type.first.empty()) token_values.insert(std::make_pair(type.second, type.first)); } for (const auto &value : token_values) std::fprintf(header_file, "\t%s %s;\n", value.second.c_str(), value.first.c_str()); std::fprintf(header_file, "} %stoken_value_t;\n\n", prefix()); } void output_t::emit_header() { std::fprintf(header_file, "#pragma once\n\n"); if (!get_generator()->get_grammar().header_block.empty()) std::fprintf(header_file, "%s\n", get_generator()->get_grammar().header_block.c_str()); emit_tokens(); emit_token_value(); std::fprintf(header_file, "typedef struct %scontext %scontext_t;\n\n", prefix(), prefix()); std::fprintf(header_file, "%scontext_t * %salloc(void *(*alloc_func)(size_t));\n", prefix(), prefix()); std::fprintf(header_file, "void %sfree(%scontext_t *parser, void (*free_func)(void *));\n\n", prefix(), prefix()); std::fprintf(header_file, "int %spush(%scontext_t *parser, int token, const %stoken_value_t *value", prefix(), prefix(), prefix()); for (const auto &arg : get_generator()->get_grammar().extra_args) std::fprintf(header_file, ", %s %s", arg.first.c_str(), arg.second.c_str()); std::fprintf(header_file, ");\n"); } void output_t::emit_reduction(unsigned rule_id) { const rule_t &rule = get_generator()->get_grammar().rules[rule_id]; std::fprintf(source_file, "static inline "); const item_t &item = rule.item; const std::string &type = get_generator()->get_grammar().get_nonterm_type(item.get_lhs()); if (type.empty()) std::fprintf(source_file, "void"); else std::fprintf(source_file, "%s", type.c_str()); std::fprintf(source_file, " %sreduce_%u(", prefix(), rule_id); bool empty = true; for (unsigned i = 0; i < rule.variables.size(); i++) { const std::string &var = rule.variables[i]; if (var.empty()) continue; if (!empty) std::fprintf(source_file, ", "); std::fprintf(source_file, "%s %s", get_generator()->get_grammar().get_type(item.get_rhs()[i]).c_str(), var.c_str()); empty = false; } for (const auto &arg : get_generator()->get_grammar().extra_args) { if (!empty) std::fprintf(source_file, ", "); std::fprintf(source_file, "%s %s", arg.first.c_str(), arg.second.c_str()); empty = false; } if (empty) std::fprintf(source_file, "void"); std::fprintf(source_file, ") {"); std::fprintf(source_file, "%s", rule.action.c_str()); std::fprintf(source_file, "}\n\n"); } void output_t::emit_reductions() { const auto &rules = get_generator()->get_grammar().rules; for (size_t i = 0; i < rules.size(); i++) { if (!rules[i].action.empty()) emit_reduction(i); } } void output_t::emit_states() { for (size_t i = 0; i < get_generator()->get_state_count(); i++) emit_state(i); } void output_t::emit_header_include() { #ifdef _WIN32 const char sep = '\\'; #else const char sep = '/'; #endif const char *slash = std::strrchr(header_filename.c_str(), sep); const char *basename = slash ? slash+1 : header_filename.c_str(); std::fprintf(source_file, "#include \"%s\"\n\n", basename); } void output_t::emit_source() { emit_header_include(); if (!get_generator()->get_grammar().source_block.empty()) std::fprintf(source_file, "%s\n\n", get_generator()->get_grammar().source_block.c_str()); std::fprintf(source_file, "typedef union %ssymbol_value {\n", prefix()); std::fprintf(source_file, "\t%stoken_value_t token;\n", prefix()); for (const auto &nonterm : get_generator()->get_nonterminals()) { const std::string &type = get_generator()->get_grammar().get_nonterm_type(nonterm); if (!type.empty()) std::fprintf(source_file, "\t%s symbol_%s;\n", type.c_str(), nonterm.c_str()); } std::fprintf(source_file, "} %ssymbol_value_t;\n\n", prefix()); std::fprintf(source_file, "typedef struct %scontext_state {\n", prefix()); std::fprintf(source_file, "\tunsigned state;\n"); std::fprintf(source_file, "\t%ssymbol_value_t value;\n", prefix()); std::fprintf(source_file, "} %scontext_state_t;\n\n", prefix()); std::fprintf(source_file, "struct %scontext {\n", prefix()); std::fprintf(source_file, "\tunsigned top;\n"); std::fprintf(source_file, "\t%scontext_state_t stack[%u];\n", prefix(), stack_size); std::fprintf(source_file, "};\n\n\n"); std::fprintf(source_file, "%scontext_t * %salloc(void *(*alloc_func)(size_t)) {\n", prefix(), prefix()); std::fprintf(source_file, "\t%scontext_t *parser = (%scontext_t *)alloc_func(sizeof(%scontext_t));\n", prefix(), prefix(), prefix()); std::fprintf(source_file, "\tparser->top = 0;\n"); std::fprintf(source_file, "\tparser->stack[0].state = 0;\n"); std::fprintf(source_file, "\treturn parser;\n"); std::fprintf(source_file, "}\n\n"); std::fprintf(source_file, "void %sfree(%scontext_t *parser, void (*free_func)(void *)) {\n", prefix(), prefix()); std::fprintf(source_file, "\tfree_func(parser);\n"); std::fprintf(source_file, "}\n\n"); emit_reductions(); std::fprintf(source_file, "int %spush(%scontext_t *parser, int token, const %stoken_value_t *value", prefix(), prefix(), prefix()); for (const auto &arg : get_generator()->get_grammar().extra_args) std::fprintf(source_file, ", %s %s", arg.first.c_str(), arg.second.c_str()); std::fprintf(source_file, ") {\n"); std::fprintf(source_file, "\twhile (1) {\n"); std::fprintf(source_file, "\t\tswitch (parser->stack[parser->top].state) {\n"); emit_states(); std::fprintf(source_file, "\t\t}\n"); std::fprintf(source_file, "\t}\n"); std::fprintf(source_file, "}\n"); } void output_t::write() { emit_header(); emit_source(); } }