Skip to content

Commit

Permalink
Fixed literal data getting through the parser in one piece.
Browse files Browse the repository at this point in the history
--HG--
branch : calculator-experiment
  • Loading branch information
icculus committed Feb 8, 2010
1 parent c8deb55 commit 7eff1e8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
30 changes: 20 additions & 10 deletions calculator.c
Expand Up @@ -5,6 +5,12 @@
#define LEMON_SUPPORT_TRACING 1
#endif

typedef struct TokenData
{
const char *token;
unsigned int tokenlen;
} TokenData;

typedef struct Context
{
int isfail;
Expand Down Expand Up @@ -181,14 +187,14 @@ typedef struct ExpressionStringLiteral
const char *string;
} ExpressionStringLiteral;

static const char *new_identifier(Context *ctx)
static const char *new_identifier(Context *ctx, const TokenData *data)
{
// !!! FIXME: this needs to cache strings.
const unsigned int len = ctx->tokenlen;
const unsigned int len = data->tokenlen;
char *retval = Malloc(ctx, len + 1);
if (retval == NULL)
return NULL;
memcpy(retval, ctx->token, len);
memcpy(retval, data->token, len);
retval[len] = '\0';
return retval;
} // new_identifier
Expand Down Expand Up @@ -272,11 +278,11 @@ static inline int64 strtoi64(const char *str, unsigned int len)
return retval;
} // strtoi64

static Expression *new_literal_int_expr(Context *ctx)
static Expression *new_literal_int_expr(Context *ctx, const TokenData *data)
{
NEW_EXPR(ExpressionIntLiteral);
retval->op = OP_INT_LITERAL;
retval->value = strtoi64(ctx->token, ctx->tokenlen);
retval->value = strtoi64(data->token, data->tokenlen);
return (Expression *) retval;
} // new_literal_int_expr

Expand All @@ -289,19 +295,19 @@ static inline double strtodouble(const char *_str, unsigned int len)
return strtod(str, NULL);
} // strtodouble

static Expression *new_literal_float_expr(Context *ctx)
static Expression *new_literal_float_expr(Context *ctx, const TokenData *data)
{
NEW_EXPR(ExpressionFloatLiteral);
retval->op = OP_FLOAT_LITERAL;
retval->value = strtodouble(ctx->token, ctx->tokenlen);
retval->value = strtodouble(data->token, data->tokenlen);
return (Expression *) retval;
} // new_literal_float_expr

static Expression *new_literal_string_expr(Context *ctx)
static Expression *new_literal_string_expr(Context *ctx, const TokenData *data)
{
NEW_EXPR(ExpressionStringLiteral);
retval->op = OP_STRING_LITERAL;
retval->string = new_identifier(ctx);
retval->string = new_identifier(ctx, data);
return (Expression *) retval;
} // new_string_literal_expr

Expand Down Expand Up @@ -516,7 +522,11 @@ static void MOJOSHADER_compile(const char *filename,
ctx.token = preprocessor_nexttoken(ctx.preprocessor,
&ctx.tokenlen,
&ctx.tokenval);
ParseCalculator(pParser, convert_to_lemon_token(&ctx), 0, &ctx);
// !!! FIXME: this can't refer directly to pointers in the stream,
// !!! FIXME: as they can be free()'d before we actually use them
// !!! FIXME: when a rule reduces down later.
TokenData token = { ctx.token, ctx.tokenlen };
ParseCalculator(pParser, convert_to_lemon_token(&ctx), token, &ctx);
} while (ctx.tokenval != TOKEN_EOI);
ParseCalculatorFree(pParser, f, d);
}
Expand Down
10 changes: 5 additions & 5 deletions calculator.lemon
Expand Up @@ -22,7 +22,7 @@

%start_symbol calculator
%token_prefix TOKEN_CALC_
%token_type { int }
%token_type { TokenData }
%extra_argument { Context *ctx }

%include {
Expand Down Expand Up @@ -73,14 +73,14 @@ calculator ::= expression(B). { parse_complete(B); }

%type identifier { const char * }
%destructor identifier { (void) ctx; } // !!! FIXME: remove this later, it's just to shut up the compiler for now.
identifier(A) ::= IDENTIFIER. { A = new_identifier(ctx); }
identifier(A) ::= IDENTIFIER(B). { A = new_identifier(ctx, &B); }

// the expression stuff is based on Jeff Lee's ANSI C grammar.
%type primary_expr { Expression * }
primary_expr(A) ::= identifier(B). { A = new_identifier_expr(ctx, B); }
primary_expr(A) ::= INT_CONSTANT. { A = new_literal_int_expr(ctx); }
primary_expr(A) ::= FLOAT_CONSTANT. { A = new_literal_float_expr(ctx); }
primary_expr(A) ::= STRING_LITERAL. { A = new_literal_string_expr(ctx); }
primary_expr(A) ::= INT_CONSTANT(B). { A = new_literal_int_expr(ctx, &B); }
primary_expr(A) ::= FLOAT_CONSTANT(B). { A = new_literal_float_expr(ctx, &B); }
primary_expr(A) ::= STRING_LITERAL(B). { A = new_literal_string_expr(ctx, &B); }
primary_expr(A) ::= LPAREN expression(B) RPAREN. { A = B; }

%type postfix_expr { Expression * }
Expand Down

0 comments on commit 7eff1e8

Please sign in to comment.