Blame view

scripts/dtc/dtc-parser.tab.h_shipped 2.46 KB
edfc86aad   Arnaud Lacombe   dtc: regen parser
1
  /* A Bison parser, made by GNU Bison 2.4.3.  */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
2

658f29a51   John Bonesio   of/flattree: Upda...
3
4
  /* Skeleton interface for Bison's Yacc-like parsers in C
     
edfc86aad   Arnaud Lacombe   dtc: regen parser
5
6
        Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
     2009, 2010 Free Software Foundation, Inc.
658f29a51   John Bonesio   of/flattree: Upda...
7
8
     
     This program is free software: you can redistribute it and/or modify
a4da2e3ec   David Gibson   [POWERPC] Merge d...
9
     it under the terms of the GNU General Public License as published by
658f29a51   John Bonesio   of/flattree: Upda...
10
11
12
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.
     
a4da2e3ec   David Gibson   [POWERPC] Merge d...
13
14
15
16
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
658f29a51   John Bonesio   of/flattree: Upda...
17
     
a4da2e3ec   David Gibson   [POWERPC] Merge d...
18
     You should have received a copy of the GNU General Public License
658f29a51   John Bonesio   of/flattree: Upda...
19
     along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
a4da2e3ec   David Gibson   [POWERPC] Merge d...
20
21
22
23
24
25
26
27
28
29
  
  /* As a special exception, you may create a larger work that contains
     part or all of the Bison parser skeleton and distribute that work
     under terms of your choice, so long as that work isn't itself a
     parser generator using the skeleton or a modified version thereof
     as a parser skeleton.  Alternatively, if you modify or redistribute
     the parser skeleton itself, you may (at your option) remove this
     special exception, which will cause the skeleton and the resulting
     Bison output files to be licensed under the GNU General Public
     License without this special exception.
658f29a51   John Bonesio   of/flattree: Upda...
30
     
a4da2e3ec   David Gibson   [POWERPC] Merge d...
31
32
     This special exception was added by the Free Software Foundation in
     version 2.2 of Bison.  */
658f29a51   John Bonesio   of/flattree: Upda...
33

a4da2e3ec   David Gibson   [POWERPC] Merge d...
34
35
36
37
38
39
40
41
42
43
  /* Tokens.  */
  #ifndef YYTOKENTYPE
  # define YYTOKENTYPE
     /* Put the tokens into the symbol table, so that GDB and other debuggers
        know about them.  */
     enum yytokentype {
       DT_V1 = 258,
       DT_MEMRESERVE = 259,
       DT_PROPNODENAME = 260,
       DT_LITERAL = 261,
658f29a51   John Bonesio   of/flattree: Upda...
44
45
46
47
48
49
       DT_BASE = 262,
       DT_BYTE = 263,
       DT_STRING = 264,
       DT_LABEL = 265,
       DT_REF = 266,
       DT_INCBIN = 267
a4da2e3ec   David Gibson   [POWERPC] Merge d...
50
51
     };
  #endif
a4da2e3ec   David Gibson   [POWERPC] Merge d...
52
53
54
55
56
  
  
  
  #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  typedef union YYSTYPE
a4da2e3ec   David Gibson   [POWERPC] Merge d...
57
  {
658f29a51   John Bonesio   of/flattree: Upda...
58

658f29a51   John Bonesio   of/flattree: Upda...
59

a4da2e3ec   David Gibson   [POWERPC] Merge d...
60
61
62
63
  	char *propnodename;
  	char *literal;
  	char *labelref;
  	unsigned int cbase;
ed95d7450   David Gibson   powerpc: Update i...
64
  	uint8_t byte;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
65
  	struct data data;
ed95d7450   David Gibson   powerpc: Update i...
66
  	uint64_t addr;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
67
68
69
70
71
72
  	cell_t cell;
  	struct property *prop;
  	struct property *proplist;
  	struct node *node;
  	struct node *nodelist;
  	struct reserve_info *re;
658f29a51   John Bonesio   of/flattree: Upda...
73

658f29a51   John Bonesio   of/flattree: Upda...
74
75
  } YYSTYPE;
  # define YYSTYPE_IS_TRIVIAL 1
a4da2e3ec   David Gibson   [POWERPC] Merge d...
76
77
  # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  # define YYSTYPE_IS_DECLARED 1
a4da2e3ec   David Gibson   [POWERPC] Merge d...
78
79
80
  #endif
  
  extern YYSTYPE yylval;
a4da2e3ec   David Gibson   [POWERPC] Merge d...
81