1 %
{ /* deffilep.y - parser for .def files */
3 /* Copyright (C) 1995-2024 Free Software Foundation, Inc.
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
23 #include "libiberty.h"
24 #include "safe-ctype.h"
33 #define ROUND_UP(a, b) (((a)+((b)-1))&~((b)-1))
35 #define SYMBOL_LIST_ARRAY_GROW 64
37 /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
38 as well as gratuitiously global symbol names, so we can have multiple
39 yacc generated parsers in ld. Note that these are only the variables
40 produced by yacc. If other parser generators (bison, byacc, etc) produce
41 additional global names that conflict at link time, then those parser
42 generators need to be fixed instead of adding those names to this list. */
44 #define yymaxdepth def_maxdepth
45 #define yyparse def_parse
47 #define yyerror def_error
48 #define yylval def_lval
49 #define yychar def_char
50 #define yydebug def_debug
51 #define yypact def_pact
58 #define yyexca def_exca
59 #define yyerrflag def_errflag
60 #define yynerrs def_nerrs
64 #define yy_yys def_yys
65 #define yystate def_state
68 #define yy_yyv def_yyv
70 #define yylloc def_lloc
71 #define yyreds def_reds /* With YYDEBUG defined. */
72 #define yytoks def_toks /* With YYDEBUG defined. */
73 #define yylhs def_yylhs
74 #define yylen def_yylen
75 #define yydefred def_yydefred
76 #define yydgoto def_yydgoto
77 #define yysindex def_yysindex
78 #define yyrindex def_yyrindex
79 #define yygindex def_yygindex
80 #define yytable def_yytable
81 #define yycheck def_yycheck
83 typedef
struct def_pool_str
{
84 struct def_pool_str
*next
;
88 static def_pool_str
*pool_strs
= NULL
;
90 static char *def_pool_alloc
(size_t sz
);
91 static char *def_pool_strdup
(const char *str
);
92 static void def_pool_free
(void);
94 static void def_description
(const char *);
95 static void def_exports
(const char *, const char *, int, int, const char *);
96 static void def_heapsize
(int, int);
97 static void def_import
(const char *, const char *, const char *, const char *,
99 static void def_image_name
(const char *, bfd_vma
, int);
100 static void def_section
(const char *, int);
101 static void def_section_alt
(const char *, const char *);
102 static void def_stacksize
(int, int);
103 static void def_version
(int, int);
104 static void def_directive
(char *);
105 static void def_aligncomm
(char *str
, int align
);
106 static void def_exclude_symbols
(char *str
);
107 static int def_parse
(void);
108 static void def_error
(const char *);
109 static int def_lex
(void);
111 static int lex_forced_token
= 0;
112 static const char *lex_parse_string
= 0;
113 static const char *lex_parse_string_end
= 0;
119 const char *id_const
;
125 %token NAME LIBRARY DESCRIPTION STACKSIZE_K HEAPSIZE CODE DATAU DATAL
126 %token SECTIONS EXPORTS IMPORTS VERSIONK BASE CONSTANTU CONSTANTL
127 %token PRIVATEU PRIVATEL ALIGNCOMM EXCLUDE_SYMBOLS
128 %token READ WRITE EXECUTE SHARED_K NONAMEU NONAMEL DIRECTIVE EQUAL
130 %token
<digits
> DIGITS
131 %type
<number
> NUMBER
132 %type
<vma
> VMA opt_base
133 %type
<digits
> opt_digits
134 %type
<number
> opt_ordinal
135 %type
<number
> attr attr_list opt_number exp_opt_list exp_opt
136 %type
<id
> opt_name opt_name2 opt_equal_name anylang_id opt_id
137 %type
<id
> opt_equalequal_name symbol_list
138 %type
<id_const
> keyword_as_name
147 NAME opt_name opt_base
{ def_image_name
($2, $3, 0); }
148 | LIBRARY opt_name opt_base
{ def_image_name
($2, $3, 1); }
149 | DESCRIPTION ID
{ def_description
($2);}
150 | STACKSIZE_K NUMBER opt_number
{ def_stacksize
($2, $3);}
151 | HEAPSIZE NUMBER opt_number
{ def_heapsize
($2, $3);}
152 | CODE attr_list
{ def_section
("CODE", $2);}
153 | DATAU attr_list
{ def_section
("DATA", $2);}
157 | VERSIONK NUMBER
{ def_version
($2, 0);}
158 | VERSIONK NUMBER
'.' NUMBER
{ def_version
($2, $4);}
159 | DIRECTIVE ID
{ def_directive
($2);}
160 | ALIGNCOMM anylang_id
',' NUMBER
{ def_aligncomm
($2, $4);}
161 | EXCLUDE_SYMBOLS symbol_list
172 /* The opt_comma is necessary to support both the usual
173 DEF file syntax as well as .drectve syntax which
174 mandates <expsym>,<expoptlist>. */
175 opt_name2 opt_equal_name opt_ordinal opt_comma exp_opt_list opt_comma opt_equalequal_name
176 { def_exports
($1, $2, $3, $5, $7); }
179 /* The opt_comma is necessary to support both the usual
180 DEF file syntax as well as .drectve syntax which
181 allows for comma separated opt list. */
182 exp_opt opt_comma exp_opt_list
{ $$
= $1 |
$3; }
187 | NONAMEL
{ $$
= 1; }
188 | CONSTANTU
{ $$
= 2; }
189 | CONSTANTL
{ $$
= 2; }
192 | PRIVATEU
{ $$
= 8; }
193 | PRIVATEL
{ $$
= 8; }
201 ID
'=' ID
'.' ID
'.' ID opt_equalequal_name
202 { def_import
($1, $3, $5, $7, -1, $8); }
203 | ID
'=' ID
'.' ID
'.' NUMBER opt_equalequal_name
204 { def_import
($1, $3, $5, 0, $7, $8); }
205 | ID
'=' ID
'.' ID opt_equalequal_name
206 { def_import
($1, $3, 0, $5, -1, $6); }
207 | ID
'=' ID
'.' NUMBER opt_equalequal_name
208 { def_import
($1, $3, 0, 0, $5, $6); }
209 | ID
'.' ID
'.' ID opt_equalequal_name
210 { def_import
( 0, $1, $3, $5, -1, $6); }
211 | ID
'.' ID opt_equalequal_name
212 { def_import
( 0, $1, 0, $3, -1, $4); }
221 ID attr_list
{ def_section
($1, $2);}
222 | ID ID
{ def_section_alt
($1, $2);}
226 attr_list opt_comma attr
{ $$
= $1 |
$3; }
234 opt_number: ',' NUMBER
{ $$
=$2;}
246 keyword_as_name: BASE
{ $$
= "BASE"; }
247 | CODE
{ $$
= "CODE"; }
248 | CONSTANTU
{ $$
= "CONSTANT"; }
249 | CONSTANTL
{ $$
= "constant"; }
250 | DATAU
{ $$
= "DATA"; }
251 | DATAL
{ $$
= "data"; }
252 | DESCRIPTION
{ $$
= "DESCRIPTION"; }
253 | DIRECTIVE
{ $$
= "DIRECTIVE"; }
254 | EXCLUDE_SYMBOLS
{ $$
= "EXCLUDE_SYMBOLS"; }
255 | EXECUTE
{ $$
= "EXECUTE"; }
256 | EXPORTS
{ $$
= "EXPORTS"; }
257 | HEAPSIZE
{ $$
= "HEAPSIZE"; }
258 | IMPORTS
{ $$
= "IMPORTS"; }
259 /* Disable LIBRARY keyword as valid symbol-name. This is necessary
260 for libtool, which places this command after EXPORTS command.
261 This behavior is illegal by specification, but sadly required by
262 by compatibility reasons.
263 See PR binutils/13710
264 | LIBRARY { $$ = "LIBRARY"; } */
265 | NAME
{ $$
= "NAME"; }
266 | NONAMEU
{ $$
= "NONAME"; }
267 | NONAMEL
{ $$
= "noname"; }
268 | PRIVATEU
{ $$
= "PRIVATE"; }
269 | PRIVATEL
{ $$
= "private"; }
270 | READ
{ $$
= "READ"; }
271 | SHARED_K
{ $$
= "SHARED"; }
272 | STACKSIZE_K
{ $$
= "STACKSIZE"; }
273 | VERSIONK
{ $$
= "VERSION"; }
274 | WRITE
{ $$
= "WRITE"; }
277 opt_name2: ID
{ $$
= $1; }
278 |
'.' keyword_as_name
280 char *name
= xmalloc
(strlen
($2) + 2);
281 sprintf
(name
, ".%s", $2);
286 char *name
= def_pool_alloc
(strlen
($2) + 2);
287 sprintf
(name
, ".%s", $2);
290 | keyword_as_name
'.' opt_name2
292 char *name
= def_pool_alloc
(strlen
($1) + 1 + strlen
($3) + 1);
293 sprintf
(name
, "%s.%s", $1, $3);
298 char *name
= def_pool_alloc
(strlen
($1) + 1 + strlen
($3) + 1);
299 sprintf
(name
, "%s.%s", $1, $3);
304 opt_name: opt_name2
{ $$
= $1; }
308 opt_equalequal_name: EQUAL ID
{ $$
= $2; }
313 '@' NUMBER
{ $$
= $2;}
318 '=' opt_name2
{ $$
= $2; }
322 opt_base: BASE
'=' VMA
{ $$
= $3;}
323 |
{ $$
= (bfd_vma
) -1;}
326 anylang_id: ID
{ $$
= $1; }
329 char *id
= def_pool_alloc
(strlen
($2) + 2);
330 sprintf
(id
, ".%s", $2);
333 | anylang_id
'.' opt_digits opt_id
335 char *id
= def_pool_alloc
(strlen
($1) + 1 + strlen
($3) + strlen
($4) + 1);
336 sprintf
(id
, "%s.%s%s", $1, $3, $4);
342 anylang_id
{ def_exclude_symbols
($1); }
343 | symbol_list anylang_id
{ def_exclude_symbols
($2); }
344 | symbol_list
',' anylang_id
{ def_exclude_symbols
($3); }
347 opt_digits: DIGITS
{ $$
= $1; }
351 opt_id: ID
{ $$
= $1; }
355 NUMBER: DIGITS
{ $$
= strtoul
($1, 0, 0); }
357 VMA: DIGITS
{ $$
= (bfd_vma
) strtoull
($1, 0, 0); }
361 /*****************************************************************************
363 *****************************************************************************/
365 static FILE *the_file
;
366 static const char *def_filename
;
367 static int linenumber
;
368 static def_file
*def
;
369 static int saw_newline
;
373 struct directive
*next
;
378 static struct directive
*directives
= 0;
381 def_file_empty
(void)
383 def_file
*rv
= xmalloc
(sizeof
(def_file
));
384 memset
(rv
, 0, sizeof
(def_file
));
386 rv
->base_address
= (bfd_vma
) -1;
387 rv
->stack_reserve
= rv
->stack_commit
= -1;
388 rv
->heap_reserve
= rv
->heap_commit
= -1;
389 rv
->version_major
= rv
->version_minor
= -1;
394 def_file_parse
(const char *filename
, def_file
*add_to
)
398 the_file
= fopen
(filename
, "r");
399 def_filename
= filename
;
412 def
= def_file_empty
();
426 while
((d
= directives
) != NULL
)
429 printf
("Adding directive %08x `%s'\n", d
->name
, d
->name
);
431 def_file_add_directive
(def
, d
->name
, d
->len
);
432 directives
= d
->next
;
442 def_file_free
(def_file
*fdef
)
450 free
(fdef
->description
);
452 if
(fdef
->section_defs
)
454 for
(i
= 0; i
< fdef
->num_section_defs
; i
++)
456 free
(fdef
->section_defs
[i
].name
);
457 free
(fdef
->section_defs
[i
].class
);
459 free
(fdef
->section_defs
);
462 for
(i
= 0; i
< fdef
->num_exports
; i
++)
464 if
(fdef
->exports
[i
].internal_name
!= fdef
->exports
[i
].name
)
465 free
(fdef
->exports
[i
].internal_name
);
466 free
(fdef
->exports
[i
].name
);
467 free
(fdef
->exports
[i
].its_name
);
469 free
(fdef
->exports
);
471 for
(i
= 0; i
< fdef
->num_imports
; i
++)
473 if
(fdef
->imports
[i
].internal_name
!= fdef
->imports
[i
].name
)
474 free
(fdef
->imports
[i
].internal_name
);
475 free
(fdef
->imports
[i
].name
);
476 free
(fdef
->imports
[i
].its_name
);
478 free
(fdef
->imports
);
480 while
(fdef
->modules
)
482 def_file_module
*m
= fdef
->modules
;
484 fdef
->modules
= fdef
->modules
->next
;
488 while
(fdef
->aligncomms
)
490 def_file_aligncomm
*c
= fdef
->aligncomms
;
492 fdef
->aligncomms
= fdef
->aligncomms
->next
;
493 free
(c
->symbol_name
);
497 for
(ui
= 0; ui
< fdef
->num_exclude_symbols
; ui
++)
499 free
(fdef
->exclude_symbols
[ui
].symbol_name
);
501 free
(fdef
->exclude_symbols
);
506 #ifdef DEF_FILE_PRINT
508 def_file_print
(FILE *file
, def_file
*fdef
)
512 fprintf
(file
, ">>>> def_file at 0x%08x\n", fdef
);
514 fprintf
(file
, " name: %s\n", fdef
->name ? fdef
->name
: "(unspecified)");
515 if
(fdef
->is_dll
!= -1)
516 fprintf
(file
, " is dll: %s\n", fdef
->is_dll ?
"yes" : "no");
517 if
(fdef
->base_address
!= (bfd_vma
) -1)
518 fprintf
(file
, " base address: 0x%" PRIx64
"\n",
519 (uint64_t) fdef
->base_address
);
520 if
(fdef
->description
)
521 fprintf
(file
, " description: `%s'\n", fdef
->description
);
522 if
(fdef
->stack_reserve
!= -1)
523 fprintf
(file
, " stack reserve: 0x%08x\n", fdef
->stack_reserve
);
524 if
(fdef
->stack_commit
!= -1)
525 fprintf
(file
, " stack commit: 0x%08x\n", fdef
->stack_commit
);
526 if
(fdef
->heap_reserve
!= -1)
527 fprintf
(file
, " heap reserve: 0x%08x\n", fdef
->heap_reserve
);
528 if
(fdef
->heap_commit
!= -1)
529 fprintf
(file
, " heap commit: 0x%08x\n", fdef
->heap_commit
);
531 if
(fdef
->num_section_defs
> 0)
533 fprintf
(file
, " section defs:\n");
535 for
(i
= 0; i
< fdef
->num_section_defs
; i
++)
537 fprintf
(file
, " name: `%s', class: `%s', flags:",
538 fdef
->section_defs
[i
].name
, fdef
->section_defs
[i
].class
);
539 if
(fdef
->section_defs
[i
].flag_read
)
540 fprintf
(file
, " R");
541 if
(fdef
->section_defs
[i
].flag_write
)
542 fprintf
(file
, " W");
543 if
(fdef
->section_defs
[i
].flag_execute
)
544 fprintf
(file
, " X");
545 if
(fdef
->section_defs
[i
].flag_shared
)
546 fprintf
(file
, " S");
547 fprintf
(file
, "\n");
551 if
(fdef
->num_exports
> 0)
553 fprintf
(file
, " exports:\n");
555 for
(i
= 0; i
< fdef
->num_exports
; i
++)
557 fprintf
(file
, " name: `%s', int: `%s', ordinal: %d, flags:",
558 fdef
->exports
[i
].name
, fdef
->exports
[i
].internal_name
,
559 fdef
->exports
[i
].ordinal
);
560 if
(fdef
->exports
[i
].flag_private
)
561 fprintf
(file
, " P");
562 if
(fdef
->exports
[i
].flag_constant
)
563 fprintf
(file
, " C");
564 if
(fdef
->exports
[i
].flag_noname
)
565 fprintf
(file
, " N");
566 if
(fdef
->exports
[i
].flag_data
)
567 fprintf
(file
, " D");
568 fprintf
(file
, "\n");
572 if
(fdef
->num_imports
> 0)
574 fprintf
(file
, " imports:\n");
576 for
(i
= 0; i
< fdef
->num_imports
; i
++)
578 fprintf
(file
, " int: %s, from: `%s', name: `%s', ordinal: %d\n",
579 fdef
->imports
[i
].internal_name
,
580 fdef
->imports
[i
].module
,
581 fdef
->imports
[i
].name
,
582 fdef
->imports
[i
].ordinal
);
586 if
(fdef
->version_major
!= -1)
587 fprintf
(file
, " version: %d.%d\n", fdef
->version_major
, fdef
->version_minor
);
589 fprintf
(file
, "<<<< def_file at 0x%08x\n", fdef
);
593 /* Helper routine to check for identity of string pointers,
594 which might be NULL. */
597 are_names_equal
(const char *s1
, const char *s2
)
602 return
(!s1 ?
-1 : 1);
603 return strcmp
(s1
, s2
);
607 cmp_export_elem
(const def_file_export
*e
, const char *ex_name
,
608 const char *in_name
, const char *its_name
,
613 if
((r
= are_names_equal
(its_name ? its_name
: ex_name
,
614 e
->its_name ? e
->its_name
: e
->name
)) != 0)
616 if
((r
= are_names_equal
(in_name
, e
->internal_name
)) != 0)
618 return
(ord
- e
->ordinal
);
621 /* Search the position of the identical element, or returns the position
622 of the next higher element. If last valid element is smaller, then MAX
623 is returned. The max parameter indicates the number of elements in the
624 array. On return, *is_ident indicates whether the returned array index
625 points at an element which is identical to the one searched for. */
628 find_export_in_list
(def_file_export
*b
, unsigned int max
,
629 const char *ex_name
, const char *in_name
,
630 const char *its_name
, int ord
, bool *is_ident
)
633 unsigned int l
, r
, p
;
638 if
((e
= cmp_export_elem
(b
, ex_name
, in_name
, its_name
, ord
)) <= 0)
646 if
((e
= cmp_export_elem
(b
+ (max
- 1), ex_name
, in_name
, its_name
, ord
)) > 0)
648 else if
(!e || max
== 2)
658 e
= cmp_export_elem
(b
+ p
, ex_name
, in_name
, its_name
, ord
);
669 if
((e
= cmp_export_elem
(b
+ l
, ex_name
, in_name
, its_name
, ord
)) > 0)
677 def_file_add_export
(def_file
*fdef
,
678 const char *external_name
,
679 const char *internal_name
,
681 const char *its_name
,
687 if
(internal_name
&& !external_name
)
688 external_name
= internal_name
;
689 if
(external_name
&& !internal_name
)
690 internal_name
= external_name
;
692 /* We need to avoid duplicates. */
694 pos
= find_export_in_list
(fdef
->exports
, fdef
->num_exports
,
695 external_name
, internal_name
,
696 its_name
, ordinal
, is_dup
);
699 return
(fdef
->exports
+ pos
);
701 if
((unsigned)fdef
->num_exports
>= fdef
->max_exports
)
703 fdef
->max_exports
+= SYMBOL_LIST_ARRAY_GROW
;
704 fdef
->exports
= xrealloc
(fdef
->exports
,
705 fdef
->max_exports
* sizeof
(def_file_export
));
708 e
= fdef
->exports
+ pos
;
709 /* If we're inserting in the middle of the array, we need to move the
710 following elements forward. */
711 if
(pos
!= (unsigned)fdef
->num_exports
)
712 memmove
(&e
[1], e
, (sizeof
(def_file_export
) * (fdef
->num_exports
- pos
)));
713 /* Wipe the element for use as a new entry. */
714 memset
(e
, 0, sizeof
(def_file_export
));
715 e
->name
= xstrdup
(external_name
);
716 e
->internal_name
= xstrdup
(internal_name
);
717 e
->its_name
= (its_name ? xstrdup
(its_name
) : NULL
);
718 e
->ordinal
= ordinal
;
724 def_get_module
(def_file
*fdef
, const char *name
)
728 for
(s
= fdef
->modules
; s
; s
= s
->next
)
729 if
(strcmp
(s
->name
, name
) == 0)
735 static def_file_module
*
736 def_stash_module
(def_file
*fdef
, const char *name
)
740 if
((s
= def_get_module
(fdef
, name
)) != NULL
)
742 s
= xmalloc
(sizeof
(def_file_module
) + strlen
(name
));
743 s
->next
= fdef
->modules
;
746 strcpy
(s
->name
, name
);
751 cmp_import_elem
(const def_file_import
*e
, const char *ex_name
,
752 const char *in_name
, const char *module
,
757 if
((r
= are_names_equal
(module
, (e
->module ? e
->module
->name
: NULL
))))
759 if
((r
= are_names_equal
(ex_name
, e
->name
)) != 0)
761 if
((r
= are_names_equal
(in_name
, e
->internal_name
)) != 0)
763 if
(ord
!= e
->ordinal
)
764 return
(ord
< e
->ordinal ?
-1 : 1);
768 /* Search the position of the identical element, or returns the position
769 of the next higher element. If last valid element is smaller, then MAX
770 is returned. The max parameter indicates the number of elements in the
771 array. On return, *is_ident indicates whether the returned array index
772 points at an element which is identical to the one searched for. */
775 find_import_in_list
(def_file_import
*b
, unsigned int max
,
776 const char *ex_name
, const char *in_name
,
777 const char *module
, int ord
, bool *is_ident
)
780 unsigned int l
, r
, p
;
785 if
((e
= cmp_import_elem
(b
, ex_name
, in_name
, module
, ord
)) <= 0)
793 if
((e
= cmp_import_elem
(b
+ (max
- 1), ex_name
, in_name
, module
, ord
)) > 0)
795 else if
(!e || max
== 2)
805 e
= cmp_import_elem
(b
+ p
, ex_name
, in_name
, module
, ord
);
816 if
((e
= cmp_import_elem
(b
+ l
, ex_name
, in_name
, module
, ord
)) > 0)
824 fill_in_import
(def_file_import
*i
,
826 def_file_module
*module
,
828 const char *internal_name
,
829 const char *its_name
)
831 memset
(i
, 0, sizeof
(def_file_import
));
833 i
->name
= xstrdup
(name
);
835 i
->ordinal
= ordinal
;
837 i
->internal_name
= xstrdup
(internal_name
);
839 i
->internal_name
= i
->name
;
840 i
->its_name
= (its_name ? xstrdup
(its_name
) : NULL
);
844 def_file_add_import
(def_file
*fdef
,
848 const char *internal_name
,
849 const char *its_name
,
855 /* We need to avoid here duplicates. */
857 pos
= find_import_in_list
(fdef
->imports
, fdef
->num_imports
,
859 (!internal_name ? name
: internal_name
),
860 module
, ordinal
, is_dup
);
862 return fdef
->imports
+ pos
;
864 if
((unsigned)fdef
->num_imports
>= fdef
->max_imports
)
866 fdef
->max_imports
+= SYMBOL_LIST_ARRAY_GROW
;
867 fdef
->imports
= xrealloc
(fdef
->imports
,
868 fdef
->max_imports
* sizeof
(def_file_import
));
870 i
= fdef
->imports
+ pos
;
871 /* If we're inserting in the middle of the array, we need to move the
872 following elements forward. */
873 if
(pos
!= (unsigned)fdef
->num_imports
)
874 memmove
(i
+ 1, i
, sizeof
(def_file_import
) * (fdef
->num_imports
- pos
));
876 fill_in_import
(i
, name
, def_stash_module
(fdef
, module
), ordinal
,
877 internal_name
, its_name
);
884 def_file_add_import_from
(def_file
*fdef
,
889 const char *internal_name
,
890 const char *its_name ATTRIBUTE_UNUSED
)
896 /* We need to avoid here duplicates. */
898 pos
= find_import_in_list
(fdef
->imports
, fdef
->num_imports
,
899 name
, internal_name ? internal_name
: name
,
900 module
, ordinal
, &is_dup
);
903 if
(fdef
->imports
&& pos
!= (unsigned)fdef
->num_imports
)
905 i
= fdef
->imports
+ pos
;
906 if
(i
->module
&& strcmp
(i
->module
->name
, module
) == 0)
910 if
((unsigned)fdef
->num_imports
+ num_imports
- 1 >= fdef
->max_imports
)
912 fdef
->max_imports
= fdef
->num_imports
+ num_imports
+
913 SYMBOL_LIST_ARRAY_GROW
;
915 fdef
->imports
= xrealloc
(fdef
->imports
,
916 fdef
->max_imports
* sizeof
(def_file_import
));
918 i
= fdef
->imports
+ pos
;
919 /* If we're inserting in the middle of the array, we need to move the
920 following elements forward. */
921 if
(pos
!= (unsigned)fdef
->num_imports
)
922 memmove
(i
+ num_imports
, i
,
923 sizeof
(def_file_import
) * (fdef
->num_imports
- pos
));
929 def_file_add_import_at
(def_file
*fdef
,
934 const char *internal_name
,
935 const char *its_name
)
937 def_file_import
*i
= fdef
->imports
+ pos
;
939 fill_in_import
(i
, name
, def_stash_module
(fdef
, module
), ordinal
,
940 internal_name
, its_name
);
946 /* Search the position of the identical element, or returns the position
947 of the next higher element. If last valid element is smaller, then MAX
948 is returned. The max parameter indicates the number of elements in the
949 array. On return, *is_ident indicates whether the returned array index
950 points at an element which is identical to the one searched for. */
953 find_exclude_in_list
(def_file_exclude_symbol
*b
, unsigned int max
,
954 const char *name
, bool *is_ident
)
957 unsigned int l
, r
, p
;
962 if
((e
= strcmp
(b
[0].symbol_name
, name
)) <= 0)
970 if
((e
= strcmp
(b
[max
- 1].symbol_name
, name
)) > 0)
972 else if
(!e || max
== 2)
982 e
= strcmp
(b
[p
].symbol_name
, name
);
993 if
((e
= strcmp
(b
[l
].symbol_name
, name
)) > 0)
1000 static def_file_exclude_symbol
*
1001 def_file_add_exclude_symbol
(def_file
*fdef
, const char *name
)
1003 def_file_exclude_symbol
*e
;
1005 bool is_dup
= false
;
1007 pos
= find_exclude_in_list
(fdef
->exclude_symbols
, fdef
->num_exclude_symbols
,
1010 /* We need to avoid duplicates. */
1012 return
(fdef
->exclude_symbols
+ pos
);
1014 if
(fdef
->num_exclude_symbols
>= fdef
->max_exclude_symbols
)
1016 fdef
->max_exclude_symbols
+= SYMBOL_LIST_ARRAY_GROW
;
1017 fdef
->exclude_symbols
= xrealloc
(fdef
->exclude_symbols
,
1018 fdef
->max_exclude_symbols
* sizeof
(def_file_exclude_symbol
));
1021 e
= fdef
->exclude_symbols
+ pos
;
1022 /* If we're inserting in the middle of the array, we need to move the
1023 following elements forward. */
1024 if
(pos
!= fdef
->num_exclude_symbols
)
1025 memmove
(&e
[1], e
, (sizeof
(def_file_exclude_symbol
) * (fdef
->num_exclude_symbols
- pos
)));
1026 /* Wipe the element for use as a new entry. */
1027 memset
(e
, 0, sizeof
(def_file_exclude_symbol
));
1028 e
->symbol_name
= xstrdup
(name
);
1029 fdef
->num_exclude_symbols
++;
1040 { "-heap", HEAPSIZE
},
1041 { "-stack", STACKSIZE_K
},
1042 { "-attr", SECTIONS
},
1043 { "-export", EXPORTS
},
1044 { "-aligncomm", ALIGNCOMM
},
1045 { "-exclude-symbols", EXCLUDE_SYMBOLS
},
1050 def_file_add_directive
(def_file
*my_def
, const char *param
, int len
)
1052 def_file
*save_def
= def
;
1053 const char *pend
= param
+ len
;
1054 char * tend
= (char *) param
;
1059 while
(param
< pend
)
1062 && (ISSPACE
(*param
) ||
*param
== '\n' ||
*param
== 0))
1068 /* Scan forward until we encounter any of:
1069 - the end of the buffer
1070 - the start of a new option
1071 - a newline separating options
1072 - a NUL separating options. */
1073 for
(tend
= (char *) (param
+ 1);
1075 && !(ISSPACE
(tend
[-1]) && *tend
== '-')
1076 && *tend
!= '\n' && *tend
!= 0);
1080 for
(i
= 0; diropts
[i
].param
; i
++)
1082 len
= strlen
(diropts
[i
].param
);
1084 if
(tend
- param
>= len
1085 && strncmp
(param
, diropts
[i
].param
, len
) == 0
1086 && (param
[len
] == ':' || param
[len
] == ' '))
1088 lex_parse_string_end
= tend
;
1089 lex_parse_string
= param
+ len
+ 1;
1090 lex_forced_token
= diropts
[i
].token
;
1098 if
(!diropts
[i
].param
)
1106 /* xgettext:c-format */
1107 einfo
(_
("Warning: .drectve `%s' unrecognized\n"), param
);
1112 einfo
(_
("Warning: corrupt .drectve at end of def file\n"));
1116 lex_parse_string
= 0;
1124 /* Parser Callbacks. */
1127 def_image_name
(const char *name
, bfd_vma base
, int is_dll
)
1129 /* If a LIBRARY or NAME statement is specified without a name, there is nothing
1130 to do here. We retain the output filename specified on command line. */
1133 const char* image_name
= lbasename
(name
);
1135 if
(image_name
!= name
)
1136 einfo
(_
("%s:%d: Warning: path components stripped from %s, '%s'\n"),
1137 def_filename
, linenumber
, is_dll ?
"LIBRARY" : "NAME",
1140 /* Append the default suffix, if none specified. */
1141 if
(strchr
(image_name
, '.') == 0)
1143 const char * suffix
= is_dll ?
".dll" : ".exe";
1145 def
->name
= xmalloc
(strlen
(image_name
) + strlen
(suffix
) + 1);
1146 sprintf
(def
->name
, "%s%s", image_name
, suffix
);
1149 def
->name
= xstrdup
(image_name
);
1152 /* Honor a BASE address statement, even if LIBRARY string is empty. */
1153 def
->base_address
= base
;
1154 def
->is_dll
= is_dll
;
1158 def_description
(const char *text
)
1160 int len
= def
->description ? strlen
(def
->description
) : 0;
1162 len
+= strlen
(text
) + 1;
1163 if
(def
->description
)
1165 def
->description
= xrealloc
(def
->description
, len
);
1166 strcat
(def
->description
, text
);
1170 def
->description
= xmalloc
(len
);
1171 strcpy
(def
->description
, text
);
1176 def_stacksize
(int reserve
, int commit
)
1178 def
->stack_reserve
= reserve
;
1179 def
->stack_commit
= commit
;
1183 def_heapsize
(int reserve
, int commit
)
1185 def
->heap_reserve
= reserve
;
1186 def
->heap_commit
= commit
;
1190 def_section
(const char *name
, int attr
)
1192 def_file_section
*s
;
1193 int max_sections
= ROUND_UP
(def
->num_section_defs
, 4);
1195 if
(def
->num_section_defs
>= max_sections
)
1197 max_sections
= ROUND_UP
(def
->num_section_defs
+1, 4);
1199 if
(def
->section_defs
)
1200 def
->section_defs
= xrealloc
(def
->section_defs
,
1201 max_sections
* sizeof
(def_file_import
));
1203 def
->section_defs
= xmalloc
(max_sections
* sizeof
(def_file_import
));
1205 s
= def
->section_defs
+ def
->num_section_defs
;
1206 memset
(s
, 0, sizeof
(def_file_section
));
1207 s
->name
= xstrdup
(name
);
1213 s
->flag_execute
= 1;
1217 def
->num_section_defs
++;
1221 def_section_alt
(const char *name
, const char *attr
)
1225 for
(; *attr
; attr
++)
1247 def_section
(name
, aval
);
1251 def_exports
(const char *external_name
,
1252 const char *internal_name
,
1255 const char *its_name
)
1257 def_file_export
*dfe
;
1258 bool is_dup
= false
;
1260 if
(!internal_name
&& external_name
)
1261 internal_name
= external_name
;
1263 printf
("def_exports, ext=%s int=%s\n", external_name
, internal_name
);
1266 dfe
= def_file_add_export
(def
, external_name
, internal_name
, ordinal
,
1269 /* We might check here for flag redefinition and warn. For now we
1270 ignore duplicates silently. */
1275 dfe
->flag_noname
= 1;
1277 dfe
->flag_constant
= 1;
1281 dfe
->flag_private
= 1;
1285 def_import
(const char *internal_name
,
1290 const char *its_name
)
1293 const char *ext
= dllext ? dllext
: "dll";
1294 bool is_dup
= false
;
1296 buf
= xmalloc
(strlen
(module
) + strlen
(ext
) + 2);
1297 sprintf
(buf
, "%s.%s", module
, ext
);
1300 def_file_add_import
(def
, name
, module
, ordinal
, internal_name
, its_name
,
1306 def_version
(int major
, int minor
)
1308 def
->version_major
= major
;
1309 def
->version_minor
= minor
;
1313 def_directive
(char *str
)
1315 struct directive
*d
= xmalloc
(sizeof
(struct directive
));
1317 d
->next
= directives
;
1319 d
->name
= xstrdup
(str
);
1320 d
->len
= strlen
(str
);
1324 def_aligncomm
(char *str
, int align
)
1326 def_file_aligncomm
*c
, *p
;
1329 c
= def
->aligncomms
;
1332 int e
= strcmp
(c
->symbol_name
, str
);
1335 /* Not sure if we want to allow here duplicates with
1336 different alignments, but for now we keep them. */
1337 e
= (int) c
->alignment
- align
;
1346 c
= xmalloc
(sizeof
(def_file_aligncomm
));
1347 c
->symbol_name
= xstrdup
(str
);
1348 c
->alignment
= (unsigned int) align
;
1351 c
->next
= def
->aligncomms
;
1352 def
->aligncomms
= c
;
1362 def_exclude_symbols
(char *str
)
1364 def_file_add_exclude_symbol
(def
, str
);
1368 def_error
(const char *err
)
1370 einfo
("%P: %s:%d: %s\n",
1371 def_filename ? def_filename
: "<unknown-file>", linenumber
, err
);
1375 /* Lexical Scanner. */
1380 /* Never freed, but always reused as needed, so no real leak. */
1381 static char *buffer
= 0;
1382 static int buflen
= 0;
1383 static int bufptr
= 0;
1388 if
(bufptr
== buflen
)
1390 buflen
+= 50; /* overly reasonable, eh? */
1392 buffer
= xrealloc
(buffer
, buflen
+ 1);
1394 buffer
= xmalloc
(buflen
+ 1);
1396 buffer
[bufptr
++] = c
;
1397 buffer
[bufptr
] = 0; /* not optimal, but very convenient. */
1409 { "CONSTANT", CONSTANTU
},
1410 { "constant", CONSTANTL
},
1413 { "DESCRIPTION", DESCRIPTION
},
1414 { "DIRECTIVE", DIRECTIVE
},
1415 { "EXCLUDE_SYMBOLS", EXCLUDE_SYMBOLS
},
1416 { "EXECUTE", EXECUTE
},
1417 { "EXPORTS", EXPORTS
},
1418 { "HEAPSIZE", HEAPSIZE
},
1419 { "IMPORTS", IMPORTS
},
1420 { "LIBRARY", LIBRARY
},
1422 { "NONAME", NONAMEU
},
1423 { "noname", NONAMEL
},
1424 { "PRIVATE", PRIVATEU
},
1425 { "private", PRIVATEL
},
1427 { "SECTIONS", SECTIONS
},
1428 { "SEGMENTS", SECTIONS
},
1429 { "SHARED", SHARED_K
},
1430 { "STACKSIZE", STACKSIZE_K
},
1431 { "VERSION", VERSIONK
},
1441 if
(lex_parse_string
)
1443 if
(lex_parse_string
>= lex_parse_string_end
)
1446 rv
= *lex_parse_string
++;
1450 rv
= fgetc
(the_file
);
1460 if
(lex_parse_string
)
1466 return ungetc
(c
, the_file
);
1474 if
(lex_forced_token
)
1476 i
= lex_forced_token
;
1477 lex_forced_token
= 0;
1479 printf
("lex: forcing token %d\n", i
);
1486 /* Trim leading whitespace. */
1487 while
(c
!= EOF
&& (c
== ' ' || c
== '\t') && saw_newline
)
1493 printf
("lex: EOF\n");
1498 if
(saw_newline
&& c
== ';')
1504 while
(c
!= EOF
&& c
!= '\n');
1510 /* Must be something else. */
1516 while
(c
!= EOF
&& (ISXDIGIT
(c
) ||
(c
== 'x')))
1523 yylval.digits
= def_pool_strdup
(buffer
);
1525 printf
("lex: `%s' returns DIGITS\n", buffer
);
1530 if
(ISALPHA
(c
) || strchr
("$:-_?@", c
))
1539 if
(ISBLANK
(c
) ) /* '@' followed by whitespace. */
1541 else if
(ISDIGIT
(c
)) /* '@' followed by digit. */
1547 printf
("lex: @ returns itself\n");
1551 while
(c
!= EOF
&& (ISALNUM
(c
) || strchr
("$:-_?/@<>", c
)))
1558 if
(ISALPHA
(q
)) /* Check for tokens. */
1560 for
(i
= 0; tokens
[i
].name
; i
++)
1561 if
(strcmp
(tokens
[i
].name
, buffer
) == 0)
1564 printf
("lex: `%s' is a string token\n", buffer
);
1566 return tokens
[i
].token
;
1570 printf
("lex: `%s' returns ID\n", buffer
);
1572 yylval.id
= def_pool_strdup
(buffer
);
1576 if
(c
== '\'' || c
== '"')
1582 while
(c
!= EOF
&& c
!= q
)
1587 yylval.id
= def_pool_strdup
(buffer
);
1589 printf
("lex: `%s' returns ID\n", buffer
);
1600 printf
("lex: `==' returns EQUAL\n");
1606 printf
("lex: `=' returns itself\n");
1610 if
(c
== '.' || c
== ',')
1613 printf
("lex: `%c' returns itself\n", c
);
1624 /*printf ("lex: 0x%02x ignored\n", c); */
1629 def_pool_alloc
(size_t sz
)
1633 e
= (def_pool_str
*) xmalloc
(sizeof
(def_pool_str
) + sz
);
1634 e
->next
= pool_strs
;
1640 def_pool_strdup
(const char *str
)
1646 len
= strlen
(str
) + 1;
1647 s
= def_pool_alloc
(len
);
1648 memcpy
(s
, str
, len
);
1653 def_pool_free
(void)
1656 while
((p
= pool_strs
) != NULL
)
1658 pool_strs
= p
->next
;