5 * Copyright 2002 Ove Kaaven
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 /* Berkeley yacc (byacc) doesn't seem to know about these */
43 /* Some *BSD supplied versions do define these though */
45 # define YYEMPTY (-1) /* Empty lookahead value of yychar */
48 # define YYLEX yylex()
51 #elif defined(YYBISON)
52 /* Bison was used for original development */
53 /* #define YYEMPTY -2 */
54 /* #define YYLEX yylex() */
57 /* No yacc we know yet */
58 # if !defined(YYEMPTY) || !defined(YYLEX)
59 # error Yacc version/type unknown. This version needs to be verified for settings of YYEMPTY and YYLEX.
60 # elif defined(__GNUC__) /* gcc defines the #warning directive */
61 # warning Yacc version/type unknown. It defines YYEMPTY and YYLEX, but is not tested
62 /* #else we just take a chance that it works... */
66 static attr_t
*make_attr
(enum attr_type type
);
67 static attr_t
*make_attrv
(enum attr_type type
, unsigned long val
);
68 static attr_t
*make_attrp
(enum attr_type type
, void *val
);
69 static expr_t
*make_expr
(enum expr_type type
);
70 static expr_t
*make_exprl
(enum expr_type type
, long val
);
71 static expr_t
*make_exprs
(enum expr_type type
, char *val
);
72 static expr_t
*make_exprt
(enum expr_type type
, typeref_t
*tref
, expr_t
*expr
);
73 static expr_t
*make_expr1
(enum expr_type type
, expr_t
*expr
);
74 static expr_t
*make_expr2
(enum expr_type type
, expr_t
*exp1
, expr_t
*exp2
);
75 static expr_t
*make_expr3
(enum expr_type type
, expr_t
*expr1
, expr_t
*expr2
, expr_t
*expr3
);
76 static type_t
*make_type
(unsigned char type
, type_t
*ref
);
77 static typeref_t
*make_tref
(char *name
, type_t
*ref
);
78 static typeref_t
*uniq_tref
(typeref_t
*ref
);
79 static type_t
*type_ref
(typeref_t
*ref
);
80 static void set_type
(var_t
*v
, typeref_t
*ref
, expr_t
*arr
);
81 static ifref_t
*make_ifref
(type_t
*iface
);
82 static var_t
*make_var
(char *name
);
83 static func_t
*make_func
(var_t
*def
, var_t
*args
);
84 static class_t
*make_class
(char *name
);
86 static type_t
*reg_type
(type_t
*type
, char *name
, int t
);
87 static type_t
*reg_types
(type_t
*type
, var_t
*names
, int t
);
88 static type_t
*find_type
(char *name
, int t
);
89 static type_t
*find_type2
(char *name
, int t
);
90 static type_t
*get_type
(unsigned char type
, char *name
, int t
);
91 static type_t
*get_typev
(unsigned char type
, var_t
*name
, int t
);
92 static int get_struct_type
(var_t
*fields
);
94 static var_t
*reg_const
(var_t
*var
);
95 static var_t
*find_const
(char *name
, int f
);
101 static type_t std_bool
= { "boolean" };
102 static type_t std_int
= { "int" };
103 static type_t std_int64
= { "__int64" };
104 static type_t std_uhyper
= { "MIDL_uhyper" };
121 %token
<str
> aIDENTIFIER
122 %token
<str
> aKNOWNTYPE
123 %token
<num
> aNUM aHEXNUM
128 %token tAGGREGATABLE tALLOCATE tAPPOBJECT tARRAYS tASYNC tASYNCUUID
129 %token tAUTOHANDLE tBINDABLE tBOOLEAN tBROADCAST tBYTE tBYTECOUNT
130 %token tCALLAS tCALLBACK tCASE tCDECL tCHAR tCOCLASS tCODE tCOMMSTATUS
131 %token tCONST tCONTEXTHANDLE tCONTEXTHANDLENOSERIALIZE
132 %token tCONTEXTHANDLESERIALIZE tCONTROL tCPPQUOTE
134 %token tDISPINTERFACE
135 %token tDLLNAME tDOUBLE tDUAL
137 %token tENTRY tENUM tERRORSTATUST
143 %token tHYPER tID tIDEMPOTENT
145 %token tIMPORT tIMPORTLIB
146 %token tIN tINCLUDE tINLINE
150 %token tLENGTHIS tLIBRARY
155 %token tOBJECT tODL tOLEAUTOMATION
157 %token tPOINTERDEFAULT
160 %token tREADONLY tREF
164 %token tSIZEIS tSIZEOF
167 %token tSTRING tSTRUCT
168 %token tSWITCH tSWITCHIS tSWITCHTYPE
178 %token tWCHAR tWIREMARSHAL
183 %type
<attr
> m_attributes attributes attrib_list attribute
184 %type
<expr
> m_exprs
/* exprs expr_list */ m_expr expr expr_list_const expr_const
185 %type
<expr
> array array_list
186 %type
<type
> inherit interface interfacehdr interfacedef interfacedec
187 %type
<type
> dispinterface dispinterfacehdr dispinterfacedef
188 %type
<type
> module modulehdr moduledef
189 %type
<type
> base_type int_std
190 %type
<type
> enumdef structdef typedef uniondef
191 %type
<ifref
> gbl_statements coclass_ints coclass_int
193 %type
<var
> m_args no_args args arg
194 %type
<var
> fields field s_field cases case enums enum_list
enum constdef externdef
195 %type
<var
> m_ident t_ident ident p_ident pident pident_list
196 %type
<var
> dispint_props
197 %type
<func
> funcdef int_statements
198 %type
<func
> dispint_meths
199 %type
<clas
> coclass coclasshdr coclassdef
200 %type
<num
> pointer_type version
201 %type
<str
> libraryhdr
216 input: gbl_statements
{ write_proxies
($1); }
219 gbl_statements: { $$
= NULL
; }
220 | gbl_statements interfacedec
{ $$
= $1; }
221 | gbl_statements interfacedef
{ $$
= make_ifref
($2); LINK
($$
, $1); }
222 | gbl_statements coclassdef
{ $$
= $1; add_coclass
($2); }
223 | gbl_statements moduledef
{ $$
= $1; add_module
($2); }
224 | gbl_statements librarydef
{ $$
= $1; }
225 | gbl_statements statement
{ $$
= $1; }
229 | imp_statements interfacedec
{ if
(!parse_only
) add_interface
($2); }
230 | imp_statements interfacedef
{ if
(!parse_only
) add_interface
($2); }
231 | imp_statements coclassdef
{ if
(!parse_only
) add_coclass
($2); }
232 | imp_statements moduledef
{ if
(!parse_only
) add_module
($2); }
233 | imp_statements statement
{}
236 int_statements: { $$
= NULL
; }
237 | int_statements funcdef
';' { $$
= $2; LINK
($$
, $1); }
238 | int_statements statement
{ $$
= $1; }
242 | constdef
';' { if
(!parse_only
) { write_constdef
($1); } }
244 | enumdef
';' { if
(!parse_only
) { write_type
(header
, $1, NULL
, NULL
); fprintf
(header
, ";\n\n"); } }
245 | externdef
';' { if
(!parse_only
) { write_externdef
($1); } }
247 | structdef
';' { if
(!parse_only
) { write_type
(header
, $1, NULL
, NULL
); fprintf
(header
, ";\n\n"); } }
249 | uniondef
';' { if
(!parse_only
) { write_type
(header
, $1, NULL
, NULL
); fprintf
(header
, ";\n\n"); } }
252 cppquote: tCPPQUOTE
'(' aSTRING
')' { if
(!parse_only
) fprintf
(header
, "%s\n", $3); }
254 import_start: tIMPORT aSTRING
';' { assert
(yychar == YYEMPTY
);
255 if
(!do_import
($2)) yychar = aEOF
; }
257 import: import_start imp_statements aEOF
{}
260 libraryhdr: tLIBRARY aIDENTIFIER
{ $$
= $2; }
262 library_start: attributes libraryhdr
'{' { start_typelib
($2, $1); }
264 librarydef: library_start imp_statements
'}' { end_typelib
(); }
267 m_args: { $$
= NULL
; }
271 no_args: tVOID
{ $$
= NULL
; }
275 | args
',' arg
{ LINK
($3, $1); $$
= $3; }
279 /* split into two rules to get bison to resolve a tVOID conflict */
280 arg: attributes type pident array
{ $$
= $3;
281 set_type
($$
, $2, $4);
284 | type pident array
{ $$
= $2;
285 set_type
($$
, $1, $3);
287 | attributes type pident
'(' m_args
')' { $$
= $3;
289 set_type
($$
, $2, NULL
);
293 | type pident
'(' m_args
')' { $$
= $2;
295 set_type
($$
, $1, NULL
);
300 array: { $$
= NULL
; }
301 |
'[' array_list
']' { $$
= $2; }
302 |
'[' '*' ']' { $$
= make_expr
(EXPR_VOID
); }
305 array_list: m_expr
/* size of first dimension is optional */
306 | array_list
',' expr
{ LINK
($3, $1); $$
= $3; }
307 | array_list
']' '[' expr
{ LINK
($4, $1); $$
= $4; }
310 m_attributes: { $$
= NULL
; }
315 '[' attrib_list
']' { $$
= $2; }
318 attrib_list: attribute
319 | attrib_list
',' attribute
{ LINK
($3, $1); $$
= $3; }
320 | attrib_list
']' '[' attribute
{ LINK
($4, $1); $$
= $4; }
324 tASYNC
{ $$
= make_attr
(ATTR_ASYNC
); }
325 | tCALLAS
'(' ident
')' { $$
= make_attrp
(ATTR_CALLAS
, $3); }
326 | tCASE
'(' expr_list_const
')' { $$
= make_attrp
(ATTR_CASE
, $3); }
327 | tCONTEXTHANDLE
{ $$
= make_attrv
(ATTR_CONTEXTHANDLE
, 0); }
328 | tCONTEXTHANDLENOSERIALIZE
{ $$
= make_attrv
(ATTR_CONTEXTHANDLE
, 0); /* RPC_CONTEXT_HANDLE_DONT_SERIALIZE */ }
329 | tCONTEXTHANDLESERIALIZE
{ $$
= make_attrv
(ATTR_CONTEXTHANDLE
, 0); /* RPC_CONTEXT_HANDLE_SERIALIZE */ }
330 | tDEFAULT
{ $$
= make_attr
(ATTR_DEFAULT
); }
331 | tDLLNAME
'(' aSTRING
')' { $$
= make_attrp
(ATTR_DLLNAME
, $3); }
332 | tDUAL
{ $$
= make_attr
(ATTR_DUAL
); }
333 | tENDPOINT
'(' aSTRING
')' { $$
= make_attrp
(ATTR_ENDPOINT
, $3); }
334 | tENTRY
'(' aSTRING
')' { $$
= make_attrp
(ATTR_ENTRY_STRING
, $3); }
335 | tENTRY
'(' expr_const
')' { $$
= make_attrp
(ATTR_ENTRY_ORDINAL
, $3); }
336 | tHANDLE
{ $$
= make_attr
(ATTR_HANDLE
); }
337 | tHELPSTRING
'(' aSTRING
')' { $$
= make_attrp
(ATTR_HELPSTRING
, $3); }
338 | tID
'(' expr_const
')' { $$
= make_attrp
(ATTR_ID
, $3); }
339 | tIDEMPOTENT
{ $$
= make_attr
(ATTR_IDEMPOTENT
); }
340 | tIIDIS
'(' ident
')' { $$
= make_attrp
(ATTR_IIDIS
, $3); }
341 | tIN
{ $$
= make_attr
(ATTR_IN
); }
342 | tINPUTSYNC
{ $$
= make_attr
(ATTR_INPUTSYNC
); }
343 | tLENGTHIS
'(' m_exprs
')' { $$
= make_attrp
(ATTR_LENGTHIS
, $3); }
344 | tLOCAL
{ $$
= make_attr
(ATTR_LOCAL
); }
345 | tOBJECT
{ $$
= make_attr
(ATTR_OBJECT
); }
346 | tODL
{ $$
= make_attr
(ATTR_ODL
); }
347 | tOLEAUTOMATION
{ $$
= make_attr
(ATTR_OLEAUTOMATION
); }
348 | tOUT
{ $$
= make_attr
(ATTR_OUT
); }
349 | tPOINTERDEFAULT
'(' pointer_type
')' { $$
= make_attrv
(ATTR_POINTERDEFAULT
, $3); }
350 | tPUBLIC
{ $$
= make_attr
(ATTR_PUBLIC
); }
351 | tREADONLY
{ $$
= make_attr
(ATTR_READONLY
); }
352 | tRETVAL
{ $$
= make_attr
(ATTR_RETVAL
); }
353 | tSIZEIS
'(' m_exprs
')' { $$
= make_attrp
(ATTR_SIZEIS
, $3); }
354 | tSOURCE
{ $$
= make_attr
(ATTR_SOURCE
); }
355 | tSTRING
{ $$
= make_attr
(ATTR_STRING
); }
356 | tSWITCHIS
'(' expr
')' { $$
= make_attrp
(ATTR_SWITCHIS
, $3); }
357 | tSWITCHTYPE
'(' type
')' { $$
= make_attrp
(ATTR_SWITCHTYPE
, type_ref
($3)); }
358 | tTRANSMITAS
'(' type
')' { $$
= make_attrp
(ATTR_TRANSMITAS
, type_ref
($3)); }
359 | tUUID
'(' aUUID
')' { $$
= make_attrp
(ATTR_UUID
, $3); }
360 | tV1ENUM
{ $$
= make_attr
(ATTR_V1ENUM
); }
361 | tVERSION
'(' version
')' { $$
= make_attrv
(ATTR_VERSION
, $3); }
362 | tWIREMARSHAL
'(' type
')' { $$
= make_attrp
(ATTR_WIREMARSHAL
, type_ref
($3)); }
363 | pointer_type
{ $$
= make_attrv
(ATTR_POINTERTYPE
, $1); }
370 cases: { $$
= NULL
; }
371 | cases case
{ if
($2) { LINK
($2, $1); $$
= $2; }
376 case: tCASE expr
':' field
{ attr_t
*a
= make_attrp
(ATTR_CASE
, $2);
377 $$
= $4; if
(!$$
) $$
= make_var
(NULL
);
378 LINK
(a
, $$
->attrs
); $$
->attrs
= a
;
380 | tDEFAULT
':' field
{ attr_t
*a
= make_attr
(ATTR_DEFAULT
);
381 $$
= $3; if
(!$$
) $$
= make_var
(NULL
);
382 LINK
(a
, $$
->attrs
); $$
->attrs
= a
;
386 constdef: tCONST type ident
'=' expr_const
{ $$
= reg_const
($3);
387 set_type
($$
, $2, NULL
);
393 enums: { $$
= NULL
; }
394 | enum_list
',' { $$
= $1; }
399 | enum_list
',' enum { LINK
($3, $1); $$
= $3;
401 $3->lval
= $1->lval
+ 1;
405 enum: ident
'=' expr_const
{ $$
= reg_const
($1);
409 | ident
{ $$
= reg_const
($1);
410 $$
->lval
= 0; /* default for first enum entry */
414 enumdef: tENUM t_ident
'{' enums
'}' { $$
= get_typev
(RPC_FC_ENUM16
, $2, tsENUM
);
421 | m_exprs
',' m_expr
{ LINK
($3, $1); $$
= $3; }
425 exprs: { $$ = make_expr(EXPR_VOID); }
430 | expr_list ',' expr { LINK($3, $1); $$ = $3; }
434 m_expr: { $$
= make_expr
(EXPR_VOID
); }
438 expr: aNUM
{ $$
= make_exprl
(EXPR_NUM
, $1); }
439 | aHEXNUM
{ $$
= make_exprl
(EXPR_HEXNUM
, $1); }
440 | aIDENTIFIER
{ $$
= make_exprs
(EXPR_IDENTIFIER
, $1); }
441 | expr
'?' expr
':' expr
{ $$
= make_expr3
(EXPR_COND
, $1, $3, $5); }
442 | expr
'|' expr
{ $$
= make_expr2
(EXPR_OR
, $1, $3); }
443 | expr
'&' expr
{ $$
= make_expr2
(EXPR_AND
, $1, $3); }
444 | expr
'+' expr
{ $$
= make_expr2
(EXPR_ADD
, $1, $3); }
445 | expr
'-' expr
{ $$
= make_expr2
(EXPR_SUB
, $1, $3); }
446 | expr
'*' expr
{ $$
= make_expr2
(EXPR_MUL
, $1, $3); }
447 | expr
'/' expr
{ $$
= make_expr2
(EXPR_DIV
, $1, $3); }
448 | expr SHL expr
{ $$
= make_expr2
(EXPR_SHL
, $1, $3); }
449 | expr SHR expr
{ $$
= make_expr2
(EXPR_SHR
, $1, $3); }
450 |
'~' expr
{ $$
= make_expr1
(EXPR_NOT
, $2); }
451 |
'-' expr %prec NEG
{ $$
= make_expr1
(EXPR_NEG
, $2); }
452 |
'*' expr %prec PPTR
{ $$
= make_expr1
(EXPR_PPTR
, $2); }
453 |
'(' type
')' expr %prec CAST
{ $$
= make_exprt
(EXPR_CAST
, $2, $4); }
454 | tSIZEOF
'(' type
')' { $$
= make_exprt
(EXPR_SIZEOF
, $3, NULL
); }
455 |
'(' expr
')' { $$
= $2; }
458 expr_list_const: expr_const
459 | expr_list_const
',' expr_const
{ LINK
($3, $1); $$
= $3; }
462 expr_const: expr
{ $$
= $1;
463 if
(!$$
->is_const
) yyerror("expression is not constant\n");
467 externdef: tEXTERN tCONST type ident
{ $$
= $4;
468 set_type
($$
, $3, NULL
);
472 fields: { $$
= NULL
; }
473 | fields field
{ if
($2) { LINK
($2, $1); $$
= $2; }
478 field: s_field
';' { $$
= $1; }
479 | m_attributes uniondef
';' { $$
= make_var
(NULL
); $$
->type
= $2; $$
->attrs
= $1; }
480 | attributes
';' { $$
= make_var
(NULL
); $$
->attrs
= $1; }
484 s_field: m_attributes type pident array
{ $$
= $3; set_type
($$
, $2, $4); $$
->attrs
= $1; }
488 m_attributes type callconv pident
489 '(' m_args
')' { set_type
($4, $2, NULL
);
491 $$
= make_func
($4, $6);
495 m_ident: { $$
= NULL
; }
499 t_ident: { $$
= NULL
; }
500 | aIDENTIFIER
{ $$
= make_var
($1); }
501 | aKNOWNTYPE
{ $$
= make_var
($1); }
504 ident: aIDENTIFIER
{ $$
= make_var
($1); }
505 /* some "reserved words" used in attributes are also used as field names in some MS IDL files */
506 | tID
{ $$
= make_var
($
<str
>1); }
507 | tRETVAL
{ $$
= make_var
($
<str
>1); }
508 | tVERSION
{ $$
= make_var
($
<str
>1); }
511 base_type: tBYTE
{ $$
= make_type
(RPC_FC_BYTE
, NULL
); }
512 | tWCHAR
{ $$
= make_type
(RPC_FC_WCHAR
, NULL
); }
514 | tSIGNED int_std
{ $$
= $2; $$
->sign
= 1; }
515 | tUNSIGNED int_std
{ $$
= $2; $$
->sign
= -1;
517 case RPC_FC_SMALL
: $$
->type
= RPC_FC_USMALL
; break
;
518 case RPC_FC_SHORT
: $$
->type
= RPC_FC_USHORT
; break
;
519 case RPC_FC_LONG
: $$
->type
= RPC_FC_ULONG
; break
;
521 if
(!$$
->ref
) { $$
->ref
= &std_uhyper
; $$
->sign
= 0; }
526 | tFLOAT
{ $$
= make_type
(RPC_FC_FLOAT
, NULL
); }
527 | tDOUBLE
{ $$
= make_type
(RPC_FC_DOUBLE
, NULL
); }
528 | tBOOLEAN
{ $$
= make_type
(RPC_FC_BYTE
, &std_bool
); /* ? */ }
529 | tERRORSTATUST
{ $$
= make_type
(RPC_FC_ERROR_STATUS_T
, NULL
); }
530 | tHANDLET
{ $$
= make_type
(RPC_FC_BIND_PRIMITIVE
, NULL
); /* ? */ }
537 int_std: tINT
{ $$
= make_type
(RPC_FC_LONG
, &std_int
); } /* win32 only */
538 | tSHORT m_int
{ $$
= make_type
(RPC_FC_SHORT
, NULL
); }
539 | tLONG m_int
{ $$
= make_type
(RPC_FC_LONG
, NULL
); }
540 | tHYPER m_int
{ $$
= make_type
(RPC_FC_HYPER
, NULL
); }
541 | tINT64
{ $$
= make_type
(RPC_FC_HYPER
, &std_int64
); }
542 | tCHAR
{ $$
= make_type
(RPC_FC_CHAR
, NULL
); }
545 coclass: tCOCLASS aIDENTIFIER
{ $$
= make_class
($2); }
546 | tCOCLASS aKNOWNTYPE
{ $$
= make_class
($2); }
549 coclasshdr: attributes coclass
{ $$
= $2;
554 coclassdef: coclasshdr
'{' coclass_ints
'}' { $$
= $1;
559 coclass_ints: { $$
= NULL
; }
560 | coclass_ints coclass_int
{ LINK
($2, $1); $$
= $2; }
564 m_attributes interfacedec
{ $$
= make_ifref
($2); $$
->attrs
= $1; }
567 dispinterface: tDISPINTERFACE aIDENTIFIER
{ $$
= get_type
(0, $2, 0); }
568 | tDISPINTERFACE aKNOWNTYPE
{ $$
= get_type
(0, $2, 0); }
571 dispinterfacehdr: attributes dispinterface
{ $$
= $2;
572 if
($$
->defined
) yyerror("multiple definition error\n");
574 /* $$->attrs = make_attr(ATTR_DISPINTERFACE); */
575 /* LINK($$->attrs, $1); */
576 $$
->ref
= find_type
("IDispatch", 0);
577 if
(!$$
->ref
) yyerror("IDispatch is undefined\n");
579 if
(!parse_only
) write_forward
($$
);
583 dispint_props: tPROPERTIES
':' { $$
= NULL
; }
584 | dispint_props s_field
';' { LINK
($2, $1); $$
= $2; }
587 dispint_meths: tMETHODS
':' { $$
= NULL
; }
588 | dispint_meths funcdef
';' { LINK
($2, $1); $$
= $2; }
591 dispinterfacedef: dispinterfacehdr
'{'
597 if
(!parse_only
) write_interface
($$
);
599 /* FIXME: not sure how to handle this yet
600 | dispinterfacehdr '{' interface '}' { $$ = $1;
601 if (!parse_only) write_interface($$);
606 inherit: { $$
= NULL
; }
607 |
':' aKNOWNTYPE
{ $$
= find_type2
($2, 0); }
610 interface: tINTERFACE aIDENTIFIER
{ $$
= get_type
(RPC_FC_IP
, $2, 0); }
611 | tINTERFACE aKNOWNTYPE
{ $$
= get_type
(RPC_FC_IP
, $2, 0); }
614 interfacehdr: attributes interface
{ $$
= $2;
615 if
($$
->defined
) yyerror("multiple definition error\n");
618 if
(!parse_only
) write_forward
($$
);
622 interfacedef: interfacehdr inherit
623 '{' int_statements
'}' { $$
= $1;
626 if
(!parse_only
) write_interface
($$
);
628 /* MIDL is able to import the definition of a base class from inside the
629 * definition of a derived class, I'll try to support it with this rule */
630 | interfacehdr
':' aIDENTIFIER
631 '{' import int_statements
'}' { $$
= $1;
632 $$
->ref
= find_type2
($3, 0);
633 if
(!$$
->ref
) yyerror("base class %s not found in import\n", $3);
635 if
(!parse_only
) write_interface
($$
);
637 | dispinterfacedef
{ $$
= $1; }
641 interface
';' { $$
= $1; if
(!parse_only
) write_forward
($$
); }
642 | dispinterface
';' { $$
= $1; if
(!parse_only
) write_forward
($$
); }
645 module: tMODULE aIDENTIFIER
{ $$
= make_type
(0, NULL
); $$
->name
= $2; }
646 | tMODULE aKNOWNTYPE
{ $$
= make_type
(0, NULL
); $$
->name
= $2; }
649 modulehdr: attributes module
{ $$
= $2;
654 moduledef: modulehdr
'{' int_statements
'}' { $$
= $1;
656 /* FIXME: if (!parse_only) write_module($$); */
660 p_ident: '*' pident %prec PPTR
{ $$
= $2; $$
->ptr_level
++; }
661 | tCONST p_ident
{ $$
= $2; /* FIXME */ }
666 |
'(' pident
')' { $$
= $2; }
671 | pident_list
',' pident
{ LINK
($3, $1); $$
= $3; }
675 tREF
{ $$
= RPC_FC_RP
; }
676 | tUNIQUE
{ $$
= RPC_FC_UP
; }
679 structdef: tSTRUCT t_ident
'{' fields
'}' { $$
= get_typev
(RPC_FC_STRUCT
, $2, tsSTRUCT
);
680 /* overwrite RPC_FC_STRUCT with a more exact type */
681 $$
->type
= get_struct_type
( $4 );
687 type: tVOID
{ $$
= make_tref
(NULL
, make_type
(0, NULL
)); }
688 | aKNOWNTYPE
{ $$
= make_tref
($1, find_type
($1, 0)); }
689 | base_type
{ $$
= make_tref
(NULL
, $1); }
690 | tCONST type
{ $$
= uniq_tref
($2); $$
->ref
->is_const
= TRUE
; }
691 | enumdef
{ $$
= make_tref
(NULL
, $1); }
692 | tENUM aIDENTIFIER
{ $$
= make_tref
(NULL
, find_type2
($2, tsENUM
)); }
693 | structdef
{ $$
= make_tref
(NULL
, $1); }
694 | tSTRUCT aIDENTIFIER
{ $$
= make_tref
(NULL
, get_type
(RPC_FC_STRUCT
, $2, tsSTRUCT
)); }
695 | uniondef
{ $$
= make_tref
(NULL
, $1); }
696 | tUNION aIDENTIFIER
{ $$
= make_tref
(NULL
, find_type2
($2, tsUNION
)); }
699 typedef: tTYPEDEF m_attributes type pident_list
{ typeref_t
*tref
= uniq_tref
($3);
700 $4->tname
= tref
->name
;
704 if
(!parse_only
) write_typedef
($$
, $4);
705 reg_types
($$
, $4, 0);
709 uniondef: tUNION t_ident
'{' fields
'}' { $$
= get_typev
(RPC_FC_NON_ENCAPSULATED_UNION
, $2, tsUNION
);
714 tSWITCH
'(' s_field
')'
715 m_ident
'{' cases
'}' { var_t
*u
= $7;
716 $$
= get_typev
(RPC_FC_ENCAPSULATED_UNION
, $2, tsUNION
);
717 if
(!u
) u
= make_var
("tagged_union");
718 u
->type
= make_type
(RPC_FC_NON_ENCAPSULATED_UNION
, NULL
);
719 u
->type
->fields
= $9;
720 u
->type
->defined
= TRUE
;
721 LINK
(u
, $5); $$
->fields
= u
;
727 aNUM
{ $$
= MAKELONG
($1, 0); }
728 | aNUM
'.' aNUM
{ $$
= MAKELONG
($1, $3); }
733 static attr_t
*make_attr
(enum attr_type type
)
735 attr_t
*a
= xmalloc
(sizeof
(attr_t
));
742 static attr_t
*make_attrv
(enum attr_type type
, unsigned long val
)
744 attr_t
*a
= xmalloc
(sizeof
(attr_t
));
751 static attr_t
*make_attrp
(enum attr_type type
, void *val
)
753 attr_t
*a
= xmalloc
(sizeof
(attr_t
));
760 static expr_t
*make_expr
(enum expr_type type
)
762 expr_t
*e
= xmalloc
(sizeof
(expr_t
));
771 static expr_t
*make_exprl
(enum expr_type type
, long val
)
773 expr_t
*e
= xmalloc
(sizeof
(expr_t
));
779 /* check for numeric constant */
780 if
(type
== EXPR_NUM || type
== EXPR_HEXNUM
) {
787 static expr_t
*make_exprs
(enum expr_type type
, char *val
)
790 e
= xmalloc
(sizeof
(expr_t
));
796 /* check for predefined constants */
797 if
(type
== EXPR_IDENTIFIER
) {
798 var_t
*c
= find_const
(val
, 0);
809 static expr_t
*make_exprt
(enum expr_type type
, typeref_t
*tref
, expr_t
*expr
)
812 e
= xmalloc
(sizeof
(expr_t
));
818 /* check for cast of constant expression */
819 if
(type
== EXPR_CAST
&& expr
->is_const
) {
821 e
->cval
= expr
->cval
;
826 static expr_t
*make_expr1
(enum expr_type type
, expr_t
*expr
)
829 e
= xmalloc
(sizeof
(expr_t
));
835 /* check for compile-time optimization */
836 if
(expr
->is_const
) {
840 e
->cval
= -expr
->cval
;
843 e
->cval
= ~expr
->cval
;
853 static expr_t
*make_expr2
(enum expr_type type
, expr_t
*expr1
, expr_t
*expr2
)
856 e
= xmalloc
(sizeof
(expr_t
));
862 /* check for compile-time optimization */
863 if
(expr1
->is_const
&& expr2
->is_const
) {
867 e
->cval
= expr1
->cval
+ expr2
->cval
;
870 e
->cval
= expr1
->cval
- expr2
->cval
;
873 e
->cval
= expr1
->cval
* expr2
->cval
;
876 e
->cval
= expr1
->cval
/ expr2
->cval
;
879 e
->cval
= expr1
->cval | expr2
->cval
;
882 e
->cval
= expr1
->cval
& expr2
->cval
;
885 e
->cval
= expr1
->cval
<< expr2
->cval
;
888 e
->cval
= expr1
->cval
>> expr2
->cval
;
898 static expr_t
*make_expr3
(enum expr_type type
, expr_t
*expr1
, expr_t
*expr2
, expr_t
*expr3
)
901 e
= xmalloc
(sizeof
(expr_t
));
908 /* check for compile-time optimization */
909 if
(expr1
->is_const
&& expr2
->is_const
&& expr3
->is_const
) {
913 e
->cval
= expr1
->cval ? expr2
->cval
: expr3
->cval
;
923 static type_t
*make_type
(unsigned char type
, type_t
*ref
)
925 type_t
*t
= xmalloc
(sizeof
(type_t
));
933 t
->ignore
= parse_only
;
942 static typeref_t
*make_tref
(char *name
, type_t
*ref
)
944 typeref_t
*t
= xmalloc
(sizeof
(typeref_t
));
947 t
->uniq
= ref ?
0 : 1;
951 static typeref_t
*uniq_tref
(typeref_t
*ref
)
955 if
(t
->uniq
) return t
;
956 tp
= make_type
(0, t
->ref
);
964 static type_t
*type_ref
(typeref_t
*ref
)
966 type_t
*t
= ref
->ref
;
967 if
(ref
->name
) free
(ref
->name
);
972 static void set_type
(var_t
*v
, typeref_t
*ref
, expr_t
*arr
)
975 v
->tname
= ref
->name
;
981 static ifref_t
*make_ifref
(type_t
*iface
)
983 ifref_t
*l
= xmalloc
(sizeof
(ifref_t
));
990 static var_t
*make_var
(char *name
)
992 var_t
*v
= xmalloc
(sizeof
(var_t
));
1005 static func_t
*make_func
(var_t
*def
, var_t
*args
)
1007 func_t
*f
= xmalloc
(sizeof
(func_t
));
1010 f
->ignore
= parse_only
;
1016 static class_t
*make_class
(char *name
)
1018 class_t
*c
= xmalloc
(sizeof
(class_t
));
1028 static int hash_ident
(const char *name
)
1030 const char *p
= name
;
1032 /* a simple sum hash is probably good enough */
1037 return sum
& (HASHMAX
-1);
1040 /***** type repository *****/
1049 struct rtype
*type_hash
[HASHMAX
];
1051 static type_t
*reg_type
(type_t
*type
, char *name
, int t
)
1056 yyerror("registering named type without name\n");
1059 hash
= hash_ident
(name
);
1060 nt
= xmalloc
(sizeof
(struct rtype
));
1064 nt
->next
= type_hash
[hash
];
1065 type_hash
[hash
] = nt
;
1069 /* determine pointer type from attrs */
1070 static unsigned char get_pointer_type
( type_t
*type
)
1072 int t
= get_attrv
( type
->attrs
, ATTR_POINTERTYPE
);
1077 static type_t
*reg_types
(type_t
*type
, var_t
*names
, int t
)
1083 var_t
*next
= NEXT_LINK
(names
);
1086 int cptr
= names
->ptr_level
;
1088 while
(cptr
> ptrc
) {
1089 int t
= get_pointer_type
( cur
);
1090 cur
= ptr
= make_type
(t
, cur
);
1094 while
(cptr
< ptrc
) {
1099 reg_type
(cur
, names
->name
, t
);
1107 static type_t
*find_type
(char *name
, int t
)
1109 struct rtype
*cur
= type_hash
[hash_ident
(name
)];
1110 while
(cur
&& (cur
->t
!= t || strcmp
(cur
->name
, name
)))
1113 yyerror("type %s not found\n", name
);
1119 static type_t
*find_type2
(char *name
, int t
)
1121 type_t
*tp
= find_type
(name
, t
);
1126 int is_type
(const char *name
)
1128 struct rtype
*cur
= type_hash
[hash_ident
(name
)];
1129 while
(cur
&& (cur
->t || strcmp
(cur
->name
, name
)))
1131 if
(cur
) return TRUE
;
1135 static type_t
*get_type
(unsigned char type
, char *name
, int t
)
1137 struct rtype
*cur
= NULL
;
1140 cur
= type_hash
[hash_ident
(name
)];
1141 while
(cur
&& (cur
->t
!= t || strcmp
(cur
->name
, name
)))
1148 tp
= make_type
(type
, NULL
);
1150 if
(!name
) return tp
;
1151 return reg_type
(tp
, name
, t
);
1154 static type_t
*get_typev
(unsigned char type
, var_t
*name
, int t
)
1161 return get_type
(type
, sname
, t
);
1164 static int get_struct_type
(var_t
*field
)
1166 int has_pointer
= 0;
1167 int has_conformant_array
= 0;
1168 int has_conformant_string
= 0;
1172 type_t
*t
= field
->type
;
1174 /* get the base type */
1175 while
( (t
->type
== 0) && t
->ref
)
1181 * RPC_FC_BYTE, RPC_FC_STRUCT, etc
1182 * Simple types don't effect the type of struct.
1183 * A struct containing a simple struct is still a simple struct.
1184 * So long as we can block copy the data, we return RPC_FC_STRUCT.
1186 case
0: /* void pointer */
1196 case RPC_FC_INT3264
:
1197 case RPC_FC_UINT3264
:
1211 has_conformant_array
= 1;
1213 case RPC_FC_C_CSTRING
:
1214 case RPC_FC_C_WSTRING
:
1215 has_conformant_string
= 1;
1219 * Propagate member attributes
1220 * a struct should be at least as complex as its member
1222 case RPC_FC_CVSTRUCT
:
1223 has_conformant_string
= 1;
1227 case RPC_FC_CPSTRUCT
:
1228 has_conformant_array
= 1;
1232 case RPC_FC_CSTRUCT
:
1233 has_conformant_array
= 1;
1236 case RPC_FC_PSTRUCT
:
1241 fprintf
(stderr
,"Unknown struct member %s with type (0x%02x)\n",
1242 field
->name
, t
->type
);
1243 /* fallthru - treat it as complex */
1245 /* as soon as we see one of these these members, it's bogus... */
1247 case RPC_FC_ENCAPSULATED_UNION
:
1248 case RPC_FC_NON_ENCAPSULATED_UNION
:
1249 case RPC_FC_TRANSMIT_AS
:
1250 case RPC_FC_REPRESENT_AS
:
1252 case RPC_FC_EMBEDDED_COMPLEX
:
1253 case RPC_FC_BOGUS_STRUCT
:
1254 return RPC_FC_BOGUS_STRUCT
;
1256 field
= NEXT_LINK
(field
);
1259 if
( has_conformant_string
&& has_pointer
)
1260 return RPC_FC_CVSTRUCT
;
1261 if
( has_conformant_array
&& has_pointer
)
1262 return RPC_FC_CPSTRUCT
;
1263 if
( has_conformant_array
)
1264 return RPC_FC_CSTRUCT
;
1266 return RPC_FC_PSTRUCT
;
1267 return RPC_FC_STRUCT
;
1270 /***** constant repository *****/
1275 struct rconst
*next
;
1278 struct rconst
*const_hash
[HASHMAX
];
1280 static var_t
*reg_const
(var_t
*var
)
1285 yyerror("registering constant without name\n");
1288 hash
= hash_ident
(var
->name
);
1289 nc
= xmalloc
(sizeof
(struct rconst
));
1290 nc
->name
= var
->name
;
1292 nc
->next
= const_hash
[hash
];
1293 const_hash
[hash
] = nc
;
1297 static var_t
*find_const
(char *name
, int f
)
1299 struct rconst
*cur
= const_hash
[hash_ident
(name
)];
1300 while
(cur
&& strcmp
(cur
->name
, name
))
1303 if
(f
) yyerror("constant %s not found\n", name
);