summaryrefslogtreecommitdiffstats
path: root/parser.l
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-10-14 21:24:31 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-10-14 21:24:31 -0700
commit8807a16fe3115e19ce4d65f1c8beb476494ccaec (patch)
treef61b0adc3c66f76415553c4d114fe784f97c5e70 /parser.l
parent68e4d78cf9f153871d9a3c07c8ce3e43eb517c3b (diff)
downloadtxr-8807a16fe3115e19ce4d65f1c8beb476494ccaec.tar.gz
txr-8807a16fe3115e19ce4d65f1c8beb476494ccaec.tar.bz2
txr-8807a16fe3115e19ce4d65f1c8beb476494ccaec.zip
More type safety, with help from C++ compiler.
* parser.h (scanner_t): New typedef. Cleverly, we use yyguts_t as the basis for this, which pays off in a few places, getting rid of conversions. (parser_t): scanner member redeclared to scanner_t *. (yyerror, yyerr, yyerrof, end_of_regex, end_of_char): Declarations updated. * parser.l (yyerror, yyerrorf, num_esc): scanner argument becomes scanner_t * instead of void *. (yyscanner): Occurrences replaced by yyg: why should we refer to the type-unsafe void *yyscanner, when we know that in the middle of the yylex function we have the properly typed yyguts_t *yyg. (end_of_regex, end_of_char): Argument changes to scanner_t * and name strategically changes to yyg, eliminating the local variable and cast. * parser.y (sym_helper): scanner argument becomes scanner_t * instead of void *. (%parse-param}: void *scnr becomes scanner_t *scnr. (define-transform, yybadtoken): Use scanner_t * instead of void *. (parse): Since yylex_init takes a void **, we use it to initialize a local void *, and then assign it to the structure member.
Diffstat (limited to 'parser.l')
-rw-r--r--parser.l40
1 files changed, 18 insertions, 22 deletions
diff --git a/parser.l b/parser.l
index d59955b7..d17b0c01 100644
--- a/parser.l
+++ b/parser.l
@@ -78,7 +78,7 @@ int yylex_destroy(void)
int yyget_column(void *);
void yyset_column (int column_no , yyscan_t yyscanner);
-void yyerror(void *scanner, parser_t *parser, const char *s)
+void yyerror(scanner_t *scanner, parser_t *parser, const char *s)
{
yyerrorf(scanner, lit("~a"), string_utf8(s), nao);
if (parser->prepared_msg) {
@@ -87,7 +87,7 @@ void yyerror(void *scanner, parser_t *parser, const char *s)
}
}
-void yyerrorf(void *scanner, val fmt, ...)
+void yyerrorf(scanner_t *scanner, val fmt, ...)
{
parser_t *parser = yyget_extra(scanner);
@@ -137,7 +137,7 @@ static wchar_t char_esc(int letter)
internal_error("unhandled escape character");
}
-static wchar_t num_esc(void *scn, char *num)
+static wchar_t num_esc(scanner_t *scn, char *num)
{
if (num[0] == 'x') {
if (strlen(num) > 7)
@@ -280,7 +280,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
<NESTED>({FLO}|{FLODOT}){NTOK} {
val str = string_utf8(yytext);
- yyerrorf(yyscanner, lit("trailing junk in floating-point literal: ~a"), str, nao);
+ yyerrorf(yyg, lit("trailing junk in floating-point literal: ~a"), str, nao);
if (yy_top_state(yyscanner) == INITIAL
|| yy_top_state(yyscanner) == QSILIT
@@ -673,7 +673,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
<SPECIAL>[\\](x{HEX}+|{OCT}+) {
wchar_t lexeme[2];
- lexeme[0] = num_esc(yyscanner, yytext + 1);
+ lexeme[0] = num_esc(yyg, yytext + 1);
lexeme[1] = 0;
yylval->lexeme = chk_strdup(lexeme);
yy_pop_state(yyscanner);
@@ -681,7 +681,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
}
<SPECIAL>[\\]. {
- yyerrorf(yyscanner, lit("unrecognized escape: \\~a"), chr(yytext[1]), nao);
+ yyerrorf(yyg, lit("unrecognized escape: \\~a"), chr(yytext[1]), nao);
}
<SPECIAL,QSPECIAL,NESTED,BRACED>[;].* {
@@ -712,7 +712,7 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
}
<REGEX>[\\](x{HEX}+|{OCT}+);? {
- yylval->chr = num_esc(yyscanner, yytext + 1);
+ yylval->chr = num_esc(yyg, yytext + 1);
return REGCHAR;
}
@@ -833,16 +833,16 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
}
<STRLIT,QSILIT,WLIT,QWLIT>[\\](x{HEX}+|{OCT}+);? {
- yylval->chr = num_esc(yyscanner, yytext+1);
+ yylval->chr = num_esc(yyg, yytext+1);
return LITCHAR;
}
<STRLIT,QSILIT,WLIT,QWLIT>[\\]. {
- yyerrorf(yyscanner, lit("unrecognized escape: \\~a"), chr(yytext[1]), nao);
+ yyerrorf(yyg, lit("unrecognized escape: \\~a"), chr(yytext[1]), nao);
}
<CHRLIT>(x{HEX}+|o{OCT}+) {
- yylval->chr = num_esc(yyscanner, yytext);
+ yylval->chr = num_esc(yyg, yytext);
return LITCHAR;
}
@@ -905,31 +905,27 @@ UONLY {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U}
%%
-void end_of_regex(yyscan_t yyscanner)
+void end_of_regex(scanner_t *yyg)
{
- struct yyguts_t *yyg = (struct yyguts_t *) yyscanner;
-
if (YYSTATE != REGEX)
internal_error("end_of_regex called in wrong scanner state");
- yy_pop_state(yyscanner);
+ yy_pop_state(yyg);
if (YYSTATE != INITIAL) {
- if (yy_top_state(yyscanner) == INITIAL
- || yy_top_state(yyscanner) == QSILIT
- || yy_top_state(yyscanner) == QWLIT)
- yy_pop_state(yyscanner);
+ if (yy_top_state(yyg) == INITIAL
+ || yy_top_state(yyg) == QSILIT
+ || yy_top_state(yyg) == QWLIT)
+ yy_pop_state(yyg);
}
}
-void end_of_char(yyscan_t yyscanner)
+void end_of_char(scanner_t *yyg)
{
- struct yyguts_t *yyg = (struct yyguts_t *) yyscanner;
-
if (YYSTATE != CHRLIT)
internal_error("end_of_char called in wrong scanner state");
- yy_pop_state(yyscanner);
+ yy_pop_state(yyg);
}
val source_loc(val form)