1 /* Copyright 2001, 2003, 2005, 2007 Free Software Foundation, Inc.
2 Written by Steve Chamberlain of Cygnus Support (steve@cygnus.com).
4 This file is part of GNU binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
25 static char writecode
;
29 static char *oldrepeat
;
32 static char *names
[] = {" ","[n]","[n][m]"};
33 static char *pnames
[]= {"","*","**"};
35 static int yyerror (char *s
);
36 extern
int yylex (void);
49 %token
<i
> NUMBER UNIT
51 %type
<s
> attr_desc attr_id attr_type
58 printf
("#ifdef SYSROFF_SWAP_IN\n");
61 printf
("#ifdef SYSROFF_p\n");
66 printf
("#ifdef SYSROFF_SWAP_OUT\n");
69 printf
("#ifdef SYSROFF_PRINT\n");
70 printf
("#include <stdio.h>\n");
71 printf
("#include <stdlib.h>\n");
72 printf
("#include <ansidecl.h>\n");
103 printf
("\n\n\n#define IT_%s_CODE 0x%x\n", it
,code
);
104 printf
("struct IT_%s;\n", it
);
105 printf
("extern void sysroff_swap_%s_in PARAMS ((struct IT_%s *));\n",
107 printf
("extern void sysroff_swap_%s_out PARAMS ((FILE *, struct IT_%s *));\n",
109 printf
("extern void sysroff_print_%s_out PARAMS ((struct IT_%s *));\n",
111 printf
("struct IT_%s { \n", it
);
114 printf
("void sysroff_swap_%s_in(ptr)\n",$2);
115 printf
("struct IT_%s *ptr;\n", it
);
117 printf
("unsigned char raw[255];\n");
118 printf
("\tint idx = 0 ;\n");
119 printf
("\tint size;\n");
120 printf
("memset(raw,0,255);\n");
121 printf
("memset(ptr,0,sizeof(*ptr));\n");
122 printf
("size = fillup(raw);\n");
125 printf
("void sysroff_swap_%s_out(file,ptr)\n",$2);
126 printf
("FILE * file;\n");
127 printf
("struct IT_%s *ptr;\n", it
);
129 printf
("\tunsigned char raw[255];\n");
130 printf
("\tint idx = 16 ;\n");
131 printf
("\tmemset (raw, 0, 255);\n");
132 printf
("\tcode = IT_%s_CODE;\n", it
);
135 printf
("void sysroff_swap_%s_out(abfd,ptr)\n",$2);
136 printf
("bfd * abfd;\n");
137 printf
("struct IT_%s *ptr;\n",it
);
139 printf
("int idx = 0 ;\n");
142 printf
("void sysroff_print_%s_out(ptr)\n",$2);
143 printf
("struct IT_%s *ptr;\n", it
);
145 printf
("itheader(\"%s\", IT_%s_CODE);\n",$2,$2);
161 printf
("\tchecksum(file,raw, idx, IT_%s_CODE);\n", it
);
175 it_field it_field_list
176 | cond_it_field it_field_list
177 | repeat_it_field it_field_list
181 repeat_it_field: '(' REPEAT NAME
188 printf
("\tprintf(\"repeat %%d\\n\", %s);\n",$3);
190 printf
("\tprintf(\"repeat %%d\\n\", %s[n]);\n",$3);
197 printf
("\t{ int n; for (n = 0; n < %s; n++) {\n", $3);
200 printf
("\t{ int m; for (m = 0; m < %s[n]; m++) {\n", $3);
228 cond_it_field: '(' COND NAME
236 printf
("\tif (%s) {\n", $3);
255 '(' attr_desc
'(' attr_type attr_size
')' attr_id
263 char *p
= names
[rdepth
];
264 char *ptr
= pnames
[rdepth
];
271 printf
("\twriteBITS(ptr->%s%s,raw,&idx,%d);\n",
273 names
[rdepth
], size
);
277 printf
("\twrite%s(ptr->%s%s,raw,&idx,%d,file);\n",
280 names
[rdepth
],size
/8);
289 printf
("if (!ptr->%s) ptr->%s = (%s*)xcalloc(%s, sizeof(ptr->%s[0]));\n",
299 printf
("if (!ptr->%s[n]) ptr->%s[n] = (%s**)xcalloc(%s[n], sizeof(ptr->%s[n][0]));\n",
311 printf
("\tptr->%s%s = getBITS(raw,&idx, %d,size);\n",
317 printf
("\tptr->%s%s = get%s(raw,&idx, %d,size);\n",
325 printf
("\tput%s(raw,%d,%d,&idx,ptr->%s%s);\n", type
,size
/8,size%
8,id
,names
[rdepth
]);
329 printf
("\t/* repeat %s */\n", repeat
);
331 if
(type
[0] == 'I') {
332 printf
("\tint %s%s; \t/* %s */\n",ptr
,id
, desc
);
334 else if
(type
[0] =='C') {
335 printf
("\tchar %s*%s;\t /* %s */\n",ptr
,id
, desc
);
338 printf
("\tbarray %s%s;\t /* %s */\n",ptr
,id
, desc
);
342 printf
("tabout();\n");
343 printf
("\tprintf(\"/*%-30s*/ ptr->%s = \");\n", desc
, id
);
346 printf
("\tprintf(\"%%d\\n\",ptr->%s%s);\n", id
,p
);
347 else if
(type
[0] == 'C')
348 printf
("\tprintf(\"%%s\\n\",ptr->%s%s);\n", id
,p
);
350 else if
(type
[0] == 'B')
352 printf
("\tpbarray(&ptr->%s%s);\n", id
,p
);
379 '(' NAME
')' { $$
= $2; }
384 |
'(' enum_list
')' ;
388 enum_list
'(' NAME NAME
')' {
392 printf
("#define %s %s\n", $3,$4);
395 printf
("if (ptr->%s%s == %s) { tabout(); printf(\"%s\\n\");}\n", name
, names
[rdepth
],$4,$3);
406 -d write structure definitions for sysroff in host format
407 -i write functions to swap into sysroff format in
408 -o write functions to swap into sysroff format out
409 -c write code to print info in human form */
414 main
(int ac
, char **av
)
418 writecode
= av
[1][1];
419 if
(writecode
== 'd')
421 printf
("typedef struct { unsigned char *data; int len; } barray; \n");
422 printf
("typedef int INT;\n");
423 printf
("typedef char * CHARS;\n");
433 fprintf
(stderr
, "%s\n" , s
);