2001-06-12 21:06:28 +00:00
|
|
|
%{
|
2001-09-28 07:09:38 +00:00
|
|
|
/*
|
2002-11-06 16:32:28 +00:00
|
|
|
qc-lex.l
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-11-06 16:32:28 +00:00
|
|
|
lexer for quakec
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-11-06 16:32:28 +00:00
|
|
|
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-11-06 16:32:28 +00:00
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2001/06/12
|
2001-09-28 07:09:38 +00:00
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
2002-06-01 04:41:25 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-14 20:18:29 +00:00
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
"$Id$";
|
|
|
|
|
2002-06-01 04:41:25 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2002-06-27 22:48:28 +00:00
|
|
|
#include <QF/dstring.h>
|
2001-06-13 07:16:39 +00:00
|
|
|
#include <QF/hash.h>
|
2001-10-24 22:50:06 +00:00
|
|
|
#include <QF/sys.h>
|
2002-06-27 22:48:28 +00:00
|
|
|
|
2011-01-06 07:30:25 +00:00
|
|
|
#include "class.h"
|
2011-01-06 05:57:40 +00:00
|
|
|
#include "debug.h"
|
2011-01-24 12:54:57 +00:00
|
|
|
#include "diagnostic.h"
|
2002-06-01 05:30:16 +00:00
|
|
|
#include "expr.h"
|
2011-01-06 07:30:25 +00:00
|
|
|
#include "grab.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "immediate.h"
|
|
|
|
#include "options.h"
|
2011-01-24 12:31:32 +00:00
|
|
|
#include "qfcc.h"
|
|
|
|
#include "strpool.h"
|
2001-12-08 08:19:48 +00:00
|
|
|
#include "struct.h"
|
2011-01-17 13:33:33 +00:00
|
|
|
#include "symtab.h"
|
2002-01-23 20:50:25 +00:00
|
|
|
#include "type.h"
|
2011-01-06 05:57:40 +00:00
|
|
|
|
2001-06-12 21:06:28 +00:00
|
|
|
#include "qc-parse.h"
|
|
|
|
|
2003-04-16 19:41:52 +00:00
|
|
|
#ifndef YY_PROTO
|
|
|
|
# define YY_PROTO(x) x
|
|
|
|
#else
|
|
|
|
# define YY_FLEX_REALLOC_HACK
|
|
|
|
#endif
|
|
|
|
int yyget_lineno (void);
|
|
|
|
FILE *yyget_in (void);
|
|
|
|
FILE *yyget_out (void);
|
|
|
|
int yyget_leng (void);
|
|
|
|
char *yyget_text (void);
|
|
|
|
void yyset_lineno (int line_number);
|
|
|
|
void yyset_in (FILE * in_str);
|
|
|
|
void yyset_out (FILE * out_str);
|
|
|
|
int yyget_debug (void);
|
|
|
|
void yyset_debug (int bdebug);
|
|
|
|
int yylex_destroy (void);
|
|
|
|
|
2001-06-12 21:06:28 +00:00
|
|
|
#define YY_NO_UNPUT
|
2003-01-06 18:28:13 +00:00
|
|
|
#define YY_DECL int yylex YY_PROTO(( void ))
|
|
|
|
YY_DECL;
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2003-04-16 19:41:52 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
static int keyword_or_id (char *token);
|
2001-06-25 22:11:20 +00:00
|
|
|
|
2001-06-13 07:16:39 +00:00
|
|
|
extern YYSTYPE yylval;
|
|
|
|
|
2001-06-12 21:06:28 +00:00
|
|
|
%}
|
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
s [ \t]
|
|
|
|
m [\-+]
|
|
|
|
D [0-9]
|
|
|
|
X [0-9a-fA-F]
|
|
|
|
ID [a-zA-Z_][a-zA-Z_0-9]*
|
|
|
|
FLOAT ({D}+|{D}*\.{D}+|{D}+\.{D}*)([eE]{m}?{D}+)?
|
|
|
|
INT ({D}+|0[xX]{X}+)
|
|
|
|
RANGE \.\.
|
|
|
|
ELLIPSIS \.\.\.
|
|
|
|
FRAMEID {ID}(\.{ID})*
|
2011-01-17 13:33:33 +00:00
|
|
|
STRING \"(\\.|[^"\\])*\"
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2011-01-06 07:30:25 +00:00
|
|
|
%x GRAB_FRAME GRAB_OTHER COMMENT
|
2001-06-13 18:35:41 +00:00
|
|
|
|
2001-06-12 21:06:28 +00:00
|
|
|
%%
|
2011-01-06 07:30:25 +00:00
|
|
|
grab_frame = GRAB_FRAME;
|
|
|
|
grab_other = GRAB_OTHER;
|
|
|
|
|
|
|
|
"/*" { BEGIN (COMMENT); }
|
|
|
|
<COMMENT>"/*" { warning (0, "nested /* in comment"); }
|
|
|
|
<COMMENT>"*/" { BEGIN (INITIAL); }
|
|
|
|
<COMMENT>\r*\n { pr.source_line++; }
|
|
|
|
<COMMENT>. /* nothing to do */
|
|
|
|
<COMMENT><<EOF>> { error (0, "EOF in comment"); return 0; }
|
2007-03-30 09:02:36 +00:00
|
|
|
"//".* /* nothing to do */
|
2001-06-13 07:16:39 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
^#{s}+{D}+{s}+\"(\.|[^"\n])*\".*$ { line_info (yytext + 1); }
|
|
|
|
^#line{s}+{D}+{s}+\"(\.|[^"\n])*\".*$ { line_info (yytext + 5); }
|
2007-04-06 05:52:20 +00:00
|
|
|
|
|
|
|
^{s}*#{s}*pragma.*$ /* skip */
|
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
{INT}+[uU]? {
|
2010-12-23 10:32:28 +00:00
|
|
|
const char *c = yytext + yyleng - 1;
|
2011-01-14 03:10:28 +00:00
|
|
|
int i = strtol (yytext, 0, 0);
|
2010-12-23 10:32:28 +00:00
|
|
|
if (*c == 'u' || *c == 'U')
|
2011-01-18 23:41:24 +00:00
|
|
|
yylval.expr = new_integer_expr (i);//FIXME
|
2011-01-14 03:10:28 +00:00
|
|
|
else
|
|
|
|
yylval.expr = new_integer_expr (i);
|
|
|
|
return CONST;
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
{FLOAT} {
|
|
|
|
float f = strtof (yytext, 0);
|
|
|
|
yylval.expr = new_float_expr (f);
|
|
|
|
return CONST;
|
2002-10-26 03:23:19 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
{ID} {
|
|
|
|
int tok = keyword_or_id(yytext);
|
|
|
|
return tok;
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
@{ID} {
|
2011-01-14 03:10:28 +00:00
|
|
|
int tok = keyword_or_id(yytext);
|
2002-05-07 16:55:54 +00:00
|
|
|
if (tok == '@')
|
|
|
|
REJECT;
|
|
|
|
return tok;
|
|
|
|
}
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
{STRING} {
|
2011-01-14 03:10:28 +00:00
|
|
|
const char *s = make_string (yytext, 0);
|
|
|
|
yylval.expr = new_string_expr (s);
|
2011-01-17 13:33:33 +00:00
|
|
|
return STRING;
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
@ return '@';
|
2001-06-13 07:16:39 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
'{s}*{m}?{FLOAT}{s}+{m}?{FLOAT}{s}+{m}?{FLOAT}{s}*' {
|
|
|
|
vec3_t v;
|
2001-06-25 17:15:56 +00:00
|
|
|
sscanf (yytext, "' %f %f %f '",
|
2011-01-14 03:10:28 +00:00
|
|
|
&v[0], &v[1], &v[2]);
|
|
|
|
yylval.expr = new_vector_expr (v);
|
|
|
|
return CONST;
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
'{s}*{m}?{FLOAT}{s}+{m}?{FLOAT}{s}+{m}?{FLOAT}{s}+{m}?{FLOAT}{s}*' {
|
|
|
|
quat_t q;
|
|
|
|
sscanf (yytext, "' %f %f %f %f'",
|
|
|
|
&q[0], &q[1], &q[2], &q[3]);
|
|
|
|
yylval.expr = new_quaternion_expr (q);
|
|
|
|
return CONST;
|
2002-01-04 08:45:24 +00:00
|
|
|
}
|
|
|
|
|
2002-01-04 17:13:13 +00:00
|
|
|
'(\\[^xX0-7\r\n]|[^'\r\n]|\\[xX][0-9A-Fa-f]+|\\[0-7]+)*' {
|
2007-03-31 15:27:36 +00:00
|
|
|
const char *str = make_string (yytext, 0);
|
2002-01-04 08:45:24 +00:00
|
|
|
|
|
|
|
if (str[1])
|
|
|
|
warning (0, "multibyte char constant");
|
2011-01-14 03:10:28 +00:00
|
|
|
yylval.expr = new_integer_expr (*str);
|
|
|
|
return CONST;
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
|
|
|
|
2001-08-20 06:22:28 +00:00
|
|
|
[+\-*/&|^%]= {
|
|
|
|
yylval.op = yytext[0];
|
|
|
|
return ASX;
|
|
|
|
}
|
|
|
|
|
|
|
|
"<<=" {
|
|
|
|
yylval.op = SHL;
|
|
|
|
return ASX;
|
|
|
|
}
|
|
|
|
|
|
|
|
">>=" {
|
|
|
|
yylval.op = SHR;
|
|
|
|
return ASX;
|
|
|
|
}
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
[!(){}.*/&|^~+\-=\[\];,#%?:] {
|
2011-01-17 13:33:33 +00:00
|
|
|
yylval.pointer = 0; // ensure pointer values are null
|
2002-05-01 21:35:39 +00:00
|
|
|
return yytext[0];
|
|
|
|
}
|
2001-06-13 07:16:39 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
{ELLIPSIS} return ELLIPSIS;
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
"<<" return SHL;
|
|
|
|
">>" return SHR;
|
2001-08-10 16:17:00 +00:00
|
|
|
|
2011-01-14 03:10:28 +00:00
|
|
|
"&&" return AND;
|
|
|
|
"||" return OR;
|
|
|
|
"==" return EQ;
|
|
|
|
"!=" return NE;
|
|
|
|
"<=" return LE;
|
|
|
|
">=" return GE;
|
|
|
|
"<" return LT;
|
|
|
|
">" return GT;
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2001-08-20 06:22:28 +00:00
|
|
|
"++" {
|
|
|
|
yylval.op = '+';
|
|
|
|
return INCOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
"--" {
|
|
|
|
yylval.op = '-';
|
|
|
|
return INCOP;
|
|
|
|
}
|
|
|
|
|
2007-04-06 08:19:58 +00:00
|
|
|
"$"{s}*{FRAMEID} {
|
2007-04-06 05:52:20 +00:00
|
|
|
int ret = do_grab (yytext);
|
2011-01-06 07:30:25 +00:00
|
|
|
if (ret >= 0) {
|
2011-01-14 03:10:28 +00:00
|
|
|
yylval.expr = new_integer_expr (ret);
|
|
|
|
return CONST;
|
2011-01-06 07:30:25 +00:00
|
|
|
} else {
|
2001-06-13 18:35:41 +00:00
|
|
|
BEGIN (-ret);
|
2011-01-06 07:30:25 +00:00
|
|
|
}
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2011-01-06 07:30:25 +00:00
|
|
|
<GRAB_FRAME>{FRAMEID} add_frame_macro (yytext);
|
|
|
|
<GRAB_OTHER>[^\r\n]* /* skip */
|
2001-06-13 18:35:41 +00:00
|
|
|
|
2002-01-04 18:27:01 +00:00
|
|
|
<*>\r*\n {
|
2002-07-03 21:32:03 +00:00
|
|
|
pr.source_line++;
|
2001-06-13 18:35:41 +00:00
|
|
|
BEGIN (INITIAL);
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
2001-06-12 21:06:28 +00:00
|
|
|
|
2001-06-13 18:35:41 +00:00
|
|
|
<*>{s}* /* skip */
|
2001-06-13 07:16:39 +00:00
|
|
|
|
2001-06-28 21:26:40 +00:00
|
|
|
<*>. error (0, "all your typo are belong to us");
|
2001-06-12 21:06:28 +00:00
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
int
|
|
|
|
yywrap (void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2001-06-13 07:16:39 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2011-01-17 13:33:33 +00:00
|
|
|
const char *name;
|
|
|
|
int value;
|
|
|
|
type_t *type;
|
2003-04-17 00:01:48 +00:00
|
|
|
unsigned int traditional;
|
|
|
|
unsigned int version;
|
2001-06-13 07:16:39 +00:00
|
|
|
} keyword_t;
|
|
|
|
|
|
|
|
static keyword_t keywords[] = {
|
2002-02-18 06:23:59 +00:00
|
|
|
{"void", TYPE, &type_void, 1, PROG_ID_VERSION},
|
|
|
|
{"float", TYPE, &type_float, 1, PROG_ID_VERSION},
|
|
|
|
{"string", TYPE, &type_string, 1, PROG_ID_VERSION},
|
|
|
|
{"vector", TYPE, &type_vector, 1, PROG_ID_VERSION},
|
|
|
|
{"entity", TYPE, &type_entity, 1, PROG_ID_VERSION},
|
|
|
|
{"quaternion", TYPE, &type_quaternion, 0, PROG_VERSION},
|
|
|
|
{"integer", TYPE, &type_integer, 0, PROG_VERSION},
|
2011-01-09 10:41:24 +00:00
|
|
|
{"unsigned", TYPE, &type_integer, 0, PROG_VERSION},//FIXME
|
2002-02-18 06:23:59 +00:00
|
|
|
{"function", TYPE, &type_function, 0, PROG_VERSION},
|
2002-05-09 06:37:40 +00:00
|
|
|
{"id", TYPE, &type_id, 0, PROG_VERSION},
|
2002-05-21 21:28:40 +00:00
|
|
|
{"Class", TYPE, &type_Class, 0, PROG_VERSION},
|
2004-11-11 00:34:00 +00:00
|
|
|
// {"Protocol", TYPE, &type_Protocol, 0, PROG_VERSION},
|
2002-05-22 05:03:36 +00:00
|
|
|
{"Method", TYPE, &type_Method, 0, PROG_VERSION},
|
2003-05-15 05:58:31 +00:00
|
|
|
{"Super", TYPE, &type_Super, 0, PROG_VERSION},
|
2002-05-17 19:47:15 +00:00
|
|
|
{"SEL", TYPE, &type_SEL, 0, PROG_VERSION},
|
|
|
|
{"IMP", TYPE, &type_IMP, 0, PROG_VERSION},
|
2002-02-18 06:23:59 +00:00
|
|
|
{"local", LOCAL, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"return", RETURN, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"while", WHILE, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"do", DO, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"if", IF, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"else", ELSE, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"for", FOR, 0, 0, PROG_ID_VERSION},
|
2007-04-06 11:46:21 +00:00
|
|
|
{"break", BREAK, 0, 1, PROG_ID_VERSION},
|
2002-02-18 06:23:59 +00:00
|
|
|
{"continue", CONTINUE, 0, 0, PROG_ID_VERSION},
|
|
|
|
{"switch", SWITCH, 0, 0, PROG_ID_VERSION},
|
|
|
|
{"case", CASE, 0, 0, PROG_ID_VERSION},
|
|
|
|
{"default", DEFAULT, 0, 0, PROG_ID_VERSION},
|
2011-01-14 03:07:40 +00:00
|
|
|
{"nil", NIL, 0, 0, PROG_ID_VERSION},
|
2002-02-18 06:23:59 +00:00
|
|
|
{"struct", STRUCT, 0, 0, PROG_VERSION},
|
2011-01-17 13:33:33 +00:00
|
|
|
{"union", STRUCT, 0, 0, PROG_VERSION},
|
2002-02-18 06:23:59 +00:00
|
|
|
{"enum", ENUM, 0, 0, PROG_ID_VERSION},
|
|
|
|
{"typedef", TYPEDEF, 0, 0, PROG_ID_VERSION},
|
2002-05-07 16:55:54 +00:00
|
|
|
|
|
|
|
{"@class", CLASS, 0, 0, PROG_VERSION},
|
|
|
|
{"@defs", DEFS, 0, 0, PROG_VERSION},
|
|
|
|
{"@encode", ENCODE, 0, 0, PROG_VERSION},
|
|
|
|
{"@end", END, 0, 0, PROG_VERSION},
|
|
|
|
{"@implementation", IMPLEMENTATION, 0, 0, PROG_VERSION},
|
|
|
|
{"@interface", INTERFACE, 0, 0, PROG_VERSION},
|
|
|
|
{"@private", PRIVATE, 0, 0, PROG_VERSION},
|
|
|
|
{"@protected", PROTECTED, 0, 0, PROG_VERSION},
|
|
|
|
{"@protocol", PROTOCOL, 0, 0, PROG_VERSION},
|
|
|
|
{"@public", PUBLIC, 0, 0, PROG_VERSION},
|
2010-12-12 11:27:56 +00:00
|
|
|
{"@reference", REFERENCE, 0, 0, PROG_VERSION},
|
2002-05-07 16:55:54 +00:00
|
|
|
{"@selector", SELECTOR, 0, 0, PROG_VERSION},
|
2002-05-18 00:30:14 +00:00
|
|
|
{"@self", SELF, 0, 0, PROG_VERSION},
|
2002-05-31 16:58:42 +00:00
|
|
|
{"@this", THIS, 0, 0, PROG_VERSION},
|
2002-10-16 02:28:08 +00:00
|
|
|
{"@args", ARGS, 0, 0, PROG_VERSION},
|
|
|
|
{"@va_list", TYPE, &type_va_list, 0, PROG_VERSION},
|
2004-11-13 04:02:00 +00:00
|
|
|
{"@param", TYPE, &type_param, 0, PROG_VERSION},
|
2002-09-10 04:07:34 +00:00
|
|
|
{"@extern", EXTERN, 0, 1, PROG_ID_VERSION},
|
|
|
|
{"@static", STATIC, 0, 1, PROG_ID_VERSION},
|
2002-09-16 15:42:11 +00:00
|
|
|
{"@system", SYSTEM, 0, 1, PROG_ID_VERSION},
|
2002-08-18 04:08:02 +00:00
|
|
|
{"@sizeof", SIZEOF, 0, 0, PROG_VERSION},
|
2004-11-13 11:50:00 +00:00
|
|
|
{"@overload", OVERLOAD, 0, 0, PROG_VERSION},
|
2001-06-13 07:16:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
keyword_get_key (void *kw, void *unused)
|
|
|
|
{
|
|
|
|
return ((keyword_t*)kw)->name;
|
|
|
|
}
|
|
|
|
|
2011-01-06 07:30:25 +00:00
|
|
|
static int
|
2011-01-14 03:10:28 +00:00
|
|
|
keyword_or_id (char *token)
|
2001-06-13 07:16:39 +00:00
|
|
|
{
|
|
|
|
static hashtab_t *keyword_tab;
|
2001-12-08 08:19:48 +00:00
|
|
|
keyword_t *keyword;
|
2011-01-17 13:33:33 +00:00
|
|
|
symbol_t *sym;
|
2001-06-13 07:16:39 +00:00
|
|
|
|
2001-12-08 08:19:48 +00:00
|
|
|
if (!keyword_tab) {
|
2007-04-06 05:52:20 +00:00
|
|
|
size_t i;
|
2001-06-13 07:16:39 +00:00
|
|
|
keyword_tab = Hash_NewTable (1021, keyword_get_key, 0, 0);
|
|
|
|
for (i = 0; i < sizeof (keywords) / sizeof (keywords[0]); i++)
|
2002-02-18 06:23:59 +00:00
|
|
|
if (keywords[i].traditional >= options.traditional
|
|
|
|
&& keywords[i].version <= options.code.progsversion)
|
2001-08-07 16:50:22 +00:00
|
|
|
Hash_Add (keyword_tab, &keywords[i]);
|
2001-06-13 07:16:39 +00:00
|
|
|
}
|
|
|
|
keyword = Hash_Find (keyword_tab, token);
|
|
|
|
if (keyword) {
|
2004-01-21 21:43:31 +00:00
|
|
|
if (!options.traditional && token[0] == '@'
|
|
|
|
&& !class_Class.super_class)
|
2002-05-22 01:39:07 +00:00
|
|
|
class_init ();
|
2011-01-17 13:33:33 +00:00
|
|
|
if (keyword->value == STRUCT) {
|
|
|
|
yylval.op = token[0];
|
|
|
|
} else {
|
|
|
|
yylval.type = 0;
|
|
|
|
yylval.type = keyword->type;
|
|
|
|
}
|
2001-06-13 07:16:39 +00:00
|
|
|
return keyword->value;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
if (token[0] == '@') {
|
|
|
|
return '@';
|
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
sym = symtab_lookup (current_symtab, token);
|
|
|
|
if (!sym)
|
|
|
|
sym = new_symbol (token);
|
|
|
|
yylval.symbol = sym;
|
|
|
|
if (sym->sy_type == sy_type)
|
2004-11-02 07:02:00 +00:00
|
|
|
return TYPE_NAME;
|
2011-01-22 06:52:57 +00:00
|
|
|
if (sym->type && is_class (sym->type))
|
2011-01-17 13:33:33 +00:00
|
|
|
return CLASS_NAME;
|
2001-06-13 07:16:39 +00:00
|
|
|
return NAME;
|
|
|
|
}
|
|
|
|
|
2003-04-16 19:41:52 +00:00
|
|
|
#ifdef YY_FLEX_REALLOC_HACK
|
2008-07-19 05:40:57 +00:00
|
|
|
static __attribute__ ((used)) void *(*const yy_flex_realloc_hack)(void *,yy_size_t) = yy_flex_realloc;
|
2003-04-17 00:25:55 +00:00
|
|
|
#else
|
2008-07-19 05:40:57 +00:00
|
|
|
static __attribute__ ((used)) void (*yyunput_hack)(int, char*) = yyunput;
|
|
|
|
static __attribute__ ((used)) int (*input_hack)(void) = input;
|
2003-04-17 00:14:13 +00:00
|
|
|
#endif
|