1 /* This module handles expression trees.
2 Copyright (C) 1991-2024 Free Software Foundation, Inc.
3 Written by Steve Chamberlain of Cygnus Support <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. */
23 /* This module is in charge of working out the contents of expressions.
25 It has to keep track of the relative/absness of a symbol etc. This
26 is done by keeping all values in a struct (an etree_value_type)
27 which contains a value, a section to which it is relative and a
42 #include "libiberty.h"
43 #include "safe-ctype.h"
45 static void exp_fold_tree_1 (etree_type
*);
46 static bfd_vma
align_n (bfd_vma
, bfd_vma
);
48 segment_type
*segments
;
50 struct ldexp_control expld
;
52 /* This structure records symbols for which we need to keep track of
53 definedness for use in the DEFINED () test. It is also used in
54 making absolute symbols section relative late in the link. */
56 struct definedness_hash_entry
58 struct bfd_hash_entry root
;
60 /* If this symbol was assigned from "dot" outside of an output
61 section statement, the section we'd like it relative to. */
64 /* Low bits of iteration count. Symbols with matching iteration have
65 been defined in this pass over the script. */
66 unsigned int iteration
: 8;
68 /* Symbol was defined by an object file. */
69 unsigned int by_object
: 1;
72 static struct bfd_hash_table definedness_table
;
74 /* Print the string representation of the given token. Surround it
75 with spaces if INFIX_P is TRUE. */
78 exp_print_token (token_code_type code
, int infix_p
)
106 { LOG2CEIL
, "LOG2CEIL" },
107 { ALIGN_K
, "ALIGN" },
114 { SECTIONS
, "SECTIONS" },
115 { SIZEOF_HEADERS
, "SIZEOF_HEADERS" },
116 { MEMORY
, "MEMORY" },
117 { DEFINED
, "DEFINED" },
118 { TARGET_K
, "TARGET" },
119 { SEARCH_DIR
, "SEARCH_DIR" },
123 { ALIGNOF
, "ALIGNOF" },
124 { SIZEOF
, "SIZEOF" },
126 { LOADADDR
, "LOADADDR" },
127 { CONSTANT
, "CONSTANT" },
128 { ABSOLUTE
, "ABSOLUTE" },
131 { ASSERT_K
, "ASSERT" },
132 { REL
, "relocatable" },
133 { DATA_SEGMENT_ALIGN
, "DATA_SEGMENT_ALIGN" },
134 { DATA_SEGMENT_RELRO_END
, "DATA_SEGMENT_RELRO_END" },
135 { DATA_SEGMENT_END
, "DATA_SEGMENT_END" },
136 { ORIGIN
, "ORIGIN" },
137 { LENGTH
, "LENGTH" },
138 { SEGMENT_START
, "SEGMENT_START" }
142 for (idx
= 0; idx
< ARRAY_SIZE (table
); idx
++)
143 if (table
[idx
].code
== code
)
147 fputc (' ', config
.map_file
);
149 if (idx
< ARRAY_SIZE (table
))
150 fputs (table
[idx
].name
, config
.map_file
);
152 fputc (code
, config
.map_file
);
154 fprintf (config
.map_file
, "<code %d>", code
);
157 fputc (' ', config
.map_file
);
163 bfd_vma value
= expld
.result
.value
;
165 bool round_up
= false;
170 /* If more than one bit is set in the value we will need to round up. */
171 if ((value
> 1) && (value
& 1))
178 expld
.result
.section
= NULL
;
179 expld
.result
.value
= result
;
185 if (expld
.result
.section
!= NULL
)
186 expld
.result
.value
+= expld
.result
.section
->vma
;
187 expld
.result
.section
= bfd_abs_section_ptr
;
188 expld
.rel_from_abs
= false;
192 new_abs (bfd_vma value
)
194 expld
.result
.valid_p
= true;
195 expld
.result
.section
= bfd_abs_section_ptr
;
196 expld
.result
.value
= value
;
197 expld
.result
.str
= NULL
;
201 exp_intop (bfd_vma value
)
203 etree_type
*new_e
= stat_alloc (sizeof (new_e
->value
));
204 new_e
->type
.node_code
= INT
;
205 new_e
->type
.filename
= ldlex_filename ();
206 new_e
->type
.lineno
= lineno
;
207 new_e
->value
.value
= value
;
208 new_e
->value
.str
= NULL
;
209 new_e
->type
.node_class
= etree_value
;
214 exp_bigintop (bfd_vma value
, char *str
)
216 etree_type
*new_e
= stat_alloc (sizeof (new_e
->value
));
217 new_e
->type
.node_code
= INT
;
218 new_e
->type
.filename
= ldlex_filename ();
219 new_e
->type
.lineno
= lineno
;
220 new_e
->value
.value
= value
;
221 new_e
->value
.str
= str
;
222 new_e
->type
.node_class
= etree_value
;
226 /* Build an expression representing an unnamed relocatable value. */
229 exp_relop (asection
*section
, bfd_vma value
)
231 etree_type
*new_e
= stat_alloc (sizeof (new_e
->rel
));
232 new_e
->type
.node_code
= REL
;
233 new_e
->type
.filename
= ldlex_filename ();
234 new_e
->type
.lineno
= lineno
;
235 new_e
->type
.node_class
= etree_rel
;
236 new_e
->rel
.section
= section
;
237 new_e
->rel
.value
= value
;
242 new_number (bfd_vma value
)
244 expld
.result
.valid_p
= true;
245 expld
.result
.value
= value
;
246 expld
.result
.str
= NULL
;
247 expld
.result
.section
= NULL
;
251 new_rel (bfd_vma value
, asection
*section
)
253 expld
.result
.valid_p
= true;
254 expld
.result
.value
= value
;
255 expld
.result
.str
= NULL
;
256 expld
.result
.section
= section
;
260 new_rel_from_abs (bfd_vma value
)
262 asection
*s
= expld
.section
;
264 expld
.rel_from_abs
= true;
265 expld
.result
.valid_p
= true;
266 expld
.result
.value
= value
- s
->vma
;
267 expld
.result
.str
= NULL
;
268 expld
.result
.section
= s
;
271 /* New-function for the definedness hash table. */
273 static struct bfd_hash_entry
*
274 definedness_newfunc (struct bfd_hash_entry
*entry
,
275 struct bfd_hash_table
*table ATTRIBUTE_UNUSED
,
276 const char *name ATTRIBUTE_UNUSED
)
278 struct definedness_hash_entry
*ret
= (struct definedness_hash_entry
*) entry
;
281 ret
= (struct definedness_hash_entry
*)
282 bfd_hash_allocate (table
, sizeof (struct definedness_hash_entry
));
285 einfo (_("%F%P: bfd_hash_allocate failed creating symbol %s\n"), name
);
292 /* Called during processing of linker script script expressions.
293 For symbols assigned in a linker script, return a struct describing
294 where the symbol is defined relative to the current expression,
295 otherwise return NULL. */
297 static struct definedness_hash_entry
*
298 symbol_defined (const char *name
)
300 return ((struct definedness_hash_entry
*)
301 bfd_hash_lookup (&definedness_table
, name
, false, false));
304 /* Update the definedness state of NAME. Return FALSE if script symbol
305 is multiply defining a strong symbol in an object. */
308 update_definedness (const char *name
, struct bfd_link_hash_entry
*h
)
311 struct definedness_hash_entry
*defentry
312 = (struct definedness_hash_entry
*)
313 bfd_hash_lookup (&definedness_table
, name
, true, false);
315 if (defentry
== NULL
)
316 einfo (_("%F%P: bfd_hash_lookup failed creating symbol %s\n"), name
);
318 /* If the symbol was already defined, and not by a script, then it
319 must be defined by an object file or by the linker target code. */
322 && (h
->type
== bfd_link_hash_defined
323 || h
->type
== bfd_link_hash_defweak
324 || h
->type
== bfd_link_hash_common
))
326 defentry
->by_object
= 1;
327 if (h
->type
== bfd_link_hash_defined
328 && h
->u
.def
.section
->output_section
!= NULL
329 && !bfd_is_abs_section (h
->u
.def
.section
)
334 defentry
->iteration
= lang_statement_iteration
;
335 defentry
->final_sec
= bfd_abs_section_ptr
;
336 if (expld
.phase
== lang_final_phase_enum
337 && expld
.rel_from_abs
338 && expld
.result
.section
== bfd_abs_section_ptr
)
339 defentry
->final_sec
= section_for_dot ();
344 fold_segment_end (void)
346 seg_align_type
*seg
= &expld
.dataseg
;
348 if (expld
.phase
== lang_first_phase_enum
349 || expld
.section
!= bfd_abs_section_ptr
)
351 expld
.result
.valid_p
= false;
353 else if (seg
->phase
== exp_seg_align_seen
354 || seg
->phase
== exp_seg_relro_seen
)
356 seg
->phase
= exp_seg_end_seen
;
357 seg
->end
= expld
.result
.value
;
359 else if (seg
->phase
== exp_seg_done
360 || seg
->phase
== exp_seg_adjust
361 || seg
->phase
== exp_seg_relro_adjust
)
366 expld
.result
.valid_p
= false;
370 fold_unary (etree_type
*tree
)
372 exp_fold_tree_1 (tree
->unary
.child
);
373 if (expld
.result
.valid_p
)
375 switch (tree
->type
.node_code
)
378 if (expld
.phase
!= lang_first_phase_enum
)
379 new_rel_from_abs (align_n (expld
.dot
, expld
.result
.value
));
381 expld
.result
.valid_p
= false;
393 expld
.result
.value
= ~expld
.result
.value
;
397 expld
.result
.value
= !expld
.result
.value
;
401 expld
.result
.value
= -expld
.result
.value
;
405 /* Return next place aligned to value. */
406 if (expld
.phase
!= lang_first_phase_enum
)
409 expld
.result
.value
= align_n (expld
.dot
, expld
.result
.value
);
412 expld
.result
.valid_p
= false;
415 case DATA_SEGMENT_END
:
426 /* Arithmetic operators, bitwise AND, bitwise OR and XOR keep the
427 section of one of their operands only when the other operand is a
428 plain number. Losing the section when operating on two symbols,
429 ie. a result of a plain number, is required for subtraction and
430 XOR. It's justifiable for the other operations on the grounds that
431 adding, multiplying etc. two section relative values does not
432 really make sense unless they are just treated as numbers.
433 The same argument could be made for many expressions involving one
434 symbol and a number. For example, "1 << x" and "100 / x" probably
435 should not be given the section of x. The trouble is that if we
436 fuss about such things the rules become complex and it is onerous
437 to document ld expression evaluation. */
439 arith_result_section (const etree_value_type
*lhs
)
441 if (expld
.result
.section
== lhs
->section
)
443 if (expld
.section
== bfd_abs_section_ptr
444 && !config
.sane_expr
)
445 /* Duplicate the insanity in exp_fold_tree_1 case etree_value. */
446 expld
.result
.section
= bfd_abs_section_ptr
;
448 expld
.result
.section
= NULL
;
453 fold_segment_align (etree_value_type
*lhs
)
455 seg_align_type
*seg
= &expld
.dataseg
;
457 seg
->relro
= exp_seg_relro_start
;
458 if (expld
.phase
== lang_first_phase_enum
459 || expld
.section
!= bfd_abs_section_ptr
)
460 expld
.result
.valid_p
= false;
463 bfd_vma maxpage
= lhs
->value
;
464 bfd_vma commonpage
= expld
.result
.value
;
466 expld
.result
.value
= align_n (expld
.dot
, maxpage
);
467 if (seg
->phase
== exp_seg_relro_adjust
)
468 expld
.result
.value
= seg
->base
;
469 else if (seg
->phase
== exp_seg_adjust
)
471 if (commonpage
< maxpage
)
472 expld
.result
.value
+= ((expld
.dot
+ commonpage
- 1)
473 & (maxpage
- commonpage
));
477 if (!link_info
.relro
)
478 expld
.result
.value
+= expld
.dot
& (maxpage
- 1);
479 if (seg
->phase
== exp_seg_done
)
483 else if (seg
->phase
== exp_seg_none
)
485 seg
->phase
= exp_seg_align_seen
;
486 seg
->base
= expld
.result
.value
;
487 seg
->commonpagesize
= commonpage
;
488 seg
->maxpagesize
= maxpage
;
489 seg
->relropagesize
= maxpage
;
493 expld
.result
.valid_p
= false;
499 fold_segment_relro_end (etree_value_type
*lhs
)
501 seg_align_type
*seg
= &expld
.dataseg
;
503 /* Operands swapped! XXX_SEGMENT_RELRO_END(offset,exp) has offset
504 in expld.result and exp in lhs. */
505 seg
->relro
= exp_seg_relro_end
;
506 seg
->relro_offset
= expld
.result
.value
;
507 if (expld
.phase
== lang_first_phase_enum
508 || expld
.section
!= bfd_abs_section_ptr
)
509 expld
.result
.valid_p
= false;
510 else if (seg
->phase
== exp_seg_align_seen
511 || seg
->phase
== exp_seg_adjust
512 || seg
->phase
== exp_seg_relro_adjust
513 || seg
->phase
== exp_seg_done
)
515 if (seg
->phase
== exp_seg_align_seen
516 || seg
->phase
== exp_seg_relro_adjust
)
517 seg
->relro_end
= lhs
->value
+ expld
.result
.value
;
519 if (seg
->phase
== exp_seg_relro_adjust
520 && (seg
->relro_end
& (seg
->relropagesize
- 1)))
522 seg
->relro_end
+= seg
->relropagesize
- 1;
523 seg
->relro_end
&= ~(seg
->relropagesize
- 1);
524 expld
.result
.value
= seg
->relro_end
- expld
.result
.value
;
527 expld
.result
.value
= lhs
->value
;
529 if (seg
->phase
== exp_seg_align_seen
)
530 seg
->phase
= exp_seg_relro_seen
;
533 expld
.result
.valid_p
= false;
537 fold_binary (etree_type
*tree
)
539 etree_value_type lhs
;
540 exp_fold_tree_1 (tree
->binary
.lhs
);
542 /* The SEGMENT_START operator is special because its first
543 operand is a string, not the name of a symbol. Note that the
544 operands have been swapped, so binary.lhs is second (default)
545 operand, binary.rhs is first operand. */
546 if (expld
.result
.valid_p
&& tree
->type
.node_code
== SEGMENT_START
)
548 bfd_vma value
= expld
.result
.value
;
549 const char *segment_name
;
552 /* Check to see if the user has overridden the default
554 segment_name
= tree
->binary
.rhs
->name
.name
;
555 for (seg
= segments
; seg
; seg
= seg
->next
)
556 if (strcmp (seg
->name
, segment_name
) == 0)
559 && config
.magic_demand_paged
560 && link_info
.maxpagesize
!= 0
561 && (seg
->value
% link_info
.maxpagesize
) != 0)
562 einfo (_("%P: warning: address of `%s' "
563 "isn't multiple of maximum page size\n"),
569 new_rel_from_abs (value
);
574 exp_fold_tree_1 (tree
->binary
.rhs
);
575 expld
.result
.valid_p
&= lhs
.valid_p
;
577 if (expld
.result
.valid_p
)
579 if (lhs
.section
!= expld
.result
.section
)
581 /* If the values are from different sections, and neither is
582 just a number, make both the source arguments absolute. */
583 if (expld
.result
.section
!= NULL
584 && lhs
.section
!= NULL
)
587 lhs
.value
+= lhs
.section
->vma
;
588 lhs
.section
= bfd_abs_section_ptr
;
591 /* If the rhs is just a number, keep the lhs section. */
592 else if (expld
.result
.section
== NULL
)
594 expld
.result
.section
= lhs
.section
;
595 /* Make this NULL so that we know one of the operands
596 was just a number, for later tests. */
600 /* At this point we know that both operands have the same
601 section, or at least one of them is a plain number. */
603 switch (tree
->type
.node_code
)
607 expld.result.value = lhs.value y expld.result.value; \
608 arith_result_section (&lhs); \
611 /* Comparison operators, logical AND, and logical OR always
612 return a plain number. */
615 expld.result.value = lhs.value y expld.result.value; \
616 expld.result.section = NULL; \
637 if (expld
.result
.value
!= 0)
638 expld
.result
.value
= ((bfd_signed_vma
) lhs
.value
639 % (bfd_signed_vma
) expld
.result
.value
);
640 else if (expld
.phase
!= lang_mark_phase_enum
)
641 einfo (_("%F%P:%pS %% by zero\n"), tree
->binary
.rhs
);
642 arith_result_section (&lhs
);
646 if (expld
.result
.value
!= 0)
647 expld
.result
.value
= ((bfd_signed_vma
) lhs
.value
648 / (bfd_signed_vma
) expld
.result
.value
);
649 else if (expld
.phase
!= lang_mark_phase_enum
)
650 einfo (_("%F%P:%pS / by zero\n"), tree
->binary
.rhs
);
651 arith_result_section (&lhs
);
655 if (lhs
.value
> expld
.result
.value
)
656 expld
.result
.value
= lhs
.value
;
660 if (lhs
.value
< expld
.result
.value
)
661 expld
.result
.value
= lhs
.value
;
665 expld
.result
.value
= align_n (lhs
.value
, expld
.result
.value
);
668 case DATA_SEGMENT_ALIGN
:
669 fold_segment_align (&lhs
);
672 case DATA_SEGMENT_RELRO_END
:
673 fold_segment_relro_end (&lhs
);
683 fold_trinary (etree_type
*tree
)
685 struct bfd_link_hash_entry
*save
= expld
.assign_src
;
687 exp_fold_tree_1 (tree
->trinary
.cond
);
688 expld
.assign_src
= save
;
689 if (expld
.result
.valid_p
)
690 exp_fold_tree_1 (expld
.result
.value
692 : tree
->trinary
.rhs
);
695 static lang_output_section_statement_type
*
696 output_section_find (const char *name
)
698 lang_output_section_statement_type
*os
= lang_output_section_find (name
);
700 if (os
== NULL
&& strcmp (name
, "NEXT_SECTION") == 0)
704 while ((os
= os
->next
) != NULL
)
705 if (os
->constraint
>= 0 && os
->bfd_section
!= NULL
)
708 os
= abs_output_section
;
714 fold_name (etree_type
*tree
)
716 struct bfd_link_hash_entry
*h
;
717 struct definedness_hash_entry
*def
;
719 memset (&expld
.result
, 0, sizeof (expld
.result
));
721 switch (tree
->type
.node_code
)
724 link_info
.load_phdrs
= 1;
725 if (expld
.phase
!= lang_first_phase_enum
)
727 bfd_vma hdr_size
= 0;
728 /* Don't find the real header size if only marking sections;
729 The bfd function may cache incorrect data. */
730 if (expld
.phase
!= lang_mark_phase_enum
)
731 hdr_size
= (bfd_sizeof_headers (link_info
.output_bfd
, &link_info
)
732 / bfd_octets_per_byte (link_info
.output_bfd
, NULL
));
733 new_number (hdr_size
);
738 h
= bfd_wrapped_link_hash_lookup (link_info
.output_bfd
,
742 new_number (h
!= NULL
743 && (h
->type
== bfd_link_hash_defined
744 || h
->type
== bfd_link_hash_defweak
745 || h
->type
== bfd_link_hash_common
)
747 || (def
= symbol_defined (tree
->name
.name
)) == NULL
749 || def
->iteration
== (lang_statement_iteration
& 255)));
753 if (tree
->name
.name
[0] == '.' && tree
->name
.name
[1] == 0)
754 new_rel_from_abs (expld
.dot
);
757 h
= bfd_wrapped_link_hash_lookup (link_info
.output_bfd
,
763 if (expld
.phase
!= lang_first_phase_enum
)
764 einfo (_("%F%P: bfd_link_hash_lookup failed: %E\n"));
766 else if (h
->type
== bfd_link_hash_defined
767 || h
->type
== bfd_link_hash_defweak
)
769 asection
*output_section
;
771 output_section
= h
->u
.def
.section
->output_section
;
772 if (output_section
== NULL
)
774 if (expld
.phase
<= lang_mark_phase_enum
)
775 new_rel (h
->u
.def
.value
, h
->u
.def
.section
);
777 einfo (_("%X%P:%pS: unresolvable symbol `%s'"
778 " referenced in expression\n"),
779 tree
, tree
->name
.name
);
781 else if (output_section
== bfd_abs_section_ptr
782 && (expld
.section
!= bfd_abs_section_ptr
783 || config
.sane_expr
))
784 new_number (h
->u
.def
.value
+ h
->u
.def
.section
->output_offset
);
786 new_rel (h
->u
.def
.value
+ h
->u
.def
.section
->output_offset
,
789 else if (expld
.phase
== lang_final_phase_enum
790 || (expld
.phase
!= lang_mark_phase_enum
791 && expld
.assigning_to_dot
))
792 einfo (_("%F%P:%pS: undefined symbol `%s'"
793 " referenced in expression\n"),
794 tree
, tree
->name
.name
);
795 else if (h
->type
== bfd_link_hash_new
)
797 h
->type
= bfd_link_hash_undefined
;
798 h
->u
.undef
.abfd
= NULL
;
799 if (h
->u
.undef
.next
== NULL
&& h
!= link_info
.hash
->undefs_tail
)
800 bfd_link_add_undef (link_info
.hash
, h
);
802 if (expld
.assign_src
== NULL
)
803 expld
.assign_src
= h
;
805 expld
.assign_src
= (struct bfd_link_hash_entry
*) - 1;
807 /* Self-assignment is only allowed for absolute symbols
808 defined in a linker script. */
809 if (expld
.assign_name
!= NULL
810 && strcmp (expld
.assign_name
, tree
->name
.name
) == 0
812 && (h
->type
== bfd_link_hash_defined
813 || h
->type
== bfd_link_hash_defweak
)
814 && h
->u
.def
.section
== bfd_abs_section_ptr
815 && (def
= symbol_defined (tree
->name
.name
)) != NULL
816 && def
->iteration
== (lang_statement_iteration
& 255)))
817 expld
.assign_name
= NULL
;
822 if (expld
.phase
!= lang_first_phase_enum
)
824 lang_output_section_statement_type
*os
;
826 os
= lang_output_section_find (tree
->name
.name
);
829 if (expld
.phase
== lang_final_phase_enum
)
830 einfo (_("%F%P:%pS: undefined section `%s'"
831 " referenced in expression\n"),
832 tree
, tree
->name
.name
);
834 else if (os
->processed_vma
)
835 new_rel (0, os
->bfd_section
);
840 if (expld
.phase
!= lang_first_phase_enum
)
842 lang_output_section_statement_type
*os
;
844 os
= lang_output_section_find (tree
->name
.name
);
847 if (expld
.phase
== lang_final_phase_enum
)
848 einfo (_("%F%P:%pS: undefined section `%s'"
849 " referenced in expression\n"),
850 tree
, tree
->name
.name
);
852 else if (os
->processed_lma
)
854 if (os
->load_base
== NULL
)
855 new_abs (os
->bfd_section
->lma
);
858 exp_fold_tree_1 (os
->load_base
);
859 if (expld
.result
.valid_p
)
868 if (expld
.phase
!= lang_first_phase_enum
)
870 lang_output_section_statement_type
*os
;
872 os
= output_section_find (tree
->name
.name
);
875 if (expld
.phase
== lang_final_phase_enum
)
876 einfo (_("%F%P:%pS: undefined section `%s'"
877 " referenced in expression\n"),
878 tree
, tree
->name
.name
);
881 else if (os
->bfd_section
!= NULL
)
885 if (tree
->type
.node_code
== SIZEOF
)
887 if (os
->processed_vma
)
888 val
= os
->bfd_section
->size
;
890 /* If we've just called lang_reset_memory_regions,
891 size will be zero and a previous estimate of
892 size will be in rawsize. */
893 val
= os
->bfd_section
->rawsize
;
894 val
/= bfd_octets_per_byte (link_info
.output_bfd
,
898 val
= (bfd_vma
)1 << os
->bfd_section
->alignment_power
;
909 lang_memory_region_type
*mem
;
911 mem
= lang_memory_region_lookup (tree
->name
.name
, false);
913 new_number (mem
->length
);
915 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
916 " referenced in expression\n"),
917 tree
, tree
->name
.name
);
923 lang_memory_region_type
*mem
;
925 mem
= lang_memory_region_lookup (tree
->name
.name
, false);
927 new_rel_from_abs (mem
->origin
);
929 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
930 " referenced in expression\n"),
931 tree
, tree
->name
.name
);
936 if (strcmp (tree
->name
.name
, "MAXPAGESIZE") == 0)
937 new_number (link_info
.maxpagesize
);
938 else if (strcmp (tree
->name
.name
, "COMMONPAGESIZE") == 0)
939 new_number (link_info
.commonpagesize
);
941 einfo (_("%F%P:%pS: unknown constant `%s' referenced in expression\n"),
942 tree
, tree
->name
.name
);
951 /* Return true if TREE is '.'. */
954 is_dot (const etree_type
*tree
)
956 return (tree
->type
.node_class
== etree_name
957 && tree
->type
.node_code
== NAME
958 && tree
->name
.name
[0] == '.'
959 && tree
->name
.name
[1] == 0);
962 /* Return true if TREE is a constant equal to VAL. */
965 is_value (const etree_type
*tree
, bfd_vma val
)
967 return (tree
->type
.node_class
== etree_value
968 && tree
->value
.value
== val
);
971 /* Return true if TREE is an absolute symbol equal to VAL defined in
975 is_sym_value (const etree_type
*tree
, bfd_vma val
)
977 struct bfd_link_hash_entry
*h
;
978 struct definedness_hash_entry
*def
;
980 return (tree
->type
.node_class
== etree_name
981 && tree
->type
.node_code
== NAME
982 && (def
= symbol_defined (tree
->name
.name
)) != NULL
983 && def
->iteration
== (lang_statement_iteration
& 255)
984 && (h
= bfd_wrapped_link_hash_lookup (link_info
.output_bfd
,
987 false, false, true)) != NULL
989 && h
->type
== bfd_link_hash_defined
990 && h
->u
.def
.section
== bfd_abs_section_ptr
991 && h
->u
.def
.value
== val
);
994 /* Return true if TREE is ". != 0". */
997 is_dot_ne_0 (const etree_type
*tree
)
999 return (tree
->type
.node_class
== etree_binary
1000 && tree
->type
.node_code
== NE
1001 && is_dot (tree
->binary
.lhs
)
1002 && is_value (tree
->binary
.rhs
, 0));
1005 /* Return true if TREE is ". = . + 0" or ". = . + sym" where sym is an
1006 absolute constant with value 0 defined in a linker script. */
1009 is_dot_plus_0 (const etree_type
*tree
)
1011 return (tree
->type
.node_class
== etree_binary
1012 && tree
->type
.node_code
== '+'
1013 && is_dot (tree
->binary
.lhs
)
1014 && (is_value (tree
->binary
.rhs
, 0)
1015 || is_sym_value (tree
->binary
.rhs
, 0)));
1018 /* Return true if TREE is "ALIGN (. != 0 ? some_expression : 1)". */
1021 is_align_conditional (const etree_type
*tree
)
1023 if (tree
->type
.node_class
== etree_unary
1024 && tree
->type
.node_code
== ALIGN_K
)
1026 tree
= tree
->unary
.child
;
1027 return (tree
->type
.node_class
== etree_trinary
1028 && is_dot_ne_0 (tree
->trinary
.cond
)
1029 && is_value (tree
->trinary
.rhs
, 1));
1035 exp_fold_tree_1 (etree_type
*tree
)
1039 memset (&expld
.result
, 0, sizeof (expld
.result
));
1043 switch (tree
->type
.node_class
)
1046 if (expld
.section
== bfd_abs_section_ptr
1047 && !config
.sane_expr
)
1048 new_abs (tree
->value
.value
);
1050 new_number (tree
->value
.value
);
1051 expld
.result
.str
= tree
->value
.str
;
1055 if (expld
.phase
!= lang_first_phase_enum
)
1057 asection
*output_section
= tree
->rel
.section
->output_section
;
1058 new_rel (tree
->rel
.value
+ tree
->rel
.section
->output_offset
,
1062 memset (&expld
.result
, 0, sizeof (expld
.result
));
1066 exp_fold_tree_1 (tree
->assert_s
.child
);
1067 if (expld
.phase
== lang_final_phase_enum
&& !expld
.result
.value
)
1068 einfo ("%X%P: %s\n", tree
->assert_s
.message
);
1080 fold_trinary (tree
);
1085 case etree_provided
:
1086 if (tree
->assign
.dst
[0] == '.' && tree
->assign
.dst
[1] == 0)
1088 if (tree
->type
.node_class
!= etree_assign
)
1089 einfo (_("%F%P:%pS can not PROVIDE assignment to"
1090 " location counter\n"), tree
);
1091 if (expld
.phase
!= lang_first_phase_enum
)
1093 /* Notify the folder that this is an assignment to dot. */
1094 expld
.assigning_to_dot
= true;
1095 exp_fold_tree_1 (tree
->assign
.src
);
1096 expld
.assigning_to_dot
= false;
1098 /* If we are assigning to dot inside an output section
1099 arrange to keep the section, except for certain
1100 expressions that evaluate to zero. We ignore . = 0,
1101 . = . + 0, and . = ALIGN (. != 0 ? expr : 1).
1102 We can't ignore all expressions that evaluate to zero
1103 because an otherwise empty section might have padding
1104 added by an alignment expression that changes with
1105 relaxation. Such a section might have zero size
1106 before relaxation and so be stripped incorrectly. */
1107 if (expld
.phase
== lang_mark_phase_enum
1108 && expld
.section
!= bfd_abs_section_ptr
1109 && expld
.section
!= bfd_und_section_ptr
1110 && !(expld
.result
.valid_p
1111 && expld
.result
.value
== 0
1112 && (is_value (tree
->assign
.src
, 0)
1113 || is_sym_value (tree
->assign
.src
, 0)
1114 || is_dot_plus_0 (tree
->assign
.src
)
1115 || is_align_conditional (tree
->assign
.src
))))
1116 expld
.section
->flags
|= SEC_KEEP
;
1118 if (!expld
.result
.valid_p
1119 || expld
.section
== bfd_und_section_ptr
)
1121 if (expld
.phase
!= lang_mark_phase_enum
)
1122 einfo (_("%F%P:%pS invalid assignment to"
1123 " location counter\n"), tree
);
1125 else if (expld
.dotp
== NULL
)
1126 einfo (_("%F%P:%pS assignment to location counter"
1127 " invalid outside of SECTIONS\n"), tree
);
1129 /* After allocation, assignment to dot should not be
1130 done inside an output section since allocation adds a
1131 padding statement that effectively duplicates the
1133 else if (expld
.phase
<= lang_allocating_phase_enum
1134 || expld
.section
== bfd_abs_section_ptr
)
1138 nextdot
= expld
.result
.value
;
1139 if (expld
.result
.section
!= NULL
)
1140 nextdot
+= expld
.result
.section
->vma
;
1142 nextdot
+= expld
.section
->vma
;
1143 if (nextdot
< expld
.dot
1144 && expld
.section
!= bfd_abs_section_ptr
)
1145 einfo (_("%F%P:%pS cannot move location counter backwards"
1146 " (from %V to %V)\n"),
1147 tree
, expld
.dot
, nextdot
);
1150 expld
.dot
= nextdot
;
1151 *expld
.dotp
= nextdot
;
1156 memset (&expld
.result
, 0, sizeof (expld
.result
));
1160 struct bfd_link_hash_entry
*h
= NULL
;
1162 if (tree
->type
.node_class
== etree_provide
)
1164 h
= bfd_link_hash_lookup (link_info
.hash
, tree
->assign
.dst
,
1165 false, false, true);
1167 || !(h
->type
== bfd_link_hash_new
1168 || h
->type
== bfd_link_hash_undefined
1169 || h
->type
== bfd_link_hash_undefweak
1172 /* Do nothing. The symbol was never referenced, or
1173 was defined in some object file. Note that
1174 undefweak symbols are defined by PROVIDE. This
1175 is to support glibc use of __rela_iplt_start and
1176 similar weak references. */
1181 expld
.assign_name
= tree
->assign
.dst
;
1182 expld
.assign_src
= NULL
;
1183 exp_fold_tree_1 (tree
->assign
.src
);
1184 /* expld.assign_name remaining equal to tree->assign.dst
1185 below indicates the evaluation of tree->assign.src did
1186 not use the value of tree->assign.dst. We don't allow
1187 self assignment until the final phase for two reasons:
1188 1) Expressions are evaluated multiple times. With
1189 relaxation, the number of times may vary.
1190 2) Section relative symbol values cannot be correctly
1191 converted to absolute values, as is required by many
1192 expressions, until final section sizing is complete. */
1193 if (expld
.phase
== lang_final_phase_enum
1194 || expld
.phase
== lang_fixed_phase_enum
1195 || expld
.assign_name
!= NULL
)
1197 if (tree
->type
.node_class
== etree_provide
)
1198 tree
->type
.node_class
= etree_provided
;
1202 h
= bfd_link_hash_lookup (link_info
.hash
, tree
->assign
.dst
,
1205 einfo (_("%F%P:%s: hash creation failed\n"),
1209 /* If the expression is not valid then fake a zero value. In
1210 the final phase any errors will already have been raised,
1211 in earlier phases we want to create this definition so
1212 that it can be seen by other expressions. */
1213 if (!expld
.result
.valid_p
1214 && h
->type
== bfd_link_hash_new
)
1216 expld
.result
.value
= 0;
1217 expld
.result
.section
= NULL
;
1218 expld
.result
.valid_p
= true;
1221 if (expld
.result
.valid_p
)
1223 if (expld
.result
.section
== NULL
)
1224 expld
.result
.section
= expld
.section
;
1225 if (!update_definedness (tree
->assign
.dst
, h
)
1226 && expld
.assign_name
!= NULL
)
1228 /* Symbol was already defined, and the script isn't
1229 modifying the symbol value for some reason as in
1230 ld-elf/var1 and ld-scripts/pr14962.
1231 For now this is only a warning. */
1232 unsigned int warn
= link_info
.warn_multiple_definition
;
1233 link_info
.warn_multiple_definition
= 1;
1234 (*link_info
.callbacks
->multiple_definition
)
1235 (&link_info
, h
, link_info
.output_bfd
,
1236 expld
.result
.section
, expld
.result
.value
);
1237 link_info
.warn_multiple_definition
= warn
;
1239 if (expld
.phase
== lang_fixed_phase_enum
)
1241 if (h
->type
== bfd_link_hash_defined
)
1243 expld
.result
.value
= h
->u
.def
.value
;
1244 expld
.result
.section
= h
->u
.def
.section
;
1249 h
->type
= bfd_link_hash_defined
;
1250 h
->u
.def
.value
= expld
.result
.value
;
1251 h
->u
.def
.section
= expld
.result
.section
;
1252 h
->linker_def
= ! tree
->assign
.type
.lineno
;
1253 h
->ldscript_def
= 1;
1254 h
->rel_from_abs
= expld
.rel_from_abs
;
1255 if (tree
->assign
.hidden
)
1256 bfd_link_hide_symbol (link_info
.output_bfd
,
1259 /* Copy the symbol type and set non_ir_ref_regular
1260 on the source if this is an expression only
1261 referencing a single symbol. (If the expression
1262 contains ternary conditions, ignoring symbols on
1264 if (expld
.assign_src
!= NULL
1265 && (expld
.assign_src
1266 != (struct bfd_link_hash_entry
*) -1))
1268 bfd_copy_link_hash_symbol_type (link_info
.output_bfd
,
1269 h
, expld
.assign_src
);
1270 expld
.assign_src
->non_ir_ref_regular
= true;
1275 if (expld
.phase
!= lang_fixed_phase_enum
)
1276 expld
.assign_name
= NULL
;
1286 memset (&expld
.result
, 0, sizeof (expld
.result
));
1292 exp_fold_tree (etree_type
*tree
, lang_output_section_statement_type
*os
,
1293 asection
*current_section
, bfd_vma
*dotp
)
1295 expld
.rel_from_abs
= false;
1298 expld
.section
= current_section
;
1300 exp_fold_tree_1 (tree
);
1304 exp_fold_tree_no_dot (etree_type
*tree
, lang_output_section_statement_type
*os
)
1306 expld
.rel_from_abs
= false;
1309 expld
.section
= bfd_abs_section_ptr
;
1311 exp_fold_tree_1 (tree
);
1315 exp_value_fold (etree_type
*tree
)
1317 exp_fold_tree_no_dot (tree
, NULL
);
1318 if (expld
.result
.valid_p
)
1320 tree
->type
.node_code
= INT
;
1321 tree
->value
.value
= expld
.result
.value
;
1322 tree
->value
.str
= NULL
;
1323 tree
->type
.node_class
= etree_value
;
1327 #define MAX(a, b) ((a) > (b) ? (a) : (b))
1330 exp_binop (int code
, etree_type
*lhs
, etree_type
*rhs
)
1332 etree_type
*new_e
= stat_alloc (MAX (sizeof (new_e
->binary
),
1333 sizeof (new_e
->value
)));
1334 new_e
->type
.node_code
= code
;
1335 new_e
->type
.filename
= lhs
->type
.filename
;
1336 new_e
->type
.lineno
= lhs
->type
.lineno
;
1337 new_e
->binary
.lhs
= lhs
;
1338 new_e
->binary
.rhs
= rhs
;
1339 new_e
->type
.node_class
= etree_binary
;
1340 if (lhs
->type
.node_class
== etree_value
1341 && rhs
->type
.node_class
== etree_value
1343 && code
!= DATA_SEGMENT_ALIGN
1344 && code
!= DATA_SEGMENT_RELRO_END
)
1345 exp_value_fold (new_e
);
1350 exp_trinop (int code
, etree_type
*cond
, etree_type
*lhs
, etree_type
*rhs
)
1352 etree_type
*new_e
= stat_alloc (MAX (sizeof (new_e
->trinary
),
1353 sizeof (new_e
->value
)));
1354 new_e
->type
.node_code
= code
;
1355 new_e
->type
.filename
= cond
->type
.filename
;
1356 new_e
->type
.lineno
= cond
->type
.lineno
;
1357 new_e
->trinary
.lhs
= lhs
;
1358 new_e
->trinary
.cond
= cond
;
1359 new_e
->trinary
.rhs
= rhs
;
1360 new_e
->type
.node_class
= etree_trinary
;
1361 if (cond
->type
.node_class
== etree_value
1362 && lhs
->type
.node_class
== etree_value
1363 && rhs
->type
.node_class
== etree_value
)
1364 exp_value_fold (new_e
);
1369 exp_unop (int code
, etree_type
*child
)
1371 etree_type
*new_e
= stat_alloc (MAX (sizeof (new_e
->unary
),
1372 sizeof (new_e
->value
)));
1373 new_e
->unary
.type
.node_code
= code
;
1374 new_e
->unary
.type
.filename
= child
->type
.filename
;
1375 new_e
->unary
.type
.lineno
= child
->type
.lineno
;
1376 new_e
->unary
.child
= child
;
1377 new_e
->unary
.type
.node_class
= etree_unary
;
1378 if (child
->type
.node_class
== etree_value
1382 && code
!= DATA_SEGMENT_END
)
1383 exp_value_fold (new_e
);
1388 exp_nameop (int code
, const char *name
)
1390 etree_type
*new_e
= stat_alloc (sizeof (new_e
->name
));
1392 new_e
->name
.type
.node_code
= code
;
1393 new_e
->name
.type
.filename
= ldlex_filename ();
1394 new_e
->name
.type
.lineno
= lineno
;
1395 new_e
->name
.name
= name
;
1396 new_e
->name
.type
.node_class
= etree_name
;
1402 exp_assop (const char *dst
,
1404 enum node_tree_enum
class,
1409 n
= stat_alloc (sizeof (n
->assign
));
1410 n
->assign
.type
.node_code
= '=';
1411 n
->assign
.type
.filename
= src
->type
.filename
;
1412 n
->assign
.type
.lineno
= src
->type
.lineno
;
1413 n
->assign
.type
.node_class
= class;
1414 n
->assign
.src
= src
;
1415 n
->assign
.dst
= dst
;
1416 n
->assign
.hidden
= hidden
;
1420 /* Handle linker script assignments and HIDDEN. */
1423 exp_assign (const char *dst
, etree_type
*src
, bool hidden
)
1425 return exp_assop (dst
, src
, etree_assign
, hidden
);
1428 /* Handle --defsym command-line option. */
1431 exp_defsym (const char *dst
, etree_type
*src
)
1433 return exp_assop (dst
, src
, etree_assign
, false);
1436 /* Handle PROVIDE. */
1439 exp_provide (const char *dst
, etree_type
*src
, bool hidden
)
1441 return exp_assop (dst
, src
, etree_provide
, hidden
);
1444 /* Handle ASSERT. */
1447 exp_assert (etree_type
*exp
, const char *message
)
1451 n
= stat_alloc (sizeof (n
->assert_s
));
1452 n
->assert_s
.type
.node_code
= '!';
1453 n
->assert_s
.type
.filename
= exp
->type
.filename
;
1454 n
->assert_s
.type
.lineno
= exp
->type
.lineno
;
1455 n
->assert_s
.type
.node_class
= etree_assert
;
1456 n
->assert_s
.child
= exp
;
1457 n
->assert_s
.message
= message
;
1462 exp_print_tree (etree_type
*tree
)
1466 if (config
.map_file
== NULL
)
1467 config
.map_file
= stderr
;
1471 minfo ("NULL TREE\n");
1475 switch (tree
->type
.node_class
)
1478 minfo ("0x%v", tree
->value
.value
);
1481 if (tree
->rel
.section
->owner
!= NULL
)
1482 minfo ("%pB:", tree
->rel
.section
->owner
);
1483 minfo ("%s+0x%v", tree
->rel
.section
->name
, tree
->rel
.value
);
1486 fputs (tree
->assign
.dst
, config
.map_file
);
1487 exp_print_token (tree
->type
.node_code
, true);
1488 exp_print_tree (tree
->assign
.src
);
1491 case etree_provided
:
1492 fprintf (config
.map_file
, "PROVIDE (%s = ", tree
->assign
.dst
);
1493 exp_print_tree (tree
->assign
.src
);
1494 fputc (')', config
.map_file
);
1497 function_like
= false;
1498 switch (tree
->type
.node_code
)
1503 case DATA_SEGMENT_ALIGN
:
1504 case DATA_SEGMENT_RELRO_END
:
1505 function_like
= true;
1508 /* Special handling because arguments are in reverse order and
1509 the segment name is quoted. */
1510 exp_print_token (tree
->type
.node_code
, false);
1511 fputs (" (\"", config
.map_file
);
1512 exp_print_tree (tree
->binary
.rhs
);
1513 fputs ("\", ", config
.map_file
);
1514 exp_print_tree (tree
->binary
.lhs
);
1515 fputc (')', config
.map_file
);
1520 exp_print_token (tree
->type
.node_code
, false);
1521 fputc (' ', config
.map_file
);
1523 fputc ('(', config
.map_file
);
1524 exp_print_tree (tree
->binary
.lhs
);
1526 fprintf (config
.map_file
, ", ");
1528 exp_print_token (tree
->type
.node_code
, true);
1529 exp_print_tree (tree
->binary
.rhs
);
1530 fputc (')', config
.map_file
);
1533 exp_print_tree (tree
->trinary
.cond
);
1534 fputc ('?', config
.map_file
);
1535 exp_print_tree (tree
->trinary
.lhs
);
1536 fputc (':', config
.map_file
);
1537 exp_print_tree (tree
->trinary
.rhs
);
1540 exp_print_token (tree
->unary
.type
.node_code
, false);
1541 if (tree
->unary
.child
)
1543 fprintf (config
.map_file
, " (");
1544 exp_print_tree (tree
->unary
.child
);
1545 fputc (')', config
.map_file
);
1550 fprintf (config
.map_file
, "ASSERT (");
1551 exp_print_tree (tree
->assert_s
.child
);
1552 fprintf (config
.map_file
, ", %s)", tree
->assert_s
.message
);
1556 if (tree
->type
.node_code
== NAME
)
1557 fputs (tree
->name
.name
, config
.map_file
);
1560 exp_print_token (tree
->type
.node_code
, false);
1561 if (tree
->name
.name
)
1562 fprintf (config
.map_file
, " (%s)", tree
->name
.name
);
1572 exp_get_vma (etree_type
*tree
, lang_output_section_statement_type
*os
,
1573 bfd_vma def
, char *name
)
1577 exp_fold_tree_no_dot (tree
, os
);
1578 if (expld
.result
.valid_p
)
1579 return expld
.result
.value
;
1580 else if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1581 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
1587 /* Return the smallest non-negative integer such that two raised to
1588 that power is at least as large as the vma evaluated at TREE, if
1589 TREE is a non-NULL expression that can be resolved. If TREE is
1590 NULL or cannot be resolved, return -1. */
1593 exp_get_power (etree_type
*tree
, lang_output_section_statement_type
*os
,
1596 bfd_vma x
= exp_get_vma (tree
, os
, -1, name
);
1600 if (x
== (bfd_vma
) -1)
1603 for (n
= 0, p2
= 1; p2
< x
; ++n
, p2
<<= 1)
1611 exp_get_fill (etree_type
*tree
, fill_type
*def
, char *name
)
1620 exp_fold_tree_no_dot (tree
, NULL
);
1621 if (!expld
.result
.valid_p
)
1623 if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1624 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
1629 if (expld
.result
.str
!= NULL
&& (len
= strlen (expld
.result
.str
)) != 0)
1633 fill
= (fill_type
*) xmalloc ((len
+ 1) / 2 + sizeof (*fill
) - 1);
1634 fill
->size
= (len
+ 1) / 2;
1636 s
= (unsigned char *) expld
.result
.str
;
1644 digit
= (digit
- 'A' + '0' + 10) & 0xf;
1658 fill
= (fill_type
*) xmalloc (4 + sizeof (*fill
) - 1);
1659 val
= expld
.result
.value
;
1660 fill
->data
[0] = (val
>> 24) & 0xff;
1661 fill
->data
[1] = (val
>> 16) & 0xff;
1662 fill
->data
[2] = (val
>> 8) & 0xff;
1663 fill
->data
[3] = (val
>> 0) & 0xff;
1670 exp_get_abs_int (etree_type
*tree
, int def
, char *name
)
1674 exp_fold_tree_no_dot (tree
, NULL
);
1676 if (expld
.result
.valid_p
)
1678 if (expld
.result
.section
!= NULL
)
1679 expld
.result
.value
+= expld
.result
.section
->vma
;
1680 return expld
.result
.value
;
1682 else if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1684 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
1692 align_n (bfd_vma value
, bfd_vma align
)
1697 value
= (value
+ align
- 1) / align
;
1698 return value
* align
;
1704 /* The value "13" is ad-hoc, somewhat related to the expected number of
1705 assignments in a linker script. */
1706 if (!bfd_hash_table_init_n (&definedness_table
,
1707 definedness_newfunc
,
1708 sizeof (struct definedness_hash_entry
),
1710 einfo (_("%F%P: can not create hash table: %E\n"));
1713 /* Convert absolute symbols defined by a script from "dot" (also
1714 SEGMENT_START or ORIGIN) outside of an output section statement,
1715 to section relative. */
1718 set_sym_sections (struct bfd_hash_entry
*bh
, void *inf ATTRIBUTE_UNUSED
)
1720 struct definedness_hash_entry
*def
= (struct definedness_hash_entry
*) bh
;
1721 if (def
->final_sec
!= bfd_abs_section_ptr
)
1723 struct bfd_link_hash_entry
*h
;
1724 h
= bfd_link_hash_lookup (link_info
.hash
, bh
->string
,
1725 false, false, true);
1727 && h
->type
== bfd_link_hash_defined
1728 && h
->u
.def
.section
== bfd_abs_section_ptr
)
1730 h
->u
.def
.value
-= def
->final_sec
->vma
;
1731 h
->u
.def
.section
= def
->final_sec
;
1738 ldexp_finalize_syms (void)
1740 bfd_hash_traverse (&definedness_table
, set_sym_sections
, NULL
);
1743 /* Determine whether a symbol is going to remain absolute even after
1744 ldexp_finalize_syms() has run. */
1747 ldexp_is_final_sym_absolute (const struct bfd_link_hash_entry
*h
)
1749 if (h
->type
== bfd_link_hash_defined
1750 && h
->u
.def
.section
== bfd_abs_section_ptr
)
1752 const struct definedness_hash_entry
*def
;
1754 if (!h
->ldscript_def
)
1757 def
= symbol_defined (h
->root
.string
);
1759 return def
->final_sec
== bfd_abs_section_ptr
;
1768 bfd_hash_table_free (&definedness_table
);