iverilog/vpi/sys_readmem_lex.lex

191 lines
3.8 KiB
Plaintext

%option nounput
%option noinput
%{
/*
* Copyright (c) 1999 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: sys_readmem_lex.lex,v 1.8 2003/08/26 16:26:02 steve Exp $"
#endif
# include "sys_readmem_lex.h"
# include <string.h>
static void make_addr();
static void make_hex_value();
static void make_bin_value();
static int save_state;
%}
%x BIN
%x HEX
%x CCOMMENT
%option noyywrap
%%
<HEX,BIN>"//".* { ; }
<HEX,BIN>[ \t\f\n\r] { ; }
<HEX,BIN>@[0-9a-fA-F]+ { make_addr(); return MEM_ADDRESS; }
<HEX>[0-9a-fA-FxXzZ_]+ { make_hex_value(); return MEM_WORD; }
<BIN>[01xXzZ_]+ { make_bin_value(); return MEM_WORD; }
<HEX,BIN>"/*" { save_state = YY_START; BEGIN(CCOMMENT); }
<CCOMMENT>[^*]* { ; }
<CCOMMENT>"*" { ; }
<CCOMMENT>"*"+"/" { BEGIN(save_state); }
%%
static unsigned word_width = 0;
static struct t_vpi_vecval*vecval = 0;
static void make_addr()
{
sscanf(yytext+1, "%x", &vecval->aval);
}
static void make_hex_value()
{
char*beg = yytext;
char*end = beg + strlen(beg);
struct t_vpi_vecval*cur;
int idx;
int width = 0, word_max = word_width;
for (idx = 0, cur = vecval ; idx < word_max ; idx += 32, cur += 1) {
cur->aval = 0;
cur->bval = 0;
}
cur = vecval;
while ((width < word_max) && (end > beg)) {
int aval = 0;
int bval = 0;
end -= 1;
if (*end == '_') continue;
switch (*end) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
aval = *end - '0';
break;
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
aval = *end - 'a' + 10;
break;
case 'A':
case 'B':
case 'C':
case 'D':
case 'E':
case 'F':
aval = *end - 'A' + 10;
break;
case 'x':
case 'X':
aval = 15;
bval = 15;
break;
case 'z':
case 'Z':
bval = 15;
break;
}
cur->aval |= aval << width;
cur->bval |= bval << width;
width += 4;
if (width == 32) {
cur += 1;
width = 0;
word_max -= 32;
}
}
}
static void make_bin_value()
{
char*beg = yytext;
char*end = beg + strlen(beg);
struct t_vpi_vecval*cur;
int idx;
int width = 0, word_max = word_width;
for (idx = 0, cur = vecval ; idx < word_max ; idx += 32, cur += 1) {
cur->aval = 0;
cur->bval = 0;
}
cur = vecval;
while ((width < word_max) && (end > beg)) {
int aval = 0;
int bval = 0;
end -= 1;
if (*end == '_') continue;
switch (*end) {
case '0':
case '1':
aval = *end - '0';
break;
case 'x':
case 'X':
aval = 1;
bval = 1;
break;
case 'z':
case 'Z':
bval = 1;
break;
}
cur->aval |= aval << width;
cur->bval |= bval << width;
width += 1;
if (width == 32) {
cur += 1;
width = 0;
word_max -= 32;
}
}
}
void sys_readmem_start_file(FILE*in, int bin_flag,
unsigned width, struct t_vpi_vecval *vv)
{
yyrestart(in);
BEGIN(bin_flag? BIN : HEX);
word_width = width;
vecval = vv;
}