2005-06-08 09:18:34 +02:00
|
|
|
/*
|
|
|
|
* (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it 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
|
|
|
|
*/
|
|
|
|
|
2005-07-11 05:53:13 +02:00
|
|
|
%option noyywrap nounput
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
%x CELLDATA
|
|
|
|
%x BYTESTRING
|
2005-07-15 09:14:24 +02:00
|
|
|
%x MEMRESERVE
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
PROPCHAR [a-zA-Z0-9,._+*#?-]
|
|
|
|
UNITCHAR [0-9a-f,]
|
|
|
|
WS [ \t\n]
|
|
|
|
|
2005-06-16 09:04:00 +02:00
|
|
|
REFCHAR ({PROPCHAR}|{UNITCHAR}|[/@])
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
%{
|
|
|
|
#include "dtc.h"
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
#include "dtc-parser.tab.h"
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2005-06-16 09:04:00 +02:00
|
|
|
/*#define LEXDEBUG 1*/
|
|
|
|
|
|
|
|
#ifdef LEXDEBUG
|
|
|
|
#define DPRINT(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DPRINT(fmt, ...) do { } while (0)
|
|
|
|
#endif
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
2005-07-04 05:53:14 +02:00
|
|
|
%%
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
\"[^"]*\" {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("String: %s\n", yytext);
|
2005-06-08 09:18:34 +02:00
|
|
|
yylval.data = data_copy_escape_string(yytext+1,
|
|
|
|
yyleng-2);
|
|
|
|
return DT_STRING;
|
|
|
|
}
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
"/memreserve/" {
|
|
|
|
DPRINT("Keyword: /memreserve/\n");
|
|
|
|
BEGIN(MEMRESERVE);
|
|
|
|
return DT_MEMRESERVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
<MEMRESERVE>[0-9a-fA-F]+ {
|
|
|
|
if (yyleng > 2*sizeof(yylval.addr)) {
|
|
|
|
fprintf(stderr, "Address value %s too large\n",
|
|
|
|
yytext);
|
|
|
|
}
|
|
|
|
yylval.addr = (u64) strtoull(yytext, NULL, 16);
|
|
|
|
DPRINT("Addr: %llx\n",
|
|
|
|
(unsigned long long)yylval.addr);
|
|
|
|
return DT_ADDR;
|
|
|
|
}
|
|
|
|
|
|
|
|
<MEMRESERVE>";" {
|
|
|
|
DPRINT("/MEMRESERVE\n");
|
|
|
|
BEGIN(INITIAL);
|
|
|
|
return ';';
|
|
|
|
}
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
<CELLDATA>[0-9a-fA-F]+ {
|
|
|
|
if (yyleng > 2*sizeof(yylval.cval)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Cell value %s too long\n", yytext);
|
|
|
|
}
|
2005-10-14 03:59:23 +02:00
|
|
|
yylval.cval = strtoul(yytext, NULL, 16);
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("Cell: %x\n", yylval.cval);
|
2005-06-08 09:18:34 +02:00
|
|
|
return DT_CELL;
|
|
|
|
}
|
|
|
|
|
|
|
|
<CELLDATA>">" {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("/CELLDATA\n");
|
2005-06-08 09:18:34 +02:00
|
|
|
BEGIN(INITIAL);
|
|
|
|
return '>';
|
|
|
|
}
|
|
|
|
|
2005-06-16 09:04:00 +02:00
|
|
|
<CELLDATA>\&{REFCHAR}* {
|
|
|
|
DPRINT("Ref: %s\n", yytext+1);
|
|
|
|
yylval.str = strdup(yytext+1);
|
|
|
|
return DT_REF;
|
|
|
|
}
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
<BYTESTRING>[0-9a-fA-F]{2} {
|
|
|
|
yylval.byte = strtol(yytext, NULL, 16);
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("Byte: %02x\n", (int)yylval.byte);
|
2005-06-08 09:18:34 +02:00
|
|
|
return DT_BYTE;
|
|
|
|
}
|
|
|
|
|
|
|
|
<BYTESTRING>"]" {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("/BYTESTRING\n");
|
2005-06-08 09:18:34 +02:00
|
|
|
BEGIN(INITIAL);
|
|
|
|
return ']';
|
|
|
|
}
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
{PROPCHAR}+ {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("PropName: %s\n", yytext);
|
2005-06-16 06:36:37 +02:00
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
return DT_PROPNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
{PROPCHAR}+(@{UNITCHAR}+)? {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("NodeName: %s\n", yytext);
|
2005-06-08 09:18:34 +02:00
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
return DT_NODENAME;
|
|
|
|
}
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
|
|
|
|
[a-zA-Z_][a-zA-Z0-9_]*: {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("Label: %s\n", yytext);
|
2005-06-08 09:18:34 +02:00
|
|
|
yylval.str = strdup(yytext);
|
2005-06-16 06:36:37 +02:00
|
|
|
yylval.str[yyleng-1] = '\0';
|
|
|
|
return DT_LABEL;
|
2005-06-08 09:18:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
<*>{WS}+ /* eat whitespace */
|
|
|
|
|
|
|
|
<*>"/*"([^*]|\*+[^*/])*\*+"/" {
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("Comment: %s\n", yytext);
|
2005-06-08 09:18:34 +02:00
|
|
|
/* eat comments */
|
|
|
|
}
|
|
|
|
|
|
|
|
<*>"//".*\n /* eat line comments */
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
<*>. {
|
2005-06-08 09:18:34 +02:00
|
|
|
switch (yytext[0]) {
|
|
|
|
case '<':
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("CELLDATA\n");
|
2005-06-08 09:18:34 +02:00
|
|
|
BEGIN(CELLDATA);
|
|
|
|
break;
|
|
|
|
case '[':
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("BYTESTRING\n");
|
2005-06-08 09:18:34 +02:00
|
|
|
BEGIN(BYTESTRING);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
|
2005-06-16 09:04:00 +02:00
|
|
|
DPRINT("Char: %c (\\x%02x)\n", yytext[0],
|
2005-06-08 09:18:34 +02:00
|
|
|
(unsigned)yytext[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return yytext[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
%%
|