X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=assembler%2Fscanner.l;h=dc6e6083514700926853e0e782c1a6d0bb8fa935;hb=bdf61c63137881ce7a1d08a62da09c4dce472dc9;hp=bb866a93d1c7d302959d1e3617274dfb8a574414;hpb=80d4431cde7dec47d2cd549ec581cc98dab67d5d;p=b43-tools.git diff --git a/assembler/scanner.l b/assembler/scanner.l index bb866a9..dc6e608 100644 --- a/assembler/scanner.l +++ b/assembler/scanner.l @@ -1,7 +1,7 @@ %{ /* - * Copyright (C) 2006-2007 Michael Buesch + * Copyright (C) 2006-2010 Michael Buesch * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 @@ -15,11 +15,10 @@ #include "parser.h" #include "main.h" +#include "util.h" #include - -#undef min -#define min(x,y) ((x) < (y) ? (x) : (y)) +#include static void interpret_cppinfo(const char *); @@ -30,7 +29,7 @@ static inline void log_current_line(void) size_t len; len = min(sizeof(cur_lineinfo.linecopy) - 1, strlen(yytext)); - strncpy(cur_lineinfo.linecopy, yytext, len); + memcpy(cur_lineinfo.linecopy, yytext, len); cur_lineinfo.linecopy[len] = '\0'; } @@ -43,7 +42,7 @@ NEWLINE ((\r)|(\n)|(\r\n)) %% ^.*$ { log_current_line(); REJECT; } -#\ [0-9]+\ \".*\"[ ]*[0-9]*{NEWLINE} { interpret_cppinfo(yytext); } +#{WS}+[0-9]+{WS}+\".*\"[0-9 \t]*{NEWLINE} { interpret_cppinfo(yytext); } {WS}+ { update_lineinfo(); /* whitespace */ } @@ -51,11 +50,12 @@ NEWLINE ((\r)|(\n)|(\r\n)) ^{WS}*"%"{WS}*arch { update_lineinfo(); return ASM_ARCH; } ^{WS}*"%"{WS}*start { update_lineinfo(); return ASM_START; } +"%"{WS}*assert { update_lineinfo(); return ASM_ASSERT; } ^{WS}*\.text{WS}*$ { update_lineinfo(); return SECTION_TEXT; } ^{WS}*\.initvals/\({IDENTIFIER}\) { update_lineinfo(); return SECTION_IVALS; } -spr[0-9a-fA-F]{3,3} { update_lineinfo(); return SPR; } +spr[0-9a-fA-F]{1,4} { update_lineinfo(); return SPR; } r/([0-9]|([1-5][0-9])|(6[0-3])) { update_lineinfo(); return GPR; } off/[0-6] { update_lineinfo(); return OFFR; } lr/[0-3] { update_lineinfo(); return LR; } @@ -67,6 +67,10 @@ lr/[0-3] { update_lineinfo(); return LR; } \( { update_lineinfo(); return PAREN_OPEN; } \) { update_lineinfo(); return PAREN_CLOSE; } +== { update_lineinfo(); return EQUAL; } +!= { update_lineinfo(); return NOT_EQUAL; } +\|\| { update_lineinfo(); return LOGICAL_OR; } +\&\& { update_lineinfo(); return LOGICAL_AND; } \+ { update_lineinfo(); return PLUS; } \- { update_lineinfo(); return MINUS; } \* { update_lineinfo(); return MULTIPLY; } @@ -122,7 +126,9 @@ jext { update_lineinfo(); return OP_JEXT; } jnext { update_lineinfo(); return OP_JNEXT; } call { update_lineinfo(); return OP_CALL; } +calls { update_lineinfo(); return OP_CALLS; } ret { update_lineinfo(); return OP_RET; } +rets { update_lineinfo(); return OP_RETS; } tkiph { update_lineinfo(); return OP_TKIPH; } tkiphs { update_lineinfo(); return OP_TKIPHS; } @@ -137,8 +143,9 @@ phy { update_lineinfo(); return IVAL_PHY; } radio { update_lineinfo(); return IVAL_RADIO; } shm16 { update_lineinfo(); return IVAL_SHM16; } shm32 { update_lineinfo(); return IVAL_SHM32; } +tram { update_lineinfo(); return IVAL_TRAM; } -@[0-9a-fA-F]{3,3} { update_lineinfo(); return RAW_CODE; } +@[0-9a-fA-F]{1,4} { update_lineinfo(); return RAW_CODE; } 0x[0-9a-fA-F]+ { update_lineinfo(); return HEXNUM; } -?[0-9]+ { update_lineinfo(); return DECNUM; } @@ -150,34 +157,43 @@ shm32 { update_lineinfo(); return IVAL_SHM32; } struct lineinfo cur_lineinfo; +static inline const char * strip_leading_ws(const char *str) +{ + while (*str != '\0' && isspace(*str)) + str++; + return str; +} + static void interpret_cppinfo(const char *str) { const char * const orig = str; char tmp[64]; - char *found; + const char *found; + char *tail; /* This will interpret lines added by CPP. * They look like: - * # 3 "file.asm" 1 + * # lineno "filename" flags... */ - if (*str == '\0') + str = strip_leading_ws(str); + if (*str != '#') goto error; str++; /* skip # character */ + str = strip_leading_ws(str); if (*str == '\0') goto error; - str++; /* skip whitespace */ /* Line number */ found = strchr(str, ' '); if (!found) goto error; memset(tmp, 0, sizeof(tmp)); - memcpy(tmp, str, min(sizeof(tmp) - 1, - (int)(found - str))); - cur_lineinfo.lineno = strtoul(tmp, NULL, 10); - str = found; - str++; + memcpy(tmp, str, min(sizeof(tmp) - 1, (size_t)(found - str))); + cur_lineinfo.lineno = strtoul(tmp, &tail, 0); + if (*tail != '\0') + goto error; + str = strip_leading_ws(found); /* File name */ if (*str != '\"') @@ -189,9 +205,10 @@ static void interpret_cppinfo(const char *str) if (!found) goto error; memset(cur_lineinfo.file, 0, sizeof(cur_lineinfo.file)); - memcpy(cur_lineinfo.file, str, - min(sizeof(cur_lineinfo.file) - 1, - (int)(found - str))); + memcpy(cur_lineinfo.file, str, min(sizeof(cur_lineinfo.file) - 1, + (size_t)(found - str))); + + /* We ignore the flags. */ return; error: