%{ /* Copyright (C) 2004, 2005, 2007, 2008 Red Hat, Inc. Written by Ulrich Drepper , 2004. This file is free software; you can redistribute it and/or modify it under the terms of either * the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version or * 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 or both in parallel, as here. elfutils 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 copies of the GNU General Public License and the GNU Lesser General Public License along with this program. If not, see . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "system.h" #include "i386_parse.h" static void eat_to_eol (void); static void invalid_char (int ch); %} ID [a-zA-Z_][a-zA-Z0-9_/]* ID2 [a-zA-Z0-9_:/]* NUMBER [0-9]+ WHITE [[:space:]]+ %option yylineno %option never-interactive %option noyywrap %x MAIN %% "%mask" { return kMASK; } "%prefix" { return kPREFIX; } "%suffix" { return kSUFFIX; } "%synonym" { return kSYNONYM; } {NUMBER} { i386_lval.num = strtoul (yytext, NULL, 10); return kNUMBER; } "%%" { BEGIN (MAIN); return kPERCPERC; }
"0" { return '0'; }
"1" { return '1'; } "{"{ID2}"}" { i386_lval.str = xstrndup (yytext + 1, yyleng - 2); return kBITFIELD; }
"INVALID" { i386_lval.str = (void *) -1l; return kID; }
{ID} { i386_lval.str = xstrndup (yytext, yyleng); return kID; }
"," { return ','; }
":" { return ':'; } ^"\n" { /* IGNORE */ } "\n" { return '\n'; } ^"#" { eat_to_eol (); } {WHITE} { /* IGNORE */ }
{WHITE} { return kSPACE; }
. { i386_lval.ch = *yytext; return kCHAR; } . { invalid_char (*yytext); } %% static void eat_to_eol (void) { while (1) { int c = input (); if (c == EOF || c == '\n') break; } } static void invalid_char (int ch) { error (0, 0, (isascii (ch) ? gettext ("invalid character '%c' at line %d; ignored") : gettext ("invalid character '\\%o' at line %d; ignored")), ch, yylineno); } // Local Variables: // mode: C // End: