2010-05-10 11:44:09 -07:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
* Copyright © 2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2010-05-10 13:17:25 -07:00
|
|
|
#include "glcpp.h"
|
2010-05-10 11:44:09 -07:00
|
|
|
#include "glcpp-parse.h"
|
|
|
|
%}
|
|
|
|
|
2010-05-10 11:52:29 -07:00
|
|
|
%option reentrant noyywrap
|
2010-05-12 12:45:33 -07:00
|
|
|
%option extra-type="glcpp_parser_t *"
|
2010-05-10 11:44:09 -07:00
|
|
|
|
2010-05-10 16:16:06 -07:00
|
|
|
SPACE [[:space:]]
|
|
|
|
NONSPACE [^[:space:]]
|
2010-05-12 12:17:10 -07:00
|
|
|
NEWLINE [\n]
|
2010-05-10 16:16:06 -07:00
|
|
|
HSPACE [ \t]
|
|
|
|
HASH ^{HSPACE}*#
|
|
|
|
IDENTIFIER [_a-zA-Z][_a-zA-Z0-9]*
|
2010-05-12 12:17:10 -07:00
|
|
|
TOKEN {NONSPACE}+
|
|
|
|
|
2010-05-10 11:44:09 -07:00
|
|
|
%%
|
|
|
|
|
2010-05-12 12:17:10 -07:00
|
|
|
{HASH}define{HSPACE}* {
|
|
|
|
return DEFINE;
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:11:50 -07:00
|
|
|
{HASH}undef{HSPACE}* {
|
|
|
|
return UNDEF;
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:19:23 -07:00
|
|
|
|
|
|
|
{IDENTIFIER} {
|
2010-05-12 13:11:50 -07:00
|
|
|
yylval.str = xtalloc_strdup (yyextra, yytext);
|
2010-05-13 07:38:29 -07:00
|
|
|
if (glcpp_parser_macro_defined (yyextra, yylval.str))
|
|
|
|
return MACRO;
|
|
|
|
else
|
|
|
|
return IDENTIFIER;
|
2010-05-12 13:11:50 -07:00
|
|
|
}
|
|
|
|
|
2010-05-12 13:19:23 -07:00
|
|
|
{TOKEN} {
|
2010-05-12 12:45:33 -07:00
|
|
|
yylval.str = xtalloc_strdup (yyextra, yytext);
|
2010-05-12 12:17:10 -07:00
|
|
|
return TOKEN;
|
|
|
|
}
|
2010-05-10 11:44:09 -07:00
|
|
|
|
2010-05-12 13:19:23 -07:00
|
|
|
\n {
|
|
|
|
return NEWLINE;
|
|
|
|
}
|
|
|
|
|
|
|
|
{SPACE}+
|
|
|
|
|
2010-05-10 11:44:09 -07:00
|
|
|
%%
|