1 /* ldctor.c -- constructor support routines
2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
3 By Steve Chamberlain <sac@cygnus.com>
5 This file is part of the 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. */
25 #include "safe-ctype.h"
36 /* The list of statements needed to handle constructors. These are
37 invoked by the command CONSTRUCTORS in the linker script. */
38 lang_statement_list_type constructor_list
;
40 /* Whether the constructors should be sorted. Note that this is
41 global for the entire link; we assume that there is only a single
42 CONSTRUCTORS command in the linker script. */
43 bfd_boolean constructors_sorted
;
45 /* The sets we have seen. */
46 struct set_info
*sets
;
48 /* Add an entry to a set. H is the entry in the linker hash table.
49 RELOC is the relocation to use for an entry in the set. SECTION
50 and VALUE are the value to add. This is called during the first
51 phase of the link, when we are still gathering symbols together.
52 We just record the information now. The ldctor_build_sets
53 function will construct the sets. */
56 ldctor_add_set_entry (struct bfd_link_hash_entry
*h
,
57 bfd_reloc_code_real_type reloc
,
63 struct set_element
*e
;
64 struct set_element
**epp
;
66 for (p
= sets
; p
!= NULL
; p
= p
->next
)
72 p
= (struct set_info
*) xmalloc (sizeof (struct set_info
));
82 if (p
->reloc
!= reloc
)
84 einfo (_("%X%P: different relocs used in set %s\n"),
89 /* Don't permit a set to be constructed from different object
90 file formats. The same reloc may have different results. We
91 actually could sometimes handle this, but the case is
92 unlikely to ever arise. Sometimes constructor symbols are in
93 unusual sections, such as the absolute section--this appears
94 to be the case in Linux a.out--and in such cases we just
95 assume everything is OK. */
96 if (p
->elements
!= NULL
97 && section
->owner
!= NULL
98 && p
->elements
->section
->owner
!= NULL
99 && strcmp (bfd_get_target (section
->owner
),
100 bfd_get_target (p
->elements
->section
->owner
)) != 0)
102 einfo (_("%X%P: different object file formats composing set %s\n"),
108 e
= (struct set_element
*) xmalloc (sizeof (struct set_element
));
111 e
->section
= section
;
114 for (epp
= &p
->elements
; *epp
!= NULL
; epp
= &(*epp
)->u
.next
)
121 /* Get the priority of a g++ global constructor or destructor from the
125 ctor_prio (const char *name
)
127 /* The name will look something like _GLOBAL_$I$65535$test02__Fv.
128 There might be extra leading underscores, and the $ characters
129 might be something else. The I might be a D. */
134 if (!CONST_STRNEQ (name
, "GLOBAL_"))
137 name
+= sizeof "GLOBAL_" - 1;
139 if (name
[0] != name
[2])
141 if (name
[1] != 'I' && name
[1] != 'D')
143 if (!ISDIGIT (name
[3]))
146 return atoi (name
+ 3);
149 /* This function is used to sort constructor elements by priority. It
150 is called via qsort. */
153 ctor_cmp (const void *p1
, const void *p2
)
155 const struct set_element
*pe1
= *(const struct set_element
**) p1
;
156 const struct set_element
*pe2
= *(const struct set_element
**) p2
;
169 /* We need to sort in reverse order by priority. When two
170 constructors have the same priority, we should maintain their
171 current relative position. */
173 prio1
= ctor_prio (n1
);
174 prio2
= ctor_prio (n2
);
176 /* We sort in reverse order because that is what g++ expects. */
182 /* Force a stable sort. */
183 if (pe1
->u
.idx
< pe2
->u
.idx
)
185 if (pe1
->u
.idx
> pe2
->u
.idx
)
190 /* This function is called after the first phase of the link and
191 before the second phase. At this point all set information has
192 been gathered. We now put the statements to build the sets
193 themselves into constructor_list. */
196 ldctor_build_sets (void)
198 static bfd_boolean called
;
199 bfd_boolean header_printed
;
202 /* The emulation code may call us directly, but we only want to do
208 if (constructors_sorted
)
210 for (p
= sets
; p
!= NULL
; p
= p
->next
)
213 struct set_element
*e
, *enext
;
214 struct set_element
**array
;
216 if (p
->elements
== NULL
)
220 for (e
= p
->elements
; e
!= NULL
; e
= e
->u
.next
)
223 array
= (struct set_element
**) xmalloc (c
* sizeof *array
);
226 for (e
= p
->elements
; e
!= NULL
; e
= enext
)
234 qsort (array
, c
, sizeof *array
, ctor_cmp
);
238 for (i
= 0; i
< c
- 1; i
++)
239 array
[i
]->u
.next
= array
[i
+ 1];
240 array
[i
]->u
.next
= NULL
;
246 lang_list_init (&constructor_list
);
247 push_stat_ptr (&constructor_list
);
249 header_printed
= FALSE
;
250 for (p
= sets
; p
!= NULL
; p
= p
->next
)
252 struct set_element
*e
;
253 reloc_howto_type
*howto
;
254 int reloc_size
, size
;
256 /* If the symbol is defined, we may have been invoked from
257 collect, and the sets may already have been built, so we do
259 if (p
->h
->type
== bfd_link_hash_defined
260 || p
->h
->type
== bfd_link_hash_defweak
)
263 /* For each set we build:
265 .long number_of_elements
270 except that we use the right size instead of .long. When
271 generating relocatable output, we generate relocs instead of
273 howto
= bfd_reloc_type_lookup (link_info
.output_bfd
, p
->reloc
);
276 if (bfd_link_relocatable (&link_info
))
278 einfo (_("%X%P: %s does not support reloc %s for set %s\n"),
279 bfd_get_target (link_info
.output_bfd
),
280 bfd_get_reloc_code_name (p
->reloc
),
285 /* If this is not a relocatable link, all we need is the
286 size, which we can get from the input BFD. */
287 if (p
->elements
->section
->owner
!= NULL
)
288 howto
= bfd_reloc_type_lookup (p
->elements
->section
->owner
,
292 /* See PR 20911 for a reproducer. */
293 if (p
->elements
->section
->owner
== NULL
)
294 einfo (_("%X%P: special section %s does not support reloc %s for set %s\n"),
295 bfd_section_name (p
->elements
->section
),
296 bfd_get_reloc_code_name (p
->reloc
),
299 einfo (_("%X%P: %s does not support reloc %s for set %s\n"),
300 bfd_get_target (p
->elements
->section
->owner
),
301 bfd_get_reloc_code_name (p
->reloc
),
307 reloc_size
= bfd_get_reloc_size (howto
);
310 case 1: size
= BYTE
; break;
311 case 2: size
= SHORT
; break;
312 case 4: size
= LONG
; break;
314 if (howto
->complain_on_overflow
== complain_overflow_signed
)
320 einfo (_("%X%P: unsupported size %d for set %s\n"),
321 bfd_get_reloc_size (howto
), p
->h
->root
.string
);
326 lang_add_assignment (exp_assign (".",
328 exp_intop (reloc_size
)),
330 lang_add_assignment (exp_assign (p
->h
->root
.string
,
331 exp_nameop (NAME
, "."),
333 lang_add_data (size
, exp_intop (p
->count
));
335 for (e
= p
->elements
; e
!= NULL
; e
= e
->u
.next
)
337 if (config
.map_file
!= NULL
)
343 minfo (_("\nSet Symbol\n\n"));
344 header_printed
= TRUE
;
347 minfo ("%s", p
->h
->root
.string
);
348 len
= strlen (p
->h
->root
.string
);
362 minfo ("%pT\n", e
->name
);
364 minfo ("%G\n", e
->section
->owner
, e
->section
, e
->value
);
367 /* Need SEC_KEEP for --gc-sections. */
368 if (!bfd_is_abs_section (e
->section
))
369 e
->section
->flags
|= SEC_KEEP
;
371 if (bfd_link_relocatable (&link_info
))
372 lang_add_reloc (p
->reloc
, howto
, e
->section
, e
->name
,
373 exp_intop (e
->value
));
375 lang_add_data (size
, exp_relop (e
->section
, e
->value
));
378 lang_add_data (size
, exp_intop (0));