blob: ccdcc8f25737fa8c73e865c6a1fd4e75fa221008 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001%{
2/*
3 * gram.y - message definition language
4 *
5 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19extern void yyerror (char *s);
20extern int yylex (void);
21
22#define YYSTYPE void *
23
24void generate (YYSTYPE);
25 YYSTYPE add_slist(YYSTYPE, YYSTYPE);
26 YYSTYPE add_define(YYSTYPE, YYSTYPE);
27 YYSTYPE suppress_version(void);
28 YYSTYPE add_defbody(YYSTYPE, YYSTYPE);
29 YYSTYPE add_primtype(YYSTYPE, YYSTYPE, YYSTYPE);
30 YYSTYPE add_complex(YYSTYPE, YYSTYPE);
31 YYSTYPE add_union(YYSTYPE, YYSTYPE);
32 YYSTYPE add_scalar_vbl(YYSTYPE);
33 YYSTYPE add_vector_vbl(YYSTYPE, YYSTYPE);
Marek Gradzkifa42e252016-06-15 16:38:33 +020034 YYSTYPE add_variable_length_vector_vbl(YYSTYPE, YYSTYPE);
Ed Warnickecb9cada2015-12-08 15:45:58 -070035 YYSTYPE set_flags(YYSTYPE, YYSTYPE);
36%}
37
38%token NAME RPAR LPAR SEMI LBRACK RBRACK NUMBER PRIMTYPE BARF
39%token TPACKED DEFINE LCURLY RCURLY STRING UNION
40%token HELPER_STRING COMMA
41%token NOVERSION MANUAL_PRINT MANUAL_ENDIAN MANUAL_JAVA TYPEONLY DONT_TRACE
42
43%%
44
45pgm: slist {generate ($1);}
46 ;
47
48slist: slist stmt {$$ = add_slist ($1, $2);}
49 | stmt {$$ = $1;}
50 ;
51
52stmt: flist defn {$$ = set_flags($1, $2);}
53 | defn {$$ = $1;}
54 ;
55
56flist: flist flag {$$ = (YYSTYPE)(unsigned long long)
57 ((unsigned long long) $1
58 | (unsigned long long) $2);}
59 | flag {$$ = $1;}
60 ;
61
62flag:
63 MANUAL_PRINT {$$ = $1;}
64 | MANUAL_ENDIAN {$$ = $1;}
65 | MANUAL_JAVA {$$ = $1;}
66 | DONT_TRACE {$$ = $1;}
67 | TYPEONLY {$$ = $1;}
68 ;
69
70defn: DEFINE NAME LCURLY defbody RCURLY SEMI
71 {$$ = add_define($2, $4);}
72
73 | NOVERSION SEMI
74 {$$ = suppress_version();}
75 ;
76
77defbody: defbody onedef {$$ = add_defbody($1, $2);}
78 | onedef {$$ = $1;}
79 ;
80
81onedef: PRIMTYPE vbl SEMI {$$ = add_primtype($1, $2, 0);}
82 | TPACKED PRIMTYPE vbl SEMI {$$ = add_primtype($1, $2, $3);}
83 | NAME vbl SEMI {$$ = add_complex($1, $2);}
84 | UNION NAME LCURLY defbody RCURLY SEMI
85 {$$ = add_union($2, $4);}
86 ;
87
88vbl: NAME {$$ = add_scalar_vbl($1);}
89 | NAME LBRACK NUMBER RBRACK {$$ = add_vector_vbl($1, $3);}
Marek Gradzkifa42e252016-06-15 16:38:33 +020090 | NAME LBRACK NAME RBRACK {$$ = add_variable_length_vector_vbl($1, $3);}
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 ;