Use bfd_get_current_time in places where it is suitable
[binutils-gdb.git] / ld / ldexp.c
blobc53879534a5254a4184d7492587fc0dea6820a43
1 /* This module handles expression trees.
2 Copyright (C) 1991-2023 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
28 valid bit. */
30 #include "sysdep.h"
31 #include "bfd.h"
32 #include "bfdlink.h"
33 #include "ctf-api.h"
35 #include "ld.h"
36 #include "ldmain.h"
37 #include "ldmisc.h"
38 #include "ldexp.h"
39 #include "ldlex.h"
40 #include <ldgram.h>
41 #include "ldlang.h"
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. */
62 asection *final_sec;
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. */
77 static void
78 exp_print_token (token_code_type code, int infix_p)
80 static const struct
82 token_code_type code;
83 const char *name;
85 table[] =
87 { INT, "int" },
88 { NAME, "NAME" },
89 { PLUSEQ, "+=" },
90 { MINUSEQ, "-=" },
91 { MULTEQ, "*=" },
92 { DIVEQ, "/=" },
93 { LSHIFTEQ, "<<=" },
94 { RSHIFTEQ, ">>=" },
95 { ANDEQ, "&=" },
96 { OREQ, "|=" },
97 { XOREQ, "^=" },
98 { OROR, "||" },
99 { ANDAND, "&&" },
100 { EQ, "==" },
101 { NE, "!=" },
102 { LE, "<=" },
103 { GE, ">=" },
104 { LSHIFT, "<<" },
105 { RSHIFT, ">>" },
106 { LOG2CEIL, "LOG2CEIL" },
107 { ALIGN_K, "ALIGN" },
108 { BLOCK, "BLOCK" },
109 { QUAD, "QUAD" },
110 { SQUAD, "SQUAD" },
111 { LONG, "LONG" },
112 { SHORT, "SHORT" },
113 { BYTE, "BYTE" },
114 { SECTIONS, "SECTIONS" },
115 { SIZEOF_HEADERS, "SIZEOF_HEADERS" },
116 { MEMORY, "MEMORY" },
117 { DEFINED, "DEFINED" },
118 { TARGET_K, "TARGET" },
119 { SEARCH_DIR, "SEARCH_DIR" },
120 { MAP, "MAP" },
121 { ENTRY, "ENTRY" },
122 { NEXT, "NEXT" },
123 { ALIGNOF, "ALIGNOF" },
124 { SIZEOF, "SIZEOF" },
125 { ADDR, "ADDR" },
126 { LOADADDR, "LOADADDR" },
127 { CONSTANT, "CONSTANT" },
128 { ABSOLUTE, "ABSOLUTE" },
129 { MAX_K, "MAX" },
130 { MIN_K, "MIN" },
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" }
140 unsigned int idx;
142 for (idx = 0; idx < ARRAY_SIZE (table); idx++)
143 if (table[idx].code == code)
144 break;
146 if (infix_p)
147 fputc (' ', config.map_file);
149 if (idx < ARRAY_SIZE (table))
150 fputs (table[idx].name, config.map_file);
151 else if (code < 127)
152 fputc (code, config.map_file);
153 else
154 fprintf (config.map_file, "<code %d>", code);
156 if (infix_p)
157 fputc (' ', config.map_file);
160 static void
161 make_log2ceil (void)
163 bfd_vma value = expld.result.value;
164 bfd_vma result = -1;
165 bool round_up = false;
169 result++;
170 /* If more than one bit is set in the value we will need to round up. */
171 if ((value > 1) && (value & 1))
172 round_up = true;
174 while (value >>= 1);
176 if (round_up)
177 result += 1;
178 expld.result.section = NULL;
179 expld.result.value = result;
182 static void
183 make_abs (void)
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;
191 static void
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;
200 etree_type *
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;
210 return new_e;
213 etree_type *
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;
223 return new_e;
226 /* Build an expression representing an unnamed relocatable value. */
228 etree_type *
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;
238 return new_e;
241 static void
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;
250 static void
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;
259 static void
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;
280 if (ret == NULL)
281 ret = (struct definedness_hash_entry *)
282 bfd_hash_allocate (table, sizeof (struct definedness_hash_entry));
284 if (ret == NULL)
285 einfo (_("%F%P: bfd_hash_allocate failed creating symbol %s\n"), name);
287 ret->by_object = 0;
288 ret->iteration = 0;
289 return &ret->root;
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. */
307 static bool
308 update_definedness (const char *name, struct bfd_link_hash_entry *h)
310 bool ret;
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. */
320 ret = true;
321 if (!h->ldscript_def
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)
330 && !h->linker_def)
331 ret = false;
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 ();
340 return ret;
343 static void
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)
363 /* OK. */
365 else
366 expld.result.valid_p = false;
369 static void
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)
377 case ALIGN_K:
378 if (expld.phase != lang_first_phase_enum)
379 new_rel_from_abs (align_n (expld.dot, expld.result.value));
380 else
381 expld.result.valid_p = false;
382 break;
384 case ABSOLUTE:
385 make_abs ();
386 break;
388 case LOG2CEIL:
389 make_log2ceil ();
390 break;
392 case '~':
393 expld.result.value = ~expld.result.value;
394 break;
396 case '!':
397 expld.result.value = !expld.result.value;
398 break;
400 case '-':
401 expld.result.value = -expld.result.value;
402 break;
404 case NEXT:
405 /* Return next place aligned to value. */
406 if (expld.phase != lang_first_phase_enum)
408 make_abs ();
409 expld.result.value = align_n (expld.dot, expld.result.value);
411 else
412 expld.result.valid_p = false;
413 break;
415 case DATA_SEGMENT_END:
416 fold_segment_end ();
417 break;
419 default:
420 FAIL ();
421 break;
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. */
438 static void
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;
447 else
448 expld.result.section = NULL;
452 static void
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;
461 else
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));
475 else
477 if (!link_info.relro)
478 expld.result.value += expld.dot & (maxpage - 1);
479 if (seg->phase == exp_seg_done)
481 /* OK. */
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;
490 seg->relro_end = 0;
492 else
493 expld.result.valid_p = false;
498 static void
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;
526 else
527 expld.result.value = lhs->value;
529 if (seg->phase == exp_seg_align_seen)
530 seg->phase = exp_seg_relro_seen;
532 else
533 expld.result.valid_p = false;
536 static void
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;
550 segment_type *seg;
552 /* Check to see if the user has overridden the default
553 value. */
554 segment_name = tree->binary.rhs->name.name;
555 for (seg = segments; seg; seg = seg->next)
556 if (strcmp (seg->name, segment_name) == 0)
558 if (!seg->used
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"),
564 segment_name);
565 seg->used = true;
566 value = seg->value;
567 break;
569 new_rel_from_abs (value);
570 return;
573 lhs = expld.result;
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)
586 make_abs ();
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. */
597 lhs.section = NULL;
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)
605 #define BOP(x, y) \
606 case x: \
607 expld.result.value = lhs.value y expld.result.value; \
608 arith_result_section (&lhs); \
609 break;
611 /* Comparison operators, logical AND, and logical OR always
612 return a plain number. */
613 #define BOPN(x, y) \
614 case x: \
615 expld.result.value = lhs.value y expld.result.value; \
616 expld.result.section = NULL; \
617 break;
619 BOP ('+', +);
620 BOP ('*', *);
621 BOP ('-', -);
622 BOP (LSHIFT, <<);
623 BOP (RSHIFT, >>);
624 BOP ('&', &);
625 BOP ('^', ^);
626 BOP ('|', |);
627 BOPN (EQ, ==);
628 BOPN (NE, !=);
629 BOPN ('<', <);
630 BOPN ('>', >);
631 BOPN (LE, <=);
632 BOPN (GE, >=);
633 BOPN (ANDAND, &&);
634 BOPN (OROR, ||);
636 case '%':
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);
643 break;
645 case '/':
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);
652 break;
654 case MAX_K:
655 if (lhs.value > expld.result.value)
656 expld.result.value = lhs.value;
657 break;
659 case MIN_K:
660 if (lhs.value < expld.result.value)
661 expld.result.value = lhs.value;
662 break;
664 case ALIGN_K:
665 expld.result.value = align_n (lhs.value, expld.result.value);
666 break;
668 case DATA_SEGMENT_ALIGN:
669 fold_segment_align (&lhs);
670 break;
672 case DATA_SEGMENT_RELRO_END:
673 fold_segment_relro_end (&lhs);
674 break;
676 default:
677 FAIL ();
682 static void
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
691 ? tree->trinary.lhs
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)
702 os = expld.last_os;
703 if (os != NULL)
704 while ((os = os->next) != NULL)
705 if (os->constraint >= 0 && os->bfd_section != NULL)
706 break;
707 if (os == NULL)
708 os = abs_output_section;
710 return os;
713 static void
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)
723 case SIZEOF_HEADERS:
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);
735 break;
737 case DEFINED:
738 h = bfd_wrapped_link_hash_lookup (link_info.output_bfd,
739 &link_info,
740 tree->name.name,
741 false, false, true);
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)
746 && (!h->ldscript_def
747 || (def = symbol_defined (tree->name.name)) == NULL
748 || def->by_object
749 || def->iteration == (lang_statement_iteration & 255)));
750 break;
752 case NAME:
753 if (tree->name.name[0] == '.' && tree->name.name[1] == 0)
754 new_rel_from_abs (expld.dot);
755 else
757 h = bfd_wrapped_link_hash_lookup (link_info.output_bfd,
758 &link_info,
759 tree->name.name,
760 true, false, true);
761 if (!h)
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);
776 else
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);
785 else
786 new_rel (h->u.def.value + h->u.def.section->output_offset,
787 output_section);
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;
804 else
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
811 && !(h != NULL
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;
819 break;
821 case ADDR:
822 if (expld.phase != lang_first_phase_enum)
824 lang_output_section_statement_type *os;
826 os = lang_output_section_find (tree->name.name);
827 if (os == NULL)
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);
837 break;
839 case LOADADDR:
840 if (expld.phase != lang_first_phase_enum)
842 lang_output_section_statement_type *os;
844 os = lang_output_section_find (tree->name.name);
845 if (os == NULL)
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);
856 else
858 exp_fold_tree_1 (os->load_base);
859 if (expld.result.valid_p)
860 make_abs ();
864 break;
866 case SIZEOF:
867 case ALIGNOF:
868 if (expld.phase != lang_first_phase_enum)
870 lang_output_section_statement_type *os;
872 os = output_section_find (tree->name.name);
873 if (os == NULL)
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);
879 new_number (0);
881 else if (os->bfd_section != NULL)
883 bfd_vma val;
885 if (tree->type.node_code == SIZEOF)
887 if (os->processed_vma)
888 val = os->bfd_section->size;
889 else
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,
895 os->bfd_section);
897 else
898 val = (bfd_vma)1 << os->bfd_section->alignment_power;
900 new_number (val);
902 else
903 new_number (0);
905 break;
907 case LENGTH:
909 lang_memory_region_type *mem;
911 mem = lang_memory_region_lookup (tree->name.name, false);
912 if (mem != NULL)
913 new_number (mem->length);
914 else
915 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
916 " referenced in expression\n"),
917 tree, tree->name.name);
919 break;
921 case ORIGIN:
923 lang_memory_region_type *mem;
925 mem = lang_memory_region_lookup (tree->name.name, false);
926 if (mem != NULL)
927 new_rel_from_abs (mem->origin);
928 else
929 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
930 " referenced in expression\n"),
931 tree, tree->name.name);
933 break;
935 case CONSTANT:
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);
940 else
941 einfo (_("%F%P:%pS: unknown constant `%s' referenced in expression\n"),
942 tree, tree->name.name);
943 break;
945 default:
946 FAIL ();
947 break;
951 /* Return true if TREE is '.'. */
953 static bool
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. */
964 static bool
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
972 a linker script. */
974 static bool
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,
985 &link_info,
986 tree->name.name,
987 false, false, true)) != NULL
988 && h->ldscript_def
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". */
996 static bool
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. */
1008 static bool
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)". */
1020 static bool
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));
1031 return false;
1034 static void
1035 exp_fold_tree_1 (etree_type *tree)
1037 if (tree == NULL)
1039 memset (&expld.result, 0, sizeof (expld.result));
1040 return;
1043 switch (tree->type.node_class)
1045 case etree_value:
1046 if (expld.section == bfd_abs_section_ptr
1047 && !config.sane_expr)
1048 new_abs (tree->value.value);
1049 else
1050 new_number (tree->value.value);
1051 expld.result.str = tree->value.str;
1052 break;
1054 case etree_rel:
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,
1059 output_section);
1061 else
1062 memset (&expld.result, 0, sizeof (expld.result));
1063 break;
1065 case etree_assert:
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);
1069 break;
1071 case etree_unary:
1072 fold_unary (tree);
1073 break;
1075 case etree_binary:
1076 fold_binary (tree);
1077 break;
1079 case etree_trinary:
1080 fold_trinary (tree);
1081 break;
1083 case etree_assign:
1084 case etree_provide:
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
1132 assignment. */
1133 else if (expld.phase <= lang_allocating_phase_enum
1134 || expld.section == bfd_abs_section_ptr)
1136 bfd_vma nextdot;
1138 nextdot = expld.result.value;
1139 if (expld.result.section != NULL)
1140 nextdot += expld.result.section->vma;
1141 else
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);
1148 else
1150 expld.dot = nextdot;
1151 *expld.dotp = nextdot;
1155 else
1156 memset (&expld.result, 0, sizeof (expld.result));
1158 else
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);
1166 if (h == NULL
1167 || !(h->type == bfd_link_hash_new
1168 || h->type == bfd_link_hash_undefined
1169 || h->type == bfd_link_hash_undefweak
1170 || h->linker_def))
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. */
1177 break;
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;
1200 if (h == NULL)
1202 h = bfd_link_hash_lookup (link_info.hash, tree->assign.dst,
1203 true, false, true);
1204 if (h == NULL)
1205 einfo (_("%F%P:%s: hash creation failed\n"),
1206 tree->assign.dst);
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;
1247 else
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,
1257 &link_info, h);
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
1263 false branches.) */
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;
1278 break;
1280 case etree_name:
1281 fold_name (tree);
1282 break;
1284 default:
1285 FAIL ();
1286 memset (&expld.result, 0, sizeof (expld.result));
1287 break;
1291 void
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;
1296 expld.dot = *dotp;
1297 expld.dotp = dotp;
1298 expld.section = current_section;
1299 expld.last_os = os;
1300 exp_fold_tree_1 (tree);
1303 void
1304 exp_fold_tree_no_dot (etree_type *tree, lang_output_section_statement_type *os)
1306 expld.rel_from_abs = false;
1307 expld.dot = 0;
1308 expld.dotp = NULL;
1309 expld.section = bfd_abs_section_ptr;
1310 expld.last_os = os;
1311 exp_fold_tree_1 (tree);
1314 static void
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))
1329 etree_type *
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
1342 && code != ALIGN_K
1343 && code != DATA_SEGMENT_ALIGN
1344 && code != DATA_SEGMENT_RELRO_END)
1345 exp_value_fold (new_e);
1346 return new_e;
1349 etree_type *
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);
1365 return new_e;
1368 etree_type *
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
1379 && code != ALIGN_K
1380 && code != ABSOLUTE
1381 && code != NEXT
1382 && code != DATA_SEGMENT_END)
1383 exp_value_fold (new_e);
1384 return new_e;
1387 etree_type *
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;
1397 return new_e;
1401 static etree_type *
1402 exp_assop (const char *dst,
1403 etree_type *src,
1404 enum node_tree_enum class,
1405 bool hidden)
1407 etree_type *n;
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;
1417 return n;
1420 /* Handle linker script assignments and HIDDEN. */
1422 etree_type *
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. */
1430 etree_type *
1431 exp_defsym (const char *dst, etree_type *src)
1433 return exp_assop (dst, src, etree_assign, false);
1436 /* Handle PROVIDE. */
1438 etree_type *
1439 exp_provide (const char *dst, etree_type *src, bool hidden)
1441 return exp_assop (dst, src, etree_provide, hidden);
1444 /* Handle ASSERT. */
1446 etree_type *
1447 exp_assert (etree_type *exp, const char *message)
1449 etree_type *n;
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;
1458 return n;
1461 void
1462 exp_print_tree (etree_type *tree)
1464 bool function_like;
1466 if (config.map_file == NULL)
1467 config.map_file = stderr;
1469 if (tree == NULL)
1471 minfo ("NULL TREE\n");
1472 return;
1475 switch (tree->type.node_class)
1477 case etree_value:
1478 minfo ("0x%v", tree->value.value);
1479 return;
1480 case etree_rel:
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);
1484 return;
1485 case etree_assign:
1486 fputs (tree->assign.dst, config.map_file);
1487 exp_print_token (tree->type.node_code, true);
1488 exp_print_tree (tree->assign.src);
1489 break;
1490 case etree_provide:
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);
1495 break;
1496 case etree_binary:
1497 function_like = false;
1498 switch (tree->type.node_code)
1500 case MAX_K:
1501 case MIN_K:
1502 case ALIGN_K:
1503 case DATA_SEGMENT_ALIGN:
1504 case DATA_SEGMENT_RELRO_END:
1505 function_like = true;
1506 break;
1507 case SEGMENT_START:
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);
1516 return;
1518 if (function_like)
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);
1525 if (function_like)
1526 fprintf (config.map_file, ", ");
1527 else
1528 exp_print_token (tree->type.node_code, true);
1529 exp_print_tree (tree->binary.rhs);
1530 fputc (')', config.map_file);
1531 break;
1532 case etree_trinary:
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);
1538 break;
1539 case etree_unary:
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);
1547 break;
1549 case etree_assert:
1550 fprintf (config.map_file, "ASSERT (");
1551 exp_print_tree (tree->assert_s.child);
1552 fprintf (config.map_file, ", %s)", tree->assert_s.message);
1553 break;
1555 case etree_name:
1556 if (tree->type.node_code == NAME)
1557 fputs (tree->name.name, config.map_file);
1558 else
1560 exp_print_token (tree->type.node_code, false);
1561 if (tree->name.name)
1562 fprintf (config.map_file, " (%s)", tree->name.name);
1564 break;
1565 default:
1566 FAIL ();
1567 break;
1571 bfd_vma
1572 exp_get_vma (etree_type *tree, lang_output_section_statement_type *os,
1573 bfd_vma def, char *name)
1575 if (tree != NULL)
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"),
1582 tree, name);
1584 return def;
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,
1594 char *name)
1596 bfd_vma x = exp_get_vma (tree, os, -1, name);
1597 bfd_vma p2;
1598 int n;
1600 if (x == (bfd_vma) -1)
1601 return -1;
1603 for (n = 0, p2 = 1; p2 < x; ++n, p2 <<= 1)
1604 if (p2 == 0)
1605 break;
1607 return n;
1610 fill_type *
1611 exp_get_fill (etree_type *tree, fill_type *def, char *name)
1613 fill_type *fill;
1614 size_t len;
1615 unsigned int val;
1617 if (tree == NULL)
1618 return def;
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"),
1625 tree, name);
1626 return def;
1629 if (expld.result.str != NULL && (len = strlen (expld.result.str)) != 0)
1631 unsigned char *dst;
1632 unsigned char *s;
1633 fill = (fill_type *) xmalloc ((len + 1) / 2 + sizeof (*fill) - 1);
1634 fill->size = (len + 1) / 2;
1635 dst = fill->data;
1636 s = (unsigned char *) expld.result.str;
1637 val = 0;
1640 unsigned int digit;
1642 digit = *s++ - '0';
1643 if (digit > 9)
1644 digit = (digit - 'A' + '0' + 10) & 0xf;
1645 val <<= 4;
1646 val += digit;
1647 --len;
1648 if ((len & 1) == 0)
1650 *dst++ = val;
1651 val = 0;
1654 while (len != 0);
1656 else
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;
1664 fill->size = 4;
1666 return fill;
1669 bfd_vma
1670 exp_get_abs_int (etree_type *tree, int def, char *name)
1672 if (tree != NULL)
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"),
1685 tree, name);
1688 return def;
1691 static bfd_vma
1692 align_n (bfd_vma value, bfd_vma align)
1694 if (align <= 1)
1695 return value;
1697 value = (value + align - 1) / align;
1698 return value * align;
1701 void
1702 ldexp_init (void)
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),
1709 13))
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. */
1717 static bool
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);
1726 if (h != NULL
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;
1734 return true;
1737 void
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. */
1746 bool
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)
1755 return true;
1757 def = symbol_defined (h->root.string);
1758 if (def != NULL)
1759 return def->final_sec == bfd_abs_section_ptr;
1762 return false;
1765 void
1766 ldexp_finish (void)
1768 bfd_hash_table_free (&definedness_table);