summaryrefslogtreecommitdiffstats
path: root/src/output.cpp
blob: 9c3044368df18634f4f377f77c21301f8b5b6d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
  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.hpp"

#include <cerrno>
#include <cstring>
#include <system_error>


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));
	}
}

std::string output_t::symbol_case(const symbol_t &sym) {
	if (sym.get_type() == SYMBOL_TYPE_CHAR) {
		switch (sym.get_value()[0]) {
		case '\a':
			return "'\\a'";

		case '\b':
			return "'\\b'";

		case '\f':
			return "'\\f'";

		case '\n':
			return "'\\n'";

		case '\r':
			return "'\\r'";

		case '\t':
			return "'\\t'";

		case '\v':
			return "'\\v'";

		case '\\':
			return "'\\\\'";

		case '\'':
			return "'\\''";

		default:
			return "'" +  sym.get_value() + "'";
		}
	}
	else {
		if (sym.get_value().empty())
			return "0";
		else
			return token_prefix_str + sym.get_value();
	}
}

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<std::string, std::string> 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();
}

}