2001-06-12 19:44:26 +00:00
|
|
|
%{
|
2001-09-28 07:09:38 +00:00
|
|
|
/*
|
2002-11-06 16:32:28 +00:00
|
|
|
qc-parse.y
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-11-06 16:32:28 +00:00
|
|
|
parser 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
|
|
|
|
2011-01-06 11:22:30 +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>
|
|
|
|
|
2001-10-24 22:50:06 +00:00
|
|
|
#include <QF/hash.h>
|
|
|
|
#include <QF/sys.h>
|
2001-06-15 19:38:43 +00:00
|
|
|
|
2002-06-21 20:46:56 +00:00
|
|
|
#include "class.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "def.h"
|
2002-07-08 20:31:59 +00:00
|
|
|
#include "emit.h"
|
2002-06-01 05:30:16 +00:00
|
|
|
#include "expr.h"
|
2002-05-08 05:15:19 +00:00
|
|
|
#include "function.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "immediate.h"
|
2002-05-08 21:24:24 +00:00
|
|
|
#include "method.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "options.h"
|
2002-06-21 20:46:56 +00:00
|
|
|
#include "qfcc.h"
|
|
|
|
#include "reloc.h"
|
2001-12-08 08:19:48 +00:00
|
|
|
#include "struct.h"
|
2001-10-25 06:41:52 +00:00
|
|
|
#include "switch.h"
|
2011-01-17 13:33:33 +00:00
|
|
|
#include "symtab.h"
|
2002-01-17 16:59:00 +00:00
|
|
|
#include "type.h"
|
2001-10-25 06:41:52 +00:00
|
|
|
|
2001-06-13 07:16:39 +00:00
|
|
|
#define YYDEBUG 1
|
|
|
|
#define YYERROR_VERBOSE 1
|
2003-02-25 07:48:12 +00:00
|
|
|
#undef YYERROR_VERBOSE
|
2001-06-18 22:51:49 +00:00
|
|
|
|
|
|
|
extern char *yytext;
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-06-18 22:51:49 +00:00
|
|
|
yyerror (const char *s)
|
2001-06-12 20:24:02 +00:00
|
|
|
{
|
2003-02-25 07:48:12 +00:00
|
|
|
#ifdef YYERROR_VERBOSE
|
2001-07-03 20:53:49 +00:00
|
|
|
error (0, "%s %s\n", yytext, s);
|
2003-02-25 07:48:12 +00:00
|
|
|
#else
|
|
|
|
error (0, "%s before %s", s, yytext);
|
|
|
|
#endif
|
2001-06-12 20:24:02 +00:00
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-05-15 19:10:23 +00:00
|
|
|
parse_error (void)
|
|
|
|
{
|
|
|
|
error (0, "parse error before %s", yytext);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define PARSE_ERROR do { parse_error (); YYERROR; } while (0)
|
|
|
|
|
2001-06-12 20:24:02 +00:00
|
|
|
int yylex (void);
|
2001-06-21 07:08:34 +00:00
|
|
|
|
2001-06-12 19:44:26 +00:00
|
|
|
%}
|
|
|
|
|
2001-06-12 20:24:02 +00:00
|
|
|
%union {
|
2001-10-19 00:45:56 +00:00
|
|
|
int op;
|
2011-01-17 13:33:33 +00:00
|
|
|
void *pointer; // for ensuring pointer values are null
|
2002-06-04 21:23:39 +00:00
|
|
|
struct def_s *def;
|
2004-01-25 08:55:03 +00:00
|
|
|
struct hashtab_s *def_list;
|
|
|
|
struct type_s *type;
|
2004-11-02 07:02:00 +00:00
|
|
|
struct typedef_s *typename;
|
2004-01-25 08:55:03 +00:00
|
|
|
struct expr_s *expr;
|
2002-06-04 18:44:03 +00:00
|
|
|
struct function_s *function;
|
2004-01-25 08:55:03 +00:00
|
|
|
struct switch_block_s *switch_block;
|
2002-05-08 05:15:19 +00:00
|
|
|
struct param_s *param;
|
2002-05-08 21:24:24 +00:00
|
|
|
struct method_s *method;
|
2002-05-10 00:00:23 +00:00
|
|
|
struct class_s *class;
|
2002-11-14 18:17:43 +00:00
|
|
|
struct category_s *category;
|
|
|
|
struct class_type_s *class_type;
|
2002-05-08 21:24:24 +00:00
|
|
|
struct protocol_s *protocol;
|
2004-11-11 00:34:00 +00:00
|
|
|
struct protocollist_s *protocol_list;
|
2002-05-08 23:12:49 +00:00
|
|
|
struct keywordarg_s *keywordarg;
|
2002-05-10 00:00:23 +00:00
|
|
|
struct methodlist_s *methodlist;
|
2011-01-17 13:33:33 +00:00
|
|
|
struct symbol_s *symbol;
|
|
|
|
struct symtab_s *symtab;
|
2001-06-12 20:24:02 +00:00
|
|
|
}
|
|
|
|
|
2007-04-28 08:49:07 +00:00
|
|
|
%nonassoc IFX
|
|
|
|
%nonassoc ELSE
|
|
|
|
%nonassoc BREAK_PRIMARY
|
|
|
|
%nonassoc ';'
|
|
|
|
%nonassoc CLASS_NOT_CATEGORY
|
|
|
|
|
2007-05-07 23:44:45 +00:00
|
|
|
%nonassoc STORAGEX
|
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
%right <op> '=' ASX PAS /* pointer assign */
|
|
|
|
%right '?' ':'
|
|
|
|
%left OR
|
|
|
|
%left AND
|
|
|
|
%left '|'
|
|
|
|
%left '^'
|
|
|
|
%left '&'
|
|
|
|
%left EQ NE
|
|
|
|
%left LE GE LT GT
|
|
|
|
%left SHL SHR
|
|
|
|
%left '+' '-'
|
|
|
|
%left '*' '/' '%'
|
|
|
|
%right <op> UNARY INCOP
|
|
|
|
%left HYPERUNARY
|
|
|
|
%left '.' '(' '['
|
|
|
|
|
|
|
|
%token <symbol> CLASS_NAME NAME
|
|
|
|
%token <expr> CONST STRING
|
|
|
|
|
|
|
|
%token LOCAL RETURN WHILE DO IF ELSE FOR BREAK CONTINUE ELLIPSIS
|
|
|
|
%token NIL IFBE IFB IFAE IFA SWITCH CASE DEFAULT ENUM TYPEDEF
|
|
|
|
%token ARGS EXTERN STATIC SYSTEM SIZEOF OVERLOAD
|
|
|
|
%token <op> STRUCT
|
|
|
|
%token <type> TYPE
|
|
|
|
%token <symbol> TYPE_NAME
|
|
|
|
%token CLASS DEFS ENCODE END IMPLEMENTATION INTERFACE PRIVATE
|
|
|
|
%token PROTECTED PROTOCOL PUBLIC SELECTOR REFERENCE SELF THIS
|
|
|
|
|
|
|
|
%type <symbol> tag opt_tag
|
|
|
|
%type <type> struct_def struct_def_item struct_def_list struct_spec
|
|
|
|
%type <type> enum_spec
|
|
|
|
%type <symbol> opt_enum_list enum_list enum enum_init
|
|
|
|
|
|
|
|
%type <expr> const string
|
|
|
|
|
|
|
|
%type <type> type non_field_type type_name def simple_def
|
|
|
|
%type <type> ivar_decl ivar_declarator def_item def_list
|
|
|
|
%type <type> ivars func_type non_func_type
|
|
|
|
%type <type> code_func func_defs func_def_list
|
|
|
|
%type <def> fdef_name cfunction_def func_def
|
|
|
|
%type <param> function_decl
|
|
|
|
%type <param> param param_list
|
|
|
|
%type <def> opt_initializer methoddef var_initializer
|
|
|
|
%type <expr> opt_expr fexpr expr element_list element_list1 element
|
|
|
|
%type <expr> opt_state_expr think opt_step array_decl texpr
|
|
|
|
%type <expr> statement statements statement_block
|
|
|
|
%type <expr> label break_label continue_label
|
|
|
|
%type <expr> unary_expr primary cast_expr opt_arg_list arg_list
|
2001-10-25 06:41:52 +00:00
|
|
|
%type <switch_block> switch_block
|
2011-01-17 13:33:33 +00:00
|
|
|
%type <symbol> def_name identifier
|
2001-06-12 19:44:26 +00:00
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
%type <expr> identifier_list
|
|
|
|
%type <symbol> selector reserved_word
|
|
|
|
%type <param> optparmlist unaryselector keyworddecl keywordselector
|
|
|
|
%type <method> methodproto methoddecl
|
|
|
|
%type <expr> obj_expr obj_messageexpr obj_string receiver
|
2004-11-11 00:34:00 +00:00
|
|
|
%type <protocol_list> protocolrefs protocol_list
|
2002-05-08 23:12:49 +00:00
|
|
|
%type <keywordarg> messageargs keywordarg keywordarglist selectorarg
|
|
|
|
%type <keywordarg> keywordnamelist keywordname
|
2011-01-17 13:33:33 +00:00
|
|
|
%type <class> class_name new_class_name class_with_super
|
|
|
|
%type <class> classdef new_class_with_super
|
|
|
|
%type <category> category_name new_category_name
|
|
|
|
%type <protocol> protocol_name
|
2002-05-10 00:00:23 +00:00
|
|
|
%type <methodlist> methodprotolist methodprotolist2
|
2011-01-17 13:33:33 +00:00
|
|
|
%type <symtab> ivar_decl_list
|
|
|
|
%type <op> ci
|
2002-05-08 05:15:19 +00:00
|
|
|
|
2001-06-15 07:16:18 +00:00
|
|
|
%{
|
|
|
|
|
2001-06-25 22:11:20 +00:00
|
|
|
function_t *current_func;
|
2011-01-17 13:33:33 +00:00
|
|
|
param_t *current_params;
|
|
|
|
expr_t *current_init;
|
2002-11-14 18:17:43 +00:00
|
|
|
class_type_t *current_class;
|
2011-01-17 13:33:33 +00:00
|
|
|
expr_t *local_expr;
|
|
|
|
vis_e current_visibility;
|
2004-02-08 23:46:40 +00:00
|
|
|
storage_class_t current_storage = st_global;
|
2011-01-17 13:33:33 +00:00
|
|
|
symtab_t *current_symtab;
|
|
|
|
|
|
|
|
static switch_block_t *switch_block;
|
|
|
|
static expr_t *break_label;
|
|
|
|
static expr_t *continue_label;
|
|
|
|
|
|
|
|
/* When defining a new symbol, already existing symbols must be in a
|
|
|
|
different scope. However, when they are in a different scope, we want a
|
|
|
|
truly new symbol.
|
|
|
|
*/
|
|
|
|
static symbol_t *
|
|
|
|
check_redefined (symbol_t *sym)
|
|
|
|
{
|
|
|
|
if (sym->table == current_symtab)
|
|
|
|
error (0, "%s redefined", sym->name);
|
|
|
|
if (sym->table) // truly new symbols are not in any symbol table
|
|
|
|
sym = new_symbol (sym->name);
|
|
|
|
return sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for undefined symbols. If the symbol is undefined, default its type
|
|
|
|
to float or int, depending on compiler mode.
|
|
|
|
*/
|
|
|
|
static symbol_t *
|
|
|
|
check_undefined (symbol_t *sym)
|
|
|
|
{
|
|
|
|
if (!sym->table) { // truly new symbols are not in any symbol table
|
|
|
|
error (0, "%s undefined", sym->name);
|
|
|
|
if (options.code.progsversion == PROG_ID_VERSION)
|
|
|
|
sym->type = &type_float;
|
|
|
|
else
|
|
|
|
sym->type = &type_integer;
|
|
|
|
}
|
|
|
|
return sym;
|
|
|
|
}
|
2001-06-15 07:16:18 +00:00
|
|
|
|
|
|
|
%}
|
|
|
|
|
2007-04-28 08:49:07 +00:00
|
|
|
%expect 2
|
2004-02-08 23:46:40 +00:00
|
|
|
|
2001-06-12 19:44:26 +00:00
|
|
|
%%
|
|
|
|
|
|
|
|
defs
|
|
|
|
: /* empty */
|
2010-12-31 07:06:54 +00:00
|
|
|
| defs def
|
2002-05-08 21:24:24 +00:00
|
|
|
| defs obj_def
|
2010-12-31 07:01:09 +00:00
|
|
|
| error END { current_class = 0; yyerrok; }
|
|
|
|
| error ';' { yyerrok; }
|
|
|
|
| error '}' { yyerrok; }
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
def
|
2004-11-02 07:02:00 +00:00
|
|
|
: simple_def { }
|
|
|
|
| storage_class simple_def { current_storage = st_global; }
|
2004-02-08 23:46:40 +00:00
|
|
|
| storage_class '{' simple_defs '}' ';'
|
|
|
|
{ current_storage = st_global; }
|
2004-11-02 07:02:00 +00:00
|
|
|
| TYPEDEF type identifier ';'
|
2002-01-23 20:50:25 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$3 = check_redefined ($3);
|
|
|
|
$3->type = $2;
|
|
|
|
$3->sy_type = sy_type;
|
|
|
|
symtab_addsymbol (current_symtab, $3);
|
2002-01-23 20:50:25 +00:00
|
|
|
}
|
2002-01-21 19:09:23 +00:00
|
|
|
;
|
|
|
|
|
2004-02-10 23:20:44 +00:00
|
|
|
opt_semi
|
|
|
|
: /* empty */
|
|
|
|
| ';'
|
|
|
|
;
|
|
|
|
|
2002-09-12 17:13:19 +00:00
|
|
|
simple_defs
|
|
|
|
: /* empty */
|
2004-02-08 23:46:40 +00:00
|
|
|
| simple_defs simple_def
|
2002-09-12 17:13:19 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
simple_def
|
2011-01-17 13:33:33 +00:00
|
|
|
: non_func_type def_list ';'
|
|
|
|
| func_type func_defs
|
|
|
|
| cfunction {}
|
2004-02-11 00:36:34 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
cfunction
|
2004-11-13 11:50:00 +00:00
|
|
|
: cfunction_def ';'
|
2011-01-17 13:33:33 +00:00
|
|
|
| cfunction_def '=' '#' fexpr ';'
|
|
|
|
| cfunction_def opt_state_expr statement_block
|
2002-09-12 17:13:19 +00:00
|
|
|
;
|
|
|
|
|
2004-11-13 11:50:00 +00:00
|
|
|
cfunction_def
|
2011-01-06 11:22:30 +00:00
|
|
|
: OVERLOAD non_func_type identifier function_decl
|
2004-11-13 11:50:00 +00:00
|
|
|
{
|
|
|
|
}
|
2011-01-06 11:22:30 +00:00
|
|
|
| non_func_type identifier function_decl
|
2004-11-13 11:50:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-06-28 17:59:32 +00:00
|
|
|
storage_class
|
2004-11-02 07:08:00 +00:00
|
|
|
: EXTERN { current_storage = st_extern; }
|
|
|
|
| STATIC { current_storage = st_static; }
|
|
|
|
| SYSTEM { current_storage = st_system; }
|
2002-06-28 17:59:32 +00:00
|
|
|
;
|
|
|
|
|
2006-12-11 09:26:07 +00:00
|
|
|
local_storage_class
|
|
|
|
: LOCAL { current_storage = st_local; }
|
2007-04-28 08:49:07 +00:00
|
|
|
| %prec STORAGEX { current_storage = st_local; }
|
2006-12-11 09:26:07 +00:00
|
|
|
| STATIC { current_storage = st_static; }
|
|
|
|
;
|
|
|
|
|
2001-12-08 08:19:48 +00:00
|
|
|
struct_defs
|
|
|
|
: /* empty */
|
|
|
|
| struct_defs struct_def ';'
|
2004-11-02 07:02:00 +00:00
|
|
|
| DEFS '(' identifier ')'
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$3 = check_undefined ($3);
|
|
|
|
if (!$3->type || !is_class ($3->type)) {
|
|
|
|
error (0, "`%s' is not a class", $3->name);
|
2002-05-10 00:00:23 +00:00
|
|
|
} else {
|
2011-01-17 13:33:33 +00:00
|
|
|
// replace the struct symbol table with one built from
|
|
|
|
// the class ivars and the current struct fields. ivars
|
|
|
|
// will replace any fields of the same name.
|
|
|
|
current_symtab = class_to_struct ($3->type->t.class,
|
|
|
|
current_symtab);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-08 08:19:48 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
struct_def
|
2009-12-21 05:53:00 +00:00
|
|
|
: type { $<type>$ = $1; } struct_def_list { $$ = $<type>2; }
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
2006-12-02 06:49:55 +00:00
|
|
|
struct_def_list
|
2009-12-21 05:53:00 +00:00
|
|
|
: struct_def_list ',' { $<type>$ = $<type>0; } struct_def_item
|
2006-12-02 06:49:55 +00:00
|
|
|
{ (void) ($<type>3); }
|
|
|
|
| struct_def_item
|
|
|
|
;
|
|
|
|
|
|
|
|
struct_def_item
|
|
|
|
: identifier
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$1 = check_redefined ($1);
|
|
|
|
$1->type = $<type>0;
|
|
|
|
symtab_addsymbol (current_symtab, $1);
|
2002-01-21 19:03:29 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
type
|
2004-02-08 23:46:40 +00:00
|
|
|
: non_func_type
|
|
|
|
| func_type
|
|
|
|
;
|
|
|
|
|
|
|
|
non_func_type
|
2004-11-02 07:02:00 +00:00
|
|
|
: '.' type { $$ = field_type ($2); }
|
|
|
|
| non_field_type { $$ = $1; }
|
2004-02-08 23:46:40 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
func_type
|
|
|
|
: non_field_type function_decl
|
2002-05-01 21:35:39 +00:00
|
|
|
{
|
2002-05-08 05:15:19 +00:00
|
|
|
current_params = $2;
|
2002-05-31 16:58:42 +00:00
|
|
|
$$ = parse_params ($1, $2);
|
2002-05-01 21:35:39 +00:00
|
|
|
}
|
2002-10-31 22:58:59 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
non_field_type
|
2004-11-02 07:02:00 +00:00
|
|
|
: '(' type ')' { $$ = $2; }
|
2002-05-22 17:13:52 +00:00
|
|
|
| non_field_type array_decl
|
|
|
|
{
|
2002-06-13 04:40:09 +00:00
|
|
|
if ($2)
|
|
|
|
$$ = array_type ($1, $2->e.integer_val);
|
|
|
|
else
|
|
|
|
$$ = pointer_type ($1);
|
2002-05-22 17:13:52 +00:00
|
|
|
}
|
2004-11-02 07:02:00 +00:00
|
|
|
| type_name { $$ = $1; }
|
2011-01-17 13:33:33 +00:00
|
|
|
| struct_spec
|
|
|
|
| enum_spec
|
2001-11-14 07:16:58 +00:00
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
type_name
|
2004-11-02 07:02:00 +00:00
|
|
|
: TYPE { $$ = $1; }
|
|
|
|
| TYPE_NAME { $$ = $1->type; }
|
2011-01-17 13:33:33 +00:00
|
|
|
| CLASS_NAME { $$ = $1->type; }
|
|
|
|
;
|
|
|
|
|
|
|
|
opt_tag
|
|
|
|
: tag
|
|
|
|
| /* empty */ { $$ = 0; }
|
|
|
|
;
|
|
|
|
|
|
|
|
tag : NAME ;
|
|
|
|
|
|
|
|
struct_spec
|
|
|
|
: STRUCT opt_tag '{'
|
2002-08-18 04:08:02 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
current_symtab = new_symtab (current_symtab, stab_local);
|
|
|
|
}
|
|
|
|
struct_defs '}'
|
|
|
|
{
|
|
|
|
symtab_t *symtab = current_symtab;
|
|
|
|
current_symtab = symtab->parent;
|
|
|
|
|
|
|
|
$$ = build_struct ($1, $2, symtab, 0)->type;
|
|
|
|
}
|
|
|
|
| STRUCT tag ';'
|
|
|
|
{
|
|
|
|
$$ = find_struct ($1, $2, 0)->type;
|
2002-08-18 04:08:02 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
enum_spec
|
|
|
|
: ENUM tag opt_enum_list { $$ = $3->type; }
|
|
|
|
| ENUM '{' enum_init enum_list opt_comma '}' { $$ = $4->type; }
|
|
|
|
;
|
|
|
|
|
|
|
|
opt_enum_list
|
|
|
|
: '{' enum_init enum_list opt_comma '}' { $$ = $2; }
|
|
|
|
| /* empty */ { $$ = find_enum ($<symbol>0); }
|
|
|
|
;
|
|
|
|
|
|
|
|
enum_init
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = find_enum ($<symbol>-1);
|
|
|
|
start_enum ($$);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
enum_list
|
|
|
|
: enum { $$ = $<symbol>0; }
|
|
|
|
| enum_list ',' { $<symbol>$ = $<symbol>0; } enum { $$ = $<symbol>0; }
|
|
|
|
;
|
|
|
|
|
|
|
|
enum
|
|
|
|
: identifier { add_enum ($<symbol>0, $1, 0); }
|
|
|
|
| identifier '=' fexpr { add_enum ($<symbol>0, $1, $3); }
|
2002-05-01 21:35:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
function_decl
|
2011-01-17 13:33:33 +00:00
|
|
|
: '(' param_list ')' { $$ = $2; }
|
2002-05-10 00:00:23 +00:00
|
|
|
| '(' param_list ',' ELLIPSIS ')'
|
2001-06-20 07:02:36 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = param_append_identifiers ($2, 0, 0);
|
2001-06-15 20:38:57 +00:00
|
|
|
}
|
2004-11-02 07:08:00 +00:00
|
|
|
| '(' ELLIPSIS ')' { $$ = new_param (0, 0, 0); }
|
2003-02-28 23:36:56 +00:00
|
|
|
| '(' TYPE ')'
|
2001-06-19 23:35:09 +00:00
|
|
|
{
|
2003-02-28 23:36:56 +00:00
|
|
|
if ($2 != &type_void)
|
|
|
|
PARSE_ERROR;
|
2002-05-08 05:15:19 +00:00
|
|
|
$$ = 0;
|
2001-06-15 20:38:57 +00:00
|
|
|
}
|
2004-11-02 07:08:00 +00:00
|
|
|
| '(' ')' { $$ = 0; }
|
2002-05-01 21:35:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
param_list
|
2011-01-17 13:33:33 +00:00
|
|
|
: param { $$ = $<param>0; }
|
|
|
|
| param_list ',' { $<param>$ = $<param>0; } param { $$ = $<param>0; }
|
2002-05-01 21:35:39 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
param
|
2011-01-17 13:33:33 +00:00
|
|
|
: type identifier
|
|
|
|
{
|
|
|
|
$$ = param_append_identifiers ($<param>0, $2, $1);
|
|
|
|
}
|
2001-06-20 23:32:13 +00:00
|
|
|
;
|
|
|
|
|
2001-11-15 00:46:36 +00:00
|
|
|
array_decl
|
2010-01-13 06:23:32 +00:00
|
|
|
: '[' fexpr ']'
|
2001-11-15 00:46:36 +00:00
|
|
|
{
|
2010-01-13 06:23:32 +00:00
|
|
|
$2 = constant_expr ($2);
|
2002-05-01 21:35:39 +00:00
|
|
|
if ($2->type != ex_integer || $2->e.integer_val < 1) {
|
2001-11-15 00:46:36 +00:00
|
|
|
error (0, "invalid array size");
|
2002-05-01 21:35:39 +00:00
|
|
|
$$ = 0;
|
|
|
|
} else {
|
2002-06-13 04:40:09 +00:00
|
|
|
$$ = $2;
|
2002-05-01 21:35:39 +00:00
|
|
|
}
|
2001-11-15 00:46:36 +00:00
|
|
|
}
|
2004-11-02 07:08:00 +00:00
|
|
|
| '[' ']' { $$ = 0; }
|
2001-11-15 00:46:36 +00:00
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
def_list
|
2009-12-21 05:53:00 +00:00
|
|
|
: def_list ',' { $<type>$ = $<type>0; } def_item { (void) ($<type>3); }
|
2002-05-01 21:35:39 +00:00
|
|
|
| def_item
|
2001-06-20 23:32:13 +00:00
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
def_item
|
|
|
|
: def_name opt_initializer
|
2001-11-14 22:31:57 +00:00
|
|
|
{
|
2007-05-13 06:21:54 +00:00
|
|
|
if ($2 && !$2->local
|
|
|
|
&& $2->type->type != ev_func)
|
|
|
|
def_initialized ($2);
|
2001-11-14 22:31:57 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2004-02-10 23:20:44 +00:00
|
|
|
func_defs
|
|
|
|
: func_def_list ',' fdef_name func_term
|
2004-11-13 11:50:00 +00:00
|
|
|
| func_def func_term {}
|
2004-02-10 23:20:44 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
func_term
|
2004-11-02 07:08:00 +00:00
|
|
|
: non_code_func ';' {}
|
|
|
|
| code_func opt_semi {}
|
2004-02-10 23:20:44 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
func_def_list
|
2004-11-13 11:50:00 +00:00
|
|
|
: func_def_list ',' fdef_name func_init
|
|
|
|
| func_def func_init { $$ = $<type>0; }
|
2004-02-10 23:20:44 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
fdef_name
|
2006-12-01 08:17:55 +00:00
|
|
|
: { $<type>$ = $<type>-1; } func_def { $$ = $2; (void) ($<type>1); }
|
2004-02-10 23:20:44 +00:00
|
|
|
;
|
|
|
|
|
2004-02-10 03:25:24 +00:00
|
|
|
func_def
|
2004-11-13 11:50:00 +00:00
|
|
|
: identifier
|
|
|
|
{
|
|
|
|
}
|
|
|
|
| OVERLOAD identifier
|
|
|
|
{
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
func_init
|
2004-02-10 23:20:44 +00:00
|
|
|
: non_code_func
|
|
|
|
| code_func
|
|
|
|
;
|
|
|
|
|
|
|
|
non_code_func
|
|
|
|
: '=' '#' fexpr
|
|
|
|
| /* emtpy */
|
|
|
|
;
|
|
|
|
|
|
|
|
code_func
|
2011-01-17 13:33:33 +00:00
|
|
|
: '=' opt_state_expr statement_block {}
|
2004-02-10 03:25:24 +00:00
|
|
|
;
|
|
|
|
|
2001-06-15 19:38:43 +00:00
|
|
|
def_name
|
2007-05-13 06:21:54 +00:00
|
|
|
: identifier { $$ = $1; }
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
opt_initializer
|
2007-05-13 06:21:54 +00:00
|
|
|
: /*empty*/
|
|
|
|
{
|
|
|
|
}
|
|
|
|
| var_initializer { $$ = $1; }
|
2001-11-14 22:31:57 +00:00
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
var_initializer
|
2004-01-25 22:08:08 +00:00
|
|
|
: '=' expr // don't bother folding twice
|
2001-06-20 07:02:36 +00:00
|
|
|
{
|
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| '=' '{' { } element_list '}'
|
2002-01-18 08:26:37 +00:00
|
|
|
{
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
opt_state_expr
|
|
|
|
: /* emtpy */
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2002-05-07 16:55:54 +00:00
|
|
|
$$ = 0;
|
2001-07-14 01:15:40 +00:00
|
|
|
}
|
2004-02-11 08:09:10 +00:00
|
|
|
| '[' fexpr ',' think opt_step ']'
|
2001-07-14 01:15:40 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_state_expr ($2, $4, $5);
|
2004-02-11 08:09:10 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
think
|
2007-05-13 06:21:54 +00:00
|
|
|
: def_name
|
2004-02-11 08:09:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
| '(' fexpr ')'
|
|
|
|
{
|
|
|
|
$$ = $2;
|
2001-06-20 07:02:36 +00:00
|
|
|
}
|
2001-06-15 19:38:43 +00:00
|
|
|
;
|
|
|
|
|
2004-02-11 01:43:33 +00:00
|
|
|
opt_step
|
|
|
|
: ',' fexpr { $$ = $2; }
|
|
|
|
| /* empty */ { $$ = 0; }
|
|
|
|
;
|
|
|
|
|
2002-05-01 21:35:39 +00:00
|
|
|
element_list
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = new_block_expr ();
|
|
|
|
}
|
|
|
|
| element_list1 opt_comma
|
|
|
|
{
|
|
|
|
$$ = current_init;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
element_list1
|
|
|
|
: element
|
|
|
|
{
|
|
|
|
append_expr (current_init, $1);
|
|
|
|
}
|
|
|
|
| element_list1 ',' element
|
|
|
|
{
|
|
|
|
append_expr (current_init, $3);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
element
|
|
|
|
: '{'
|
|
|
|
{
|
2009-12-21 05:53:00 +00:00
|
|
|
$<expr>$ = current_init;
|
2002-05-01 21:35:39 +00:00
|
|
|
current_init = new_block_expr ();
|
|
|
|
}
|
|
|
|
element_list
|
|
|
|
{
|
|
|
|
current_init = $<expr>2;
|
|
|
|
}
|
|
|
|
'}'
|
|
|
|
{
|
|
|
|
$$ = $3;
|
|
|
|
}
|
2004-01-25 21:36:44 +00:00
|
|
|
| fexpr
|
2002-05-01 21:35:39 +00:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
opt_comma
|
|
|
|
: /* empty */
|
|
|
|
| ','
|
|
|
|
;
|
|
|
|
|
2001-06-12 19:44:26 +00:00
|
|
|
statement_block
|
2011-01-06 11:22:30 +00:00
|
|
|
: '{'
|
2001-06-20 07:02:36 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
if (!options.traditional)
|
|
|
|
current_symtab = new_symtab (current_symtab, stab_local);
|
2001-10-24 06:39:49 +00:00
|
|
|
}
|
|
|
|
statements '}'
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
if (!options.traditional)
|
|
|
|
current_symtab = current_symtab->parent;
|
2001-10-24 06:39:49 +00:00
|
|
|
$$ = $3;
|
2001-06-20 07:02:36 +00:00
|
|
|
}
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
statements
|
|
|
|
: /*empty*/
|
2001-06-20 07:02:36 +00:00
|
|
|
{
|
2001-06-26 03:33:01 +00:00
|
|
|
$$ = new_block_expr ();
|
2001-06-20 07:02:36 +00:00
|
|
|
}
|
2001-06-13 07:16:39 +00:00
|
|
|
| statements statement
|
2001-06-20 07:02:36 +00:00
|
|
|
{
|
2001-06-26 03:33:01 +00:00
|
|
|
$$ = append_expr ($1, $2);
|
2001-06-20 07:02:36 +00:00
|
|
|
}
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
statement
|
2004-11-02 07:02:00 +00:00
|
|
|
: ';' { $$ = 0; }
|
2010-12-31 07:01:09 +00:00
|
|
|
| error ';' { $$ = 0; yyerrok; }
|
2004-11-02 07:02:00 +00:00
|
|
|
| statement_block { $$ = $1; }
|
2011-01-17 13:33:33 +00:00
|
|
|
| local_storage_class type
|
|
|
|
{
|
|
|
|
$<type>$ = $2;
|
|
|
|
local_expr = new_block_expr ();
|
|
|
|
}
|
|
|
|
def_list ';'
|
|
|
|
{
|
|
|
|
$$ = local_expr;
|
|
|
|
local_expr = 0;
|
|
|
|
(void) ($<type>3);
|
|
|
|
current_storage = st_local;
|
|
|
|
}
|
2010-12-30 07:05:50 +00:00
|
|
|
| RETURN opt_expr ';'
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2001-07-23 02:27:46 +00:00
|
|
|
$$ = return_expr (current_func, $2);
|
2001-06-25 20:52:04 +00:00
|
|
|
}
|
2001-10-24 18:57:29 +00:00
|
|
|
| BREAK ';'
|
|
|
|
{
|
2001-10-25 06:41:52 +00:00
|
|
|
$$ = 0;
|
2001-10-24 18:57:29 +00:00
|
|
|
if (break_label)
|
|
|
|
$$ = new_unary_expr ('g', break_label);
|
|
|
|
else
|
2001-10-25 06:41:52 +00:00
|
|
|
error (0, "break outside of loop or switch");
|
2001-10-24 18:57:29 +00:00
|
|
|
}
|
|
|
|
| CONTINUE ';'
|
|
|
|
{
|
2001-10-25 06:41:52 +00:00
|
|
|
$$ = 0;
|
2001-10-24 18:57:29 +00:00
|
|
|
if (continue_label)
|
|
|
|
$$ = new_unary_expr ('g', continue_label);
|
|
|
|
else
|
2001-10-25 06:41:52 +00:00
|
|
|
error (0, "continue outside of loop");
|
|
|
|
}
|
2004-01-25 21:36:44 +00:00
|
|
|
| CASE fexpr ':'
|
2001-10-25 06:41:52 +00:00
|
|
|
{
|
|
|
|
$$ = case_label_expr (switch_block, $2);
|
|
|
|
}
|
|
|
|
| DEFAULT ':'
|
|
|
|
{
|
|
|
|
$$ = case_label_expr (switch_block, 0);
|
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| SWITCH break_label switch_block '(' fexpr ')' statement_block
|
2001-10-25 06:41:52 +00:00
|
|
|
{
|
|
|
|
switch_block->test = $5;
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = switch_expr (switch_block, break_label, $7);
|
2001-10-25 06:41:52 +00:00
|
|
|
switch_block = $3;
|
|
|
|
break_label = $2;
|
2001-10-24 18:57:29 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| IF '(' texpr ')' statement %prec IFX
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_if_statement ($3, $5, 0);
|
2001-06-25 20:52:04 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| IF '(' texpr ')' statement ELSE statement
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_if_statement ($3, $5, $7);
|
2001-07-15 01:51:01 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| FOR break_label continue_label
|
|
|
|
'(' opt_expr ';' opt_expr ';' opt_expr ')' statement
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_for_statement ($5, $7, $9, $11,
|
|
|
|
break_label, continue_label);
|
|
|
|
break_label = $2;
|
|
|
|
continue_label = $3;
|
2001-06-25 20:52:04 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| WHILE break_label continue_label '(' texpr ')' statement
|
2001-10-18 23:06:39 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_while_statement ($5, $7, break_label, continue_label);
|
|
|
|
break_label = $2;
|
|
|
|
continue_label = $3;
|
2001-10-18 23:06:39 +00:00
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
| DO break_label continue_label statement WHILE '(' texpr ')' ';'
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = build_do_while_statement ($4, $7,
|
|
|
|
break_label, continue_label);
|
2001-10-24 18:57:29 +00:00
|
|
|
break_label = $2;
|
|
|
|
continue_label = $3;
|
2001-06-25 20:52:04 +00:00
|
|
|
}
|
2004-01-25 21:36:44 +00:00
|
|
|
| fexpr ';'
|
2001-06-25 20:52:04 +00:00
|
|
|
{
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
2003-10-22 08:05:17 +00:00
|
|
|
label
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = new_label_expr ();
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2001-10-24 18:57:29 +00:00
|
|
|
break_label
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = break_label;
|
|
|
|
break_label = new_label_expr ();
|
|
|
|
}
|
2002-04-27 02:51:00 +00:00
|
|
|
;
|
2001-10-24 18:57:29 +00:00
|
|
|
|
|
|
|
continue_label
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = continue_label;
|
|
|
|
continue_label = new_label_expr ();
|
2001-10-25 06:41:52 +00:00
|
|
|
}
|
2002-04-27 02:51:00 +00:00
|
|
|
;
|
2001-10-25 06:41:52 +00:00
|
|
|
|
|
|
|
switch_block
|
|
|
|
: /* empty */
|
|
|
|
{
|
|
|
|
$$ = switch_block;
|
|
|
|
switch_block = new_switch_block ();
|
2001-10-24 18:57:29 +00:00
|
|
|
}
|
2002-04-27 02:51:00 +00:00
|
|
|
;
|
2001-10-24 18:57:29 +00:00
|
|
|
|
2001-08-01 06:29:09 +00:00
|
|
|
opt_expr
|
2004-01-25 21:36:44 +00:00
|
|
|
: fexpr
|
2001-08-01 06:29:09 +00:00
|
|
|
| /* empty */
|
|
|
|
{
|
|
|
|
$$ = 0;
|
|
|
|
}
|
2002-04-27 02:51:00 +00:00
|
|
|
;
|
2001-08-01 06:29:09 +00:00
|
|
|
|
2002-10-31 22:58:59 +00:00
|
|
|
unary_expr
|
|
|
|
: primary
|
|
|
|
| '+' cast_expr %prec UNARY { $$ = $2; }
|
|
|
|
| '-' cast_expr %prec UNARY { $$ = unary_expr ('-', $2); }
|
|
|
|
| '!' cast_expr %prec UNARY { $$ = unary_expr ('!', $2); }
|
|
|
|
| '~' cast_expr %prec UNARY { $$ = unary_expr ('~', $2); }
|
|
|
|
| '&' cast_expr %prec UNARY { $$ = address_expr ($2, 0, 0); }
|
2010-01-13 06:31:41 +00:00
|
|
|
| '*' cast_expr %prec UNARY { $$ = pointer_expr ($2); }
|
2004-11-02 07:02:00 +00:00
|
|
|
| SIZEOF unary_expr %prec UNARY { $$ = sizeof_expr ($2, 0); }
|
2003-03-10 21:23:05 +00:00
|
|
|
| SIZEOF '(' type ')' %prec HYPERUNARY { $$ = sizeof_expr (0, $3); }
|
2002-10-31 22:58:59 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
primary
|
2011-01-17 13:33:33 +00:00
|
|
|
: NAME { $$ = new_symbol_expr ($1); }
|
2007-04-28 08:49:07 +00:00
|
|
|
| BREAK %prec BREAK_PRIMARY { $$ = new_name_expr (save_string ("break")); }
|
2002-10-31 22:58:59 +00:00
|
|
|
| ARGS { $$ = new_name_expr (".args"); }
|
|
|
|
| SELF { $$ = new_self_expr (); }
|
|
|
|
| THIS { $$ = new_this_expr (); }
|
|
|
|
| const { $$ = $1; }
|
|
|
|
| '(' expr ')' { $$ = $2; $$->paren = 1; }
|
|
|
|
| primary '(' opt_arg_list ')' { $$ = function_expr ($1, $3); }
|
|
|
|
| primary '[' expr ']' { $$ = array_expr ($1, $3); }
|
|
|
|
| primary '.' primary { $$ = binary_expr ('.', $1, $3); }
|
|
|
|
| INCOP primary { $$ = incop_expr ($1, $2, 0); }
|
|
|
|
| primary INCOP { $$ = incop_expr ($2, $1, 1); }
|
|
|
|
| obj_expr { $$ = $1; }
|
|
|
|
;
|
|
|
|
|
|
|
|
cast_expr
|
|
|
|
: unary_expr
|
2003-03-10 21:23:05 +00:00
|
|
|
| '(' type ')' cast_expr %prec UNARY { $$ = cast_expr ($2, $4); }
|
2002-10-31 22:58:59 +00:00
|
|
|
;
|
|
|
|
|
2001-06-12 19:44:26 +00:00
|
|
|
expr
|
2002-10-31 22:58:59 +00:00
|
|
|
: cast_expr
|
|
|
|
| expr '=' expr { $$ = assign_expr ($1, $3); }
|
2001-08-20 06:22:28 +00:00
|
|
|
| expr ASX expr { $$ = asx_expr ($2, $1, $3); }
|
2001-08-11 21:15:24 +00:00
|
|
|
| expr '?' expr ':' expr { $$ = conditional_expr ($1, $3, $5); }
|
2003-10-22 08:05:17 +00:00
|
|
|
| expr AND label expr { $$ = bool_expr (AND, $3, $1, $4); }
|
|
|
|
| expr OR label expr { $$ = bool_expr (OR, $3, $1, $4); }
|
2001-08-11 21:15:24 +00:00
|
|
|
| expr EQ expr { $$ = binary_expr (EQ, $1, $3); }
|
|
|
|
| expr NE expr { $$ = binary_expr (NE, $1, $3); }
|
|
|
|
| expr LE expr { $$ = binary_expr (LE, $1, $3); }
|
|
|
|
| expr GE expr { $$ = binary_expr (GE, $1, $3); }
|
|
|
|
| expr LT expr { $$ = binary_expr (LT, $1, $3); }
|
|
|
|
| expr GT expr { $$ = binary_expr (GT, $1, $3); }
|
|
|
|
| expr SHL expr { $$ = binary_expr (SHL, $1, $3); }
|
|
|
|
| expr SHR expr { $$ = binary_expr (SHR, $1, $3); }
|
|
|
|
| expr '+' expr { $$ = binary_expr ('+', $1, $3); }
|
|
|
|
| expr '-' expr { $$ = binary_expr ('-', $1, $3); }
|
|
|
|
| expr '*' expr { $$ = binary_expr ('*', $1, $3); }
|
|
|
|
| expr '/' expr { $$ = binary_expr ('/', $1, $3); }
|
|
|
|
| expr '&' expr { $$ = binary_expr ('&', $1, $3); }
|
|
|
|
| expr '|' expr { $$ = binary_expr ('|', $1, $3); }
|
|
|
|
| expr '^' expr { $$ = binary_expr ('^', $1, $3); }
|
|
|
|
| expr '%' expr { $$ = binary_expr ('%', $1, $3); }
|
2002-10-31 22:58:59 +00:00
|
|
|
;
|
|
|
|
|
2004-01-25 21:36:44 +00:00
|
|
|
fexpr
|
|
|
|
: expr { $$ = fold_constants ($1); }
|
2004-01-27 04:41:20 +00:00
|
|
|
;
|
2004-01-25 21:36:44 +00:00
|
|
|
|
2007-05-13 08:39:07 +00:00
|
|
|
texpr
|
|
|
|
: fexpr { $$ = convert_bool ($1, 1); }
|
|
|
|
;
|
|
|
|
|
2002-10-31 22:58:59 +00:00
|
|
|
opt_arg_list
|
|
|
|
: /* emtpy */ { $$ = 0; }
|
|
|
|
| arg_list { $$ = $1; }
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
arg_list
|
2004-01-25 21:36:44 +00:00
|
|
|
: fexpr
|
|
|
|
| arg_list ',' fexpr
|
2001-06-20 21:18:04 +00:00
|
|
|
{
|
|
|
|
$3->next = $1;
|
|
|
|
$$ = $3;
|
|
|
|
}
|
2001-06-12 19:44:26 +00:00
|
|
|
;
|
|
|
|
|
2001-06-13 07:16:39 +00:00
|
|
|
const
|
2011-01-14 03:10:28 +00:00
|
|
|
: CONST
|
2002-09-11 16:21:26 +00:00
|
|
|
| NIL { $$ = new_nil_expr (); }
|
2011-01-17 13:33:33 +00:00
|
|
|
| string
|
|
|
|
;
|
|
|
|
|
|
|
|
string
|
|
|
|
: STRING
|
|
|
|
| string STRING { $$ = binary_expr ('+', $1, $2); }
|
2002-04-26 21:42:50 +00:00
|
|
|
;
|
|
|
|
|
2004-11-02 07:02:00 +00:00
|
|
|
identifier
|
|
|
|
: NAME
|
2011-01-17 13:33:33 +00:00
|
|
|
| BREAK
|
|
|
|
{
|
|
|
|
if (!($$ = symtab_lookup (current_symtab, "break")))
|
|
|
|
$$ = new_symbol ("break");
|
|
|
|
}
|
2004-11-02 07:02:00 +00:00
|
|
|
| CLASS_NAME
|
2011-01-17 13:33:33 +00:00
|
|
|
| TYPE_NAME
|
2004-11-02 07:02:00 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
// Objective-QC stuff
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
obj_def
|
2002-11-15 17:12:16 +00:00
|
|
|
: classdef { }
|
2002-05-07 16:55:54 +00:00
|
|
|
| classdecl
|
|
|
|
| protocoldef
|
2002-05-15 19:10:23 +00:00
|
|
|
| { if (!current_class) PARSE_ERROR; } methoddef
|
2002-05-07 16:55:54 +00:00
|
|
|
| END
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
|
|
|
if (!current_class)
|
|
|
|
PARSE_ERROR;
|
2002-05-15 23:24:19 +00:00
|
|
|
else
|
|
|
|
class_finish (current_class);
|
2002-05-15 19:10:23 +00:00
|
|
|
current_class = 0;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
identifier_list
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = append_expr (new_block_expr (), new_symbol_expr ($1));
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2004-11-02 07:02:00 +00:00
|
|
|
| identifier_list ',' identifier
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = append_expr ($1, new_symbol_expr ($3));
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
classdecl
|
2002-08-20 21:13:18 +00:00
|
|
|
: CLASS identifier_list ';'
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
|
|
|
expr_t *e;
|
|
|
|
for (e = $2->e.block.head; e; e = e->next)
|
2011-01-17 13:33:33 +00:00
|
|
|
get_class (e->e.symbol, 1);
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-08-18 04:08:02 +00:00
|
|
|
class_name
|
2007-04-28 08:49:07 +00:00
|
|
|
: identifier %prec CLASS_NOT_CATEGORY
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$1 = check_undefined ($1);
|
|
|
|
if (!is_class ($1->type)) {
|
|
|
|
error (0, "`%s' is not a class", $1->name);
|
2002-05-10 00:00:23 +00:00
|
|
|
$$ = get_class (0, 1);
|
2011-01-17 13:33:33 +00:00
|
|
|
} else {
|
|
|
|
$$ = $1->type->t.class;
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-10 00:00:23 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
new_class_name
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = get_class ($1, 0);
|
|
|
|
if (!$$) {
|
|
|
|
$1 = check_redefined ($1);
|
2002-05-10 00:00:23 +00:00
|
|
|
$$ = get_class (0, 1);
|
|
|
|
}
|
2010-12-31 06:56:31 +00:00
|
|
|
current_class = &$$->class_type;
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-30 21:18:58 +00:00
|
|
|
;
|
2002-05-10 00:00:23 +00:00
|
|
|
|
2002-05-15 19:10:23 +00:00
|
|
|
class_with_super
|
|
|
|
: class_name ':' class_name
|
|
|
|
{
|
|
|
|
if ($1->super_class != $3)
|
2002-11-12 19:52:43 +00:00
|
|
|
error (0, "%s is not a super class of %s", $3->name, $1->name);
|
2002-05-15 19:10:23 +00:00
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
new_class_with_super
|
|
|
|
: new_class_name ':' class_name
|
|
|
|
{
|
|
|
|
$1->super_class = $3;
|
|
|
|
$$ = $1;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
category_name
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier '(' identifier ')'
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = get_category ($1, $3->name, 0);
|
2002-05-15 19:10:23 +00:00
|
|
|
if (!$$) {
|
2011-01-17 13:33:33 +00:00
|
|
|
error (0, "undefined category `%s (%s)'", $1->name, $3->name);
|
2002-05-15 19:10:23 +00:00
|
|
|
$$ = get_category (0, 0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
new_category_name
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier '(' identifier ')'
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = get_category ($1, $3->name, 1);
|
2002-05-15 19:10:23 +00:00
|
|
|
if ($$->defined) {
|
2011-01-17 13:33:33 +00:00
|
|
|
error (0, "redefinition of category `%s (%s)'",
|
|
|
|
$1->name, $3->name);
|
2002-05-15 19:10:23 +00:00
|
|
|
$$ = get_category (0, 0, 1);
|
|
|
|
}
|
2010-12-31 06:56:31 +00:00
|
|
|
current_class = &$$->class_type;
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2010-12-12 11:27:56 +00:00
|
|
|
class_reference
|
|
|
|
: identifier
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
emit_class_ref ($1->name);
|
2010-12-12 11:27:56 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
category_reference
|
|
|
|
: identifier '(' identifier ')'
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
emit_category_ref ($1->name, $3->name);
|
2010-12-12 11:27:56 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
protocol_name
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = get_protocol ($1->name, 0);
|
2002-05-15 19:10:23 +00:00
|
|
|
if ($$) {
|
2011-01-17 13:33:33 +00:00
|
|
|
error (0, "redefinition of %s", $1->name);
|
2002-05-10 00:00:23 +00:00
|
|
|
$$ = get_protocol (0, 1);
|
2002-05-15 19:10:23 +00:00
|
|
|
} else {
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = get_protocol ($1->name, 1);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
2010-12-31 06:56:31 +00:00
|
|
|
current_class = &$$->class_type;
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-30 21:18:58 +00:00
|
|
|
;
|
2002-05-10 00:00:23 +00:00
|
|
|
|
2002-05-15 19:10:23 +00:00
|
|
|
classdef
|
2002-05-22 17:13:52 +00:00
|
|
|
: INTERFACE new_class_name
|
2006-12-01 08:17:55 +00:00
|
|
|
protocolrefs { class_add_protocols ($2, $3); }
|
2009-12-21 05:53:00 +00:00
|
|
|
'{' { $<class>$ = $2; }
|
|
|
|
ivar_decl_list '}'
|
|
|
|
{
|
|
|
|
class_add_ivars ($2, $7);
|
|
|
|
$<class>$ = $2;
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
methodprotolist { class_add_methods ($2, $10); }
|
2006-12-01 08:17:55 +00:00
|
|
|
END
|
|
|
|
{
|
|
|
|
current_class = 0;
|
|
|
|
(void) ($<class>6);
|
|
|
|
(void) ($<class>9);
|
|
|
|
}
|
2002-05-22 17:13:52 +00:00
|
|
|
| INTERFACE new_class_name
|
2004-11-11 00:34:00 +00:00
|
|
|
protocolrefs { class_add_protocols ($2, $3); }
|
2009-12-21 05:53:00 +00:00
|
|
|
{
|
|
|
|
class_add_ivars ($2, class_new_ivars ($2));
|
|
|
|
$<class>$ = $2;
|
|
|
|
}
|
2003-07-30 04:11:45 +00:00
|
|
|
methodprotolist { class_add_methods ($2, $6); }
|
2006-12-01 08:17:55 +00:00
|
|
|
END
|
|
|
|
{
|
|
|
|
current_class = 0;
|
|
|
|
(void) ($<class>5);
|
|
|
|
}
|
2002-05-22 17:13:52 +00:00
|
|
|
| INTERFACE new_class_with_super
|
2004-11-11 00:34:00 +00:00
|
|
|
protocolrefs { class_add_protocols ($2, $3);}
|
2009-12-21 05:53:00 +00:00
|
|
|
'{' { $<class>$ = $2; }
|
|
|
|
ivar_decl_list '}'
|
|
|
|
{
|
|
|
|
class_add_ivars ($2, $7);
|
|
|
|
$<class>$ = $2;
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
methodprotolist { class_add_methods ($2, $10); }
|
2006-12-01 08:17:55 +00:00
|
|
|
END
|
|
|
|
{
|
|
|
|
current_class = 0;
|
|
|
|
(void) ($<class>6);
|
|
|
|
(void) ($<class>9);
|
|
|
|
}
|
2002-05-22 17:13:52 +00:00
|
|
|
| INTERFACE new_class_with_super
|
2004-11-11 00:34:00 +00:00
|
|
|
protocolrefs { class_add_protocols ($2, $3); }
|
2009-12-21 05:53:00 +00:00
|
|
|
{
|
|
|
|
class_add_ivars ($2, class_new_ivars ($2));
|
|
|
|
$<class>$ = $2;
|
|
|
|
}
|
2003-07-30 04:11:45 +00:00
|
|
|
methodprotolist { class_add_methods ($2, $6); }
|
2006-12-01 08:17:55 +00:00
|
|
|
END
|
|
|
|
{
|
|
|
|
current_class = 0;
|
|
|
|
(void) ($<class>5);
|
|
|
|
}
|
2002-05-22 17:13:52 +00:00
|
|
|
| INTERFACE new_category_name
|
2009-12-21 05:53:00 +00:00
|
|
|
protocolrefs
|
|
|
|
{
|
|
|
|
category_add_protocols ($2, $3);
|
|
|
|
$<class>$ = $2->class;
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
methodprotolist { category_add_methods ($2, $5); }
|
2006-12-01 08:17:55 +00:00
|
|
|
END
|
|
|
|
{
|
|
|
|
current_class = 0;
|
|
|
|
(void) ($<class>4);
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
| IMPLEMENTATION class_name { class_begin (&$2->class_type); }
|
2009-12-21 05:53:00 +00:00
|
|
|
'{' { $<class>$ = $2; }
|
2006-12-01 08:17:55 +00:00
|
|
|
ivar_decl_list '}'
|
|
|
|
{
|
|
|
|
class_check_ivars ($2, $6);
|
|
|
|
(void) ($<class>5);
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
| IMPLEMENTATION class_name { class_begin (&$2->class_type); }
|
|
|
|
| IMPLEMENTATION class_with_super { class_begin (&$2->class_type); }
|
2009-12-21 05:53:00 +00:00
|
|
|
'{' { $<class>$ = $2; }
|
2006-12-01 08:17:55 +00:00
|
|
|
ivar_decl_list '}'
|
|
|
|
{
|
|
|
|
class_check_ivars ($2, $6);
|
|
|
|
(void) ($<class>5);
|
|
|
|
}
|
2002-11-14 18:17:43 +00:00
|
|
|
| IMPLEMENTATION class_with_super { class_begin (&$2->class_type); }
|
|
|
|
| IMPLEMENTATION category_name { class_begin (&$2->class_type); }
|
2010-12-12 11:27:56 +00:00
|
|
|
| REFERENCE class_reference ';' { }
|
|
|
|
| REFERENCE category_reference ';' { }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
protocoldef
|
2011-01-06 11:22:30 +00:00
|
|
|
: PROTOCOL protocol_name
|
2004-11-11 00:34:00 +00:00
|
|
|
protocolrefs { protocol_add_protocols ($2, $3); $<class>$ = 0; }
|
2002-05-10 00:00:23 +00:00
|
|
|
methodprotolist { protocol_add_methods ($2, $5); }
|
2010-12-31 06:56:31 +00:00
|
|
|
END { current_class = 0; (void) ($<class>4); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
protocolrefs
|
|
|
|
: /* emtpy */ { $$ = 0; }
|
2009-12-21 05:53:00 +00:00
|
|
|
| LT { $<protocol_list>$ = new_protocol_list (); }
|
2006-12-01 08:17:55 +00:00
|
|
|
protocol_list GT { $$ = $3; (void) ($<protocol_list>2); }
|
2003-07-25 20:34:24 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
protocol_list
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier
|
2003-07-25 20:34:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = add_protocol ($<protocol_list>0, $1->name);
|
2003-07-25 20:34:24 +00:00
|
|
|
}
|
2004-11-02 07:02:00 +00:00
|
|
|
| protocol_list ',' identifier
|
2003-07-25 20:34:24 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = add_protocol ($1, $3->name);
|
2003-07-25 20:34:24 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
ivar_decl_list
|
2002-05-17 06:20:27 +00:00
|
|
|
: /* */
|
|
|
|
{
|
2002-05-17 17:58:57 +00:00
|
|
|
current_visibility = vis_protected;
|
2011-01-17 13:33:33 +00:00
|
|
|
current_symtab = class_new_ivars ($<class>0);
|
2002-05-17 06:20:27 +00:00
|
|
|
}
|
|
|
|
ivar_decl_list_2
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$$ = current_symtab;
|
|
|
|
current_symtab = $$->parent;
|
|
|
|
|
|
|
|
build_struct ('s', 0, $$, 0);
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
ivar_decl_list_2
|
|
|
|
: ivar_decl_list_2 visibility_spec ivar_decls
|
2002-05-07 16:55:54 +00:00
|
|
|
| ivar_decls
|
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
visibility_spec
|
|
|
|
: PRIVATE { current_visibility = vis_private; }
|
|
|
|
| PROTECTED { current_visibility = vis_protected; }
|
|
|
|
| PUBLIC { current_visibility = vis_public; }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
ivar_decls
|
2002-05-07 16:55:54 +00:00
|
|
|
: /* empty */
|
|
|
|
| ivar_decls ivar_decl ';'
|
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
ivar_decl
|
2009-12-21 05:53:00 +00:00
|
|
|
: type { $<type>$ = $1; } ivars { (void) ($<type>2); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
ivars
|
2002-05-07 16:55:54 +00:00
|
|
|
: ivar_declarator
|
2009-12-21 05:53:00 +00:00
|
|
|
| ivars ',' { $<type>$ = $<type>0; } ivar_declarator { (void) ($<type>3); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
ivar_declarator
|
2004-11-02 07:02:00 +00:00
|
|
|
: identifier
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
$1 = check_redefined ($1);
|
|
|
|
$1->type = $<type>0;
|
|
|
|
$1->visibility = current_visibility;
|
|
|
|
symtab_addsymbol (current_symtab, $1);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
methoddef
|
2011-01-17 13:33:33 +00:00
|
|
|
: ci methoddecl opt_state_expr statement_block {}
|
|
|
|
| ci methoddecl '=' '#' const ';' {}
|
2004-02-09 07:35:19 +00:00
|
|
|
;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
2004-02-09 07:35:19 +00:00
|
|
|
ci
|
|
|
|
: '+' { $$ = 0; }
|
|
|
|
| '-' { $$ = 1; }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
methodprotolist
|
2002-05-10 00:00:23 +00:00
|
|
|
: /* emtpy */ { $$ = 0; }
|
2002-05-07 16:55:54 +00:00
|
|
|
| methodprotolist2
|
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
methodprotolist2
|
2002-11-14 18:17:43 +00:00
|
|
|
: { } methodproto
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
|
|
|
$$ = new_methodlist ();
|
2002-11-14 18:17:43 +00:00
|
|
|
add_method ($$, $2);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
| methodprotolist2 methodproto
|
|
|
|
{
|
|
|
|
add_method ($1, $2);
|
|
|
|
$$ = $1;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
methodproto
|
2002-05-07 16:55:54 +00:00
|
|
|
: '+' methoddecl ';'
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
|
|
|
$2->instance = 0;
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
| '-' methoddecl ';'
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
|
|
|
$2->instance = 1;
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
methoddecl
|
2002-05-07 16:55:54 +00:00
|
|
|
: '(' type ')' unaryselector
|
2002-05-08 21:24:24 +00:00
|
|
|
{ $$ = new_method ($2, $4, 0); }
|
2002-05-07 16:55:54 +00:00
|
|
|
| unaryselector
|
2002-05-08 21:24:24 +00:00
|
|
|
{ $$ = new_method (&type_id, $1, 0); }
|
|
|
|
| '(' type ')' keywordselector optparmlist
|
|
|
|
{ $$ = new_method ($2, $4, $5); }
|
|
|
|
| keywordselector optparmlist
|
|
|
|
{ $$ = new_method (&type_id, $1, $2); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
optparmlist
|
2002-05-10 00:00:23 +00:00
|
|
|
: /* empty */ { $$ = 0; }
|
|
|
|
| ',' ELLIPSIS { $$ = new_param (0, 0, 0); }
|
|
|
|
| ',' param_list { $$ = $2; }
|
2002-05-08 23:12:49 +00:00
|
|
|
| ',' param_list ',' ELLIPSIS
|
|
|
|
{
|
|
|
|
$$ = new_param (0, 0, 0);
|
|
|
|
$$->next = $2;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
unaryselector
|
2011-01-17 13:33:33 +00:00
|
|
|
: selector { $$ = new_param ($1->name, 0, 0); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
keywordselector
|
|
|
|
: keyworddecl
|
2002-05-08 05:55:57 +00:00
|
|
|
| keywordselector keyworddecl { $2->next = $1; $$ = $2; }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
selector
|
2011-01-17 13:33:33 +00:00
|
|
|
: NAME { $$ = $1; }
|
|
|
|
| CLASS_NAME { $$ = $1; }
|
|
|
|
| TYPE { $$ = new_symbol (yytext); }
|
|
|
|
| TYPE_NAME { $$ = $1; }
|
2002-05-08 23:12:49 +00:00
|
|
|
| reserved_word
|
|
|
|
;
|
|
|
|
|
|
|
|
reserved_word
|
2011-01-17 13:33:33 +00:00
|
|
|
: LOCAL { $$ = new_symbol (yytext); }
|
|
|
|
| RETURN { $$ = new_symbol (yytext); }
|
|
|
|
| WHILE { $$ = new_symbol (yytext); }
|
|
|
|
| DO { $$ = new_symbol (yytext); }
|
|
|
|
| IF { $$ = new_symbol (yytext); }
|
|
|
|
| ELSE { $$ = new_symbol (yytext); }
|
|
|
|
| FOR { $$ = new_symbol (yytext); }
|
|
|
|
| BREAK { $$ = new_symbol (yytext); }
|
|
|
|
| CONTINUE { $$ = new_symbol (yytext); }
|
|
|
|
| SWITCH { $$ = new_symbol (yytext); }
|
|
|
|
| CASE { $$ = new_symbol (yytext); }
|
|
|
|
| DEFAULT { $$ = new_symbol (yytext); }
|
|
|
|
| NIL { $$ = new_symbol (yytext); }
|
|
|
|
| STRUCT { $$ = new_symbol (yytext); }
|
|
|
|
| ENUM { $$ = new_symbol (yytext); }
|
|
|
|
| TYPEDEF { $$ = new_symbol (yytext); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
keyworddecl
|
2004-11-02 07:02:00 +00:00
|
|
|
: selector ':' '(' type ')' identifier
|
2011-01-17 13:33:33 +00:00
|
|
|
{ $$ = new_param ($1->name, $4, $6->name); }
|
2004-11-02 07:02:00 +00:00
|
|
|
| selector ':' identifier
|
2011-01-17 13:33:33 +00:00
|
|
|
{ $$ = new_param ($1->name, &type_id, $3->name); }
|
2004-11-02 07:02:00 +00:00
|
|
|
| ':' '(' type ')' identifier
|
2011-01-17 13:33:33 +00:00
|
|
|
{ $$ = new_param ("", $3, $5->name); }
|
2004-11-02 07:02:00 +00:00
|
|
|
| ':' identifier
|
2011-01-17 13:33:33 +00:00
|
|
|
{ $$ = new_param ("", &type_id, $2->name); }
|
2002-05-08 05:55:57 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
obj_expr
|
|
|
|
: obj_messageexpr
|
|
|
|
| SELECTOR '(' selectorarg ')' { $$ = selector_expr ($3); }
|
2011-01-17 13:33:33 +00:00
|
|
|
| PROTOCOL '(' identifier ')' { $$ = protocol_expr ($3->name); }
|
2002-05-08 23:12:49 +00:00
|
|
|
| ENCODE '(' type ')' { $$ = encode_expr ($3); }
|
|
|
|
| obj_string /* FIXME string object? */
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
obj_messageexpr
|
|
|
|
: '[' receiver messageargs ']' { $$ = message_expr ($2, $3); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
receiver
|
2004-01-25 21:36:44 +00:00
|
|
|
: fexpr
|
2011-01-17 13:33:33 +00:00
|
|
|
| CLASS_NAME { $$ = new_symbol_expr ($1); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
messageargs
|
2011-01-17 13:33:33 +00:00
|
|
|
: selector { $$ = new_keywordarg ($1->name, 0); }
|
2002-05-08 23:12:49 +00:00
|
|
|
| keywordarglist
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
keywordarglist
|
|
|
|
: keywordarg
|
|
|
|
| keywordarglist keywordarg
|
|
|
|
{
|
|
|
|
$2->next = $1;
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
keywordarg
|
2011-01-17 13:33:33 +00:00
|
|
|
: selector ':' arg_list { $$ = new_keywordarg ($1->name, $3); }
|
2002-09-11 16:21:26 +00:00
|
|
|
| ':' arg_list { $$ = new_keywordarg ("", $2); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
selectorarg
|
2011-01-17 13:33:33 +00:00
|
|
|
: selector { $$ = new_keywordarg ($1->name, 0); }
|
2002-05-07 16:55:54 +00:00
|
|
|
| keywordnamelist
|
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
keywordnamelist
|
2002-05-07 16:55:54 +00:00
|
|
|
: keywordname
|
|
|
|
| keywordnamelist keywordname
|
2002-05-08 23:12:49 +00:00
|
|
|
{
|
|
|
|
$2->next = $1;
|
|
|
|
$$ = $2;
|
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
keywordname
|
2011-01-17 13:33:33 +00:00
|
|
|
: selector ':' { $$ = new_keywordarg ($1->name, new_nil_expr ()); }
|
|
|
|
| ':' { $$ = new_keywordarg ("", new_nil_expr ()); }
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2002-05-08 23:12:49 +00:00
|
|
|
obj_string
|
2011-01-17 13:33:33 +00:00
|
|
|
: '@' STRING
|
2002-05-08 23:12:49 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
//FIXME string object
|
|
|
|
$$ = $2;
|
2002-05-08 23:12:49 +00:00
|
|
|
}
|
2002-05-07 16:55:54 +00:00
|
|
|
;
|
|
|
|
|
2001-06-12 19:44:26 +00:00
|
|
|
%%
|