Commit 30e29ee9 authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/ld: emit TLS relocations during external linking

This CL was written by rsc.  I just tweaked 8l.

This CL adds TLS relocation to the ELF .o file we write during external linking,
so that the host linker (gcc) can decide the final location of m and g.

Similar relocations are not necessary on OS X because we use an alternate
program start-time mechanism to acquire thread-local storage.

Similar relocations are not necessary on ARM or Plan 9 or Windows
because external linking mode is not yet supported on those systems.

On almost all ELF systems, the references we use are like %fs:-0x4 or %gs:-0x4,
which we write in 6a/8a as -0x4(FS) or -0x4(GS). On Linux/ELF, however,
Xen's lack of support for this mode forced us long ago to use a two-instruction
sequence: first we load %gs:0x0 into a register r, and then we use -0x4(r).
(The ELF program loader arranges that %gs:0x0 contains a regular pointer to
that same memory location.) In order to relocate those -0x4(r) references,
the linker must know where they are. This CL adds the equivalent notation
-0x4(r)(GS*1) for this purpose: it assembles to the same encoding as -0x4(r)
but the (GS*1) indicates to the linker that this is one of those thread-local
references that needs relocation.

Thanks to Elias Naur for reminding me about this missing piece and
also for writing the test.

R=r
CC=golang-dev
https://golang.org/cl/7891047
parent 23482db9
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cgotlstest
// #include <pthread.h>
// extern void setTLS(int);
// extern int getTLS();
import "C"
import (
"runtime"
"testing"
)
func testTLS(t *testing.T) {
var keyVal C.int = 1234
runtime.LockOSThread()
defer runtime.UnlockOSThread()
C.setTLS(C.int(keyVal))
storedVal := C.getTLS()
if storedVal != keyVal {
t.Fatalf("stored %d want %d", storedVal, keyVal)
}
}
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !windows
package cgotlstest
import "testing"
func TestTLS(t *testing.T) {
testTLS(t)
}
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include <pthread.h>
static __thread int tls;
void
setTLS(int v)
{
tls = v;
}
int
getTLS()
{
return tls;
}
...@@ -275,6 +275,7 @@ enum as ...@@ -275,6 +275,7 @@ enum as
#define D_PLT1 (D_NONE+44) // R_ARM_PLT32, 2nd inst: add ip, ip, #0xNN000 #define D_PLT1 (D_NONE+44) // R_ARM_PLT32, 2nd inst: add ip, ip, #0xNN000
#define D_PLT2 (D_NONE+45) // R_ARM_PLT32, 3rd inst: ldr pc, [ip, #0xNNN]! #define D_PLT2 (D_NONE+45) // R_ARM_PLT32, 3rd inst: ldr pc, [ip, #0xNNN]!
#define D_CALL (D_NONE+46) // R_ARM_PLT32/R_ARM_CALL/R_ARM_JUMP24, bl xxxxx or b yyyyy #define D_CALL (D_NONE+46) // R_ARM_PLT32/R_ARM_CALL/R_ARM_JUMP24, bl xxxxx or b yyyyy
#define D_TLS (D_NONE+47)
/* /*
* this is the ranlib header * this is the ranlib header
......
...@@ -866,6 +866,7 @@ enum ...@@ -866,6 +866,7 @@ enum
D_SIZE = D_INDIR + D_INDIR, /* 6l internal */ D_SIZE = D_INDIR + D_INDIR, /* 6l internal */
D_PCREL, D_PCREL,
D_TLS,
T_TYPE = 1<<0, T_TYPE = 1<<0,
T_INDEX = 1<<1, T_INDEX = 1<<1,
......
...@@ -310,6 +310,13 @@ elfreloc1(Reloc *r, vlong sectoff) ...@@ -310,6 +310,13 @@ elfreloc1(Reloc *r, vlong sectoff)
else else
return -1; return -1;
break; break;
case D_TLS:
if(r->siz == 4)
VPUT(R_X86_64_TPOFF32 | (uint64)elfsym<<32);
else
return -1;
break;
} }
VPUT(r->xadd); VPUT(r->xadd);
......
...@@ -83,7 +83,7 @@ main(int argc, char *argv[]) ...@@ -83,7 +83,7 @@ main(int argc, char *argv[])
INITRND = -1; INITRND = -1;
INITENTRY = 0; INITENTRY = 0;
LIBINITENTRY = 0; LIBINITENTRY = 0;
linkmode = LinkInternal; // TODO: LinkAuto once everything works. linkmode = LinkAuto;
nuxiinit(); nuxiinit();
flagcount("1", "use alternate profiling code", &debug['1']); flagcount("1", "use alternate profiling code", &debug['1']);
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "l.h" #include "l.h"
#include "../ld/lib.h" #include "../ld/lib.h"
#include "../ld/elf.h"
static int rexflag; static int rexflag;
static int asmode; static int asmode;
...@@ -880,7 +881,29 @@ putrelv: ...@@ -880,7 +881,29 @@ putrelv:
r = addrel(cursym); r = addrel(cursym);
*r = rel; *r = rel;
r->off = curp->pc + andptr - and; r->off = curp->pc + andptr - and;
} else if(iself && linkmode == LinkExternal && a->type == D_INDIR+D_FS) {
Reloc *r;
Sym *s;
r = addrel(cursym);
r->off = curp->pc + andptr - and;
r->add = 0;
r->xadd = 0;
r->siz = 4;
r->type = D_TLS;
if(a->offset == tlsoffset+0)
s = lookup("runtime.g", 0);
else
s = lookup("runtime.m", 0);
s->type = STLSBSS;
s->reachable = 1;
s->size = PtrSize;
s->hide = 1;
r->sym = s;
r->xsym = s;
v = 0;
} }
put4(v); put4(v);
return; return;
......
...@@ -507,6 +507,15 @@ omem: ...@@ -507,6 +507,15 @@ omem:
$$.scale = $8; $$.scale = $8;
checkscale($$.scale); checkscale($$.scale);
} }
| con '(' LLREG ')' '(' LSREG '*' con ')'
{
$$ = nullgen;
$$.type = D_INDIR+$3;
$$.offset = $1;
$$.index = $6;
$$.scale = $8;
checkscale($$.scale);
}
| '(' LLREG ')' | '(' LLREG ')'
{ {
$$ = nullgen; $$ = nullgen;
......
/* A Bison parser, made by GNU Bison 2.5. */ /* A Bison parser, made by GNU Bison 2.3. */
/* Bison implementation for Yacc-like parsers in C /* Skeleton implementation for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
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 it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation; either version 2, or (at your option)
(at your option) any later version. any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains /* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work part or all of the Bison parser skeleton and distribute that work
...@@ -26,7 +29,7 @@ ...@@ -26,7 +29,7 @@
special exception, which will cause the skeleton and the resulting special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public Bison output files to be licensed under the GNU General Public
License without this special exception. License without this special exception.
This special exception was added by the Free Software Foundation in This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */ version 2.2 of Bison. */
...@@ -44,7 +47,7 @@ ...@@ -44,7 +47,7 @@
#define YYBISON 1 #define YYBISON 1
/* Bison version. */ /* Bison version. */
#define YYBISON_VERSION "2.5" #define YYBISON_VERSION "2.3"
/* Skeleton name. */ /* Skeleton name. */
#define YYSKELETON_NAME "yacc.c" #define YYSKELETON_NAME "yacc.c"
...@@ -52,50 +55,11 @@ ...@@ -52,50 +55,11 @@
/* Pure parsers. */ /* Pure parsers. */
#define YYPURE 0 #define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Using locations. */ /* Using locations. */
#define YYLSP_NEEDED 0 #define YYLSP_NEEDED 0
/* Copy the first part of user declarations. */
/* Line 268 of yacc.c */
#line 31 "a.y"
#include <u.h>
#include <stdio.h> /* if we don't, bison will, and a.h re-#defines getc */
#include <libc.h>
#include "a.h"
/* Line 268 of yacc.c */
#line 79 "y.tab.c"
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
/* Tokens. */ /* Tokens. */
#ifndef YYTOKENTYPE #ifndef YYTOKENTYPE
# define YYTOKENTYPE # define YYTOKENTYPE
...@@ -171,13 +135,37 @@ ...@@ -171,13 +135,37 @@
/* Copy the first part of user declarations. */
#line 31 "a.y"
#include <u.h>
#include <stdio.h> /* if we don't, bison will, and a.h re-#defines getc */
#include <libc.h>
#include "a.h"
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE typedef union YYSTYPE
{
/* Line 293 of yacc.c */
#line 37 "a.y" #line 37 "a.y"
{
Sym *sym; Sym *sym;
int32 lval; int32 lval;
struct { struct {
...@@ -188,23 +176,22 @@ typedef union YYSTYPE ...@@ -188,23 +176,22 @@ typedef union YYSTYPE
char sval[8]; char sval[8];
Gen gen; Gen gen;
Gen2 gen2; Gen2 gen2;
}
/* Line 193 of yacc.c. */
#line 182 "y.tab.c"
/* Line 293 of yacc.c */ YYSTYPE;
#line 196 "y.tab.c"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif #endif
/* Copy the second part of user declarations. */ /* Copy the second part of user declarations. */
/* Line 343 of yacc.c */ /* Line 216 of yacc.c. */
#line 208 "y.tab.c" #line 195 "y.tab.c"
#ifdef short #ifdef short
# undef short # undef short
...@@ -279,14 +266,14 @@ typedef short int yytype_int16; ...@@ -279,14 +266,14 @@ typedef short int yytype_int16;
#if (defined __STDC__ || defined __C99__FUNC__ \ #if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER) || defined __cplusplus || defined _MSC_VER)
static int static int
YYID (int yyi) YYID (int i)
#else #else
static int static int
YYID (yyi) YYID (i)
int yyi; int i;
#endif #endif
{ {
return yyi; return i;
} }
#endif #endif
...@@ -307,11 +294,11 @@ YYID (yyi) ...@@ -307,11 +294,11 @@ YYID (yyi)
# define alloca _alloca # define alloca _alloca
# else # else
# define YYSTACK_ALLOC alloca # define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER) || defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS # ifndef _STDLIB_H
# define EXIT_SUCCESS 0 # define _STDLIB_H 1
# endif # endif
# endif # endif
# endif # endif
...@@ -334,24 +321,24 @@ YYID (yyi) ...@@ -334,24 +321,24 @@ YYID (yyi)
# ifndef YYSTACK_ALLOC_MAXIMUM # ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif # endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \ # if (defined __cplusplus && ! defined _STDLIB_H \
&& ! ((defined YYMALLOC || defined malloc) \ && ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free))) && (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS # ifndef _STDLIB_H
# define EXIT_SUCCESS 0 # define _STDLIB_H 1
# endif # endif
# endif # endif
# ifndef YYMALLOC # ifndef YYMALLOC
# define YYMALLOC malloc # define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER) || defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif # endif
# endif # endif
# ifndef YYFREE # ifndef YYFREE
# define YYFREE free # define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ # if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER) || defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */ void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif # endif
...@@ -367,9 +354,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ ...@@ -367,9 +354,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
/* A type that is properly aligned for any stack member. */ /* A type that is properly aligned for any stack member. */
union yyalloc union yyalloc
{ {
yytype_int16 yyss_alloc; yytype_int16 yyss;
YYSTYPE yyvs_alloc; YYSTYPE yyvs;
}; };
/* The size of the maximum gap between one aligned stack and the next. */ /* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
...@@ -380,27 +367,6 @@ union yyalloc ...@@ -380,27 +367,6 @@ union yyalloc
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM) + YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from FROM to TO. The source and destination do /* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */ not overlap. */
# ifndef YYCOPY # ifndef YYCOPY
...@@ -418,21 +384,38 @@ union yyalloc ...@@ -418,21 +384,38 @@ union yyalloc
while (YYID (0)) while (YYID (0))
# endif # endif
# endif # endif
#endif /* !YYCOPY_NEEDED */
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack, Stack, yysize); \
Stack = &yyptr->Stack; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
/* YYFINAL -- State number of the termination state. */ /* YYFINAL -- State number of the termination state. */
#define YYFINAL 2 #define YYFINAL 2
/* YYLAST -- Last index in YYTABLE. */ /* YYLAST -- Last index in YYTABLE. */
#define YYLAST 553 #define YYLAST 537
/* YYNTOKENS -- Number of terminals. */ /* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 52 #define YYNTOKENS 52
/* YYNNTS -- Number of nonterminals. */ /* YYNNTS -- Number of nonterminals. */
#define YYNNTS 39 #define YYNNTS 39
/* YYNRULES -- Number of rules. */ /* YYNRULES -- Number of rules. */
#define YYNRULES 130 #define YYNRULES 131
/* YYNRULES -- Number of states. */ /* YYNRULES -- Number of states. */
#define YYNSTATES 262 #define YYNSTATES 266
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2 #define YYUNDEFTOK 2
...@@ -490,10 +473,10 @@ static const yytype_uint16 yyprhs[] = ...@@ -490,10 +473,10 @@ static const yytype_uint16 yyprhs[] =
216, 218, 223, 226, 229, 231, 233, 235, 237, 239, 216, 218, 223, 226, 229, 231, 233, 235, 237, 239,
241, 244, 247, 250, 253, 258, 264, 268, 271, 273, 241, 244, 247, 250, 253, 258, 264, 268, 271, 273,
276, 280, 285, 287, 289, 291, 296, 301, 308, 318, 276, 280, 285, 287, 289, 291, 296, 301, 308, 318,
322, 326, 331, 337, 346, 348, 355, 361, 369, 370, 328, 332, 336, 341, 347, 356, 358, 365, 371, 379,
373, 376, 378, 380, 382, 384, 386, 389, 392, 395, 380, 383, 386, 388, 390, 392, 394, 396, 399, 402,
399, 401, 405, 409, 413, 417, 421, 426, 431, 435, 405, 409, 411, 415, 419, 423, 427, 431, 436, 441,
439 445, 449
}; };
/* YYRHS -- A `-1'-separated list of the rules' RHS. */ /* YYRHS -- A `-1'-separated list of the rules' RHS. */
...@@ -530,7 +513,8 @@ static const yytype_int8 yyrhs[] = ...@@ -530,7 +513,8 @@ static const yytype_int8 yyrhs[] =
9, 29, 9, 29, -1, 84, -1, 85, -1, 89, 9, 29, 9, 29, -1, 84, -1, 85, -1, 89,
-1, 89, 48, 34, 49, -1, 89, 48, 40, 49, -1, 89, 48, 34, 49, -1, 89, 48, 40, 49,
-1, 89, 48, 34, 10, 89, 49, -1, 89, 48, -1, 89, 48, 34, 10, 89, 49, -1, 89, 48,
34, 49, 48, 34, 10, 89, 49, -1, 48, 34, 34, 49, 48, 34, 10, 89, 49, -1, 89, 48,
34, 49, 48, 35, 10, 89, 49, -1, 48, 34,
49, -1, 48, 40, 49, -1, 89, 48, 35, 49, 49, -1, 48, 40, 49, -1, 89, 48, 35, 49,
-1, 48, 34, 10, 89, 49, -1, 48, 34, 49, -1, 48, 34, 10, 89, 49, -1, 48, 34, 49,
48, 34, 10, 89, 49, -1, 86, -1, 86, 48, 48, 34, 10, 89, 49, -1, 86, -1, 86, 48,
...@@ -559,10 +543,10 @@ static const yytype_uint16 yyrline[] = ...@@ -559,10 +543,10 @@ static const yytype_uint16 yyrline[] =
331, 334, 340, 349, 358, 363, 368, 373, 378, 383, 331, 334, 340, 349, 358, 363, 368, 373, 378, 383,
390, 396, 407, 413, 419, 425, 431, 439, 448, 453, 390, 396, 407, 413, 419, 425, 431, 439, 448, 453,
458, 463, 470, 471, 474, 480, 486, 492, 501, 510, 458, 463, 470, 471, 474, 480, 486, 492, 501, 510,
515, 520, 526, 534, 544, 548, 557, 564, 573, 576, 519, 524, 529, 535, 543, 553, 557, 566, 573, 582,
580, 586, 587, 591, 594, 595, 599, 603, 607, 611, 585, 589, 595, 596, 600, 603, 604, 608, 612, 616,
617, 618, 622, 626, 630, 634, 638, 642, 646, 650, 620, 626, 627, 631, 635, 639, 643, 647, 651, 655,
654 659, 663
}; };
#endif #endif
...@@ -577,12 +561,11 @@ static const char *const yytname[] = ...@@ -577,12 +561,11 @@ static const char *const yytname[] =
"LTYPEM", "LTYPEI", "LTYPEG", "LTYPEXC", "LTYPEX", "LCONST", "LFP", "LTYPEM", "LTYPEI", "LTYPEG", "LTYPEXC", "LTYPEX", "LCONST", "LFP",
"LPC", "LSB", "LBREG", "LLREG", "LSREG", "LFREG", "LXREG", "LFCONST", "LPC", "LSB", "LBREG", "LLREG", "LSREG", "LFREG", "LXREG", "LFCONST",
"LSCONST", "LSP", "LNAME", "LLAB", "LVAR", "':'", "';'", "'='", "','", "LSCONST", "LSP", "LNAME", "LLAB", "LVAR", "':'", "';'", "'='", "','",
"'('", "')'", "'$'", "'~'", "$accept", "prog", "$@1", "line", "$@2", "'('", "')'", "'$'", "'~'", "$accept", "prog", "@1", "line", "@2", "@3",
"$@3", "inst", "nonnon", "rimrem", "remrim", "rimnon", "nonrem", "inst", "nonnon", "rimrem", "remrim", "rimnon", "nonrem", "nonrel",
"nonrel", "spec1", "spec2", "spec3", "spec4", "spec5", "spec6", "spec7", "spec1", "spec2", "spec3", "spec4", "spec5", "spec6", "spec7", "spec8",
"spec8", "spec9", "spec10", "rem", "rom", "rim", "rel", "reg", "imm", "spec9", "spec10", "rem", "rom", "rim", "rel", "reg", "imm", "imm2",
"imm2", "con2", "mem", "omem", "nmem", "nam", "offset", "pointer", "con", "con2", "mem", "omem", "nmem", "nam", "offset", "pointer", "con", "expr", 0
"expr", 0
}; };
#endif #endif
...@@ -613,10 +596,10 @@ static const yytype_uint8 yyr1[] = ...@@ -613,10 +596,10 @@ static const yytype_uint8 yyr1[] =
77, 78, 78, 78, 79, 79, 79, 79, 79, 79, 77, 78, 78, 78, 79, 79, 79, 79, 79, 79,
80, 80, 80, 80, 80, 80, 80, 81, 82, 82, 80, 80, 80, 80, 80, 80, 80, 81, 82, 82,
82, 82, 83, 83, 84, 84, 84, 84, 84, 84, 82, 82, 83, 83, 84, 84, 84, 84, 84, 84,
84, 84, 84, 84, 85, 85, 86, 86, 87, 87, 84, 84, 84, 84, 84, 85, 85, 86, 86, 87,
87, 88, 88, 88, 89, 89, 89, 89, 89, 89, 87, 87, 88, 88, 88, 89, 89, 89, 89, 89,
90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 89, 90, 90, 90, 90, 90, 90, 90, 90, 90,
90 90, 90
}; };
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
...@@ -631,45 +614,45 @@ static const yytype_uint8 yyr2[] = ...@@ -631,45 +614,45 @@ static const yytype_uint8 yyr2[] =
1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1,
1, 4, 2, 2, 1, 1, 1, 1, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1, 1, 1,
2, 2, 2, 2, 4, 5, 3, 2, 1, 2, 2, 2, 2, 2, 4, 5, 3, 2, 1, 2,
3, 4, 1, 1, 1, 4, 4, 6, 9, 3, 3, 4, 1, 1, 1, 4, 4, 6, 9, 9,
3, 4, 5, 8, 1, 6, 5, 7, 0, 2, 3, 3, 4, 5, 8, 1, 6, 5, 7, 0,
2, 1, 1, 1, 1, 1, 2, 2, 2, 3, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2,
1, 3, 3, 3, 3, 3, 4, 4, 3, 3, 3, 1, 3, 3, 3, 3, 3, 4, 4, 3,
3 3, 3
}; };
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
Performed when YYTABLE doesn't specify something else to do. Zero STATE-NUM when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */ means the default is an error. */
static const yytype_uint8 yydefact[] = static const yytype_uint8 yydefact[] =
{ {
2, 3, 1, 0, 0, 30, 0, 0, 0, 0, 2, 3, 1, 0, 0, 30, 0, 0, 0, 0,
0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 9, 4, 0, 11, 31, 14, 0, 0, 0, 0, 9, 4, 0, 11, 31, 14,
0, 0, 114, 74, 76, 79, 75, 77, 78, 108, 0, 0, 115, 74, 76, 79, 75, 77, 78, 109,
115, 0, 0, 0, 15, 37, 60, 61, 92, 93, 116, 0, 0, 0, 15, 37, 60, 61, 92, 93,
104, 94, 0, 16, 69, 35, 70, 17, 0, 18, 105, 94, 0, 16, 69, 35, 70, 17, 0, 18,
0, 0, 108, 108, 0, 22, 45, 62, 66, 68, 0, 0, 109, 109, 0, 22, 45, 62, 66, 68,
67, 63, 94, 20, 0, 31, 47, 48, 23, 108, 67, 63, 94, 20, 0, 31, 47, 48, 23, 109,
0, 0, 19, 39, 0, 0, 21, 0, 24, 0, 0, 0, 19, 39, 0, 0, 21, 0, 24, 0,
25, 0, 26, 54, 27, 0, 28, 0, 29, 0, 25, 0, 26, 54, 27, 0, 28, 0, 29, 0,
7, 0, 5, 0, 10, 117, 116, 0, 0, 0, 7, 0, 5, 0, 10, 118, 117, 0, 0, 0,
0, 36, 0, 0, 120, 0, 118, 0, 0, 0, 0, 36, 0, 0, 121, 0, 119, 0, 0, 0,
83, 82, 0, 81, 80, 34, 0, 0, 64, 65, 83, 82, 0, 81, 80, 34, 0, 0, 64, 65,
46, 72, 73, 0, 44, 0, 0, 72, 38, 0, 46, 72, 73, 0, 44, 0, 0, 72, 38, 0,
0, 0, 0, 0, 53, 0, 0, 0, 0, 12, 0, 0, 0, 0, 53, 0, 0, 0, 0, 12,
0, 13, 108, 109, 110, 0, 0, 99, 100, 0, 0, 13, 109, 110, 111, 0, 0, 100, 101, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120,
0, 0, 0, 0, 86, 0, 0, 32, 33, 0, 0, 0, 0, 0, 86, 0, 0, 32, 33, 0,
0, 40, 0, 42, 0, 49, 51, 55, 56, 0, 0, 40, 0, 42, 0, 49, 51, 55, 56, 0,
0, 0, 8, 6, 0, 113, 111, 112, 0, 0, 0, 0, 8, 6, 0, 114, 112, 113, 0, 0,
0, 130, 129, 128, 0, 0, 121, 122, 123, 124, 0, 131, 130, 129, 0, 0, 122, 123, 124, 125,
125, 0, 0, 95, 101, 96, 0, 84, 71, 0, 126, 0, 0, 95, 102, 96, 0, 84, 71, 0,
0, 88, 87, 0, 0, 0, 0, 0, 0, 0, 0, 88, 87, 0, 0, 0, 0, 0, 0, 0,
106, 102, 0, 126, 127, 0, 0, 0, 85, 41, 107, 103, 0, 127, 128, 0, 0, 0, 85, 41,
89, 0, 43, 50, 52, 57, 58, 59, 0, 0, 89, 0, 43, 50, 52, 57, 58, 59, 0, 0,
105, 97, 0, 0, 90, 107, 0, 0, 91, 103, 106, 97, 0, 0, 0, 90, 108, 0, 0, 0,
0, 98 91, 104, 0, 0, 98, 99
}; };
/* YYDEFGOTO[NTERM-NUM]. */ /* YYDEFGOTO[NTERM-NUM]. */
...@@ -686,47 +669,48 @@ static const yytype_int16 yydefgoto[] = ...@@ -686,47 +669,48 @@ static const yytype_int16 yydefgoto[] =
#define YYPACT_NINF -100 #define YYPACT_NINF -100
static const yytype_int16 yypact[] = static const yytype_int16 yypact[] =
{ {
-100, 22, -100, 165, -32, -22, 263, 286, 286, 332, -100, 22, -100, 165, -32, -22, 265, 288, 288, 334,
195, -1, 309, 212, 414, 286, 286, 286, 414, 81, 195, -1, 311, 212, 416, 288, 288, 288, 416, 81,
7, -16, 24, -12, -100, -100, -4, -100, -100, -100, 7, -16, 24, -12, -100, -100, -4, -100, -100, -100,
485, 485, -100, -100, -100, -100, -100, -100, -100, 39, 469, 469, -100, -100, -100, -100, -100, -100, -100, 39,
-100, 332, 385, 485, -100, -100, -100, -100, -100, -100, -100, 334, 387, 469, -100, -100, -100, -100, -100, -100,
46, 65, 370, -100, -100, 72, -100, -100, 75, -100, 46, 65, 372, -100, -100, 72, -100, -100, 83, -100,
76, 332, 39, 102, 240, -100, -100, -100, -100, -100, 86, 334, 39, 102, 242, -100, -100, -100, -100, -100,
-100, -100, 77, -100, 117, 332, -100, -100, -100, 102, -100, -100, 77, -100, 117, 334, -100, -100, -100, 102,
408, 485, -100, -100, 83, 85, -100, 89, -100, 91, 410, 469, -100, -100, 89, 90, -100, 92, -100, 97,
-100, 92, -100, 97, -100, 98, -100, 100, -100, 101, -100, 98, -100, 100, -100, 101, -100, 105, -100, 106,
-100, 485, -100, 485, -100, -100, -100, 135, 485, 485, -100, 469, -100, 469, -100, -100, -100, 135, 469, 469,
104, -100, -6, 113, -100, 71, -100, 119, 32, 423, 114, -100, -6, 128, -100, 71, -100, 175, 32, 218,
-100, -100, 438, -100, -100, -100, 332, 286, -100, -100, -100, -100, 425, -100, -100, -100, 334, 288, -100, -100,
-100, 104, -100, 355, -100, 29, 485, -100, -100, 408, -100, 114, -100, 357, -100, 29, 469, -100, -100, 410,
146, 455, 332, 332, 332, 461, 332, 332, 165, 164, 181, 440, 334, 334, 334, 457, 334, 334, 165, 164,
165, 164, 102, -100, -100, 6, 485, 161, -100, 485, 165, 164, 102, -100, -100, 6, 469, 166, -100, 469,
485, 485, 206, 207, 485, 485, 485, 485, 485, -100, 469, 469, 207, 208, 469, 469, 469, 469, 469, -100,
203, 4, 166, 167, -100, 470, 173, -100, -100, 174, 206, 4, 173, 174, -100, 463, 176, -100, -100, 184,
178, -100, 15, -100, 179, 183, 189, -100, -100, 187, 187, -100, 15, -100, 193, 200, 213, -100, -100, 211,
193, 197, -100, -100, 204, -100, -100, -100, 202, 208, 217, 220, -100, -100, 222, -100, -100, -100, 216, 219,
222, 533, 541, 78, 485, 485, 95, 95, -100, -100, 238, 517, 525, 78, 469, 469, 95, 95, -100, -100,
-100, 485, 485, 210, -100, -100, 215, -100, -100, 7, -100, 469, 469, 232, -100, -100, 237, -100, -100, 7,
232, 256, -100, 216, 233, 235, 7, 485, 81, 236, 252, 278, -100, 239, 254, 256, 7, 469, 81, 263,
-100, -100, 268, 188, 188, 230, 237, 250, -100, -100, -100, -100, 293, 188, 188, 255, 258, 88, -100, -100,
276, 258, -100, -100, -100, -100, -100, -100, 244, 485, 300, 281, -100, -100, -100, -100, -100, -100, 262, 469,
-100, -100, 279, 272, -100, -100, 253, 485, -100, -100, -100, -100, 304, 305, 289, -100, -100, 277, 469, 469,
259, -100 -100, -100, 283, 284, -100, -100
}; };
/* YYPGOTO[NTERM-NUM]. */ /* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] = static const yytype_int16 yypgoto[] =
{ {
-100, -100, -100, -99, -100, -100, -100, 293, -100, -100, -100, -100, -100, -99, -100, -100, -100, 315, -100, -100,
-100, 295, -100, -100, -100, -100, -100, -100, -100, -100, -100, 318, -100, -100, -100, -100, -100, -100, -100, -100,
-100, -100, -100, 17, 245, 0, -7, -9, -8, 90, -100, -100, -100, 17, 270, 0, -7, -9, -8, 112,
-100, 13, 1, -3, -2, -44, -100, -10, -64 -100, 13, 1, -3, -2, -44, -100, -10, -64
}; };
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which positive, shift that token. If negative, reduce the rule which
number is the opposite. If YYTABLE_NINF, syntax error. */ number is the opposite. If zero, do what YYDEFACT says.
If YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -1 #define YYTABLE_NINF -1
static const yytype_uint16 yytable[] = static const yytype_uint16 yytable[] =
{ {
...@@ -742,58 +726,50 @@ static const yytype_uint16 yytable[] = ...@@ -742,58 +726,50 @@ static const yytype_uint16 yytable[] =
168, 114, 111, 114, 117, 201, 202, 203, 153, 154, 168, 114, 111, 114, 117, 201, 202, 203, 153, 154,
206, 207, 208, 209, 210, 166, 167, 168, 194, 106, 206, 207, 208, 209, 210, 166, 167, 168, 194, 106,
108, 109, 114, 118, 33, 34, 35, 36, 37, 125, 108, 109, 114, 118, 33, 34, 35, 36, 37, 125,
169, 38, 126, 127, 128, 135, 180, 178, 136, 85, 169, 38, 252, 253, 128, 135, 180, 178, 136, 85,
139, 184, 181, 140, 129, 189, 141, 188, 142, 143, 126, 184, 181, 127, 129, 189, 139, 188, 140, 141,
233, 234, 152, 177, 144, 145, 199, 146, 147, 114, 233, 234, 152, 177, 142, 143, 199, 144, 145, 114,
114, 114, 155, 170, 114, 114, 114, 114, 114, 185, 114, 114, 146, 147, 114, 114, 114, 114, 114, 185,
186, 187, 158, 190, 191, 106, 4, 159, 160, 161, 186, 187, 155, 190, 191, 106, 4, 159, 160, 161,
162, 163, 164, 165, 166, 167, 168, 179, 5, 6, 162, 163, 164, 165, 166, 167, 168, 158, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 114, 114, 164, 165, 166, 167, 17, 18, 19, 20, 114, 114, 164, 165, 166, 167,
168, 235, 236, 30, 31, 61, 21, 22, 23, 200, 168, 235, 236, 30, 31, 61, 21, 22, 23, 170,
24, 239, 204, 211, 205, 214, 215, 246, 245, 247, 24, 239, 179, 204, 200, 205, 211, 246, 245, 247,
30, 31, 217, 218, 32, 219, 223, 224, 33, 34, 30, 31, 214, 215, 32, 217, 30, 31, 33, 34,
35, 36, 37, 225, 226, 38, 62, 63, 40, 256, 35, 36, 37, 218, 219, 38, 62, 63, 40, 257,
227, 32, 64, 42, 228, 52, 43, 260, 30, 31, 223, 32, 64, 42, 224, 52, 43, 32, 262, 263,
133, 230, 229, 79, 63, 40, 232, 231, 237, 80, 30, 31, 133, 79, 63, 40, 174, 225, 226, 80,
81, 240, 52, 43, 238, 241, 182, 243, 248, 32, 81, 40, 52, 43, 227, 230, 81, 228, 231, 43,
244, 30, 31, 33, 34, 35, 36, 37, 249, 250, 229, 32, 232, 30, 31, 33, 34, 35, 36, 37,
38, 62, 63, 40, 252, 253, 251, 254, 42, 257, 237, 240, 38, 62, 63, 40, 238, 241, 243, 182,
52, 43, 32, 255, 30, 31, 33, 34, 35, 36, 42, 244, 52, 43, 32, 248, 30, 31, 33, 34,
37, 258, 259, 38, 39, 76, 40, 77, 261, 134, 35, 36, 37, 249, 250, 38, 39, 251, 40, 254,
41, 42, 0, 242, 43, 32, 0, 30, 31, 33, 255, 256, 41, 42, 258, 259, 43, 32, 260, 30,
34, 35, 36, 37, 0, 0, 38, 39, 0, 40, 31, 33, 34, 35, 36, 37, 261, 76, 38, 39,
0, 0, 0, 0, 42, 0, 52, 43, 32, 0, 77, 40, 264, 265, 134, 242, 42, 0, 52, 43,
30, 31, 33, 34, 35, 36, 37, 0, 0, 38, 32, 0, 30, 31, 33, 34, 35, 36, 37, 0,
39, 0, 40, 0, 0, 0, 75, 42, 0, 0, 0, 38, 39, 0, 40, 0, 0, 0, 75, 42,
43, 32, 0, 30, 31, 33, 34, 35, 36, 37, 0, 0, 43, 32, 0, 30, 31, 33, 34, 35,
0, 0, 38, 39, 0, 40, 0, 0, 30, 119, 36, 37, 0, 0, 38, 39, 0, 40, 0, 0,
42, 0, 0, 43, 32, 0, 0, 0, 33, 34, 30, 119, 42, 0, 0, 43, 32, 0, 0, 0,
35, 36, 37, 30, 31, 38, 0, 0, 40, 32, 33, 34, 35, 36, 37, 30, 31, 38, 0, 0,
0, 0, 0, 42, 0, 0, 43, 0, 120, 121, 40, 32, 0, 0, 0, 42, 0, 0, 43, 0,
0, 39, 0, 40, 32, 0, 30, 31, 122, 112, 120, 121, 0, 39, 0, 40, 32, 0, 30, 31,
0, 43, 30, 31, 0, 113, 0, 0, 40, 0, 122, 112, 0, 43, 30, 31, 0, 113, 0, 0,
0, 30, 31, 81, 0, 0, 43, 32, 0, 0, 40, 0, 0, 30, 175, 81, 0, 0, 43, 32,
0, 0, 0, 32, 0, 0, 30, 175, 0, 79, 0, 0, 0, 0, 0, 32, 0, 0, 30, 31,
63, 40, 32, 0, 0, 39, 81, 40, 0, 43, 0, 79, 63, 40, 32, 0, 0, 39, 81, 40,
0, 174, 42, 30, 31, 43, 40, 32, 0, 30, 0, 43, 0, 176, 42, 30, 31, 43, 40, 32,
31, 81, 0, 0, 43, 0, 176, 0, 30, 31, 0, 30, 31, 81, 0, 0, 43, 30, 31, 0,
0, 40, 0, 0, 32, 0, 81, 0, 0, 43, 0, 0, 0, 40, 0, 0, 32, 0, 81, 0,
32, 0, 0, 30, 31, 0, 0, 0, 40, 32, 182, 43, 32, 0, 0, 0, 0, 0, 32, 0,
0, 0, 0, 81, 40, 182, 43, 0, 216, 81, 40, 216, 0, 0, 0, 81, 40, 52, 43, 0,
0, 52, 43, 40, 32, 0, 0, 0, 81, 0, 0, 81, 40, 0, 43, 0, 0, 81, 0, 0,
0, 43, 0, 0, 0, 0, 0, 0, 40, 0, 43, 160, 161, 162, 163, 164, 165, 166, 167, 168,
0, 0, 0, 81, 0, 0, 43, 160, 161, 162, 161, 162, 163, 164, 165, 166, 167, 168
163, 164, 165, 166, 167, 168, 161, 162, 163, 164,
165, 166, 167, 168
}; };
#define yypact_value_is_default(yystate) \
((yystate) == (-100))
#define yytable_value_is_error(yytable_value) \
YYID (0)
static const yytype_int16 yycheck[] = static const yytype_int16 yycheck[] =
{ {
10, 10, 10, 13, 10, 13, 13, 10, 8, 11, 10, 10, 10, 13, 10, 13, 13, 10, 8, 11,
...@@ -808,50 +784,48 @@ static const yytype_int16 yycheck[] = ...@@ -808,50 +784,48 @@ static const yytype_int16 yycheck[] =
12, 101, 75, 103, 48, 159, 160, 161, 108, 109, 12, 101, 75, 103, 48, 159, 160, 161, 108, 109,
164, 165, 166, 167, 168, 10, 11, 12, 152, 119, 164, 165, 166, 167, 168, 10, 11, 12, 152, 119,
8, 9, 122, 48, 33, 34, 35, 36, 37, 47, 8, 9, 122, 48, 33, 34, 35, 36, 37, 47,
49, 40, 47, 47, 133, 48, 136, 127, 11, 139, 49, 40, 34, 35, 133, 48, 136, 127, 11, 139,
47, 141, 139, 48, 133, 145, 47, 145, 47, 47, 47, 141, 139, 47, 133, 145, 47, 145, 48, 47,
204, 205, 7, 126, 47, 47, 156, 47, 47, 159, 204, 205, 7, 126, 47, 47, 156, 47, 47, 159,
160, 161, 48, 34, 164, 165, 166, 167, 168, 142, 160, 161, 47, 47, 164, 165, 166, 167, 168, 142,
143, 144, 49, 146, 147, 175, 1, 3, 4, 5, 143, 144, 48, 146, 147, 175, 1, 3, 4, 5,
6, 7, 8, 9, 10, 11, 12, 31, 13, 14, 6, 7, 8, 9, 10, 11, 12, 49, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 204, 205, 8, 9, 10, 11, 25, 26, 27, 28, 204, 205, 8, 9, 10, 11,
12, 211, 212, 8, 9, 10, 41, 42, 43, 48, 12, 211, 212, 8, 9, 10, 41, 42, 43, 34,
45, 219, 6, 10, 7, 49, 49, 227, 226, 228, 45, 219, 31, 6, 48, 7, 10, 227, 226, 228,
8, 9, 49, 49, 29, 47, 47, 44, 33, 34, 8, 9, 49, 49, 29, 49, 8, 9, 33, 34,
35, 36, 37, 44, 47, 40, 41, 42, 43, 249, 35, 36, 37, 49, 47, 40, 41, 42, 43, 249,
47, 29, 47, 48, 47, 50, 51, 257, 8, 9, 47, 29, 47, 48, 44, 50, 51, 29, 258, 259,
10, 49, 48, 41, 42, 43, 34, 49, 48, 47, 8, 9, 10, 41, 42, 43, 38, 44, 47, 47,
48, 29, 50, 51, 49, 9, 50, 34, 32, 29, 48, 43, 50, 51, 47, 49, 48, 47, 49, 51,
35, 8, 9, 33, 34, 35, 36, 37, 10, 49, 48, 29, 34, 8, 9, 33, 34, 35, 36, 37,
40, 41, 42, 43, 34, 9, 49, 29, 48, 10, 48, 29, 40, 41, 42, 43, 49, 9, 34, 50,
50, 51, 29, 49, 8, 9, 33, 34, 35, 36, 48, 35, 50, 51, 29, 32, 8, 9, 33, 34,
37, 29, 49, 40, 41, 12, 43, 12, 49, 64, 35, 36, 37, 10, 49, 40, 41, 49, 43, 9,
47, 48, -1, 223, 51, 29, -1, 8, 9, 33, 29, 49, 47, 48, 10, 10, 51, 29, 29, 8,
34, 35, 36, 37, -1, -1, 40, 41, -1, 43, 9, 33, 34, 35, 36, 37, 49, 12, 40, 41,
-1, -1, -1, -1, 48, -1, 50, 51, 29, -1, 12, 43, 49, 49, 64, 223, 48, -1, 50, 51,
8, 9, 33, 34, 35, 36, 37, -1, -1, 40, 29, -1, 8, 9, 33, 34, 35, 36, 37, -1,
41, -1, 43, -1, -1, -1, 47, 48, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, 47, 48,
51, 29, -1, 8, 9, 33, 34, 35, 36, 37, -1, -1, 51, 29, -1, 8, 9, 33, 34, 35,
-1, -1, 40, 41, -1, 43, -1, -1, 8, 9, 36, 37, -1, -1, 40, 41, -1, 43, -1, -1,
48, -1, -1, 51, 29, -1, -1, -1, 33, 34, 8, 9, 48, -1, -1, 51, 29, -1, -1, -1,
35, 36, 37, 8, 9, 40, -1, -1, 43, 29, 33, 34, 35, 36, 37, 8, 9, 40, -1, -1,
-1, -1, -1, 48, -1, -1, 51, -1, 38, 39, 43, 29, -1, -1, -1, 48, -1, -1, 51, -1,
-1, 41, -1, 43, 29, -1, 8, 9, 48, 34, 38, 39, -1, 41, -1, 43, 29, -1, 8, 9,
-1, 51, 8, 9, -1, 40, -1, -1, 43, -1, 48, 34, -1, 51, 8, 9, -1, 40, -1, -1,
-1, 8, 9, 48, -1, -1, 51, 29, -1, -1, 43, -1, -1, 8, 9, 48, -1, -1, 51, 29,
-1, -1, -1, 29, -1, -1, 8, 9, -1, 41, -1, -1, -1, -1, -1, 29, -1, -1, 8, 9,
42, 43, 29, -1, -1, 41, 48, 43, -1, 51, -1, 41, 42, 43, 29, -1, -1, 41, 48, 43,
-1, 38, 48, 8, 9, 51, 43, 29, -1, 8, -1, 51, -1, 38, 48, 8, 9, 51, 43, 29,
9, 48, -1, -1, 51, -1, 38, -1, 8, 9, -1, 8, 9, 48, -1, -1, 51, 8, 9, -1,
-1, 43, -1, -1, 29, -1, 48, -1, -1, 51, -1, -1, -1, 43, -1, -1, 29, -1, 48, -1,
29, -1, -1, 8, 9, -1, -1, -1, 43, 29, 50, 51, 29, -1, -1, -1, -1, -1, 29, -1,
-1, -1, -1, 48, 43, 50, 51, -1, 38, 48, 43, 38, -1, -1, -1, 48, 43, 50, 51, -1,
-1, 50, 51, 43, 29, -1, -1, -1, 48, -1, -1, 48, 43, -1, 51, -1, -1, 48, -1, -1,
-1, 51, -1, -1, -1, -1, -1, -1, 43, -1, 51, 4, 5, 6, 7, 8, 9, 10, 11, 12,
-1, -1, -1, 48, -1, -1, 51, 4, 5, 6, 5, 6, 7, 8, 9, 10, 11, 12
7, 8, 9, 10, 11, 12, 5, 6, 7, 8,
9, 10, 11, 12
}; };
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
...@@ -883,8 +857,8 @@ static const yytype_uint8 yystos[] = ...@@ -883,8 +857,8 @@ static const yytype_uint8 yystos[] =
9, 29, 82, 47, 44, 44, 47, 47, 47, 48, 9, 29, 82, 47, 44, 44, 47, 47, 47, 48,
49, 49, 34, 90, 90, 89, 89, 48, 49, 80, 49, 49, 34, 90, 90, 89, 89, 48, 49, 80,
29, 9, 81, 34, 35, 80, 89, 79, 32, 10, 29, 9, 81, 34, 35, 80, 89, 79, 32, 10,
49, 49, 34, 9, 29, 49, 89, 10, 29, 49, 49, 49, 34, 35, 9, 29, 49, 89, 10, 10,
89, 49 29, 49, 89, 89, 49, 49
}; };
#define yyerrok (yyerrstatus = 0) #define yyerrok (yyerrstatus = 0)
...@@ -899,18 +873,9 @@ static const yytype_uint8 yystos[] = ...@@ -899,18 +873,9 @@ static const yytype_uint8 yystos[] =
/* Like YYERROR except do call yyerror. This remains here temporarily /* Like YYERROR except do call yyerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC. to ease the transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. However, Once GCC version 2 has supplanted version 1, this can go. */
YYFAIL appears to be in use. Nevertheless, it is formally deprecated
in Bison 2.4.2's NEWS entry, where a plan to phase it out is
discussed. */
#define YYFAIL goto yyerrlab #define YYFAIL goto yyerrlab
#if defined YYFAIL
/* This is here to suppress warnings from the GCC cpp's
-Wunused-macros. Normally we don't worry about that warning, but
some users do, and we want to make it easy for users to remove
YYFAIL uses, which will produce warnings from Bison 2.5. */
#endif
#define YYRECOVERING() (!!yyerrstatus) #define YYRECOVERING() (!!yyerrstatus)
...@@ -920,6 +885,7 @@ do \ ...@@ -920,6 +885,7 @@ do \
{ \ { \
yychar = (Token); \ yychar = (Token); \
yylval = (Value); \ yylval = (Value); \
yytoken = YYTRANSLATE (yychar); \
YYPOPSTACK (1); \ YYPOPSTACK (1); \
goto yybackup; \ goto yybackup; \
} \ } \
...@@ -961,10 +927,19 @@ while (YYID (0)) ...@@ -961,10 +927,19 @@ while (YYID (0))
#endif #endif
/* This macro is provided for backward compatibility. */ /* YY_LOCATION_PRINT -- Print the location on the stream.
This macro was not mandated originally: define only if we know
we won't break user code: when these are the locations we know. */
#ifndef YY_LOCATION_PRINT #ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0) # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
# define YY_LOCATION_PRINT(File, Loc) \
fprintf (File, "%d.%d-%d.%d", \
(Loc).first_line, (Loc).first_column, \
(Loc).last_line, (Loc).last_column)
# else
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
# endif
#endif #endif
...@@ -1068,20 +1043,17 @@ yy_symbol_print (yyoutput, yytype, yyvaluep) ...@@ -1068,20 +1043,17 @@ yy_symbol_print (yyoutput, yytype, yyvaluep)
#if (defined __STDC__ || defined __C99__FUNC__ \ #if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER) || defined __cplusplus || defined _MSC_VER)
static void static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
#else #else
static void static void
yy_stack_print (yybottom, yytop) yy_stack_print (bottom, top)
yytype_int16 *yybottom; yytype_int16 *bottom;
yytype_int16 *yytop; yytype_int16 *top;
#endif #endif
{ {
YYFPRINTF (stderr, "Stack now"); YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++) for (; bottom <= top; ++bottom)
{ YYFPRINTF (stderr, " %d", *bottom);
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n"); YYFPRINTF (stderr, "\n");
} }
...@@ -1115,11 +1087,11 @@ yy_reduce_print (yyvsp, yyrule) ...@@ -1115,11 +1087,11 @@ yy_reduce_print (yyvsp, yyrule)
/* The symbols being reduced. */ /* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++) for (yyi = 0; yyi < yynrhs; yyi++)
{ {
YYFPRINTF (stderr, " $%d = ", yyi + 1); fprintf (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
&(yyvsp[(yyi + 1) - (yynrhs)]) &(yyvsp[(yyi + 1) - (yynrhs)])
); );
YYFPRINTF (stderr, "\n"); fprintf (stderr, "\n");
} }
} }
...@@ -1156,6 +1128,7 @@ int yydebug; ...@@ -1156,6 +1128,7 @@ int yydebug;
# define YYMAXDEPTH 10000 # define YYMAXDEPTH 10000
#endif #endif
#if YYERROR_VERBOSE #if YYERROR_VERBOSE
...@@ -1258,142 +1231,115 @@ yytnamerr (char *yyres, const char *yystr) ...@@ -1258,142 +1231,115 @@ yytnamerr (char *yyres, const char *yystr)
} }
# endif # endif
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message /* Copy into YYRESULT an error message about the unexpected token
about the unexpected token YYTOKEN for the state stack whose top is YYCHAR while in state YYSTATE. Return the number of bytes copied,
YYSSP. including the terminating null byte. If YYRESULT is null, do not
copy anything; just return the number of bytes that would be
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is copied. As a special case, return 0 if an ordinary "syntax error"
not large enough to hold the message. In that case, also set message will do. Return YYSIZE_MAXIMUM if overflow occurs during
*YYMSG_ALLOC to the required number of bytes. Return 2 if the size calculation. */
required number of bytes is too large to store. */ static YYSIZE_T
static int yysyntax_error (char *yyresult, int yystate, int yychar)
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
yytype_int16 *yyssp, int yytoken)
{ {
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); int yyn = yypact[yystate];
YYSIZE_T yysize = yysize0;
YYSIZE_T yysize1;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = 0;
/* Arguments of yyformat. */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
/* Number of reported tokens (one for the "unexpected", one per
"expected"). */
int yycount = 0;
/* There are many possibilities here to consider:
- Assume YYFAIL is not used. It's too flawed to consider. See
<http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
for details. YYERROR is fine as it does not invoke this
function.
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yytoken != YYEMPTY)
{
int yyn = yypact[*yyssp];
yyarg[yycount++] = yytname[yytoken];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
break;
}
yyarg[yycount++] = yytname[yyx];
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
if (! (yysize <= yysize1
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2;
yysize = yysize1;
}
}
}
switch (yycount) if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
{ return 0;
# define YYCASE_(N, S) \ else
case N: \ {
yyformat = S; \ int yytype = YYTRANSLATE (yychar);
break YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
YYCASE_(0, YY_("syntax error")); YYSIZE_T yysize = yysize0;
YYCASE_(1, YY_("syntax error, unexpected %s")); YYSIZE_T yysize1;
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); int yysize_overflow = 0;
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); int yyx;
# undef YYCASE_
} # if 0
/* This is so xgettext sees the translatable formats that are
constructed on the fly. */
YY_("syntax error, unexpected %s");
YY_("syntax error, unexpected %s, expecting %s");
YY_("syntax error, unexpected %s, expecting %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
# endif
char *yyfmt;
char const *yyf;
static char const yyunexpected[] = "syntax error, unexpected %s";
static char const yyexpecting[] = ", expecting %s";
static char const yyor[] = " or %s";
char yyformat[sizeof yyunexpected
+ sizeof yyexpecting - 1
+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
* (sizeof yyor - 1))];
char const *yyprefix = yyexpecting;
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yycount = 1;
yyarg[0] = yytname[yytype];
yyfmt = yystpcpy (yyformat, yyunexpected);
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
yyformat[sizeof yyunexpected - 1] = '\0';
break;
}
yyarg[yycount++] = yytname[yyx];
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
yysize_overflow |= (yysize1 < yysize);
yysize = yysize1;
yyfmt = yystpcpy (yyfmt, yyprefix);
yyprefix = yyor;
}
yysize1 = yysize + yystrlen (yyformat); yyf = YY_(yyformat);
if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) yysize1 = yysize + yystrlen (yyf);
return 2; yysize_overflow |= (yysize1 < yysize);
yysize = yysize1; yysize = yysize1;
if (*yymsg_alloc < yysize) if (yysize_overflow)
{ return YYSIZE_MAXIMUM;
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return 1;
}
/* Avoid sprintf, as that infringes on the user's name space. if (yyresult)
Don't have undefined behavior even if the translation {
produced a string with the wrong number of "%s"s. */ /* Avoid sprintf, as that infringes on the user's name space.
{ Don't have undefined behavior even if the translation
char *yyp = *yymsg; produced a string with the wrong number of "%s"s. */
int yyi = 0; char *yyp = yyresult;
while ((*yyp = *yyformat) != '\0') int yyi = 0;
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) while ((*yyp = *yyf) != '\0')
{ {
yyp += yytnamerr (yyp, yyarg[yyi++]); if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
yyformat += 2; {
} yyp += yytnamerr (yyp, yyarg[yyi++]);
else yyf += 2;
{ }
yyp++; else
yyformat++; {
} yyp++;
} yyf++;
return 0; }
}
}
return yysize;
}
} }
#endif /* YYERROR_VERBOSE */ #endif /* YYERROR_VERBOSE */
/*-----------------------------------------------. /*-----------------------------------------------.
| Release the memory associated to this symbol. | | Release the memory associated to this symbol. |
...@@ -1425,9 +1371,10 @@ yydestruct (yymsg, yytype, yyvaluep) ...@@ -1425,9 +1371,10 @@ yydestruct (yymsg, yytype, yyvaluep)
break; break;
} }
} }
/* Prevent warnings from -Wmissing-prototypes. */ /* Prevent warnings from -Wmissing-prototypes. */
#ifdef YYPARSE_PARAM #ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus #if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM); int yyparse (void *YYPARSE_PARAM);
...@@ -1443,16 +1390,18 @@ int yyparse (); ...@@ -1443,16 +1390,18 @@ int yyparse ();
#endif /* ! YYPARSE_PARAM */ #endif /* ! YYPARSE_PARAM */
/* The lookahead symbol. */
/* The look-ahead symbol. */
int yychar; int yychar;
/* The semantic value of the lookahead symbol. */ /* The semantic value of the look-ahead symbol. */
YYSTYPE yylval; YYSTYPE yylval;
/* Number of syntax errors so far. */ /* Number of syntax errors so far. */
int yynerrs; int yynerrs;
/*----------. /*----------.
| yyparse. | | yyparse. |
`----------*/ `----------*/
...@@ -1479,37 +1428,14 @@ yyparse () ...@@ -1479,37 +1428,14 @@ yyparse ()
#endif #endif
#endif #endif
{ {
int yystate;
/* Number of tokens to shift before error messages enabled. */ int yystate;
int yyerrstatus;
/* The stacks and their tools:
`yyss': related to states.
`yyvs': related to semantic values.
Refer to the stacks thru separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
YYSIZE_T yystacksize;
int yyn; int yyn;
int yyresult; int yyresult;
/* Lookahead token as an internal (translated) token number. */ /* Number of tokens to shift before error messages enabled. */
int yytoken; int yyerrstatus;
/* The variables used to return semantic value and location from the /* Look-ahead token as an internal (translated) token number. */
action routines. */ int yytoken = 0;
YYSTYPE yyval;
#if YYERROR_VERBOSE #if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */ /* Buffer for error messages, and its allocated size. */
char yymsgbuf[128]; char yymsgbuf[128];
...@@ -1517,28 +1443,51 @@ yyparse () ...@@ -1517,28 +1443,51 @@ yyparse ()
YYSIZE_T yymsg_alloc = sizeof yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif #endif
/* Three stacks and their tools:
`yyss': related to states,
`yyvs': related to semantic values,
`yyls': related to locations.
Refer to the stacks thru separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss = yyssa;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
YYSIZE_T yystacksize = YYINITDEPTH;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
/* The number of symbols on the RHS of the reduced rule. /* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */ Keep to zero when no symbol should be popped. */
int yylen = 0; int yylen = 0;
yytoken = 0;
yyss = yyssa;
yyvs = yyvsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n")); YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0; yystate = 0;
yyerrstatus = 0; yyerrstatus = 0;
yynerrs = 0; yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */ yychar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers. /* Initialize stack pointers.
Waste one element of value and location stack Waste one element of value and location stack
so that they stay on the same level as the state stack. so that they stay on the same level as the state stack.
The wasted elements are never initialized. */ The wasted elements are never initialized. */
yyssp = yyss; yyssp = yyss;
yyvsp = yyvs; yyvsp = yyvs;
...@@ -1568,6 +1517,7 @@ yyparse () ...@@ -1568,6 +1517,7 @@ yyparse ()
YYSTYPE *yyvs1 = yyvs; YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss; yytype_int16 *yyss1 = yyss;
/* Each stack pointer address is followed by the size of the /* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might conditional around just the two extra args, but that might
...@@ -1575,6 +1525,7 @@ yyparse () ...@@ -1575,6 +1525,7 @@ yyparse ()
yyoverflow (YY_("memory exhausted"), yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp), &yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp), &yyvs1, yysize * sizeof (*yyvsp),
&yystacksize); &yystacksize);
yyss = yyss1; yyss = yyss1;
...@@ -1597,8 +1548,9 @@ yyparse () ...@@ -1597,8 +1548,9 @@ yyparse ()
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr) if (! yyptr)
goto yyexhaustedlab; goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs); YYSTACK_RELOCATE (yyvs);
# undef YYSTACK_RELOCATE # undef YYSTACK_RELOCATE
if (yyss1 != yyssa) if (yyss1 != yyssa)
YYSTACK_FREE (yyss1); YYSTACK_FREE (yyss1);
...@@ -1609,6 +1561,7 @@ yyparse () ...@@ -1609,6 +1561,7 @@ yyparse ()
yyssp = yyss + yysize - 1; yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1; yyvsp = yyvs + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n", YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long int) yystacksize)); (unsigned long int) yystacksize));
...@@ -1618,9 +1571,6 @@ yyparse () ...@@ -1618,9 +1571,6 @@ yyparse ()
YYDPRINTF ((stderr, "Entering state %d\n", yystate)); YYDPRINTF ((stderr, "Entering state %d\n", yystate));
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup; goto yybackup;
/*-----------. /*-----------.
...@@ -1629,16 +1579,16 @@ yyparse () ...@@ -1629,16 +1579,16 @@ yyparse ()
yybackup: yybackup:
/* Do appropriate processing given the current state. Read a /* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */ look-ahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */ /* First try to decide what to do without reference to look-ahead token. */
yyn = yypact[yystate]; yyn = yypact[yystate];
if (yypact_value_is_default (yyn)) if (yyn == YYPACT_NINF)
goto yydefault; goto yydefault;
/* Not known => get a lookahead token if don't already have one. */ /* Not known => get a look-ahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
if (yychar == YYEMPTY) if (yychar == YYEMPTY)
{ {
YYDPRINTF ((stderr, "Reading a token: ")); YYDPRINTF ((stderr, "Reading a token: "));
...@@ -1664,22 +1614,26 @@ yybackup: ...@@ -1664,22 +1614,26 @@ yybackup:
yyn = yytable[yyn]; yyn = yytable[yyn];
if (yyn <= 0) if (yyn <= 0)
{ {
if (yytable_value_is_error (yyn)) if (yyn == 0 || yyn == YYTABLE_NINF)
goto yyerrlab; goto yyerrlab;
yyn = -yyn; yyn = -yyn;
goto yyreduce; goto yyreduce;
} }
if (yyn == YYFINAL)
YYACCEPT;
/* Count tokens shifted since error; after three, turn off error /* Count tokens shifted since error; after three, turn off error
status. */ status. */
if (yyerrstatus) if (yyerrstatus)
yyerrstatus--; yyerrstatus--;
/* Shift the lookahead token. */ /* Shift the look-ahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token. */ /* Discard the shifted token unless it is eof. */
yychar = YYEMPTY; if (yychar != YYEOF)
yychar = YYEMPTY;
yystate = yyn; yystate = yyn;
*++yyvsp = yylval; *++yyvsp = yylval;
...@@ -1719,8 +1673,6 @@ yyreduce: ...@@ -1719,8 +1673,6 @@ yyreduce:
switch (yyn) switch (yyn)
{ {
case 3: case 3:
/* Line 1806 of yacc.c */
#line 70 "a.y" #line 70 "a.y"
{ {
stmtline = lineno; stmtline = lineno;
...@@ -1728,8 +1680,6 @@ yyreduce: ...@@ -1728,8 +1680,6 @@ yyreduce:
break; break;
case 5: case 5:
/* Line 1806 of yacc.c */
#line 77 "a.y" #line 77 "a.y"
{ {
if((yyvsp[(1) - (2)].sym)->value != pc) if((yyvsp[(1) - (2)].sym)->value != pc)
...@@ -1739,8 +1689,6 @@ yyreduce: ...@@ -1739,8 +1689,6 @@ yyreduce:
break; break;
case 7: case 7:
/* Line 1806 of yacc.c */
#line 84 "a.y" #line 84 "a.y"
{ {
(yyvsp[(1) - (2)].sym)->type = LLAB; (yyvsp[(1) - (2)].sym)->type = LLAB;
...@@ -1749,8 +1697,6 @@ yyreduce: ...@@ -1749,8 +1697,6 @@ yyreduce:
break; break;
case 12: case 12:
/* Line 1806 of yacc.c */
#line 95 "a.y" #line 95 "a.y"
{ {
(yyvsp[(1) - (3)].sym)->type = LVAR; (yyvsp[(1) - (3)].sym)->type = LVAR;
...@@ -1759,8 +1705,6 @@ yyreduce: ...@@ -1759,8 +1705,6 @@ yyreduce:
break; break;
case 13: case 13:
/* Line 1806 of yacc.c */
#line 100 "a.y" #line 100 "a.y"
{ {
if((yyvsp[(1) - (3)].sym)->value != (yyvsp[(3) - (3)].lval)) if((yyvsp[(1) - (3)].sym)->value != (yyvsp[(3) - (3)].lval))
...@@ -1770,120 +1714,86 @@ yyreduce: ...@@ -1770,120 +1714,86 @@ yyreduce:
break; break;
case 14: case 14:
/* Line 1806 of yacc.c */
#line 105 "a.y" #line 105 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 15: case 15:
/* Line 1806 of yacc.c */
#line 106 "a.y" #line 106 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 16: case 16:
/* Line 1806 of yacc.c */
#line 107 "a.y" #line 107 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 17: case 17:
/* Line 1806 of yacc.c */
#line 108 "a.y" #line 108 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 18: case 18:
/* Line 1806 of yacc.c */
#line 109 "a.y" #line 109 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 19: case 19:
/* Line 1806 of yacc.c */
#line 110 "a.y" #line 110 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 20: case 20:
/* Line 1806 of yacc.c */
#line 111 "a.y" #line 111 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 21: case 21:
/* Line 1806 of yacc.c */
#line 112 "a.y" #line 112 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 22: case 22:
/* Line 1806 of yacc.c */
#line 113 "a.y" #line 113 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 23: case 23:
/* Line 1806 of yacc.c */
#line 114 "a.y" #line 114 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 24: case 24:
/* Line 1806 of yacc.c */
#line 115 "a.y" #line 115 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 25: case 25:
/* Line 1806 of yacc.c */
#line 116 "a.y" #line 116 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 26: case 26:
/* Line 1806 of yacc.c */
#line 117 "a.y" #line 117 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 27: case 27:
/* Line 1806 of yacc.c */
#line 118 "a.y" #line 118 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 28: case 28:
/* Line 1806 of yacc.c */
#line 119 "a.y" #line 119 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 29: case 29:
/* Line 1806 of yacc.c */
#line 120 "a.y" #line 120 "a.y"
{ outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); } { outcode((yyvsp[(1) - (2)].lval), &(yyvsp[(2) - (2)].gen2)); }
break; break;
case 30: case 30:
/* Line 1806 of yacc.c */
#line 123 "a.y" #line 123 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1892,8 +1802,6 @@ yyreduce: ...@@ -1892,8 +1802,6 @@ yyreduce:
break; break;
case 31: case 31:
/* Line 1806 of yacc.c */
#line 128 "a.y" #line 128 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1902,8 +1810,6 @@ yyreduce: ...@@ -1902,8 +1810,6 @@ yyreduce:
break; break;
case 32: case 32:
/* Line 1806 of yacc.c */
#line 135 "a.y" #line 135 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -1912,8 +1818,6 @@ yyreduce: ...@@ -1912,8 +1818,6 @@ yyreduce:
break; break;
case 33: case 33:
/* Line 1806 of yacc.c */
#line 142 "a.y" #line 142 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -1922,8 +1826,6 @@ yyreduce: ...@@ -1922,8 +1826,6 @@ yyreduce:
break; break;
case 34: case 34:
/* Line 1806 of yacc.c */
#line 149 "a.y" #line 149 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (2)].gen); (yyval.gen2).from = (yyvsp[(1) - (2)].gen);
...@@ -1932,8 +1834,6 @@ yyreduce: ...@@ -1932,8 +1834,6 @@ yyreduce:
break; break;
case 35: case 35:
/* Line 1806 of yacc.c */
#line 154 "a.y" #line 154 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (1)].gen); (yyval.gen2).from = (yyvsp[(1) - (1)].gen);
...@@ -1942,8 +1842,6 @@ yyreduce: ...@@ -1942,8 +1842,6 @@ yyreduce:
break; break;
case 36: case 36:
/* Line 1806 of yacc.c */
#line 161 "a.y" #line 161 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1952,8 +1850,6 @@ yyreduce: ...@@ -1952,8 +1850,6 @@ yyreduce:
break; break;
case 37: case 37:
/* Line 1806 of yacc.c */
#line 166 "a.y" #line 166 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1962,8 +1858,6 @@ yyreduce: ...@@ -1962,8 +1858,6 @@ yyreduce:
break; break;
case 38: case 38:
/* Line 1806 of yacc.c */
#line 173 "a.y" #line 173 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1972,8 +1866,6 @@ yyreduce: ...@@ -1972,8 +1866,6 @@ yyreduce:
break; break;
case 39: case 39:
/* Line 1806 of yacc.c */
#line 178 "a.y" #line 178 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -1982,8 +1874,6 @@ yyreduce: ...@@ -1982,8 +1874,6 @@ yyreduce:
break; break;
case 40: case 40:
/* Line 1806 of yacc.c */
#line 183 "a.y" #line 183 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -1992,8 +1882,6 @@ yyreduce: ...@@ -1992,8 +1882,6 @@ yyreduce:
break; break;
case 41: case 41:
/* Line 1806 of yacc.c */
#line 190 "a.y" #line 190 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2003,8 +1891,6 @@ yyreduce: ...@@ -2003,8 +1891,6 @@ yyreduce:
break; break;
case 42: case 42:
/* Line 1806 of yacc.c */
#line 198 "a.y" #line 198 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -2013,8 +1899,6 @@ yyreduce: ...@@ -2013,8 +1899,6 @@ yyreduce:
break; break;
case 43: case 43:
/* Line 1806 of yacc.c */
#line 203 "a.y" #line 203 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2024,8 +1908,6 @@ yyreduce: ...@@ -2024,8 +1908,6 @@ yyreduce:
break; break;
case 44: case 44:
/* Line 1806 of yacc.c */
#line 211 "a.y" #line 211 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -2034,8 +1916,6 @@ yyreduce: ...@@ -2034,8 +1916,6 @@ yyreduce:
break; break;
case 45: case 45:
/* Line 1806 of yacc.c */
#line 216 "a.y" #line 216 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -2044,8 +1924,6 @@ yyreduce: ...@@ -2044,8 +1924,6 @@ yyreduce:
break; break;
case 46: case 46:
/* Line 1806 of yacc.c */
#line 221 "a.y" #line 221 "a.y"
{ {
(yyval.gen2).from = nullgen; (yyval.gen2).from = nullgen;
...@@ -2056,8 +1934,6 @@ yyreduce: ...@@ -2056,8 +1934,6 @@ yyreduce:
break; break;
case 49: case 49:
/* Line 1806 of yacc.c */
#line 234 "a.y" #line 234 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -2066,8 +1942,6 @@ yyreduce: ...@@ -2066,8 +1942,6 @@ yyreduce:
break; break;
case 50: case 50:
/* Line 1806 of yacc.c */
#line 239 "a.y" #line 239 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2079,8 +1953,6 @@ yyreduce: ...@@ -2079,8 +1953,6 @@ yyreduce:
break; break;
case 51: case 51:
/* Line 1806 of yacc.c */
#line 249 "a.y" #line 249 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -2089,8 +1961,6 @@ yyreduce: ...@@ -2089,8 +1961,6 @@ yyreduce:
break; break;
case 52: case 52:
/* Line 1806 of yacc.c */
#line 254 "a.y" #line 254 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2102,8 +1972,6 @@ yyreduce: ...@@ -2102,8 +1972,6 @@ yyreduce:
break; break;
case 53: case 53:
/* Line 1806 of yacc.c */
#line 264 "a.y" #line 264 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (2)].gen); (yyval.gen2).from = (yyvsp[(1) - (2)].gen);
...@@ -2112,8 +1980,6 @@ yyreduce: ...@@ -2112,8 +1980,6 @@ yyreduce:
break; break;
case 54: case 54:
/* Line 1806 of yacc.c */
#line 269 "a.y" #line 269 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (1)].gen); (yyval.gen2).from = (yyvsp[(1) - (1)].gen);
...@@ -2122,8 +1988,6 @@ yyreduce: ...@@ -2122,8 +1988,6 @@ yyreduce:
break; break;
case 55: case 55:
/* Line 1806 of yacc.c */
#line 274 "a.y" #line 274 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -2132,8 +1996,6 @@ yyreduce: ...@@ -2132,8 +1996,6 @@ yyreduce:
break; break;
case 56: case 56:
/* Line 1806 of yacc.c */
#line 281 "a.y" #line 281 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (3)].gen); (yyval.gen2).from = (yyvsp[(1) - (3)].gen);
...@@ -2142,8 +2004,6 @@ yyreduce: ...@@ -2142,8 +2004,6 @@ yyreduce:
break; break;
case 57: case 57:
/* Line 1806 of yacc.c */
#line 286 "a.y" #line 286 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2153,8 +2013,6 @@ yyreduce: ...@@ -2153,8 +2013,6 @@ yyreduce:
break; break;
case 58: case 58:
/* Line 1806 of yacc.c */
#line 294 "a.y" #line 294 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(1) - (5)].gen); (yyval.gen2).from = (yyvsp[(1) - (5)].gen);
...@@ -2164,8 +2022,6 @@ yyreduce: ...@@ -2164,8 +2022,6 @@ yyreduce:
break; break;
case 59: case 59:
/* Line 1806 of yacc.c */
#line 302 "a.y" #line 302 "a.y"
{ {
(yyval.gen2).from = (yyvsp[(3) - (5)].gen); (yyval.gen2).from = (yyvsp[(3) - (5)].gen);
...@@ -2177,8 +2033,6 @@ yyreduce: ...@@ -2177,8 +2033,6 @@ yyreduce:
break; break;
case 64: case 64:
/* Line 1806 of yacc.c */
#line 318 "a.y" #line 318 "a.y"
{ {
(yyval.gen) = (yyvsp[(2) - (2)].gen); (yyval.gen) = (yyvsp[(2) - (2)].gen);
...@@ -2186,8 +2040,6 @@ yyreduce: ...@@ -2186,8 +2040,6 @@ yyreduce:
break; break;
case 65: case 65:
/* Line 1806 of yacc.c */
#line 322 "a.y" #line 322 "a.y"
{ {
(yyval.gen) = (yyvsp[(2) - (2)].gen); (yyval.gen) = (yyvsp[(2) - (2)].gen);
...@@ -2195,8 +2047,6 @@ yyreduce: ...@@ -2195,8 +2047,6 @@ yyreduce:
break; break;
case 71: case 71:
/* Line 1806 of yacc.c */
#line 335 "a.y" #line 335 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2206,8 +2056,6 @@ yyreduce: ...@@ -2206,8 +2056,6 @@ yyreduce:
break; break;
case 72: case 72:
/* Line 1806 of yacc.c */
#line 341 "a.y" #line 341 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2220,8 +2068,6 @@ yyreduce: ...@@ -2220,8 +2068,6 @@ yyreduce:
break; break;
case 73: case 73:
/* Line 1806 of yacc.c */
#line 350 "a.y" #line 350 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2232,8 +2078,6 @@ yyreduce: ...@@ -2232,8 +2078,6 @@ yyreduce:
break; break;
case 74: case 74:
/* Line 1806 of yacc.c */
#line 359 "a.y" #line 359 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2242,8 +2086,6 @@ yyreduce: ...@@ -2242,8 +2086,6 @@ yyreduce:
break; break;
case 75: case 75:
/* Line 1806 of yacc.c */
#line 364 "a.y" #line 364 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2252,8 +2094,6 @@ yyreduce: ...@@ -2252,8 +2094,6 @@ yyreduce:
break; break;
case 76: case 76:
/* Line 1806 of yacc.c */
#line 369 "a.y" #line 369 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2262,8 +2102,6 @@ yyreduce: ...@@ -2262,8 +2102,6 @@ yyreduce:
break; break;
case 77: case 77:
/* Line 1806 of yacc.c */
#line 374 "a.y" #line 374 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2272,8 +2110,6 @@ yyreduce: ...@@ -2272,8 +2110,6 @@ yyreduce:
break; break;
case 78: case 78:
/* Line 1806 of yacc.c */
#line 379 "a.y" #line 379 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2282,8 +2118,6 @@ yyreduce: ...@@ -2282,8 +2118,6 @@ yyreduce:
break; break;
case 79: case 79:
/* Line 1806 of yacc.c */
#line 384 "a.y" #line 384 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2292,8 +2126,6 @@ yyreduce: ...@@ -2292,8 +2126,6 @@ yyreduce:
break; break;
case 80: case 80:
/* Line 1806 of yacc.c */
#line 391 "a.y" #line 391 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2303,8 +2135,6 @@ yyreduce: ...@@ -2303,8 +2135,6 @@ yyreduce:
break; break;
case 81: case 81:
/* Line 1806 of yacc.c */
#line 397 "a.y" #line 397 "a.y"
{ {
(yyval.gen) = (yyvsp[(2) - (2)].gen); (yyval.gen) = (yyvsp[(2) - (2)].gen);
...@@ -2319,8 +2149,6 @@ yyreduce: ...@@ -2319,8 +2149,6 @@ yyreduce:
break; break;
case 82: case 82:
/* Line 1806 of yacc.c */
#line 408 "a.y" #line 408 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2330,8 +2158,6 @@ yyreduce: ...@@ -2330,8 +2158,6 @@ yyreduce:
break; break;
case 83: case 83:
/* Line 1806 of yacc.c */
#line 414 "a.y" #line 414 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2341,8 +2167,6 @@ yyreduce: ...@@ -2341,8 +2167,6 @@ yyreduce:
break; break;
case 84: case 84:
/* Line 1806 of yacc.c */
#line 420 "a.y" #line 420 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2352,8 +2176,6 @@ yyreduce: ...@@ -2352,8 +2176,6 @@ yyreduce:
break; break;
case 85: case 85:
/* Line 1806 of yacc.c */
#line 426 "a.y" #line 426 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2363,8 +2185,6 @@ yyreduce: ...@@ -2363,8 +2185,6 @@ yyreduce:
break; break;
case 86: case 86:
/* Line 1806 of yacc.c */
#line 432 "a.y" #line 432 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2374,8 +2194,6 @@ yyreduce: ...@@ -2374,8 +2194,6 @@ yyreduce:
break; break;
case 87: case 87:
/* Line 1806 of yacc.c */
#line 440 "a.y" #line 440 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2386,8 +2204,6 @@ yyreduce: ...@@ -2386,8 +2204,6 @@ yyreduce:
break; break;
case 88: case 88:
/* Line 1806 of yacc.c */
#line 449 "a.y" #line 449 "a.y"
{ {
(yyval.con2).v1 = (yyvsp[(1) - (1)].lval); (yyval.con2).v1 = (yyvsp[(1) - (1)].lval);
...@@ -2396,8 +2212,6 @@ yyreduce: ...@@ -2396,8 +2212,6 @@ yyreduce:
break; break;
case 89: case 89:
/* Line 1806 of yacc.c */
#line 454 "a.y" #line 454 "a.y"
{ {
(yyval.con2).v1 = -(yyvsp[(2) - (2)].lval); (yyval.con2).v1 = -(yyvsp[(2) - (2)].lval);
...@@ -2406,8 +2220,6 @@ yyreduce: ...@@ -2406,8 +2220,6 @@ yyreduce:
break; break;
case 90: case 90:
/* Line 1806 of yacc.c */
#line 459 "a.y" #line 459 "a.y"
{ {
(yyval.con2).v1 = (yyvsp[(1) - (3)].lval); (yyval.con2).v1 = (yyvsp[(1) - (3)].lval);
...@@ -2416,8 +2228,6 @@ yyreduce: ...@@ -2416,8 +2228,6 @@ yyreduce:
break; break;
case 91: case 91:
/* Line 1806 of yacc.c */
#line 464 "a.y" #line 464 "a.y"
{ {
(yyval.con2).v1 = -(yyvsp[(2) - (4)].lval); (yyval.con2).v1 = -(yyvsp[(2) - (4)].lval);
...@@ -2426,8 +2236,6 @@ yyreduce: ...@@ -2426,8 +2236,6 @@ yyreduce:
break; break;
case 94: case 94:
/* Line 1806 of yacc.c */
#line 475 "a.y" #line 475 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2437,8 +2245,6 @@ yyreduce: ...@@ -2437,8 +2245,6 @@ yyreduce:
break; break;
case 95: case 95:
/* Line 1806 of yacc.c */
#line 481 "a.y" #line 481 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2448,8 +2254,6 @@ yyreduce: ...@@ -2448,8 +2254,6 @@ yyreduce:
break; break;
case 96: case 96:
/* Line 1806 of yacc.c */
#line 487 "a.y" #line 487 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2459,8 +2263,6 @@ yyreduce: ...@@ -2459,8 +2263,6 @@ yyreduce:
break; break;
case 97: case 97:
/* Line 1806 of yacc.c */
#line 493 "a.y" #line 493 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2473,8 +2275,6 @@ yyreduce: ...@@ -2473,8 +2275,6 @@ yyreduce:
break; break;
case 98: case 98:
/* Line 1806 of yacc.c */
#line 502 "a.y" #line 502 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
...@@ -2487,29 +2287,35 @@ yyreduce: ...@@ -2487,29 +2287,35 @@ yyreduce:
break; break;
case 99: case 99:
/* Line 1806 of yacc.c */
#line 511 "a.y" #line 511 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+(yyvsp[(2) - (3)].lval); (yyval.gen).type = D_INDIR+(yyvsp[(3) - (9)].lval);
(yyval.gen).offset = (yyvsp[(1) - (9)].lval);
(yyval.gen).index = (yyvsp[(6) - (9)].lval);
(yyval.gen).scale = (yyvsp[(8) - (9)].lval);
checkscale((yyval.gen).scale);
} }
break; break;
case 100: case 100:
#line 520 "a.y"
/* Line 1806 of yacc.c */
#line 516 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+D_SP; (yyval.gen).type = D_INDIR+(yyvsp[(2) - (3)].lval);
} }
break; break;
case 101: case 101:
#line 525 "a.y"
{
(yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+D_SP;
}
break;
/* Line 1806 of yacc.c */ case 102:
#line 521 "a.y" #line 530 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+(yyvsp[(3) - (4)].lval); (yyval.gen).type = D_INDIR+(yyvsp[(3) - (4)].lval);
...@@ -2517,10 +2323,8 @@ yyreduce: ...@@ -2517,10 +2323,8 @@ yyreduce:
} }
break; break;
case 102: case 103:
#line 536 "a.y"
/* Line 1806 of yacc.c */
#line 527 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+D_NONE; (yyval.gen).type = D_INDIR+D_NONE;
...@@ -2530,10 +2334,8 @@ yyreduce: ...@@ -2530,10 +2334,8 @@ yyreduce:
} }
break; break;
case 103: case 104:
#line 544 "a.y"
/* Line 1806 of yacc.c */
#line 535 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_INDIR+(yyvsp[(2) - (8)].lval); (yyval.gen).type = D_INDIR+(yyvsp[(2) - (8)].lval);
...@@ -2543,19 +2345,15 @@ yyreduce: ...@@ -2543,19 +2345,15 @@ yyreduce:
} }
break; break;
case 104: case 105:
#line 554 "a.y"
/* Line 1806 of yacc.c */
#line 545 "a.y"
{ {
(yyval.gen) = (yyvsp[(1) - (1)].gen); (yyval.gen) = (yyvsp[(1) - (1)].gen);
} }
break; break;
case 105: case 106:
#line 558 "a.y"
/* Line 1806 of yacc.c */
#line 549 "a.y"
{ {
(yyval.gen) = (yyvsp[(1) - (6)].gen); (yyval.gen) = (yyvsp[(1) - (6)].gen);
(yyval.gen).index = (yyvsp[(3) - (6)].lval); (yyval.gen).index = (yyvsp[(3) - (6)].lval);
...@@ -2564,10 +2362,8 @@ yyreduce: ...@@ -2564,10 +2362,8 @@ yyreduce:
} }
break; break;
case 106: case 107:
#line 567 "a.y"
/* Line 1806 of yacc.c */
#line 558 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = (yyvsp[(4) - (5)].lval); (yyval.gen).type = (yyvsp[(4) - (5)].lval);
...@@ -2576,10 +2372,8 @@ yyreduce: ...@@ -2576,10 +2372,8 @@ yyreduce:
} }
break; break;
case 107: case 108:
#line 574 "a.y"
/* Line 1806 of yacc.c */
#line 565 "a.y"
{ {
(yyval.gen) = nullgen; (yyval.gen) = nullgen;
(yyval.gen).type = D_STATIC; (yyval.gen).type = D_STATIC;
...@@ -2588,194 +2382,144 @@ yyreduce: ...@@ -2588,194 +2382,144 @@ yyreduce:
} }
break; break;
case 108: case 109:
#line 582 "a.y"
/* Line 1806 of yacc.c */
#line 573 "a.y"
{ {
(yyval.lval) = 0; (yyval.lval) = 0;
} }
break; break;
case 109: case 110:
#line 586 "a.y"
/* Line 1806 of yacc.c */
#line 577 "a.y"
{ {
(yyval.lval) = (yyvsp[(2) - (2)].lval); (yyval.lval) = (yyvsp[(2) - (2)].lval);
} }
break; break;
case 110: case 111:
#line 590 "a.y"
/* Line 1806 of yacc.c */
#line 581 "a.y"
{ {
(yyval.lval) = -(yyvsp[(2) - (2)].lval); (yyval.lval) = -(yyvsp[(2) - (2)].lval);
} }
break; break;
case 112: case 113:
#line 597 "a.y"
/* Line 1806 of yacc.c */
#line 588 "a.y"
{ {
(yyval.lval) = D_AUTO; (yyval.lval) = D_AUTO;
} }
break; break;
case 115: case 116:
#line 605 "a.y"
/* Line 1806 of yacc.c */
#line 596 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (1)].sym)->value; (yyval.lval) = (yyvsp[(1) - (1)].sym)->value;
} }
break; break;
case 116: case 117:
#line 609 "a.y"
/* Line 1806 of yacc.c */
#line 600 "a.y"
{ {
(yyval.lval) = -(yyvsp[(2) - (2)].lval); (yyval.lval) = -(yyvsp[(2) - (2)].lval);
} }
break; break;
case 117: case 118:
#line 613 "a.y"
/* Line 1806 of yacc.c */
#line 604 "a.y"
{ {
(yyval.lval) = (yyvsp[(2) - (2)].lval); (yyval.lval) = (yyvsp[(2) - (2)].lval);
} }
break; break;
case 118: case 119:
#line 617 "a.y"
/* Line 1806 of yacc.c */
#line 608 "a.y"
{ {
(yyval.lval) = ~(yyvsp[(2) - (2)].lval); (yyval.lval) = ~(yyvsp[(2) - (2)].lval);
} }
break; break;
case 119: case 120:
#line 621 "a.y"
/* Line 1806 of yacc.c */
#line 612 "a.y"
{ {
(yyval.lval) = (yyvsp[(2) - (3)].lval); (yyval.lval) = (yyvsp[(2) - (3)].lval);
} }
break; break;
case 121: case 122:
#line 628 "a.y"
/* Line 1806 of yacc.c */
#line 619 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) + (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) + (yyvsp[(3) - (3)].lval);
} }
break; break;
case 122: case 123:
#line 632 "a.y"
/* Line 1806 of yacc.c */
#line 623 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) - (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) - (yyvsp[(3) - (3)].lval);
} }
break; break;
case 123: case 124:
#line 636 "a.y"
/* Line 1806 of yacc.c */
#line 627 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) * (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) * (yyvsp[(3) - (3)].lval);
} }
break; break;
case 124: case 125:
#line 640 "a.y"
/* Line 1806 of yacc.c */
#line 631 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) / (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) / (yyvsp[(3) - (3)].lval);
} }
break; break;
case 125: case 126:
#line 644 "a.y"
/* Line 1806 of yacc.c */
#line 635 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) % (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) % (yyvsp[(3) - (3)].lval);
} }
break; break;
case 126: case 127:
#line 648 "a.y"
/* Line 1806 of yacc.c */
#line 639 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (4)].lval) << (yyvsp[(4) - (4)].lval); (yyval.lval) = (yyvsp[(1) - (4)].lval) << (yyvsp[(4) - (4)].lval);
} }
break; break;
case 127: case 128:
#line 652 "a.y"
/* Line 1806 of yacc.c */
#line 643 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (4)].lval) >> (yyvsp[(4) - (4)].lval); (yyval.lval) = (yyvsp[(1) - (4)].lval) >> (yyvsp[(4) - (4)].lval);
} }
break; break;
case 128: case 129:
#line 656 "a.y"
/* Line 1806 of yacc.c */
#line 647 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) & (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) & (yyvsp[(3) - (3)].lval);
} }
break; break;
case 129: case 130:
#line 660 "a.y"
/* Line 1806 of yacc.c */
#line 651 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) ^ (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) ^ (yyvsp[(3) - (3)].lval);
} }
break; break;
case 130: case 131:
#line 664 "a.y"
/* Line 1806 of yacc.c */
#line 655 "a.y"
{ {
(yyval.lval) = (yyvsp[(1) - (3)].lval) | (yyvsp[(3) - (3)].lval); (yyval.lval) = (yyvsp[(1) - (3)].lval) | (yyvsp[(3) - (3)].lval);
} }
break; break;
/* Line 1267 of yacc.c. */
/* Line 1806 of yacc.c */ #line 2521 "y.tab.c"
#line 2766 "y.tab.c"
default: break; default: break;
} }
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen); YYPOPSTACK (yylen);
...@@ -2784,6 +2528,7 @@ yyreduce: ...@@ -2784,6 +2528,7 @@ yyreduce:
*++yyvsp = yyval; *++yyvsp = yyval;
/* Now `shift' the result of the reduction. Determine what state /* Now `shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule that goes to, based on the state we popped back to and the rule
number reduced by. */ number reduced by. */
...@@ -2803,10 +2548,6 @@ yyreduce: ...@@ -2803,10 +2548,6 @@ yyreduce:
| yyerrlab -- here on detecting error | | yyerrlab -- here on detecting error |
`------------------------------------*/ `------------------------------------*/
yyerrlab: yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */ /* If not already recovering from an error, report this error. */
if (!yyerrstatus) if (!yyerrstatus)
{ {
...@@ -2814,36 +2555,37 @@ yyerrlab: ...@@ -2814,36 +2555,37 @@ yyerrlab:
#if ! YYERROR_VERBOSE #if ! YYERROR_VERBOSE
yyerror (YY_("syntax error")); yyerror (YY_("syntax error"));
#else #else
# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
yyssp, yytoken)
{ {
char const *yymsgp = YY_("syntax error"); YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
int yysyntax_error_status; if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
yysyntax_error_status = YYSYNTAX_ERROR; {
if (yysyntax_error_status == 0) YYSIZE_T yyalloc = 2 * yysize;
yymsgp = yymsg; if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
else if (yysyntax_error_status == 1) yyalloc = YYSTACK_ALLOC_MAXIMUM;
{ if (yymsg != yymsgbuf)
if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg);
YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yyalloc);
yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (yymsg)
if (!yymsg) yymsg_alloc = yyalloc;
{ else
yymsg = yymsgbuf; {
yymsg_alloc = sizeof yymsgbuf; yymsg = yymsgbuf;
yysyntax_error_status = 2; yymsg_alloc = sizeof yymsgbuf;
} }
else }
{
yysyntax_error_status = YYSYNTAX_ERROR; if (0 < yysize && yysize <= yymsg_alloc)
yymsgp = yymsg; {
} (void) yysyntax_error (yymsg, yystate, yychar);
} yyerror (yymsg);
yyerror (yymsgp); }
if (yysyntax_error_status == 2) else
goto yyexhaustedlab; {
yyerror (YY_("syntax error"));
if (yysize != 0)
goto yyexhaustedlab;
}
} }
# undef YYSYNTAX_ERROR
#endif #endif
} }
...@@ -2851,7 +2593,7 @@ yyerrlab: ...@@ -2851,7 +2593,7 @@ yyerrlab:
if (yyerrstatus == 3) if (yyerrstatus == 3)
{ {
/* If just tried and failed to reuse lookahead token after an /* If just tried and failed to reuse look-ahead token after an
error, discard it. */ error, discard it. */
if (yychar <= YYEOF) if (yychar <= YYEOF)
...@@ -2868,7 +2610,7 @@ yyerrlab: ...@@ -2868,7 +2610,7 @@ yyerrlab:
} }
} }
/* Else will try to reuse lookahead token after shifting the error /* Else will try to reuse look-ahead token after shifting the error
token. */ token. */
goto yyerrlab1; goto yyerrlab1;
...@@ -2902,7 +2644,7 @@ yyerrlab1: ...@@ -2902,7 +2644,7 @@ yyerrlab1:
for (;;) for (;;)
{ {
yyn = yypact[yystate]; yyn = yypact[yystate];
if (!yypact_value_is_default (yyn)) if (yyn != YYPACT_NINF)
{ {
yyn += YYTERROR; yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
...@@ -2925,6 +2667,9 @@ yyerrlab1: ...@@ -2925,6 +2667,9 @@ yyerrlab1:
YY_STACK_PRINT (yyss, yyssp); YY_STACK_PRINT (yyss, yyssp);
} }
if (yyn == YYFINAL)
YYACCEPT;
*++yyvsp = yylval; *++yyvsp = yylval;
...@@ -2949,7 +2694,7 @@ yyabortlab: ...@@ -2949,7 +2694,7 @@ yyabortlab:
yyresult = 1; yyresult = 1;
goto yyreturn; goto yyreturn;
#if !defined(yyoverflow) || YYERROR_VERBOSE #ifndef yyoverflow
/*-------------------------------------------------. /*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. | | yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/ `-------------------------------------------------*/
...@@ -2960,14 +2705,9 @@ yyexhaustedlab: ...@@ -2960,14 +2705,9 @@ yyexhaustedlab:
#endif #endif
yyreturn: yyreturn:
if (yychar != YYEMPTY) if (yychar != YYEOF && yychar != YYEMPTY)
{ yydestruct ("Cleanup: discarding lookahead",
/* Make sure we have latest lookahead translation. See comments at yytoken, &yylval);
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval);
}
/* Do not reclaim the symbols of the rule which action triggered /* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */ this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen); YYPOPSTACK (yylen);
......
/* A Bison parser, made by GNU Bison 2.5. */ /* A Bison parser, made by GNU Bison 2.3. */
/* Bison interface for Yacc-like parsers in C /* Skeleton interface for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
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 it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation; either version 2, or (at your option)
(at your option) any later version. any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains /* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work part or all of the Bison parser skeleton and distribute that work
...@@ -26,11 +29,10 @@ ...@@ -26,11 +29,10 @@
special exception, which will cause the skeleton and the resulting special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public Bison output files to be licensed under the GNU General Public
License without this special exception. License without this special exception.
This special exception was added by the Free Software Foundation in This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */ version 2.2 of Bison. */
/* Tokens. */ /* Tokens. */
#ifndef YYTOKENTYPE #ifndef YYTOKENTYPE
# define YYTOKENTYPE # define YYTOKENTYPE
...@@ -108,11 +110,8 @@ ...@@ -108,11 +110,8 @@
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE typedef union YYSTYPE
{
/* Line 2068 of yacc.c */
#line 37 "a.y" #line 37 "a.y"
{
Sym *sym; Sym *sym;
int32 lval; int32 lval;
struct { struct {
...@@ -123,17 +122,14 @@ typedef union YYSTYPE ...@@ -123,17 +122,14 @@ typedef union YYSTYPE
char sval[8]; char sval[8];
Gen gen; Gen gen;
Gen2 gen2; Gen2 gen2;
}
/* Line 1529 of yacc.c. */
#line 128 "y.tab.h"
/* Line 2068 of yacc.c */ YYSTYPE;
#line 131 "y.tab.h"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif #endif
extern YYSTYPE yylval; extern YYSTYPE yylval;
...@@ -654,6 +654,7 @@ enum ...@@ -654,6 +654,7 @@ enum
D_PCREL, D_PCREL,
D_GOTOFF, D_GOTOFF,
D_GOTREL, D_GOTREL,
D_TLS,
T_TYPE = 1<<0, T_TYPE = 1<<0,
T_INDEX = 1<<1, T_INDEX = 1<<1,
......
...@@ -294,6 +294,12 @@ elfreloc1(Reloc *r, vlong sectoff) ...@@ -294,6 +294,12 @@ elfreloc1(Reloc *r, vlong sectoff)
else else
return -1; return -1;
break; break;
case D_TLS:
if(r->siz == 4)
LPUT(R_386_TLS_LE | elfsym<<8);
else
return -1;
} }
return 0; return 0;
......
...@@ -90,7 +90,7 @@ main(int argc, char *argv[]) ...@@ -90,7 +90,7 @@ main(int argc, char *argv[])
INITRND = -1; INITRND = -1;
INITENTRY = 0; INITENTRY = 0;
LIBINITENTRY = 0; LIBINITENTRY = 0;
linkmode = LinkInternal; // TODO: LinkAuto once everything works. linkmode = LinkAuto;
nuxiinit(); nuxiinit();
flagcount("1", "use alternate profiling code", &debug['1']); flagcount("1", "use alternate profiling code", &debug['1']);
......
...@@ -296,16 +296,23 @@ patch(void) ...@@ -296,16 +296,23 @@ patch(void)
// MOVL 0(GS), reg // MOVL 0(GS), reg
// and then off(reg) instead of saying off(GS) directly // and then off(reg) instead of saying off(GS) directly
// when the offset is negative. // when the offset is negative.
// In external mode we just produce a reloc.
if(p->from.type == D_INDIR+D_GS && p->from.offset < 0 if(p->from.type == D_INDIR+D_GS && p->from.offset < 0
&& p->to.type >= D_AX && p->to.type <= D_DI) { && p->to.type >= D_AX && p->to.type <= D_DI) {
q = appendp(p); if(linkmode != LinkExternal) {
q->from = p->from; q = appendp(p);
q->from.type = D_INDIR + p->to.type; q->from = p->from;
q->to = p->to; q->from.type = D_INDIR + p->to.type;
q->as = p->as; q->to = p->to;
p->as = AMOVL; q->as = p->as;
p->from.type = D_INDIR+D_GS; p->as = AMOVL;
p->from.offset = 0; p->from.type = D_INDIR+D_GS;
p->from.offset = 0;
} else {
// Add signals to relocate.
p->from.index = D_GS;
p->from.scale = 1;
}
} }
} }
if(HEADTYPE == Hplan9x32) { if(HEADTYPE == Hplan9x32) {
...@@ -450,16 +457,25 @@ dostkoff(void) ...@@ -450,16 +457,25 @@ dostkoff(void)
break; break;
case Hlinux: case Hlinux:
p->as = AMOVL; if(linkmode != LinkExternal) {
p->from.type = D_INDIR+D_GS; p->as = AMOVL;
p->from.offset = 0; p->from.type = D_INDIR+D_GS;
p->to.type = D_CX; p->from.offset = 0;
p->to.type = D_CX;
p = appendp(p); p = appendp(p);
p->as = AMOVL; p->as = AMOVL;
p->from.type = D_INDIR+D_CX; p->from.type = D_INDIR+D_CX;
p->from.offset = tlsoffset + 0; p->from.offset = tlsoffset + 0;
p->to.type = D_CX; p->to.type = D_CX;
} else {
p->as = AMOVL;
p->from.type = D_INDIR+D_GS;
p->from.offset = tlsoffset + 0;
p->to.type = D_CX;
p->from.index = D_GS;
p->from.scale = 1;
}
break; break;
case Hplan9x32: case Hplan9x32:
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include "l.h" #include "l.h"
#include "../ld/lib.h" #include "../ld/lib.h"
#include "../ld/elf.h"
static int32 vaddr(Adr*, Reloc*); static int32 vaddr(Adr*, Reloc*);
...@@ -559,6 +560,14 @@ vaddr(Adr *a, Reloc *r) ...@@ -559,6 +560,14 @@ vaddr(Adr *a, Reloc *r)
return v; return v;
} }
static int
istls(Adr *a)
{
if(HEADTYPE == Hlinux)
return a->index == D_GS;
return a->type == D_INDIR+D_GS;
}
void void
asmand(Adr *a, int r) asmand(Adr *a, int r)
{ {
...@@ -569,7 +578,7 @@ asmand(Adr *a, int r) ...@@ -569,7 +578,7 @@ asmand(Adr *a, int r)
v = a->offset; v = a->offset;
t = a->type; t = a->type;
rel.siz = 0; rel.siz = 0;
if(a->index != D_NONE) { if(a->index != D_NONE && a->index != D_FS && a->index != D_GS) {
if(t < D_INDIR || t >= 2*D_INDIR) { if(t < D_INDIR || t >= 2*D_INDIR) {
switch(t) { switch(t) {
default: default:
...@@ -658,7 +667,7 @@ asmand(Adr *a, int r) ...@@ -658,7 +667,7 @@ asmand(Adr *a, int r)
*andptr++ = (0 << 6) | (reg[t] << 0) | (r << 3); *andptr++ = (0 << 6) | (reg[t] << 0) | (r << 3);
return; return;
} }
if(v >= -128 && v < 128 && rel.siz == 0) { if(v >= -128 && v < 128 && rel.siz == 0 && a->index != D_FS && a->index != D_GS) {
andptr[0] = (1 << 6) | (reg[t] << 0) | (r << 3); andptr[0] = (1 << 6) | (reg[t] << 0) | (r << 3);
andptr[1] = v; andptr[1] = v;
andptr += 2; andptr += 2;
...@@ -680,7 +689,29 @@ putrelv: ...@@ -680,7 +689,29 @@ putrelv:
r = addrel(cursym); r = addrel(cursym);
*r = rel; *r = rel;
r->off = curp->pc + andptr - and; r->off = curp->pc + andptr - and;
} else if(iself && linkmode == LinkExternal && istls(a)) {
Reloc *r;
Sym *s;
r = addrel(cursym);
r->off = curp->pc + andptr - and;
r->add = 0;
r->xadd = 0;
r->siz = 4;
r->type = D_TLS;
if(a->offset == tlsoffset+0)
s = lookup("runtime.g", 0);
else
s = lookup("runtime.m", 0);
s->type = STLSBSS;
s->reachable = 1;
s->hide = 1;
s->size = PtrSize;
r->sym = s;
r->xsym = s;
v = 0;
} }
put4(v); put4(v);
return; return;
......
...@@ -133,12 +133,17 @@ static struct { ...@@ -133,12 +133,17 @@ static struct {
"// which is where these macros come into play.\n" "// which is where these macros come into play.\n"
"// get_tls sets up the temporary and then g and r use it.\n" "// get_tls sets up the temporary and then g and r use it.\n"
"//\n" "//\n"
"// The final wrinkle is that get_tls needs to read from %gs:0,\n" "// Another wrinkle is that get_tls needs to read from %gs:0,\n"
"// but in 8l input it's called 8(GS), because 8l is going to\n" "// but in 8l input it's called 8(GS), because 8l is going to\n"
"// subtract 8 from all the offsets, as described above.\n" "// subtract 8 from all the offsets, as described above.\n"
"//\n"
"// The final wrinkle is that when generating an ELF .o file for\n"
"// external linking mode, we need to be able to relocate the\n"
"// -8(r) and -4(r) instructions. Tag them with an extra (GS*1)\n"
"// that is ignored by the linker except for that identification.\n"
"#define get_tls(r) MOVL 8(GS), r\n" "#define get_tls(r) MOVL 8(GS), r\n"
"#define g(r) -8(r)\n" "#define g(r) -8(r)(GS*1)\n"
"#define m(r) -4(r)\n" "#define m(r) -4(r)(GS*1)\n"
}, },
{"386", "", {"386", "",
"#define get_tls(r)\n" "#define get_tls(r)\n"
......
...@@ -172,7 +172,7 @@ relocsym(Sym *s) ...@@ -172,7 +172,7 @@ relocsym(Sym *s)
if(r->sym != S && r->sym->type == SDYNIMPORT) if(r->sym != S && r->sym->type == SDYNIMPORT)
diag("unhandled relocation for %s (type %d rtype %d)", r->sym->name, r->sym->type, r->type); diag("unhandled relocation for %s (type %d rtype %d)", r->sym->name, r->sym->type, r->type);
if(r->sym != S && !r->sym->reachable) if(r->sym != S && r->sym->type != STLSBSS && !r->sym->reachable)
diag("unreachable sym in relocation: %s %s", s->name, r->sym->name); diag("unreachable sym in relocation: %s %s", s->name, r->sym->name);
switch(r->type) { switch(r->type) {
...@@ -181,6 +181,10 @@ relocsym(Sym *s) ...@@ -181,6 +181,10 @@ relocsym(Sym *s)
if(linkmode == LinkExternal || archreloc(r, s, &o) < 0) if(linkmode == LinkExternal || archreloc(r, s, &o) < 0)
diag("unknown reloc %d", r->type); diag("unknown reloc %d", r->type);
break; break;
case D_TLS:
r->done = 0;
o = 0;
break;
case D_ADDR: case D_ADDR:
if(linkmode == LinkExternal && r->sym->type != SCONST) { if(linkmode == LinkExternal && r->sym->type != SCONST) {
r->done = 0; r->done = 0;
...@@ -1193,11 +1197,7 @@ dodata(void) ...@@ -1193,11 +1197,7 @@ dodata(void)
sect->vaddr = datsize; sect->vaddr = datsize;
lookup("noptrbss", 0)->sect = sect; lookup("noptrbss", 0)->sect = sect;
lookup("enoptrbss", 0)->sect = sect; lookup("enoptrbss", 0)->sect = sect;
for(; s != nil; s = s->next) { for(; s != nil && s->type == SNOPTRBSS; s = s->next) {
if(s->type > SNOPTRBSS) {
cursym = s;
diag("unexpected symbol type %d", s->type);
}
datsize = aligndatsize(datsize, s); datsize = aligndatsize(datsize, s);
s->sect = sect; s->sect = sect;
s->value = datsize; s->value = datsize;
...@@ -1205,6 +1205,25 @@ dodata(void) ...@@ -1205,6 +1205,25 @@ dodata(void)
} }
sect->len = datsize - sect->vaddr; sect->len = datsize - sect->vaddr;
lookup("end", 0)->sect = sect; lookup("end", 0)->sect = sect;
if(iself && linkmode == LinkExternal && s != nil && s->type == STLSBSS) {
sect = addsection(&segdata, ".tbss", 06);
sect->align = PtrSize;
sect->vaddr = 0;
datsize = 0;
for(; s != nil && s->type == STLSBSS; s = s->next) {
datsize = aligndatsize(datsize, s);
s->sect = sect;
s->value = datsize;
datsize += s->size;
}
sect->len = datsize;
}
if(s != nil) {
cursym = nil;
diag("unexpected symbol type %d for %s", s->type, s->name);
}
/* we finished segdata, begin segtext */ /* we finished segdata, begin segtext */
s = datap; s = datap;
......
...@@ -758,6 +758,10 @@ elfshbits(Section *sect) ...@@ -758,6 +758,10 @@ elfshbits(Section *sect)
sh->flags |= SHF_EXECINSTR; sh->flags |= SHF_EXECINSTR;
if(sect->rwx & 2) if(sect->rwx & 2)
sh->flags |= SHF_WRITE; sh->flags |= SHF_WRITE;
if(strcmp(sect->name, ".tbss") == 0) {
sh->flags |= SHF_TLS;
sh->type = SHT_NOBITS;
}
if(linkmode != LinkExternal) if(linkmode != LinkExternal)
sh->addr = sect->vaddr; sh->addr = sect->vaddr;
sh->addralign = sect->align; sh->addralign = sect->align;
...@@ -779,7 +783,7 @@ elfshreloc(Section *sect) ...@@ -779,7 +783,7 @@ elfshreloc(Section *sect)
// Also nothing to relocate in .shstrtab. // Also nothing to relocate in .shstrtab.
if(sect->vaddr >= sect->seg->vaddr + sect->seg->filelen) if(sect->vaddr >= sect->seg->vaddr + sect->seg->filelen)
return nil; return nil;
if(strcmp(sect->name, ".shstrtab") == 0) if(strcmp(sect->name, ".shstrtab") == 0 || strcmp(sect->name, ".tbss") == 0)
return nil; return nil;
if(thechar == '6') { if(thechar == '6') {
...@@ -883,6 +887,8 @@ doelf(void) ...@@ -883,6 +887,8 @@ doelf(void)
addstring(shstrtab, ".data"); addstring(shstrtab, ".data");
addstring(shstrtab, ".bss"); addstring(shstrtab, ".bss");
addstring(shstrtab, ".noptrbss"); addstring(shstrtab, ".noptrbss");
if(linkmode == LinkExternal)
addstring(shstrtab, ".tbss");
if(HEADTYPE == Hnetbsd) if(HEADTYPE == Hnetbsd)
addstring(shstrtab, ".note.netbsd.ident"); addstring(shstrtab, ".note.netbsd.ident");
if(HEADTYPE == Hopenbsd) if(HEADTYPE == Hopenbsd)
......
...@@ -52,6 +52,7 @@ enum ...@@ -52,6 +52,7 @@ enum
SWINDOWS, SWINDOWS,
SBSS, SBSS,
SNOPTRBSS, SNOPTRBSS,
STLSBSS,
SXREF, SXREF,
SMACHOSYMSTR, SMACHOSYMSTR,
......
...@@ -152,6 +152,26 @@ asmelfsym(void) ...@@ -152,6 +152,26 @@ asmelfsym(void)
elfbind = STB_LOCAL; elfbind = STB_LOCAL;
genasmsym(putelfsym); genasmsym(putelfsym);
if(linkmode == LinkExternal) {
s = lookup("runtime.m", 0);
if(s->sect == nil) {
cursym = nil;
diag("missing section for %s", s->name);
errorexit();
}
putelfsyment(putelfstr(s->name), 0, PtrSize, (STB_LOCAL<<4)|STT_TLS, s->sect->elfsect->shnum, 0);
s->elfsym = numelfsym++;
s = lookup("runtime.g", 0);
if(s->sect == nil) {
cursym = nil;
diag("missing section for %s", s->name);
errorexit();
}
putelfsyment(putelfstr(s->name), PtrSize, PtrSize, (STB_LOCAL<<4)|STT_TLS, s->sect->elfsect->shnum, 0);
s->elfsym = numelfsym++;
}
elfbind = STB_GLOBAL; elfbind = STB_GLOBAL;
elfglobalsymndx = numelfsym; elfglobalsymndx = numelfsym;
......
...@@ -83,8 +83,14 @@ set -e ...@@ -83,8 +83,14 @@ set -e
go test -ldflags '-linkmode=auto' go test -ldflags '-linkmode=auto'
go test -ldflags '-linkmode=internal' go test -ldflags '-linkmode=internal'
case "$GOHOSTOS-$GOARCH" in case "$GOHOSTOS-$GOARCH" in
darwin-386 | darwin-amd64 | freebsd-386 | freebsd-amd64 | linux-386 | linux-amd64 | netbsd-386 | netbsd-amd64 | openbsd-386 | openbsd-amd64) darwin-386 | darwin-amd64 | openbsd-386 | openbsd-amd64)
# test linkmode=external, but __thread not supported, so skip testtls.
go test -ldflags '-linkmode=external' go test -ldflags '-linkmode=external'
;;
freebsd-386 | freebsd-amd64 | linux-386 | linux-amd64 | netbsd-386 | netbsd-amd64)
go test -ldflags '-linkmode=external'
go test -ldflags '-linkmode=auto' ../testtls
go test -ldflags '-linkmode=external' ../testtls
esac esac
) || exit $? ) || exit $?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment