My Project
0.0.16
QUCS Mapping
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
DownLoad
QUCS-src
qucs-0.0.16
qucs-core
src
converter
tokens_vcd.h
Go to the documentation of this file.
1
2
/* A Bison parser, made by GNU Bison 2.4.1. */
3
4
/* Skeleton interface for Bison's Yacc-like parsers in C
5
6
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
7
Free Software Foundation, Inc.
8
9
This program is free software: you can redistribute it and/or modify
10
it under the terms of the GNU General Public License as published by
11
the Free Software Foundation, either version 3 of the License, or
12
(at your option) any later version.
13
14
This program is distributed in the hope that it will be useful,
15
but WITHOUT ANY WARRANTY; without even the implied warranty of
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
GNU General Public License for more details.
18
19
You should have received a copy of the GNU General Public License
20
along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22
/* As a special exception, you may create a larger work that contains
23
part or all of the Bison parser skeleton and distribute that work
24
under terms of your choice, so long as that work isn't itself a
25
parser generator using the skeleton or a modified version thereof
26
as a parser skeleton. Alternatively, if you modify or redistribute
27
the parser skeleton itself, you may (at your option) remove this
28
special exception, which will cause the skeleton and the resulting
29
Bison output files to be licensed under the GNU General Public
30
License without this special exception.
31
32
This special exception was added by the Free Software Foundation in
33
version 2.2 of Bison. */
34
35
36
/* Tokens. */
37
#ifndef YYTOKENTYPE
38
# define YYTOKENTYPE
39
/* Put the tokens into the symbol table, so that GDB and other debuggers
40
know about them. */
41
enum
yytokentype
{
42
t_END
= 258,
43
t_COMMENT
= 259,
44
t_DATE
= 260,
45
t_ENDDEFINITIONS
= 261,
46
t_SCOPE
= 262,
47
t_TIMESCALE
= 263,
48
t_UPSCOPE
= 264,
49
t_VAR
= 265,
50
t_VERSION
= 266,
51
t_DUMPALL
= 267,
52
t_DUMPOFF
= 268,
53
t_DUMPON
= 269,
54
t_DUMPVARS
= 270,
55
s_MODULE
= 271,
56
s_TASK
= 272,
57
s_FUNCTION
= 273,
58
s_FORK
= 274,
59
s_BEGIN
= 275,
60
ONE
= 276,
61
B
= 277,
62
Z
= 278,
63
ZERO
= 279,
64
HASHMARK
= 280,
65
X
= 281,
66
R
= 282,
67
TEN
= 283,
68
HUNDRET
= 284,
69
PICO
= 285,
70
MICRO
= 286,
71
NANO
= 287,
72
FEMTO
= 288,
73
SECOND
= 289,
74
MILLI
= 290,
75
EVENT
= 291,
76
INTEGER
= 292,
77
PARAMETER
= 293,
78
REAL
= 294,
79
REG
= 295,
80
SUPPLY0
= 296,
81
SUPPLY1
= 297,
82
TIME
= 298,
83
TRI
= 299,
84
TRIAND
= 300,
85
TRIOR
= 301,
86
TRIREG
= 302,
87
TRI0
= 303,
88
TRI1
= 304,
89
WAND
= 305,
90
WIRE
= 306,
91
WOR
= 307,
92
Real
= 308,
93
Binary
= 309,
94
PositiveInteger
= 310,
95
PositiveHugeInteger
= 311,
96
Identifier
= 312,
97
IdentifierCode
= 313,
98
Reference
= 314,
99
InvalidCharacter
= 315
100
};
101
#endif
102
/* Tokens. */
103
#define t_END 258
104
#define t_COMMENT 259
105
#define t_DATE 260
106
#define t_ENDDEFINITIONS 261
107
#define t_SCOPE 262
108
#define t_TIMESCALE 263
109
#define t_UPSCOPE 264
110
#define t_VAR 265
111
#define t_VERSION 266
112
#define t_DUMPALL 267
113
#define t_DUMPOFF 268
114
#define t_DUMPON 269
115
#define t_DUMPVARS 270
116
#define s_MODULE 271
117
#define s_TASK 272
118
#define s_FUNCTION 273
119
#define s_FORK 274
120
#define s_BEGIN 275
121
#define ONE 276
122
#define B 277
123
#define Z 278
124
#define ZERO 279
125
#define HASHMARK 280
126
#define X 281
127
#define R 282
128
#define TEN 283
129
#define HUNDRET 284
130
#define PICO 285
131
#define MICRO 286
132
#define NANO 287
133
#define FEMTO 288
134
#define SECOND 289
135
#define MILLI 290
136
#define EVENT 291
137
#define INTEGER 292
138
#define PARAMETER 293
139
#define REAL 294
140
#define REG 295
141
#define SUPPLY0 296
142
#define SUPPLY1 297
143
#define TIME 298
144
#define TRI 299
145
#define TRIAND 300
146
#define TRIOR 301
147
#define TRIREG 302
148
#define TRI0 303
149
#define TRI1 304
150
#define WAND 305
151
#define WIRE 306
152
#define WOR 307
153
#define Real 308
154
#define Binary 309
155
#define PositiveInteger 310
156
#define PositiveHugeInteger 311
157
#define Identifier 312
158
#define IdentifierCode 313
159
#define Reference 314
160
#define InvalidCharacter 315
161
162
163
164
165
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
166
typedef
union
YYSTYPE
167
{
168
169
/* Line 1676 of yacc.c */
170
#line 79 "parse_vcd.y"
171
172
char
*
ident
;
173
char
*
value
;
174
int
integer
;
175
double
real
;
176
enum
vcd_vartypes
vtype
;
177
enum
vcd_scopes
stype
;
178
struct
vcd_vardef
*
vardef
;
179
struct
vcd_change
*
change
;
180
struct
vcd_scope
*
scope
;
181
struct
vcd_changeset
*
changeset
;
182
struct
vcd_range
*
range
;
183
184
185
186
/* Line 1676 of yacc.c */
187
#line 188 "tokens_vcd.h"
188
}
YYSTYPE
;
189
# define YYSTYPE_IS_TRIVIAL 1
190
# define yystype YYSTYPE
/* obsolescent; will be withdrawn */
191
# define YYSTYPE_IS_DECLARED 1
192
#endif
193
194
extern
YYSTYPE
vcd_lval
;
195
196
Generated on Tue Dec 25 2012 14:30:33 for My Project by
1.8.2