1 %
{ /* rcparse.y -- parser for Windows rc files
2 Copyright 1997, 1998 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor, Cygnus Support.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program 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
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
22 /* This is a parser for Windows rc files. It is based on the parser
23 by Gunther Ebert <gunther.ebert@ixos-leipzig.de>. */
27 #include "libiberty.h"
32 /* The current language. */
34 static unsigned short language
;
36 /* The resource information during a sub statement. */
38 static struct res_res_info sub_res_info
;
40 /* Dialog information. This is built by the nonterminals styles and
43 static struct dialog dialog
;
45 /* This is used when building a style. It is modified by the
46 nonterminal styleexpr. */
48 static unsigned long style
;
50 /* These are used when building a control. They are set before using
53 static unsigned long base_style
;
54 static unsigned long default_style
;
55 static unsigned long class
;
61 struct accelerator acc
;
62 struct accelerator
*pacc
;
63 struct dialog_control
*dialog_control
;
64 struct menuitem
*menuitem
;
67 struct rcdata_item
*first
;
68 struct rcdata_item
*last
;
70 struct rcdata_item
*rcdata_item
;
71 struct stringtable_data
*stringtable
;
72 struct fixed_versioninfo
*fixver
;
73 struct ver_info
*verinfo
;
74 struct ver_stringinfo
*verstring
;
75 struct ver_varinfo
*vervar
;
77 struct res_res_info res_info
;
86 /* Nonzero if this number was explicitly specified as long. */
100 %token ACCELERATORS VIRTKEY ASCII NOINVERT SHIFT CONTROL ALT
103 %token DIALOG DIALOGEX EXSTYLE CAPTION CLASS STYLE
104 %token AUTO3STATE AUTOCHECKBOX AUTORADIOBUTTON CHECKBOX COMBOBOX CTEXT
105 %token DEFPUSHBUTTON EDITTEXT GROUPBOX LISTBOX LTEXT PUSHBOX PUSHBUTTON
106 %token RADIOBUTTON RTEXT SCROLLBAR STATE3 USERBUTTON
107 %token BEDIT HEDIT IEDIT
110 %token LANGUAGE CHARACTERISTICS VERSIONK
111 %token MENU MENUEX MENUITEM SEPARATOR POPUP CHECKED GRAYED HELP INACTIVE
112 %token MENUBARBREAK MENUBREAK
116 %token VERSIONINFO FILEVERSION PRODUCTVERSION FILEFLAGSMASK FILEFLAGS
117 %token FILEOS FILETYPE FILESUBTYPE BLOCKSTRINGFILEINFO BLOCKVARFILEINFO
120 %token MOVEABLE FIXED PURE IMPURE PRELOAD LOADONCALL DISCARDABLE
122 %token
<s
> QUOTEDSTRING STRING
124 %token
<ss
> SIZEDSTRING
127 %type
<pacc
> acc_entries
128 %type
<acc
> acc_entry acc_event
129 %type
<dialog_control
> control control_params
130 %type
<menuitem
> menuitems menuitem menuexitems menuexitem
131 %type
<rcdata
> optrcdata_data optrcdata_data_int rcdata_data
132 %type
<rcdata_item
> opt_control_data
133 %type
<fixver
> fixedverinfo
134 %type
<verinfo
> verblocks
135 %type
<verstring
> vervals
136 %type
<vervar
> vertrans
137 %type
<res_info
> suboptions memflags_move_discard memflags_move
138 %type
<memflags
> memflag
140 %type
<il
> exstyle parennumber
141 %type
<il
> numexpr posnumexpr cnumexpr optcnumexpr cposnumexpr
142 %type
<is
> acc_options acc_option menuitem_flags menuitem_flag
143 %type
<s
> optstringc file_name
144 %type
<i
> sizednumexpr sizedposnumexpr
157 | input newcmd accelerator
158 | input newcmd bitmap
159 | input newcmd cursor
160 | input newcmd dialog
163 | input newcmd language
165 | input newcmd menuex
166 | input newcmd messagetable
167 | input newcmd rcdata
168 | input newcmd stringtable
170 | input newcmd versioninfo
171 | input newcmd IGNORED_TOKEN
177 rcparse_discard_strings
();
181 /* Accelerator resources. */
184 id ACCELERATORS suboptions BEG acc_entries END
186 define_accelerator
($1, &$3, $5);
195 | acc_entries acc_entry
197 struct accelerator
*a
;
199 a
= (struct accelerator
*) res_alloc
(sizeof
*a
);
205 struct accelerator
**pp
;
207 for
(pp
= &$1->next
; *pp
!= NULL
; pp
= &(*pp
)->next
)
216 acc_event cposnumexpr
221 | acc_event cposnumexpr
',' acc_options
226 if
(($$.flags
& ACC_VIRTKEY
) == 0
227 && ($$.flags
& (ACC_SHIFT | ACC_CONTROL | ACC_ALT
)) != 0)
228 rcparse_warning
(_
("inappropriate modifiers for non-VIRTKEY"));
245 $$.flags
= ACC_CONTROL | ACC_VIRTKEY
;
248 ch
= toupper
((unsigned char) ch
);
252 rcparse_warning
(_
("accelerator should only be one character"));
268 | acc_options
',' acc_option
272 /* I've had one report that the comma is optional. */
273 | acc_options acc_option
286 /* This is just the absence of VIRTKEY. */
307 /* Bitmap resources. */
310 id BITMAP memflags_move file_name
312 define_bitmap
($1, &$3, $4);
316 /* Cursor resources. */
319 id CURSOR memflags_move_discard file_name
321 define_cursor
($1, &$3, $4);
325 /* Dialog resources. */
328 id DIALOG memflags_move exstyle posnumexpr cnumexpr cnumexpr
331 memset
(&dialog
, 0, sizeof dialog
);
336 dialog.style
= WS_POPUP | WS_BORDER | WS_SYSMENU
;
338 dialog.menu.named
= 1;
339 dialog.class.named
= 1;
342 dialog.controls
= NULL
;
345 styles BEG controls END
347 define_dialog
($1, &sub_res_info
, &dialog
);
349 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
352 memset
(&dialog
, 0, sizeof dialog
);
357 dialog.style
= WS_POPUP | WS_BORDER | WS_SYSMENU
;
359 dialog.menu.named
= 1;
360 dialog.class.named
= 1;
362 dialog.ex
= ((struct dialog_ex
*)
363 res_alloc
(sizeof
(struct dialog_ex
)));
364 memset
(dialog.ex
, 0, sizeof
(struct dialog_ex
));
365 dialog.controls
= NULL
;
368 styles BEG controls END
370 define_dialog
($1, &sub_res_info
, &dialog
);
372 | id DIALOGEX memflags_move exstyle posnumexpr cnumexpr cnumexpr
375 memset
(&dialog
, 0, sizeof dialog
);
380 dialog.style
= WS_POPUP | WS_BORDER | WS_SYSMENU
;
382 dialog.menu.named
= 1;
383 dialog.class.named
= 1;
385 dialog.ex
= ((struct dialog_ex
*)
386 res_alloc
(sizeof
(struct dialog_ex
)));
387 memset
(dialog.ex
, 0, sizeof
(struct dialog_ex
));
388 dialog.ex
->help
= $9;
389 dialog.controls
= NULL
;
392 styles BEG controls END
394 define_dialog
($1, &sub_res_info
, &dialog
);
403 | EXSTYLE
'=' numexpr
411 | styles CAPTION QUOTEDSTRING
413 unicode_from_ascii
((int *) NULL
, &dialog.caption
, $3);
420 { style
= dialog.style
; }
423 dialog.style
= style
;
425 | styles EXSTYLE numexpr
429 | styles FONT numexpr
',' QUOTEDSTRING
431 dialog.style |
= DS_SETFONT
;
432 dialog.pointsize
= $3;
433 unicode_from_ascii
((int *) NULL
, &dialog.font
, $5);
435 | styles FONT numexpr
',' QUOTEDSTRING cnumexpr cnumexpr
437 dialog.style |
= DS_SETFONT
;
438 dialog.pointsize
= $3;
439 unicode_from_ascii
((int *) NULL
, &dialog.font
, $5);
440 if
(dialog.ex
== NULL
)
441 rcparse_warning
(_
("extended FONT requires DIALOGEX"));
444 dialog.ex
->weight
= $6;
445 dialog.ex
->italic
= $7;
452 | styles CHARACTERISTICS numexpr
454 sub_res_info.characteristics
= $3;
456 | styles LANGUAGE numexpr cnumexpr
458 sub_res_info.language
= $3 |
($4 << 8);
460 | styles VERSIONK numexpr
462 sub_res_info.version
= $3;
470 struct dialog_control
**pp
;
472 for
(pp
= &dialog.controls
; *pp
!= NULL
; pp
= &(*pp
)->next
)
481 default_style
= BS_AUTO3STATE | WS_TABSTOP
;
482 base_style
= BS_AUTO3STATE
;
491 default_style
= BS_AUTOCHECKBOX | WS_TABSTOP
;
492 base_style
= BS_AUTOCHECKBOX
;
501 default_style
= BS_AUTORADIOBUTTON | WS_TABSTOP
;
502 base_style
= BS_AUTORADIOBUTTON
;
511 default_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
512 base_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
518 if
(dialog.ex
== NULL
)
519 rcparse_warning
(_
("IEDIT requires DIALOGEX"));
520 res_string_to_id
(&$$
->class
, "BEDIT");
524 default_style
= BS_CHECKBOX | WS_TABSTOP
;
525 base_style
= BS_CHECKBOX | WS_TABSTOP
;
534 default_style
= CBS_SIMPLE | WS_TABSTOP
;
536 class
= CTL_COMBOBOX
;
542 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
543 cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
545 $$
= define_control
($2, $3, $6, $7, $8, $9, $4, style
, $10);
548 if
(dialog.ex
== NULL
)
549 rcparse_warning
(_
("control data requires DIALOGEX"));
553 | CONTROL optstringc numexpr cnumexpr control_styleexpr cnumexpr
554 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
556 $$
= define_control
($2, $3, $6, $7, $8, $9, $4, style
, $10);
557 if
(dialog.ex
== NULL
)
558 rcparse_warning
(_
("help ID requires DIALOGEX"));
562 | CONTROL optstringc numexpr
',' QUOTEDSTRING control_styleexpr
563 cnumexpr cnumexpr cnumexpr cnumexpr optcnumexpr opt_control_data
565 $$
= define_control
($2, $3, $7, $8, $9, $10, 0, style
, $11);
568 if
(dialog.ex
== NULL
)
569 rcparse_warning
("control data requires DIALOGEX");
573 unicode_from_ascii
(&$$
->class.u.n.length
, &$$
->class.u.n.name
, $5);
575 | CONTROL optstringc numexpr
',' QUOTEDSTRING control_styleexpr
576 cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr cnumexpr opt_control_data
578 $$
= define_control
($2, $3, $7, $8, $9, $10, 0, style
, $11);
579 if
(dialog.ex
== NULL
)
580 rcparse_warning
("help ID requires DIALOGEX");
584 unicode_from_ascii
(&$$
->class.u.n.length
, &$$
->class.u.n.name
, $5);
588 default_style
= SS_CENTER | WS_GROUP
;
589 base_style
= SS_CENTER
;
598 default_style
= BS_DEFPUSHBUTTON | WS_TABSTOP
;
599 base_style
= BS_DEFPUSHBUTTON | WS_TABSTOP
;
608 default_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
609 base_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
618 default_style
= BS_GROUPBOX
;
619 base_style
= BS_GROUPBOX
;
628 default_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
629 base_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
635 if
(dialog.ex
== NULL
)
636 rcparse_warning
(_
("IEDIT requires DIALOGEX"));
637 res_string_to_id
(&$$
->class
, "HEDIT");
639 | ICON optstringc numexpr cnumexpr cnumexpr opt_control_data
641 $$
= define_control
($2, $3, $4, $5, 0, 0, CTL_STATIC
,
642 SS_ICON | WS_CHILD | WS_VISIBLE
, 0);
645 if
(dialog.ex
== NULL
)
646 rcparse_warning
(_
("control data requires DIALOGEX"));
650 | ICON optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
651 icon_styleexpr optcnumexpr opt_control_data
653 $$
= define_control
($2, $3, $4, $5, $6, $7, CTL_STATIC
,
657 if
(dialog.ex
== NULL
)
658 rcparse_warning
(_
("control data requires DIALOGEX"));
662 | ICON optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
663 icon_styleexpr cnumexpr cnumexpr opt_control_data
665 $$
= define_control
($2, $3, $4, $5, $6, $7, CTL_STATIC
,
667 if
(dialog.ex
== NULL
)
668 rcparse_warning
(_
("help ID requires DIALOGEX"));
674 default_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
675 base_style
= ES_LEFT | WS_BORDER | WS_TABSTOP
;
681 if
(dialog.ex
== NULL
)
682 rcparse_warning
(_
("IEDIT requires DIALOGEX"));
683 res_string_to_id
(&$$
->class
, "IEDIT");
687 default_style
= LBS_NOTIFY | WS_BORDER
;
688 base_style
= LBS_NOTIFY | WS_BORDER
;
697 default_style
= SS_LEFT | WS_GROUP
;
698 base_style
= SS_LEFT
;
707 default_style
= BS_PUSHBOX | WS_TABSTOP
;
708 base_style
= BS_PUSHBOX
;
717 default_style
= BS_PUSHBUTTON | WS_TABSTOP
;
718 base_style
= BS_PUSHBUTTON | WS_TABSTOP
;
727 default_style
= BS_RADIOBUTTON | WS_TABSTOP
;
728 base_style
= BS_RADIOBUTTON
;
737 default_style
= SS_RIGHT | WS_GROUP
;
738 base_style
= SS_RIGHT
;
747 default_style
= SBS_HORZ
;
749 class
= CTL_SCROLLBAR
;
757 default_style
= BS_3STATE | WS_TABSTOP
;
758 base_style
= BS_3STATE
;
765 | USERBUTTON QUOTEDSTRING
',' numexpr
',' numexpr
',' numexpr
','
766 numexpr
',' numexpr
','
767 { style
= WS_CHILD | WS_VISIBLE
; }
768 styleexpr optcnumexpr
770 $$
= define_control
($2, $4, $6, $8, $10, $12, CTL_BUTTON
,
775 /* Parameters for a control. The static variables DEFAULT_STYLE,
776 BASE_STYLE, and CLASS must be initialized before this nonterminal
777 is used. DEFAULT_STYLE is the style to use if no style expression
778 is specified. BASE_STYLE is the base style to use if a style
779 expression is specified; the style expression modifies the base
780 style. CLASS is the class of the control. */
783 optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
786 $$
= define_control
($1, $2, $3, $4, $5, $6, class
,
787 default_style | WS_CHILD | WS_VISIBLE
, 0);
790 if
(dialog.ex
== NULL
)
791 rcparse_warning
(_
("control data requires DIALOGEX"));
795 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
796 control_params_styleexpr optcnumexpr opt_control_data
798 $$
= define_control
($1, $2, $3, $4, $5, $6, class
, style
, $8);
801 if
(dialog.ex
== NULL
)
802 rcparse_warning
(_
("control data requires DIALOGEX"));
806 | optstringc numexpr cnumexpr cnumexpr cnumexpr cnumexpr
807 control_params_styleexpr cnumexpr cnumexpr opt_control_data
809 $$
= define_control
($1, $2, $3, $4, $5, $6, class
, style
, $8);
810 if
(dialog.ex
== NULL
)
811 rcparse_warning
(_
("help ID requires DIALOGEX"));
833 | BEG optrcdata_data END
839 /* These only exist to parse a reduction out of a common case. */
843 { style
= WS_CHILD | WS_VISIBLE
; }
849 { style
= SS_ICON | WS_CHILD | WS_VISIBLE
; }
853 control_params_styleexpr:
855 { style
= base_style | WS_CHILD | WS_VISIBLE
; }
859 /* Font resources. */
862 id FONT memflags_move_discard file_name
864 define_font
($1, &$3, $4);
868 /* Icon resources. */
871 id ICON memflags_move_discard file_name
873 define_icon
($1, &$3, $4);
877 /* Language command. This changes the static variable language, which
878 affects all subsequent resources. */
881 LANGUAGE numexpr cnumexpr
883 language
= $2 |
($3 << 8);
887 /* Menu resources. */
890 id MENU suboptions BEG menuitems END
892 define_menu
($1, &$3, $5);
907 struct menuitem
**pp
;
909 for
(pp
= &$1->next
; *pp
!= NULL
; pp
= &(*pp
)->next
)
918 MENUITEM QUOTEDSTRING cnumexpr menuitem_flags
920 $$
= define_menuitem
($2, $3, $4, 0, 0, NULL
);
924 $$
= define_menuitem
(NULL
, 0, 0, 0, 0, NULL
);
926 | POPUP QUOTEDSTRING menuitem_flags BEG menuitems END
928 $$
= define_menuitem
($2, 0, $3, 0, 0, $5);
937 | menuitem_flags
',' menuitem_flag
941 | menuitem_flags menuitem_flag
950 $$
= MENUITEM_CHECKED
;
954 $$
= MENUITEM_GRAYED
;
962 $$
= MENUITEM_INACTIVE
;
966 $$
= MENUITEM_MENUBARBREAK
;
970 $$
= MENUITEM_MENUBREAK
;
974 /* Menuex resources. */
977 id MENUEX suboptions BEG menuexitems END
979 define_menu
($1, &$3, $5);
988 | menuexitems menuexitem
994 struct menuitem
**pp
;
996 for
(pp
= &$1->next
; *pp
!= NULL
; pp
= &(*pp
)->next
)
1005 MENUITEM QUOTEDSTRING
1007 $$
= define_menuitem
($2, 0, 0, 0, 0, NULL
);
1009 | MENUITEM QUOTEDSTRING cnumexpr
1011 $$
= define_menuitem
($2, $3, 0, 0, 0, NULL
);
1013 | MENUITEM QUOTEDSTRING cnumexpr cnumexpr optcnumexpr
1015 $$
= define_menuitem
($2, $3, $4, $5, 0, NULL
);
1017 | MENUITEM SEPARATOR
1019 $$
= define_menuitem
(NULL
, 0, 0, 0, 0, NULL
);
1021 | POPUP QUOTEDSTRING BEG menuexitems END
1023 $$
= define_menuitem
($2, 0, 0, 0, 0, $4);
1025 | POPUP QUOTEDSTRING cnumexpr BEG menuexitems END
1027 $$
= define_menuitem
($2, $3, 0, 0, 0, $5);
1029 | POPUP QUOTEDSTRING cnumexpr cnumexpr BEG menuexitems END
1031 $$
= define_menuitem
($2, $3, $4, 0, 0, $6);
1033 | POPUP QUOTEDSTRING cnumexpr cnumexpr cnumexpr optcnumexpr
1036 $$
= define_menuitem
($2, $3, $4, $5, $6, $8);
1040 /* Messagetable resources. */
1043 id MESSAGETABLE memflags_move file_name
1045 define_messagetable
($1, &$3, $4);
1049 /* Rcdata resources. */
1052 id RCDATA suboptions BEG optrcdata_data END
1054 define_rcdata
($1, &$3, $5.first
);
1058 /* We use a different lexing algorithm, because rcdata strings may
1059 contain embedded null bytes, and we need to know the length to use. */
1087 struct rcdata_item
*ri
;
1089 ri
= define_rcdata_string
($1.s
, $1.length
);
1095 struct rcdata_item
*ri
;
1097 ri
= define_rcdata_number
($1.val
, $1.dword
);
1101 | rcdata_data
',' SIZEDSTRING
1103 struct rcdata_item
*ri
;
1105 ri
= define_rcdata_string
($3.s
, $3.length
);
1106 $$.first
= $1.first
;
1110 | rcdata_data
',' sizednumexpr
1112 struct rcdata_item
*ri
;
1114 ri
= define_rcdata_number
($3.val
, $3.dword
);
1115 $$.first
= $1.first
;
1121 /* Stringtable resources. */
1124 STRINGTABLE suboptions BEG
1125 { sub_res_info
= $2; }
1131 | string_data numexpr QUOTEDSTRING
1133 define_stringtable
(&sub_res_info
, $2, $3);
1135 | string_data numexpr
',' QUOTEDSTRING
1137 define_stringtable
(&sub_res_info
, $2, $4);
1141 /* User defined resources. We accept general suboptions in the
1142 file_name case to keep the parser happy. */
1145 id id suboptions BEG optrcdata_data END
1147 define_user_data
($1, $2, &$3, $5.first
);
1149 | id id suboptions file_name
1151 define_user_file
($1, $2, &$3, $4);
1155 /* Versioninfo resources. */
1158 id VERSIONINFO fixedverinfo BEG verblocks END
1160 define_versioninfo
($1, language
, $3, $5);
1167 $$
= ((struct fixed_versioninfo
*)
1168 res_alloc
(sizeof
(struct fixed_versioninfo
)));
1169 memset
($$
, 0, sizeof
(struct fixed_versioninfo
));
1171 | fixedverinfo FILEVERSION numexpr cnumexpr cnumexpr cnumexpr
1173 $1->file_version_ms
= ($3 << 16) |
$4;
1174 $1->file_version_ls
= ($5 << 16) |
$6;
1177 | fixedverinfo PRODUCTVERSION numexpr cnumexpr cnumexpr cnumexpr
1179 $1->product_version_ms
= ($3 << 16) |
$4;
1180 $1->product_version_ls
= ($5 << 16) |
$6;
1183 | fixedverinfo FILEFLAGSMASK numexpr
1185 $1->file_flags_mask
= $3;
1188 | fixedverinfo FILEFLAGS numexpr
1190 $1->file_flags
= $3;
1193 | fixedverinfo FILEOS numexpr
1198 | fixedverinfo FILETYPE numexpr
1203 | fixedverinfo FILESUBTYPE numexpr
1205 $1->file_subtype
= $3;
1210 /* To handle verblocks successfully, the lexer handles BLOCK
1211 specially. A BLOCK "StringFileInfo" is returned as
1212 BLOCKSTRINGFILEINFO. A BLOCK "VarFileInfo" is returned as
1213 BLOCKVARFILEINFO. A BLOCK with some other string returns BLOCK
1214 with the string as the value. */
1221 | verblocks BLOCKSTRINGFILEINFO BEG BLOCK BEG vervals END END
1223 $$
= append_ver_stringfileinfo
($1, $4, $6);
1225 | verblocks BLOCKVARFILEINFO BEG VALUE QUOTEDSTRING vertrans END
1227 $$
= append_ver_varfileinfo
($1, $5, $6);
1236 | vervals VALUE QUOTEDSTRING
',' QUOTEDSTRING
1238 $$
= append_verval
($1, $3, $5);
1247 | vertrans cnumexpr cnumexpr
1249 $$
= append_vertrans
($1, $2, $3);
1253 /* A resource ID. */
1265 /* It seems that resource ID's are forced to upper case. */
1266 copy
= xstrdup
($1);
1267 for
(s
= copy
; *s
!= '\0'; s
++)
1268 if
(islower
((unsigned char) *s
))
1269 *s
= toupper
((unsigned char) *s
);
1270 res_string_to_id
(&$$
, copy
);
1275 /* Generic suboptions. These may appear before the BEGIN in any
1276 multiline statement. */
1281 memset
(&$$
, 0, sizeof
(struct res_res_info
));
1282 $$.language
= language
;
1283 /* FIXME: Is this the right default? */
1284 $$.memflags
= MEMFLAG_MOVEABLE
;
1286 | suboptions memflag
1289 $$.memflags |
= $2.on
;
1290 $$.memflags
&=~
$2.off
;
1292 | suboptions CHARACTERISTICS numexpr
1295 $$.characteristics
= $3;
1297 | suboptions LANGUAGE numexpr cnumexpr
1300 $$.language
= $3 |
($4 << 8);
1302 | suboptions VERSIONK numexpr
1309 /* Memory flags which default to MOVEABLE and DISCARDABLE. */
1311 memflags_move_discard:
1314 memset
(&$$
, 0, sizeof
(struct res_res_info
));
1315 $$.language
= language
;
1316 $$.memflags
= MEMFLAG_MOVEABLE | MEMFLAG_DISCARDABLE
;
1318 | memflags_move_discard memflag
1321 $$.memflags |
= $2.on
;
1322 $$.memflags
&=~
$2.off
;
1326 /* Memory flags which default to MOVEABLE. */
1331 memset
(&$$
, 0, sizeof
(struct res_res_info
));
1332 $$.language
= language
;
1333 $$.memflags
= MEMFLAG_MOVEABLE
;
1335 | memflags_move memflag
1338 $$.memflags |
= $2.on
;
1339 $$.memflags
&=~
$2.off
;
1343 /* Memory flags. This returns a struct with two integers, because we
1344 sometimes want to set bits and we sometimes want to clear them. */
1349 $$.on
= MEMFLAG_MOVEABLE
;
1355 $$.off
= MEMFLAG_MOVEABLE
;
1359 $$.on
= MEMFLAG_PURE
;
1365 $$.off
= MEMFLAG_PURE
;
1369 $$.on
= MEMFLAG_PRELOAD
;
1375 $$.off
= MEMFLAG_PRELOAD
;
1379 $$.on
= MEMFLAG_DISCARDABLE
;
1397 /* A style expression. This changes the static variable STYLE. We do
1398 it this way because rc appears to permit a style to be set to
1400 WS_GROUP | NOT WS_TABSTOP
1401 to mean that a default of WS_TABSTOP should be removed. Anything
1402 which wants to accept a style must first set STYLE to the default
1403 value. The styleexpr nonterminal will change STYLE as specified by
1404 the user. Note that we do not accept arbitrary expressions here,
1405 just numbers separated by '|'. */
1416 | styleexpr
'|' parennumber
1420 | styleexpr
'|' NOT parennumber
1437 /* An optional expression with a leading comma. */
1450 /* An expression with a leading comma. */
1459 /* A possibly negated numeric expression. */
1468 /* A possibly negated expression with a size. */
1475 |
'(' sizednumexpr
')'
1479 |
'~' sizednumexpr %prec
'~'
1482 $$.dword
= $2.dword
;
1484 |
'-' sizednumexpr %prec NEG
1487 $$.dword
= $2.dword
;
1489 | sizednumexpr
'*' sizednumexpr
1491 $$.val
= $1.val
* $3.val
;
1492 $$.dword
= $1.dword ||
$3.dword
;
1494 | sizednumexpr
'/' sizednumexpr
1496 $$.val
= $1.val
/ $3.val
;
1497 $$.dword
= $1.dword ||
$3.dword
;
1499 | sizednumexpr
'%' sizednumexpr
1501 $$.val
= $1.val %
$3.val
;
1502 $$.dword
= $1.dword ||
$3.dword
;
1504 | sizednumexpr
'+' sizednumexpr
1506 $$.val
= $1.val
+ $3.val
;
1507 $$.dword
= $1.dword ||
$3.dword
;
1509 | sizednumexpr
'-' sizednumexpr
1511 $$.val
= $1.val
- $3.val
;
1512 $$.dword
= $1.dword ||
$3.dword
;
1514 | sizednumexpr
'&' sizednumexpr
1516 $$.val
= $1.val
& $3.val
;
1517 $$.dword
= $1.dword ||
$3.dword
;
1519 | sizednumexpr
'^' sizednumexpr
1521 $$.val
= $1.val ^
$3.val
;
1522 $$.dword
= $1.dword ||
$3.dword
;
1524 | sizednumexpr
'|' sizednumexpr
1526 $$.val
= $1.val |
$3.val
;
1527 $$.dword
= $1.dword ||
$3.dword
;
1531 /* An expression with a leading comma which does not use unary
1541 /* An expression which does not use unary negation. */
1550 /* An expression which does not use unary negation. We separate unary
1551 negation to avoid parsing conflicts when two numeric expressions
1552 appear consecutively. */
1559 |
'(' sizednumexpr
')'
1563 |
'~' sizednumexpr %prec
'~'
1566 $$.dword
= $2.dword
;
1568 | sizedposnumexpr
'*' sizednumexpr
1570 $$.val
= $1.val
* $3.val
;
1571 $$.dword
= $1.dword ||
$3.dword
;
1573 | sizedposnumexpr
'/' sizednumexpr
1575 $$.val
= $1.val
/ $3.val
;
1576 $$.dword
= $1.dword ||
$3.dword
;
1578 | sizedposnumexpr
'%' sizednumexpr
1580 $$.val
= $1.val %
$3.val
;
1581 $$.dword
= $1.dword ||
$3.dword
;
1583 | sizedposnumexpr
'+' sizednumexpr
1585 $$.val
= $1.val
+ $3.val
;
1586 $$.dword
= $1.dword ||
$3.dword
;
1588 | sizedposnumexpr
'-' sizednumexpr
1590 $$.val
= $1.val
- $3.val
;
1591 $$.dword
= $1.dword ||
$3.dword
;
1593 | sizedposnumexpr
'&' sizednumexpr
1595 $$.val
= $1.val
& $3.val
;
1596 $$.dword
= $1.dword ||
$3.dword
;
1598 | sizedposnumexpr
'^' sizednumexpr
1600 $$.val
= $1.val ^
$3.val
;
1601 $$.dword
= $1.dword ||
$3.dword
;
1603 | sizedposnumexpr
'|' sizednumexpr
1605 $$.val
= $1.val |
$3.val
;
1606 $$.dword
= $1.dword ||
$3.dword
;
1612 /* Set the language from the command line. */
1615 rcparse_set_language
(lang
)