blob: f67342b670cc3e7955a2bbbc4e613783228983e8 [file] [log] [blame]
daniel@transgaming.com4f39fd92010-03-08 20:26:45 +00001/****************************************************************************\
2Copyright (c) 2002, NVIDIA Corporation.
3
4NVIDIA Corporation("NVIDIA") supplies this software to you in
5consideration of your agreement to the following terms, and your use,
6installation, modification or redistribution of this NVIDIA software
7constitutes acceptance of these terms. If you do not agree with these
8terms, please do not use, install, modify or redistribute this NVIDIA
9software.
10
11In consideration of your agreement to abide by the following terms, and
12subject to these terms, NVIDIA grants you a personal, non-exclusive
13license, under NVIDIA's copyrights in this original NVIDIA software (the
14"NVIDIA Software"), to use, reproduce, modify and redistribute the
15NVIDIA Software, with or without modifications, in source and/or binary
16forms; provided that if you redistribute the NVIDIA Software, you must
17retain the copyright notice of NVIDIA, this notice and the following
18text and disclaimers in all such redistributions of the NVIDIA Software.
19Neither the name, trademarks, service marks nor logos of NVIDIA
20Corporation may be used to endorse or promote products derived from the
21NVIDIA Software without specific prior written permission from NVIDIA.
22Except as expressly stated in this notice, no other rights or licenses
23express or implied, are granted by NVIDIA herein, including but not
24limited to any patent rights that may be infringed by your derivative
25works or by other works in which the NVIDIA Software may be
26incorporated. No hardware is licensed hereunder.
27
28THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT
29WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED,
30INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE,
31NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
32ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER
33PRODUCTS.
34
35IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT,
36INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
37TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
38USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY
39OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE
40NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT,
41TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
42NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43\****************************************************************************/
44
45#ifndef BISON_PARSER_H
46# define BISON_PARSER_H
47
48#ifndef yystypepp
49typedef struct {
50 int sc_int;
51 float sc_fval;
52 int sc_ident;
53 char symbol_name[MAX_SYMBOL_NAME_LEN+1];
54} yystypepp;
55
56# define YYSTYPE_IS_TRIVIAL 1
57#endif
58# define CPP_AND_OP 257
59# define CPP_SUB_ASSIGN 259
60# define CPP_MOD_ASSIGN 260
61# define CPP_ADD_ASSIGN 261
62# define CPP_DIV_ASSIGN 262
63# define CPP_MUL_ASSIGN 263
64# define CPP_EQ_OP 264
65# define CPP_XOR_OP 265
66# define ERROR_SY 266
67# define CPP_FLOATCONSTANT 267
68# define CPP_GE_OP 268
69# define CPP_RIGHT_OP 269
70# define CPP_IDENTIFIER 270
71# define CPP_INTCONSTANT 271
72# define CPP_LE_OP 272
73# define CPP_LEFT_OP 273
74# define CPP_DEC_OP 274
75# define CPP_NE_OP 275
76# define CPP_OR_OP 276
77# define CPP_INC_OP 277
78# define CPP_STRCONSTANT 278
79# define CPP_TYPEIDENTIFIER 279
80
81# define FIRST_USER_TOKEN_SY 289
82
83# define CPP_RIGHT_ASSIGN 280
84# define CPP_LEFT_ASSIGN 281
85# define CPP_AND_ASSIGN 282
86# define CPP_OR_ASSIGN 283
87# define CPP_XOR_ASSIGN 284
88# define CPP_LEFT_BRACKET 285
89# define CPP_RIGHT_BRACKET 286
90# define CPP_LEFT_BRACE 287
91# define CPP_RIGHT_BRACE 288
92
93#endif /* not BISON_PARSER_H */