2012-11-16 15:57:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012
|
|
|
|
* Wolfgang Bumiller
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
* so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "gmqcc.h"
|
|
|
|
#include "lexer.h"
|
|
|
|
|
|
|
|
typedef struct {
|
2012-11-16 18:07:23 +00:00
|
|
|
bool on;
|
|
|
|
bool was_on;
|
|
|
|
bool had_else;
|
2012-11-16 16:46:16 +00:00
|
|
|
} ppcondition;
|
|
|
|
|
2012-11-16 17:27:32 +00:00
|
|
|
typedef struct {
|
2012-11-16 18:07:23 +00:00
|
|
|
int token;
|
|
|
|
char *value;
|
|
|
|
/* a copy from the lexer */
|
|
|
|
union {
|
|
|
|
vector v;
|
|
|
|
int i;
|
|
|
|
double f;
|
|
|
|
int t; /* type */
|
|
|
|
} constval;
|
2012-11-16 17:27:32 +00:00
|
|
|
} pptoken;
|
|
|
|
|
|
|
|
typedef struct {
|
2012-11-16 18:07:23 +00:00
|
|
|
lex_ctx ctx;
|
2012-11-16 17:27:32 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
char *name;
|
|
|
|
char **params;
|
|
|
|
/* yes we need an extra flag since `#define FOO x` is not the same as `#define FOO() x` */
|
|
|
|
bool has_params;
|
2012-11-16 17:27:32 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
pptoken **output;
|
2012-11-16 17:27:32 +00:00
|
|
|
} ppmacro;
|
|
|
|
|
2012-11-16 16:46:16 +00:00
|
|
|
typedef struct {
|
2012-11-16 18:07:23 +00:00
|
|
|
lex_file *lex;
|
|
|
|
int token;
|
|
|
|
bool newline;
|
|
|
|
unsigned int errors;
|
2012-11-16 16:46:16 +00:00
|
|
|
|
2012-11-16 21:02:38 +00:00
|
|
|
bool output_on;
|
2012-11-16 18:07:23 +00:00
|
|
|
ppcondition *conditions;
|
|
|
|
ppmacro **macros;
|
2012-11-16 21:06:07 +00:00
|
|
|
|
|
|
|
bool output_string;
|
|
|
|
char *output;
|
2012-11-16 15:57:39 +00:00
|
|
|
} ftepp_t;
|
|
|
|
|
|
|
|
#define ftepp_tokval(f) ((f)->lex->tok.value)
|
2012-11-16 16:46:16 +00:00
|
|
|
#define ftepp_ctx(f) ((f)->lex->tok.ctx)
|
|
|
|
|
|
|
|
static void ftepp_errorat(ftepp_t *ftepp, lex_ctx ctx, const char *fmt, ...)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
va_list ap;
|
2012-11-16 16:46:16 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp->errors++;
|
2012-11-16 16:46:16 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
va_start(ap, fmt);
|
2012-11-16 16:46:16 +00:00
|
|
|
con_vprintmsg(LVL_ERROR, ctx.file, ctx.line, "error", fmt, ap);
|
2012-11-16 18:07:23 +00:00
|
|
|
va_end(ap);
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ftepp_error(ftepp_t *ftepp, const char *fmt, ...)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
va_list ap;
|
2012-11-16 16:46:16 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp->errors++;
|
2012-11-16 16:46:16 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
va_start(ap, fmt);
|
2012-11-16 16:46:16 +00:00
|
|
|
con_vprintmsg(LVL_ERROR, ftepp->lex->tok.ctx.file, ftepp->lex->tok.ctx.line, "error", fmt, ap);
|
2012-11-16 18:07:23 +00:00
|
|
|
va_end(ap);
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
2012-11-16 15:57:39 +00:00
|
|
|
|
2012-11-16 21:54:59 +00:00
|
|
|
static bool GMQCC_WARN ftepp_warn(ftepp_t *ftepp, int warntype, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int lvl = LVL_WARNING;
|
|
|
|
|
|
|
|
if (!OPTS_WARN(warntype))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (opts_werror) {
|
|
|
|
lvl = LVL_ERROR;
|
|
|
|
ftepp->errors++;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
con_vprintmsg(lvl, ftepp->lex->tok.ctx.file, ftepp->lex->tok.ctx.line, "error", fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return opts_werror;
|
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
static pptoken *pptoken_make(ftepp_t *ftepp)
|
2012-11-16 19:15:04 +00:00
|
|
|
{
|
|
|
|
pptoken *token = (pptoken*)mem_a(sizeof(pptoken));
|
|
|
|
token->token = ftepp->token;
|
2012-11-16 22:13:53 +00:00
|
|
|
#if 0
|
2012-11-16 19:38:44 +00:00
|
|
|
if (token->token == TOKEN_WHITE)
|
|
|
|
token->value = util_strdup(" ");
|
|
|
|
else
|
2012-11-16 22:13:53 +00:00
|
|
|
#else
|
2012-11-16 19:38:44 +00:00
|
|
|
token->value = util_strdup(ftepp_tokval(ftepp));
|
2012-11-16 22:13:53 +00:00
|
|
|
#endif
|
2012-11-16 19:15:04 +00:00
|
|
|
memcpy(&token->constval, &ftepp->lex->tok.constval, sizeof(token->constval));
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
static void pptoken_delete(pptoken *self)
|
2012-11-16 19:15:04 +00:00
|
|
|
{
|
|
|
|
mem_d(self->value);
|
|
|
|
mem_d(self);
|
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
static ppmacro *ppmacro_new(lex_ctx ctx, const char *name)
|
2012-11-16 17:27:32 +00:00
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ppmacro *macro = (ppmacro*)mem_a(sizeof(ppmacro));
|
|
|
|
memset(macro, 0, sizeof(*macro));
|
|
|
|
macro->name = util_strdup(name);
|
|
|
|
return macro;
|
2012-11-16 17:27:32 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
static void ppmacro_delete(ppmacro *self)
|
2012-11-16 17:27:32 +00:00
|
|
|
{
|
2012-11-16 19:15:04 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(self->params); ++i)
|
|
|
|
mem_d(self->params[i]);
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_free(self->params);
|
2012-11-16 19:15:04 +00:00
|
|
|
for (i = 0; i < vec_size(self->output); ++i)
|
|
|
|
pptoken_delete(self->output[i]);
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_free(self->output);
|
|
|
|
mem_d(self->name);
|
|
|
|
mem_d(self);
|
2012-11-16 17:27:32 +00:00
|
|
|
}
|
|
|
|
|
2012-11-18 10:54:11 +00:00
|
|
|
static ftepp_t* ftepp_new()
|
2012-11-16 15:57:39 +00:00
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp_t *ftepp;
|
2012-11-16 15:57:39 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp = (ftepp_t*)mem_a(sizeof(*ftepp));
|
|
|
|
memset(ftepp, 0, sizeof(*ftepp));
|
2012-11-16 15:57:39 +00:00
|
|
|
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp->output_on = true;
|
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
return ftepp;
|
2012-11-16 15:57:39 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
static void ftepp_delete(ftepp_t *self)
|
2012-11-16 17:27:32 +00:00
|
|
|
{
|
2012-11-16 19:15:04 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(self->macros); ++i)
|
|
|
|
ppmacro_delete(self->macros[i]);
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_free(self->macros);
|
|
|
|
vec_free(self->conditions);
|
2012-11-16 19:15:04 +00:00
|
|
|
lex_close(self->lex);
|
2012-11-16 18:07:23 +00:00
|
|
|
mem_d(self);
|
2012-11-16 17:27:32 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 19:49:37 +00:00
|
|
|
static void ftepp_out(ftepp_t *ftepp, const char *str, bool ignore_cond)
|
|
|
|
{
|
2012-11-16 21:02:38 +00:00
|
|
|
if (ignore_cond || ftepp->output_on)
|
2012-11-16 19:49:37 +00:00
|
|
|
{
|
2012-11-16 21:06:07 +00:00
|
|
|
size_t len;
|
|
|
|
char *data;
|
|
|
|
if (!ftepp->output_string) {
|
|
|
|
printf("%s", str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
len = strlen(str);
|
|
|
|
data = vec_add(ftepp->output, len);
|
|
|
|
memcpy(data, str, len);
|
2012-11-16 19:49:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:02:38 +00:00
|
|
|
static void ftepp_update_output_condition(ftepp_t *ftepp)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
ftepp->output_on = true;
|
|
|
|
for (i = 0; i < vec_size(ftepp->conditions); ++i)
|
|
|
|
ftepp->output_on = ftepp->output_on && ftepp->conditions[i].on;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ppmacro* ftepp_macro_find(ftepp_t *ftepp, const char *name)
|
2012-11-16 17:27:32 +00:00
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(ftepp->macros); ++i) {
|
|
|
|
if (!strcmp(name, ftepp->macros[i]->name))
|
|
|
|
return ftepp->macros[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
2012-11-16 17:27:32 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 21:54:59 +00:00
|
|
|
static void ftepp_macro_delete(ftepp_t *ftepp, const char *name)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(ftepp->macros); ++i) {
|
|
|
|
if (!strcmp(name, ftepp->macros[i]->name)) {
|
|
|
|
vec_remove(ftepp->macros, i, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-16 16:46:16 +00:00
|
|
|
static inline int ftepp_next(ftepp_t *ftepp)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
return (ftepp->token = lex_do(ftepp->lex));
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Important: this does not skip newlines! */
|
|
|
|
static bool ftepp_skipspace(ftepp_t *ftepp)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
if (ftepp->token != TOKEN_WHITE)
|
|
|
|
return true;
|
|
|
|
while (ftepp_next(ftepp) == TOKEN_WHITE) {}
|
|
|
|
if (ftepp->token >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "unexpected end of preprocessor directive");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 19:46:52 +00:00
|
|
|
/* this one skips EOLs as well */
|
|
|
|
static bool ftepp_skipallwhite(ftepp_t *ftepp)
|
|
|
|
{
|
|
|
|
if (ftepp->token != TOKEN_WHITE && ftepp->token != TOKEN_EOL)
|
|
|
|
return true;
|
|
|
|
do {
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
} while (ftepp->token == TOKEN_WHITE || ftepp->token == TOKEN_EOL);
|
|
|
|
if (ftepp->token >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "unexpected end of preprocessor directive");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-16 18:01:44 +00:00
|
|
|
/**
|
|
|
|
* The huge macro parsing code...
|
|
|
|
*/
|
2012-11-16 19:15:04 +00:00
|
|
|
static bool ftepp_define_params(ftepp_t *ftepp, ppmacro *macro)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
2012-11-16 19:41:20 +00:00
|
|
|
if (ftepp->token == ')')
|
|
|
|
break;
|
2012-11-16 19:15:04 +00:00
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "unexpected token in parameter list");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
vec_push(macro->params, util_strdup(ftepp_tokval(ftepp)));
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
} while (ftepp->token == ',');
|
|
|
|
if (ftepp->token != ')') {
|
|
|
|
ftepp_error(ftepp, "expected closing paren after macro parameter list");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
/* skipspace happens in ftepp_define */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-16 19:38:44 +00:00
|
|
|
static bool ftepp_define_body(ftepp_t *ftepp, ppmacro *macro)
|
|
|
|
{
|
|
|
|
pptoken *ptok;
|
|
|
|
while (ftepp->token != TOKEN_EOL && ftepp->token < TOKEN_EOF) {
|
|
|
|
ptok = pptoken_make(ftepp);
|
|
|
|
vec_push(macro->output, ptok);
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
}
|
2012-11-16 21:41:29 +00:00
|
|
|
/* recursive expansion can cause EOFs here */
|
|
|
|
if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
|
2012-11-16 19:38:44 +00:00
|
|
|
ftepp_error(ftepp, "unexpected junk after macro or unexpected end of file");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-16 18:01:44 +00:00
|
|
|
static bool ftepp_define(ftepp_t *ftepp)
|
2012-11-16 16:46:16 +00:00
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ppmacro *macro;
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
2012-11-16 21:54:59 +00:00
|
|
|
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
2012-11-16 22:13:53 +00:00
|
|
|
if (macro && ftepp->output_on) {
|
2012-11-16 21:54:59 +00:00
|
|
|
if (ftepp_warn(ftepp, WARN_PREPROCESSOR, "redefining `%s`", ftepp_tokval(ftepp)))
|
|
|
|
return false;
|
|
|
|
ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
|
|
|
|
}
|
2012-11-16 18:07:23 +00:00
|
|
|
macro = ppmacro_new(ftepp_ctx(ftepp), ftepp_tokval(ftepp));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "expected macro name");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)ftepp_next(ftepp);
|
2012-11-16 19:15:04 +00:00
|
|
|
|
|
|
|
if (ftepp->token == '(') {
|
|
|
|
macro->has_params = true;
|
|
|
|
if (!ftepp_define_params(ftepp, macro))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
2012-11-16 19:15:04 +00:00
|
|
|
|
2012-11-16 19:38:44 +00:00
|
|
|
if (!ftepp_define_body(ftepp, macro))
|
2012-11-16 18:07:23 +00:00
|
|
|
return false;
|
2012-11-16 19:38:44 +00:00
|
|
|
|
2012-11-16 22:13:53 +00:00
|
|
|
if (ftepp->output_on)
|
|
|
|
vec_push(ftepp->macros, macro);
|
|
|
|
else {
|
|
|
|
ppmacro_delete(macro);
|
|
|
|
}
|
2012-11-16 18:07:23 +00:00
|
|
|
return true;
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
/**
|
|
|
|
* When a macro is used we have to handle parameters as well
|
|
|
|
* as special-concatenation via ## or stringification via #
|
|
|
|
*
|
|
|
|
* Note: parenthesis can nest, so FOO((a),b) is valid, but only
|
|
|
|
* this kind of parens. Curly braces or [] don't count towards the
|
|
|
|
* paren-level.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
pptoken **tokens;
|
|
|
|
} macroparam;
|
|
|
|
|
|
|
|
static void macroparam_clean(macroparam *self)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(self->tokens); ++i)
|
|
|
|
pptoken_delete(self->tokens[i]);
|
|
|
|
vec_free(self->tokens);
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:31:51 +00:00
|
|
|
/* need to leave the last token up */
|
2012-11-16 20:20:31 +00:00
|
|
|
static bool ftepp_macro_call_params(ftepp_t *ftepp, macroparam **out_params)
|
|
|
|
{
|
|
|
|
macroparam *params = NULL;
|
|
|
|
pptoken *ptok;
|
|
|
|
macroparam mp;
|
|
|
|
size_t parens = 0;
|
|
|
|
size_t i;
|
|
|
|
|
2012-11-16 21:22:31 +00:00
|
|
|
if (!ftepp_skipallwhite(ftepp))
|
|
|
|
return false;
|
2012-11-16 20:27:15 +00:00
|
|
|
while (ftepp->token != ')') {
|
2012-11-16 20:20:31 +00:00
|
|
|
mp.tokens = NULL;
|
2012-11-16 21:22:31 +00:00
|
|
|
if (!ftepp_skipallwhite(ftepp))
|
|
|
|
return false;
|
2012-11-16 20:20:31 +00:00
|
|
|
while (parens || ftepp->token != ',') {
|
|
|
|
if (ftepp->token == '(')
|
|
|
|
++parens;
|
|
|
|
else if (ftepp->token == ')') {
|
|
|
|
if (!parens)
|
|
|
|
break;
|
|
|
|
--parens;
|
|
|
|
}
|
|
|
|
ptok = pptoken_make(ftepp);
|
|
|
|
vec_push(mp.tokens, ptok);
|
|
|
|
if (ftepp_next(ftepp) >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "unexpected EOF in macro call");
|
|
|
|
goto on_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vec_push(params, mp);
|
|
|
|
mp.tokens = NULL;
|
|
|
|
if (ftepp->token == ')')
|
|
|
|
break;
|
|
|
|
if (ftepp->token != ',') {
|
|
|
|
ftepp_error(ftepp, "expected closing paren or comma in macro call");
|
|
|
|
goto on_error;
|
|
|
|
}
|
|
|
|
if (ftepp_next(ftepp) >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "unexpected EOF in macro call");
|
|
|
|
goto on_error;
|
|
|
|
}
|
|
|
|
}
|
2012-11-16 21:31:51 +00:00
|
|
|
/* need to leave that up
|
2012-11-16 20:20:31 +00:00
|
|
|
if (ftepp_next(ftepp) >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "unexpected EOF in macro call");
|
|
|
|
goto on_error;
|
|
|
|
}
|
2012-11-16 21:31:51 +00:00
|
|
|
*/
|
2012-11-16 20:20:31 +00:00
|
|
|
*out_params = params;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
on_error:
|
|
|
|
if (mp.tokens)
|
|
|
|
macroparam_clean(&mp);
|
|
|
|
for (i = 0; i < vec_size(params); ++i)
|
|
|
|
macroparam_clean(¶ms[i]);
|
|
|
|
vec_free(params);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:22:31 +00:00
|
|
|
static bool macro_params_find(ppmacro *macro, const char *name, size_t *idx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < vec_size(macro->params); ++i) {
|
|
|
|
if (!strcmp(macro->params[i], name)) {
|
|
|
|
*idx = i;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-16 21:31:51 +00:00
|
|
|
static bool ftepp_preprocess(ftepp_t *ftepp);
|
2012-11-16 20:37:34 +00:00
|
|
|
static bool ftepp_macro_expand(ftepp_t *ftepp, ppmacro *macro, macroparam *params)
|
|
|
|
{
|
2012-11-16 21:31:51 +00:00
|
|
|
char *old_string = ftepp->output;
|
|
|
|
bool old_string_flag = ftepp->output_string;
|
|
|
|
lex_file *old_lexer = ftepp->lex;
|
2012-11-16 21:22:31 +00:00
|
|
|
bool retval = true;
|
|
|
|
|
2012-11-16 21:31:51 +00:00
|
|
|
size_t o, pi, pv;
|
|
|
|
lex_file *inlex;
|
2012-11-16 21:22:31 +00:00
|
|
|
|
|
|
|
/* really ... */
|
|
|
|
if (!vec_size(macro->output))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
ftepp->output = NULL;
|
|
|
|
ftepp->output_string = true;
|
|
|
|
for (o = 0; o < vec_size(macro->output); ++o) {
|
|
|
|
pptoken *out = macro->output[o];
|
|
|
|
switch (out->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
if (!macro_params_find(macro, out->value, &pi)) {
|
|
|
|
ftepp_out(ftepp, out->value, false);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
for (pv = 0; pv < vec_size(params[pi].tokens); ++pv) {
|
|
|
|
out = params[pi].tokens[pv];
|
|
|
|
if (out->token == TOKEN_EOL)
|
|
|
|
ftepp_out(ftepp, "\n", false);
|
|
|
|
else
|
|
|
|
ftepp_out(ftepp, out->value, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-11-16 21:54:59 +00:00
|
|
|
case '#':
|
|
|
|
if (o + 1 < vec_size(macro->output) && macro->output[o+1]->token == '#') {
|
|
|
|
/* raw concatenation */
|
|
|
|
++o;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ftepp_out(ftepp, "#", false);
|
|
|
|
break;
|
2012-11-16 21:22:31 +00:00
|
|
|
case TOKEN_EOL:
|
|
|
|
ftepp_out(ftepp, "\n", false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_out(ftepp, out->value, false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vec_push(ftepp->output, 0);
|
2012-11-16 21:31:51 +00:00
|
|
|
/* Now run the preprocessor recursively on this string buffer */
|
2012-11-16 21:41:29 +00:00
|
|
|
/*
|
2012-11-16 21:38:58 +00:00
|
|
|
printf("__________\n%s\n=========\n", ftepp->output);
|
2012-11-16 21:41:29 +00:00
|
|
|
*/
|
2012-11-16 21:31:51 +00:00
|
|
|
inlex = lex_open_string(ftepp->output, vec_size(ftepp->output)-1, ftepp->lex->name);
|
|
|
|
if (!inlex) {
|
|
|
|
ftepp_error(ftepp, "internal error: failed to instantiate lexer");
|
|
|
|
retval = false;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
ftepp->output = old_string;
|
|
|
|
ftepp->output_string = old_string_flag;
|
|
|
|
ftepp->lex = inlex;
|
|
|
|
if (!ftepp_preprocess(ftepp)) {
|
2012-11-18 10:54:11 +00:00
|
|
|
lex_close(ftepp->lex);
|
2012-11-16 21:31:51 +00:00
|
|
|
retval = false;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2012-11-16 21:22:31 +00:00
|
|
|
|
|
|
|
cleanup:
|
2012-11-16 21:31:51 +00:00
|
|
|
ftepp->lex = old_lexer;
|
|
|
|
ftepp->output = old_string;
|
2012-11-16 21:22:31 +00:00
|
|
|
ftepp->output_string = old_string_flag;
|
|
|
|
return retval;
|
2012-11-16 20:37:34 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 19:46:52 +00:00
|
|
|
static bool ftepp_macro_call(ftepp_t *ftepp, ppmacro *macro)
|
|
|
|
{
|
2012-11-16 20:20:31 +00:00
|
|
|
size_t o;
|
|
|
|
macroparam *params = NULL;
|
|
|
|
bool retval = true;
|
|
|
|
|
2012-11-16 19:49:37 +00:00
|
|
|
if (!macro->has_params) {
|
2012-11-16 21:38:58 +00:00
|
|
|
if (!ftepp_macro_expand(ftepp, macro, NULL))
|
|
|
|
return false;
|
|
|
|
ftepp_next(ftepp);
|
2012-11-16 19:49:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-11-16 21:38:58 +00:00
|
|
|
ftepp_next(ftepp);
|
2012-11-16 19:49:37 +00:00
|
|
|
|
2012-11-16 19:46:52 +00:00
|
|
|
if (!ftepp_skipallwhite(ftepp))
|
|
|
|
return false;
|
|
|
|
|
2012-11-16 20:20:31 +00:00
|
|
|
if (ftepp->token != '(') {
|
|
|
|
ftepp_error(ftepp, "expected macro parameters in parenthesis");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_macro_call_params(ftepp, ¶ms))
|
|
|
|
return false;
|
|
|
|
|
2012-11-16 20:27:15 +00:00
|
|
|
if (vec_size(params) != vec_size(macro->params)) {
|
|
|
|
ftepp_error(ftepp, "macro %s expects %u paramteters, %u provided", macro->name,
|
|
|
|
(unsigned int)vec_size(macro->params),
|
|
|
|
(unsigned int)vec_size(params));
|
|
|
|
retval = false;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2012-11-16 20:37:34 +00:00
|
|
|
if (!ftepp_macro_expand(ftepp, macro, params))
|
|
|
|
retval = false;
|
2012-11-16 21:31:51 +00:00
|
|
|
ftepp_next(ftepp);
|
2012-11-16 20:20:31 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
for (o = 0; o < vec_size(params); ++o)
|
|
|
|
macroparam_clean(¶ms[o]);
|
|
|
|
vec_free(params);
|
|
|
|
return retval;
|
|
|
|
}
|
2012-11-16 19:46:52 +00:00
|
|
|
|
2012-11-16 18:01:44 +00:00
|
|
|
/**
|
|
|
|
* #if - the FTEQCC way:
|
|
|
|
* defined(FOO) => true if FOO was #defined regardless of parameters or contents
|
|
|
|
* <numbers> => True if the number is not 0
|
|
|
|
* !<factor> => True if the factor yields false
|
2012-11-16 19:04:30 +00:00
|
|
|
* !!<factor> => ERROR on 2 or more unary nots
|
2012-11-16 18:01:44 +00:00
|
|
|
* <macro> => becomes the macro's FIRST token regardless of parameters
|
|
|
|
* <e> && <e> => True if both expressions are true
|
|
|
|
* <e> || <e> => True if either expression is true
|
|
|
|
* <string> => False
|
|
|
|
* <ident> => False (remember for macros the <macro> rule applies instead)
|
2012-11-16 19:04:30 +00:00
|
|
|
* Unary + and - are weird and wrong in fteqcc so we don't allow them
|
2012-11-16 18:01:44 +00:00
|
|
|
* parenthesis in expressions are allowed
|
|
|
|
* parameter lists on macros are errors
|
|
|
|
* No mathematical calculations are executed
|
|
|
|
*/
|
|
|
|
static bool ftepp_if_expr(ftepp_t *ftepp, bool *out)
|
2012-11-16 16:46:16 +00:00
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ppmacro *macro;
|
2012-11-16 19:02:27 +00:00
|
|
|
bool wasnot = false;
|
2012-11-16 18:28:20 +00:00
|
|
|
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
|
2012-11-16 19:02:27 +00:00
|
|
|
while (ftepp->token == '!') {
|
|
|
|
wasnot = true;
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-11-16 18:28:20 +00:00
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
if (!strcmp(ftepp_tokval(ftepp), "defined")) {
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
if (ftepp->token != '(') {
|
|
|
|
ftepp_error(ftepp, "`defined` keyword in #if requires a macro name in parenthesis");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
if (ftepp->token != TOKEN_IDENT &&
|
|
|
|
ftepp->token != TOKEN_TYPENAME &&
|
|
|
|
ftepp->token != TOKEN_KEYWORD)
|
|
|
|
{
|
|
|
|
ftepp_error(ftepp, "defined() used on an unexpected token type");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 18:07:23 +00:00
|
|
|
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
2012-11-16 18:28:20 +00:00
|
|
|
*out = !!macro;
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
if (ftepp->token != ')') {
|
|
|
|
ftepp_error(ftepp, "expected closing paren");
|
|
|
|
return false;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-11-16 18:28:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
|
|
|
if (!macro || !vec_size(macro->output)) {
|
2012-11-16 18:07:23 +00:00
|
|
|
*out = false;
|
2012-11-16 18:28:20 +00:00
|
|
|
} else {
|
|
|
|
/* This does not expand recursively! */
|
|
|
|
switch (macro->output[0]->token) {
|
|
|
|
case TOKEN_INTCONST:
|
|
|
|
*out = !!(macro->output[0]->constval.f);
|
|
|
|
break;
|
|
|
|
case TOKEN_FLOATCONST:
|
|
|
|
*out = !!(macro->output[0]->constval.f);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*out = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TOKEN_STRINGCONST:
|
|
|
|
*out = false;
|
|
|
|
break;
|
|
|
|
case TOKEN_INTCONST:
|
|
|
|
*out = !!(ftepp->lex->tok.constval.i);
|
|
|
|
break;
|
|
|
|
case TOKEN_FLOATCONST:
|
|
|
|
*out = !!(ftepp->lex->tok.constval.f);
|
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
|
2012-11-16 18:28:20 +00:00
|
|
|
case '(':
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_if_expr(ftepp, out))
|
2012-11-16 18:07:23 +00:00
|
|
|
return false;
|
2012-11-16 18:28:20 +00:00
|
|
|
if (ftepp->token != ')') {
|
|
|
|
ftepp_error(ftepp, "expected closing paren in #if expression");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "junk in #if");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 19:02:27 +00:00
|
|
|
if (wasnot)
|
|
|
|
*out = !*out;
|
2012-11-16 18:28:20 +00:00
|
|
|
|
2012-11-16 18:32:02 +00:00
|
|
|
ftepp->lex->flags.noops = false;
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
2012-11-16 18:32:02 +00:00
|
|
|
ftepp->lex->flags.noops = true;
|
2012-11-16 18:28:20 +00:00
|
|
|
|
|
|
|
if (ftepp->token == ')')
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (ftepp->token != TOKEN_OPERATOR)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!strcmp(ftepp_tokval(ftepp), "&&") ||
|
|
|
|
!strcmp(ftepp_tokval(ftepp), "||"))
|
|
|
|
{
|
|
|
|
bool next = false;
|
|
|
|
char opc = ftepp_tokval(ftepp)[0];
|
2012-11-16 18:07:23 +00:00
|
|
|
|
|
|
|
ftepp_next(ftepp);
|
2012-11-16 18:28:20 +00:00
|
|
|
if (!ftepp_if_expr(ftepp, &next))
|
2012-11-16 18:07:23 +00:00
|
|
|
return false;
|
|
|
|
|
2012-11-16 18:28:20 +00:00
|
|
|
if (opc == '&')
|
|
|
|
*out = *out && next;
|
|
|
|
else
|
|
|
|
*out = *out || next;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ftepp_error(ftepp, "junk after #if");
|
|
|
|
return false;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
2012-11-16 18:01:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool ftepp_if(ftepp_t *ftepp, ppcondition *cond)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
bool result = false;
|
2012-11-16 18:01:44 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
memset(cond, 0, sizeof(*cond));
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
if (ftepp->token == TOKEN_EOL) {
|
|
|
|
ftepp_error(ftepp, "expected expression for #if-directive");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 18:01:44 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
if (!ftepp_if_expr(ftepp, &result))
|
|
|
|
return false;
|
2012-11-16 18:01:44 +00:00
|
|
|
|
2012-11-16 18:07:23 +00:00
|
|
|
cond->on = result;
|
|
|
|
return true;
|
2012-11-16 18:01:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ifdef is rather simple
|
|
|
|
*/
|
|
|
|
static bool ftepp_ifdef(ftepp_t *ftepp, ppcondition *cond)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ppmacro *macro;
|
|
|
|
memset(cond, 0, sizeof(*cond));
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "expected macro name");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
2012-11-16 21:54:59 +00:00
|
|
|
/* relaxing this condition
|
|
|
|
if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp_error(ftepp, "stray tokens after #ifdef");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 21:54:59 +00:00
|
|
|
*/
|
2012-11-16 18:07:23 +00:00
|
|
|
cond->on = !!macro;
|
|
|
|
return true;
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 21:54:59 +00:00
|
|
|
/**
|
|
|
|
* undef is also simple
|
|
|
|
*/
|
|
|
|
static bool ftepp_undef(ftepp_t *ftepp)
|
|
|
|
{
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
|
2012-11-16 22:13:53 +00:00
|
|
|
if (ftepp->output_on) {
|
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "expected macro name");
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 21:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(void)ftepp_next(ftepp);
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
/* relaxing this condition
|
|
|
|
if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "stray tokens after #ifdef");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-16 17:27:32 +00:00
|
|
|
/* Basic structure handlers */
|
2012-11-16 16:46:16 +00:00
|
|
|
static bool ftepp_else_allowed(ftepp_t *ftepp)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
if (!vec_size(ftepp->conditions)) {
|
|
|
|
ftepp_error(ftepp, "#else without #if");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (vec_last(ftepp->conditions).had_else) {
|
|
|
|
ftepp_error(ftepp, "multiple #else for a single #if");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool ftepp_hash(ftepp_t *ftepp)
|
|
|
|
{
|
2012-11-16 18:07:23 +00:00
|
|
|
ppcondition cond;
|
|
|
|
ppcondition *pc;
|
|
|
|
|
|
|
|
lex_ctx ctx = ftepp_ctx(ftepp);
|
|
|
|
|
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (ftepp->token) {
|
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
if (!strcmp(ftepp_tokval(ftepp), "define")) {
|
|
|
|
return ftepp_define(ftepp);
|
|
|
|
}
|
2012-11-16 21:54:59 +00:00
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "undef")) {
|
|
|
|
return ftepp_undef(ftepp);
|
|
|
|
}
|
2012-11-16 18:07:23 +00:00
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "ifdef")) {
|
|
|
|
if (!ftepp_ifdef(ftepp, &cond))
|
|
|
|
return false;
|
2012-11-16 18:28:20 +00:00
|
|
|
cond.was_on = cond.on;
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_push(ftepp->conditions, cond);
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp->output_on = ftepp->output_on && cond.on;
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "ifndef")) {
|
|
|
|
if (!ftepp_ifdef(ftepp, &cond))
|
|
|
|
return false;
|
|
|
|
cond.on = !cond.on;
|
2012-11-16 18:28:20 +00:00
|
|
|
cond.was_on = cond.on;
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_push(ftepp->conditions, cond);
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp->output_on = ftepp->output_on && cond.on;
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "elifdef")) {
|
|
|
|
if (!ftepp_else_allowed(ftepp))
|
|
|
|
return false;
|
|
|
|
if (!ftepp_ifdef(ftepp, &cond))
|
|
|
|
return false;
|
|
|
|
pc = &vec_last(ftepp->conditions);
|
|
|
|
pc->on = !pc->was_on && cond.on;
|
|
|
|
pc->was_on = pc->was_on || pc->on;
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp_update_output_condition(ftepp);
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "elifndef")) {
|
|
|
|
if (!ftepp_else_allowed(ftepp))
|
|
|
|
return false;
|
|
|
|
if (!ftepp_ifdef(ftepp, &cond))
|
|
|
|
return false;
|
|
|
|
cond.on = !cond.on;
|
|
|
|
pc = &vec_last(ftepp->conditions);
|
|
|
|
pc->on = !pc->was_on && cond.on;
|
|
|
|
pc->was_on = pc->was_on || pc->on;
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp_update_output_condition(ftepp);
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "elif")) {
|
|
|
|
if (!ftepp_else_allowed(ftepp))
|
|
|
|
return false;
|
|
|
|
if (!ftepp_if(ftepp, &cond))
|
|
|
|
return false;
|
|
|
|
pc = &vec_last(ftepp->conditions);
|
|
|
|
pc->on = !pc->was_on && cond.on;
|
|
|
|
pc->was_on = pc->was_on || pc->on;
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp_update_output_condition(ftepp);
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "if")) {
|
|
|
|
if (!ftepp_if(ftepp, &cond))
|
|
|
|
return false;
|
2012-11-16 18:28:20 +00:00
|
|
|
cond.was_on = cond.on;
|
2012-11-16 18:07:23 +00:00
|
|
|
vec_push(ftepp->conditions, cond);
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp->output_on = ftepp->output_on && cond.on;
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "else")) {
|
|
|
|
if (!ftepp_else_allowed(ftepp))
|
|
|
|
return false;
|
|
|
|
pc = &vec_last(ftepp->conditions);
|
|
|
|
pc->on = !pc->was_on;
|
|
|
|
pc->had_else = true;
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_next(ftepp);
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp_update_output_condition(ftepp);
|
2012-11-16 18:28:20 +00:00
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(ftepp_tokval(ftepp), "endif")) {
|
|
|
|
if (!vec_size(ftepp->conditions)) {
|
|
|
|
ftepp_error(ftepp, "#endif without #if");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
vec_pop(ftepp->conditions);
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_next(ftepp);
|
2012-11-16 21:02:38 +00:00
|
|
|
ftepp_update_output_condition(ftepp);
|
2012-11-16 18:07:23 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ftepp_error(ftepp, "unrecognized preprocessor directive: `%s`", ftepp_tokval(ftepp));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ftepp_error(ftepp, "unexpected preprocessor token: `%s`", ftepp_tokval(ftepp));
|
|
|
|
return false;
|
|
|
|
case TOKEN_EOL:
|
|
|
|
ftepp_errorat(ftepp, ctx, "empty preprocessor directive");
|
|
|
|
return false;
|
|
|
|
case TOKEN_EOF:
|
|
|
|
ftepp_error(ftepp, "missing newline at end of file", ftepp_tokval(ftepp));
|
|
|
|
return false;
|
2012-11-16 20:37:34 +00:00
|
|
|
|
|
|
|
/* Builtins! Don't forget the builtins! */
|
|
|
|
case TOKEN_INTCONST:
|
|
|
|
case TOKEN_FLOATCONST:
|
|
|
|
ftepp_out(ftepp, "#", false);
|
|
|
|
return true;
|
2012-11-16 18:07:23 +00:00
|
|
|
}
|
2012-11-16 18:28:20 +00:00
|
|
|
if (!ftepp_skipspace(ftepp))
|
|
|
|
return false;
|
2012-11-16 18:07:23 +00:00
|
|
|
return true;
|
2012-11-16 16:46:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 15:57:39 +00:00
|
|
|
static bool ftepp_preprocess(ftepp_t *ftepp)
|
|
|
|
{
|
2012-11-16 19:46:52 +00:00
|
|
|
ppmacro *macro;
|
|
|
|
bool newline = true;
|
2012-11-16 18:07:23 +00:00
|
|
|
|
|
|
|
ftepp->lex->flags.preprocessing = true;
|
2012-11-16 19:32:03 +00:00
|
|
|
ftepp->lex->flags.mergelines = false;
|
2012-11-16 19:29:20 +00:00
|
|
|
ftepp->lex->flags.noops = true;
|
2012-11-16 18:07:23 +00:00
|
|
|
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (ftepp->token >= TOKEN_EOF)
|
|
|
|
break;
|
2012-11-16 20:37:34 +00:00
|
|
|
#if 0
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp->newline = newline;
|
|
|
|
newline = false;
|
2012-11-16 20:37:34 +00:00
|
|
|
#else
|
|
|
|
/* For the sake of FTE compatibility... FU, really */
|
|
|
|
ftepp->newline = newline = true;
|
|
|
|
#endif
|
2012-11-16 18:07:23 +00:00
|
|
|
|
|
|
|
switch (ftepp->token) {
|
2012-11-16 19:46:52 +00:00
|
|
|
case TOKEN_KEYWORD:
|
|
|
|
case TOKEN_IDENT:
|
|
|
|
case TOKEN_TYPENAME:
|
|
|
|
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
|
|
|
if (!macro) {
|
|
|
|
ftepp_out(ftepp, ftepp_tokval(ftepp), false);
|
|
|
|
ftepp_next(ftepp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!ftepp_macro_call(ftepp, macro))
|
|
|
|
ftepp->token = TOKEN_ERROR;
|
|
|
|
break;
|
2012-11-16 18:07:23 +00:00
|
|
|
case '#':
|
|
|
|
if (!ftepp->newline) {
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_out(ftepp, ftepp_tokval(ftepp), false);
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp_next(ftepp);
|
|
|
|
break;
|
|
|
|
}
|
2012-11-16 19:32:03 +00:00
|
|
|
ftepp->lex->flags.mergelines = true;
|
2012-11-16 18:07:23 +00:00
|
|
|
if (ftepp_next(ftepp) >= TOKEN_EOF) {
|
|
|
|
ftepp_error(ftepp, "error in preprocessor directive");
|
|
|
|
ftepp->token = TOKEN_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!ftepp_hash(ftepp))
|
|
|
|
ftepp->token = TOKEN_ERROR;
|
2012-11-16 19:32:03 +00:00
|
|
|
ftepp->lex->flags.mergelines = false;
|
2012-11-16 18:07:23 +00:00
|
|
|
break;
|
|
|
|
case TOKEN_EOL:
|
|
|
|
newline = true;
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_out(ftepp, "\n", true);
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp_next(ftepp);
|
|
|
|
break;
|
|
|
|
default:
|
2012-11-16 18:28:20 +00:00
|
|
|
ftepp_out(ftepp, ftepp_tokval(ftepp), false);
|
2012-11-16 18:07:23 +00:00
|
|
|
ftepp_next(ftepp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (!ftepp->errors && ftepp->token < TOKEN_EOF);
|
|
|
|
|
2012-11-16 19:15:04 +00:00
|
|
|
newline = ftepp->token == TOKEN_EOF;
|
|
|
|
return newline;
|
2012-11-16 15:57:39 +00:00
|
|
|
}
|
|
|
|
|
2012-11-18 10:54:11 +00:00
|
|
|
/* Like in parser.c - files keep the previous state so we have one global
|
|
|
|
* preprocessor. Except here we will want to warn about dangling #ifs.
|
|
|
|
*/
|
|
|
|
static ftepp_t *ftepp;
|
|
|
|
|
|
|
|
static bool ftepp_preprocess_done()
|
|
|
|
{
|
|
|
|
bool retval = true;
|
|
|
|
lex_close(ftepp->lex);
|
|
|
|
ftepp->lex = NULL;
|
|
|
|
if (vec_size(ftepp->conditions)) {
|
|
|
|
if (ftepp_warn(ftepp, WARN_MULTIFILE_IF, "#if spanning multiple files, is this intended?"))
|
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-11-16 15:57:39 +00:00
|
|
|
bool ftepp_preprocess_file(const char *filename)
|
|
|
|
{
|
|
|
|
ftepp->lex = lex_open(filename);
|
|
|
|
if (!ftepp->lex) {
|
|
|
|
con_out("failed to open file \"%s\"\n", filename);
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 21:07:53 +00:00
|
|
|
if (!ftepp_preprocess(ftepp)) {
|
|
|
|
ftepp_delete(ftepp);
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-18 10:54:11 +00:00
|
|
|
return ftepp_preprocess_done();
|
2012-11-16 15:57:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ftepp_preprocess_string(const char *name, const char *str)
|
|
|
|
{
|
2012-11-18 10:54:11 +00:00
|
|
|
ftepp_t *ftepp = ftepp_new();
|
2012-11-16 15:57:39 +00:00
|
|
|
ftepp->lex = lex_open_string(str, strlen(str), name);
|
|
|
|
if (!ftepp->lex) {
|
|
|
|
con_out("failed to create lexer for string \"%s\"\n", name);
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 21:07:53 +00:00
|
|
|
if (!ftepp_preprocess(ftepp)) {
|
|
|
|
ftepp_delete(ftepp);
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-18 10:54:11 +00:00
|
|
|
return ftepp_preprocess_done();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ftepp_init()
|
|
|
|
{
|
|
|
|
ftepp = ftepp_new();
|
|
|
|
return !!ftepp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ftepp_finish()
|
|
|
|
{
|
2012-11-16 21:07:53 +00:00
|
|
|
ftepp_delete(ftepp);
|
2012-11-16 15:57:39 +00:00
|
|
|
}
|