PR24008, Wrong value of ternary expression in map file
[deliverable/binutils-gdb.git] / ld / ldexp.c
CommitLineData
252b5132 1/* This module handles expression trees.
82704155 2 Copyright (C) 1991-2019 Free Software Foundation, Inc.
8c95a62e 3 Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
252b5132 4
f96b4a7b 5 This file is part of the GNU Binutils.
252b5132 6
f96b4a7b 7 This program is free software; you can redistribute it and/or modify
3ec57632 8 it under the terms of the GNU General Public License as published by
f96b4a7b
NC
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
252b5132 11
f96b4a7b 12 This program is distributed in the hope that it will be useful,
3ec57632
NC
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.
252b5132 16
3ec57632 17 You should have received a copy of the GNU General Public License
f96b4a7b
NC
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. */
21
252b5132 22
8c95a62e 23/* This module is in charge of working out the contents of expressions.
252b5132 24
8c95a62e
KH
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. */
252b5132 29
252b5132 30#include "sysdep.h"
3db64b00 31#include "bfd.h"
252b5132
RH
32#include "bfdlink.h"
33
34#include "ld.h"
35#include "ldmain.h"
36#include "ldmisc.h"
37#include "ldexp.h"
f856040a 38#include "ldlex.h"
df2a7313 39#include <ldgram.h>
252b5132 40#include "ldlang.h"
c7d701b0 41#include "libiberty.h"
2c382fb6 42#include "safe-ctype.h"
252b5132 43
e9ee469a 44static void exp_fold_tree_1 (etree_type *);
e9ee469a 45static bfd_vma align_n (bfd_vma, bfd_vma);
2d20f7bf 46
ba916c8a
MM
47segment_type *segments;
48
e9ee469a 49struct ldexp_control expld;
fbbb9ac5 50
18d6a79d 51/* This structure records symbols for which we need to keep track of
975f8a9e
AM
52 definedness for use in the DEFINED () test. It is also used in
53 making absolute symbols section relative late in the link. */
18d6a79d
AM
54
55struct definedness_hash_entry
56{
57 struct bfd_hash_entry root;
975f8a9e
AM
58
59 /* If this symbol was assigned from "dot" outside of an output
60 section statement, the section we'd like it relative to. */
61 asection *final_sec;
62
165f707a
AM
63 /* Low bits of iteration count. Symbols with matching iteration have
64 been defined in this pass over the script. */
65 unsigned int iteration : 8;
66
975f8a9e 67 /* Symbol was defined by an object file. */
18d6a79d 68 unsigned int by_object : 1;
18d6a79d
AM
69};
70
71static struct bfd_hash_table definedness_table;
72
7b17f854 73/* Print the string representation of the given token. Surround it
b34976b6 74 with spaces if INFIX_P is TRUE. */
7b17f854 75
252b5132 76static void
1579bae1 77exp_print_token (token_code_type code, int infix_p)
252b5132 78{
4da711b1 79 static const struct
c7d701b0 80 {
8c95a62e 81 token_code_type code;
0aa7f586 82 const char *name;
c7d701b0
NC
83 }
84 table[] =
85 {
8c95a62e 86 { INT, "int" },
8c95a62e
KH
87 { NAME, "NAME" },
88 { PLUSEQ, "+=" },
89 { MINUSEQ, "-=" },
90 { MULTEQ, "*=" },
91 { DIVEQ, "/=" },
92 { LSHIFTEQ, "<<=" },
93 { RSHIFTEQ, ">>=" },
94 { ANDEQ, "&=" },
95 { OREQ, "|=" },
96 { OROR, "||" },
97 { ANDAND, "&&" },
98 { EQ, "==" },
99 { NE, "!=" },
100 { LE, "<=" },
101 { GE, ">=" },
102 { LSHIFT, "<<" },
7cecdbff 103 { RSHIFT, ">>" },
2e53f7d6 104 { LOG2CEIL, "LOG2CEIL" },
8c95a62e
KH
105 { ALIGN_K, "ALIGN" },
106 { BLOCK, "BLOCK" },
c7d701b0
NC
107 { QUAD, "QUAD" },
108 { SQUAD, "SQUAD" },
109 { LONG, "LONG" },
110 { SHORT, "SHORT" },
111 { BYTE, "BYTE" },
8c95a62e
KH
112 { SECTIONS, "SECTIONS" },
113 { SIZEOF_HEADERS, "SIZEOF_HEADERS" },
8c95a62e
KH
114 { MEMORY, "MEMORY" },
115 { DEFINED, "DEFINED" },
116 { TARGET_K, "TARGET" },
117 { SEARCH_DIR, "SEARCH_DIR" },
118 { MAP, "MAP" },
8c95a62e 119 { ENTRY, "ENTRY" },
c7d701b0 120 { NEXT, "NEXT" },
362c1d1a 121 { ALIGNOF, "ALIGNOF" },
c7d701b0
NC
122 { SIZEOF, "SIZEOF" },
123 { ADDR, "ADDR" },
124 { LOADADDR, "LOADADDR" },
24718e3b 125 { CONSTANT, "CONSTANT" },
8c0848b5
AM
126 { ABSOLUTE, "ABSOLUTE" },
127 { MAX_K, "MAX" },
128 { MIN_K, "MIN" },
129 { ASSERT_K, "ASSERT" },
1049f94e 130 { REL, "relocatable" },
2d20f7bf 131 { DATA_SEGMENT_ALIGN, "DATA_SEGMENT_ALIGN" },
8c37241b 132 { DATA_SEGMENT_RELRO_END, "DATA_SEGMENT_RELRO_END" },
ba916c8a 133 { DATA_SEGMENT_END, "DATA_SEGMENT_END" },
3ec57632
NC
134 { ORIGIN, "ORIGIN" },
135 { LENGTH, "LENGTH" },
ba916c8a 136 { SEGMENT_START, "SEGMENT_START" }
8c95a62e 137 };
252b5132
RH
138 unsigned int idx;
139
7b17f854
RS
140 for (idx = 0; idx < ARRAY_SIZE (table); idx++)
141 if (table[idx].code == code)
142 break;
c7d701b0 143
7b17f854
RS
144 if (infix_p)
145 fputc (' ', config.map_file);
146
147 if (idx < ARRAY_SIZE (table))
148 fputs (table[idx].name, config.map_file);
149 else if (code < 127)
150 fputc (code, config.map_file);
c7d701b0 151 else
7b17f854
RS
152 fprintf (config.map_file, "<code %d>", code);
153
154 if (infix_p)
155 fputc (' ', config.map_file);
252b5132
RH
156}
157
2e53f7d6
NC
158static void
159make_log2ceil (void)
160{
161 bfd_vma value = expld.result.value;
162 bfd_vma result = -1;
163 bfd_boolean round_up = FALSE;
164
165 do
166 {
167 result++;
168 /* If more than one bit is set in the value we will need to round up. */
169 if ((value > 1) && (value & 1))
170 round_up = TRUE;
171 }
172 while (value >>= 1);
173
174 if (round_up)
175 result += 1;
176 expld.result.section = NULL;
177 expld.result.value = result;
178}
179
4de2d33d 180static void
e9ee469a 181make_abs (void)
252b5132 182{
7542af2a
AM
183 if (expld.result.section != NULL)
184 expld.result.value += expld.result.section->vma;
e9ee469a 185 expld.result.section = bfd_abs_section_ptr;
975f8a9e 186 expld.rel_from_abs = FALSE;
252b5132
RH
187}
188
e9ee469a 189static void
1579bae1 190new_abs (bfd_vma value)
252b5132 191{
e9ee469a
AM
192 expld.result.valid_p = TRUE;
193 expld.result.section = bfd_abs_section_ptr;
194 expld.result.value = value;
195 expld.result.str = NULL;
252b5132
RH
196}
197
252b5132 198etree_type *
1579bae1 199exp_intop (bfd_vma value)
252b5132 200{
d3ce72d0
NC
201 etree_type *new_e = (etree_type *) stat_alloc (sizeof (new_e->value));
202 new_e->type.node_code = INT;
dab69f68 203 new_e->type.filename = ldlex_filename ();
d3ce72d0
NC
204 new_e->type.lineno = lineno;
205 new_e->value.value = value;
206 new_e->value.str = NULL;
207 new_e->type.node_class = etree_value;
208 return new_e;
2c382fb6 209}
252b5132 210
2c382fb6 211etree_type *
1579bae1 212exp_bigintop (bfd_vma value, char *str)
2c382fb6 213{
d3ce72d0
NC
214 etree_type *new_e = (etree_type *) stat_alloc (sizeof (new_e->value));
215 new_e->type.node_code = INT;
dab69f68 216 new_e->type.filename = ldlex_filename ();
d3ce72d0
NC
217 new_e->type.lineno = lineno;
218 new_e->value.value = value;
219 new_e->value.str = str;
220 new_e->type.node_class = etree_value;
221 return new_e;
252b5132
RH
222}
223
1049f94e 224/* Build an expression representing an unnamed relocatable value. */
252b5132
RH
225
226etree_type *
1579bae1 227exp_relop (asection *section, bfd_vma value)
252b5132 228{
d3ce72d0
NC
229 etree_type *new_e = (etree_type *) stat_alloc (sizeof (new_e->rel));
230 new_e->type.node_code = REL;
dab69f68 231 new_e->type.filename = ldlex_filename ();
d3ce72d0
NC
232 new_e->type.lineno = lineno;
233 new_e->type.node_class = etree_rel;
234 new_e->rel.section = section;
235 new_e->rel.value = value;
236 return new_e;
252b5132
RH
237}
238
7542af2a
AM
239static void
240new_number (bfd_vma value)
241{
242 expld.result.valid_p = TRUE;
243 expld.result.value = value;
244 expld.result.str = NULL;
245 expld.result.section = NULL;
246}
247
e9ee469a 248static void
5942515f 249new_rel (bfd_vma value, asection *section)
252b5132 250{
e9ee469a
AM
251 expld.result.valid_p = TRUE;
252 expld.result.value = value;
5942515f 253 expld.result.str = NULL;
e9ee469a 254 expld.result.section = section;
252b5132
RH
255}
256
e9ee469a
AM
257static void
258new_rel_from_abs (bfd_vma value)
252b5132 259{
d2667025
AM
260 asection *s = expld.section;
261
975f8a9e 262 expld.rel_from_abs = TRUE;
e9ee469a 263 expld.result.valid_p = TRUE;
d2667025 264 expld.result.value = value - s->vma;
e9ee469a 265 expld.result.str = NULL;
d2667025 266 expld.result.section = s;
252b5132
RH
267}
268
18d6a79d
AM
269/* New-function for the definedness hash table. */
270
271static struct bfd_hash_entry *
272definedness_newfunc (struct bfd_hash_entry *entry,
273 struct bfd_hash_table *table ATTRIBUTE_UNUSED,
274 const char *name ATTRIBUTE_UNUSED)
275{
276 struct definedness_hash_entry *ret = (struct definedness_hash_entry *) entry;
277
278 if (ret == NULL)
279 ret = (struct definedness_hash_entry *)
280 bfd_hash_allocate (table, sizeof (struct definedness_hash_entry));
281
282 if (ret == NULL)
df5f2391 283 einfo (_("%F%P: bfd_hash_allocate failed creating symbol %s\n"), name);
18d6a79d
AM
284
285 ret->by_object = 0;
18d6a79d
AM
286 ret->iteration = 0;
287 return &ret->root;
288}
289
290/* Called during processing of linker script script expressions.
291 For symbols assigned in a linker script, return a struct describing
292 where the symbol is defined relative to the current expression,
293 otherwise return NULL. */
294
295static struct definedness_hash_entry *
296symbol_defined (const char *name)
297{
298 return ((struct definedness_hash_entry *)
299 bfd_hash_lookup (&definedness_table, name, FALSE, FALSE));
300}
301
422f1c65
AM
302/* Update the definedness state of NAME. Return FALSE if script symbol
303 is multiply defining a strong symbol in an object. */
18d6a79d 304
422f1c65 305static bfd_boolean
18d6a79d
AM
306update_definedness (const char *name, struct bfd_link_hash_entry *h)
307{
422f1c65 308 bfd_boolean ret;
18d6a79d
AM
309 struct definedness_hash_entry *defentry
310 = (struct definedness_hash_entry *)
311 bfd_hash_lookup (&definedness_table, name, TRUE, FALSE);
312
313 if (defentry == NULL)
df5f2391 314 einfo (_("%F%P: bfd_hash_lookup failed creating symbol %s\n"), name);
18d6a79d
AM
315
316 /* If the symbol was already defined, and not by a script, then it
cd8e2bcf 317 must be defined by an object file or by the linker target code. */
422f1c65 318 ret = TRUE;
165f707a 319 if (!h->ldscript_def
cd8e2bcf
AM
320 && (h->type == bfd_link_hash_defined
321 || h->type == bfd_link_hash_defweak
322 || h->type == bfd_link_hash_common))
422f1c65
AM
323 {
324 defentry->by_object = 1;
325 if (h->type == bfd_link_hash_defined
326 && h->u.def.section->output_section != NULL
327 && !h->linker_def)
328 ret = FALSE;
329 }
18d6a79d 330
18d6a79d 331 defentry->iteration = lang_statement_iteration;
975f8a9e
AM
332 defentry->final_sec = bfd_abs_section_ptr;
333 if (expld.phase == lang_final_phase_enum
334 && expld.rel_from_abs
335 && expld.result.section == bfd_abs_section_ptr)
336 defentry->final_sec = section_for_dot ();
422f1c65 337 return ret;
18d6a79d
AM
338}
339
d7475e03
L
340static void
341fold_segment_end (seg_align_type *seg)
342{
343 if (expld.phase == lang_first_phase_enum
344 || expld.section != bfd_abs_section_ptr)
345 {
346 expld.result.valid_p = FALSE;
347 }
348 else if (seg->phase == exp_seg_align_seen
349 || seg->phase == exp_seg_relro_seen)
350 {
351 seg->phase = exp_seg_end_seen;
352 seg->end = expld.result.value;
353 }
354 else if (seg->phase == exp_seg_done
355 || seg->phase == exp_seg_adjust
356 || seg->phase == exp_seg_relro_adjust)
357 {
358 /* OK. */
359 }
360 else
361 expld.result.valid_p = FALSE;
362}
363
e9ee469a
AM
364static void
365fold_unary (etree_type *tree)
0ae1cf52 366{
e9ee469a
AM
367 exp_fold_tree_1 (tree->unary.child);
368 if (expld.result.valid_p)
0ae1cf52
AM
369 {
370 switch (tree->type.node_code)
371 {
372 case ALIGN_K:
e9ee469a 373 if (expld.phase != lang_first_phase_enum)
e0a3af22 374 new_rel_from_abs (align_n (expld.dot, expld.result.value));
0ae1cf52 375 else
e9ee469a 376 expld.result.valid_p = FALSE;
0ae1cf52
AM
377 break;
378
379 case ABSOLUTE:
e9ee469a 380 make_abs ();
0ae1cf52
AM
381 break;
382
2e53f7d6
NC
383 case LOG2CEIL:
384 make_log2ceil ();
385 break;
386
0ae1cf52 387 case '~':
e9ee469a 388 expld.result.value = ~expld.result.value;
0ae1cf52
AM
389 break;
390
391 case '!':
e9ee469a 392 expld.result.value = !expld.result.value;
0ae1cf52
AM
393 break;
394
395 case '-':
e9ee469a 396 expld.result.value = -expld.result.value;
0ae1cf52
AM
397 break;
398
399 case NEXT:
400 /* Return next place aligned to value. */
e9ee469a 401 if (expld.phase != lang_first_phase_enum)
0ae1cf52 402 {
e9ee469a 403 make_abs ();
e0a3af22 404 expld.result.value = align_n (expld.dot, expld.result.value);
0ae1cf52
AM
405 }
406 else
e9ee469a 407 expld.result.valid_p = FALSE;
0ae1cf52
AM
408 break;
409
410 case DATA_SEGMENT_END:
d7475e03 411 fold_segment_end (&expld.dataseg);
0ae1cf52
AM
412 break;
413
414 default:
415 FAIL ();
416 break;
417 }
418 }
0ae1cf52
AM
419}
420
94b41882
AM
421/* Arithmetic operators, bitwise AND, bitwise OR and XOR keep the
422 section of one of their operands only when the other operand is a
423 plain number. Losing the section when operating on two symbols,
424 ie. a result of a plain number, is required for subtraction and
425 XOR. It's justifiable for the other operations on the grounds that
426 adding, multiplying etc. two section relative values does not
427 really make sense unless they are just treated as numbers.
428 The same argument could be made for many expressions involving one
429 symbol and a number. For example, "1 << x" and "100 / x" probably
430 should not be given the section of x. The trouble is that if we
431 fuss about such things the rules become complex and it is onerous
432 to document ld expression evaluation. */
433static void
434arith_result_section (const etree_value_type *lhs)
435{
436 if (expld.result.section == lhs->section)
437 {
438 if (expld.section == bfd_abs_section_ptr
439 && !config.sane_expr)
440 /* Duplicate the insanity in exp_fold_tree_1 case etree_value. */
441 expld.result.section = bfd_abs_section_ptr;
442 else
443 expld.result.section = NULL;
444 }
445}
446
d7475e03
L
447static void
448fold_segment_align (seg_align_type *seg, etree_value_type *lhs)
449{
450 seg->relro = exp_seg_relro_start;
451 if (expld.phase == lang_first_phase_enum
452 || expld.section != bfd_abs_section_ptr)
453 expld.result.valid_p = FALSE;
454 else
455 {
456 bfd_vma maxpage = lhs->value;
457 bfd_vma commonpage = expld.result.value;
458
459 expld.result.value = align_n (expld.dot, maxpage);
460 if (seg->phase == exp_seg_relro_adjust)
461 expld.result.value = seg->base;
462 else if (seg->phase == exp_seg_adjust)
463 {
464 if (commonpage < maxpage)
465 expld.result.value += ((expld.dot + commonpage - 1)
466 & (maxpage - commonpage));
467 }
468 else
469 {
470 expld.result.value += expld.dot & (maxpage - 1);
471 if (seg->phase == exp_seg_done)
472 {
473 /* OK. */
474 }
475 else if (seg->phase == exp_seg_none)
476 {
477 seg->phase = exp_seg_align_seen;
478 seg->base = expld.result.value;
479 seg->pagesize = commonpage;
480 seg->maxpagesize = maxpage;
481 seg->relro_end = 0;
482 }
483 else
484 expld.result.valid_p = FALSE;
485 }
486 }
487}
488
489static void
490fold_segment_relro_end (seg_align_type *seg, etree_value_type *lhs)
491{
492 /* Operands swapped! XXX_SEGMENT_RELRO_END(offset,exp) has offset
493 in expld.result and exp in lhs. */
494 seg->relro = exp_seg_relro_end;
495 seg->relro_offset = expld.result.value;
496 if (expld.phase == lang_first_phase_enum
497 || expld.section != bfd_abs_section_ptr)
498 expld.result.valid_p = FALSE;
499 else if (seg->phase == exp_seg_align_seen
500 || seg->phase == exp_seg_adjust
501 || seg->phase == exp_seg_relro_adjust
502 || seg->phase == exp_seg_done)
503 {
504 if (seg->phase == exp_seg_align_seen
505 || seg->phase == exp_seg_relro_adjust)
506 seg->relro_end = lhs->value + expld.result.value;
507
508 if (seg->phase == exp_seg_relro_adjust
509 && (seg->relro_end & (seg->pagesize - 1)))
510 {
511 seg->relro_end += seg->pagesize - 1;
512 seg->relro_end &= ~(seg->pagesize - 1);
513 expld.result.value = seg->relro_end - expld.result.value;
514 }
515 else
516 expld.result.value = lhs->value;
517
518 if (seg->phase == exp_seg_align_seen)
519 seg->phase = exp_seg_relro_seen;
520 }
521 else
522 expld.result.valid_p = FALSE;
523}
524
e9ee469a
AM
525static void
526fold_binary (etree_type *tree)
252b5132 527{
4ac0c898 528 etree_value_type lhs;
e9ee469a 529 exp_fold_tree_1 (tree->binary.lhs);
ba916c8a
MM
530
531 /* The SEGMENT_START operator is special because its first
8c0848b5
AM
532 operand is a string, not the name of a symbol. Note that the
533 operands have been swapped, so binary.lhs is second (default)
534 operand, binary.rhs is first operand. */
e9ee469a 535 if (expld.result.valid_p && tree->type.node_code == SEGMENT_START)
ba916c8a 536 {
6057dc97 537 bfd_vma value = expld.result.value;
ba916c8a
MM
538 const char *segment_name;
539 segment_type *seg;
7542af2a 540
ba916c8a
MM
541 /* Check to see if the user has overridden the default
542 value. */
543 segment_name = tree->binary.rhs->name.name;
e4492aa0 544 for (seg = segments; seg; seg = seg->next)
ba916c8a
MM
545 if (strcmp (seg->name, segment_name) == 0)
546 {
c8ce5710
L
547 if (!seg->used
548 && config.magic_demand_paged
a000f881 549 && config.maxpagesize != 0
c8ce5710 550 && (seg->value % config.maxpagesize) != 0)
0aa7f586
AM
551 einfo (_("%P: warning: address of `%s' "
552 "isn't multiple of maximum page size\n"),
c8ce5710 553 segment_name);
ba916c8a 554 seg->used = TRUE;
6057dc97 555 value = seg->value;
ba916c8a
MM
556 break;
557 }
6057dc97 558 new_rel_from_abs (value);
4ac0c898 559 return;
ba916c8a 560 }
252b5132 561
4ac0c898
AM
562 lhs = expld.result;
563 exp_fold_tree_1 (tree->binary.rhs);
564 expld.result.valid_p &= lhs.valid_p;
565
566 if (expld.result.valid_p)
567 {
7542af2a 568 if (lhs.section != expld.result.section)
252b5132 569 {
7542af2a
AM
570 /* If the values are from different sections, and neither is
571 just a number, make both the source arguments absolute. */
572 if (expld.result.section != NULL
573 && lhs.section != NULL)
574 {
575 make_abs ();
576 lhs.value += lhs.section->vma;
9bc8bb33 577 lhs.section = bfd_abs_section_ptr;
7542af2a
AM
578 }
579
580 /* If the rhs is just a number, keep the lhs section. */
581 else if (expld.result.section == NULL)
9bc8bb33
AM
582 {
583 expld.result.section = lhs.section;
584 /* Make this NULL so that we know one of the operands
585 was just a number, for later tests. */
586 lhs.section = NULL;
587 }
4ac0c898 588 }
9bc8bb33
AM
589 /* At this point we know that both operands have the same
590 section, or at least one of them is a plain number. */
252b5132 591
4ac0c898
AM
592 switch (tree->type.node_code)
593 {
e9ee469a 594#define BOP(x, y) \
7542af2a
AM
595 case x: \
596 expld.result.value = lhs.value y expld.result.value; \
94b41882 597 arith_result_section (&lhs); \
7542af2a
AM
598 break;
599
9bc8bb33
AM
600 /* Comparison operators, logical AND, and logical OR always
601 return a plain number. */
7542af2a
AM
602#define BOPN(x, y) \
603 case x: \
604 expld.result.value = lhs.value y expld.result.value; \
605 expld.result.section = NULL; \
606 break;
e9ee469a 607
4ac0c898
AM
608 BOP ('+', +);
609 BOP ('*', *);
610 BOP ('-', -);
611 BOP (LSHIFT, <<);
612 BOP (RSHIFT, >>);
4ac0c898
AM
613 BOP ('&', &);
614 BOP ('^', ^);
615 BOP ('|', |);
7542af2a
AM
616 BOPN (EQ, ==);
617 BOPN (NE, !=);
618 BOPN ('<', <);
619 BOPN ('>', >);
620 BOPN (LE, <=);
621 BOPN (GE, >=);
622 BOPN (ANDAND, &&);
623 BOPN (OROR, ||);
4ac0c898 624
9bc8bb33
AM
625 case '%':
626 if (expld.result.value != 0)
627 expld.result.value = ((bfd_signed_vma) lhs.value
628 % (bfd_signed_vma) expld.result.value);
629 else if (expld.phase != lang_mark_phase_enum)
df5f2391 630 einfo (_("%F%P:%pS %% by zero\n"), tree->binary.rhs);
94b41882 631 arith_result_section (&lhs);
9bc8bb33
AM
632 break;
633
634 case '/':
635 if (expld.result.value != 0)
636 expld.result.value = ((bfd_signed_vma) lhs.value
637 / (bfd_signed_vma) expld.result.value);
638 else if (expld.phase != lang_mark_phase_enum)
df5f2391 639 einfo (_("%F%P:%pS / by zero\n"), tree->binary.rhs);
94b41882 640 arith_result_section (&lhs);
9bc8bb33
AM
641 break;
642
4ac0c898
AM
643 case MAX_K:
644 if (lhs.value > expld.result.value)
645 expld.result.value = lhs.value;
646 break;
252b5132 647
4ac0c898
AM
648 case MIN_K:
649 if (lhs.value < expld.result.value)
650 expld.result.value = lhs.value;
651 break;
252b5132 652
4ac0c898
AM
653 case ALIGN_K:
654 expld.result.value = align_n (lhs.value, expld.result.value);
655 break;
c468c8bc 656
4ac0c898 657 case DATA_SEGMENT_ALIGN:
d7475e03 658 fold_segment_align (&expld.dataseg, &lhs);
4ac0c898 659 break;
e9ee469a 660
4ac0c898 661 case DATA_SEGMENT_RELRO_END:
d7475e03 662 fold_segment_relro_end (&expld.dataseg, &lhs);
4ac0c898
AM
663 break;
664
665 default:
666 FAIL ();
252b5132 667 }
252b5132 668 }
252b5132
RH
669}
670
e9ee469a
AM
671static void
672fold_trinary (etree_type *tree)
0ae1cf52 673{
cd5b2bab
AM
674 struct bfd_link_hash_entry *save = expld.assign_src;
675
e9ee469a 676 exp_fold_tree_1 (tree->trinary.cond);
cd5b2bab 677 expld.assign_src = save;
e9ee469a
AM
678 if (expld.result.valid_p)
679 exp_fold_tree_1 (expld.result.value
680 ? tree->trinary.lhs
681 : tree->trinary.rhs);
0ae1cf52
AM
682}
683
e9ee469a
AM
684static void
685fold_name (etree_type *tree)
252b5132 686{
165f707a
AM
687 struct bfd_link_hash_entry *h;
688 struct definedness_hash_entry *def;
689
e9ee469a 690 memset (&expld.result, 0, sizeof (expld.result));
c468c8bc 691
4de2d33d 692 switch (tree->type.node_code)
8c95a62e
KH
693 {
694 case SIZEOF_HEADERS:
64029e93 695 link_info.load_phdrs = 1;
e9ee469a
AM
696 if (expld.phase != lang_first_phase_enum)
697 {
698 bfd_vma hdr_size = 0;
699 /* Don't find the real header size if only marking sections;
700 The bfd function may cache incorrect data. */
701 if (expld.phase != lang_mark_phase_enum)
f13a99db 702 hdr_size = bfd_sizeof_headers (link_info.output_bfd, &link_info);
7542af2a 703 new_number (hdr_size);
e9ee469a 704 }
8c95a62e 705 break;
67469e1f 706
8c95a62e 707 case DEFINED:
165f707a
AM
708 h = bfd_wrapped_link_hash_lookup (link_info.output_bfd,
709 &link_info,
710 tree->name.name,
711 FALSE, FALSE, TRUE);
712 new_number (h != NULL
713 && (h->type == bfd_link_hash_defined
714 || h->type == bfd_link_hash_defweak
715 || h->type == bfd_link_hash_common)
716 && (!h->ldscript_def
717 || (def = symbol_defined (tree->name.name)) == NULL
718 || def->by_object
719 || def->iteration == (lang_statement_iteration & 255)));
8c95a62e 720 break;
67469e1f 721
8c95a62e 722 case NAME:
165f707a 723 if (tree->name.name[0] == '.' && tree->name.name[1] == 0)
e9ee469a
AM
724 new_rel_from_abs (expld.dot);
725 else
8c95a62e 726 {
f13a99db
AM
727 h = bfd_wrapped_link_hash_lookup (link_info.output_bfd,
728 &link_info,
8c95a62e 729 tree->name.name,
1b493742
NS
730 TRUE, FALSE, TRUE);
731 if (!h)
df5f2391 732 einfo (_("%F%P: bfd_link_hash_lookup failed: %E\n"));
1b493742
NS
733 else if (h->type == bfd_link_hash_defined
734 || h->type == bfd_link_hash_defweak)
8c95a62e 735 {
7542af2a 736 asection *output_section;
8c95a62e 737
7542af2a
AM
738 output_section = h->u.def.section->output_section;
739 if (output_section == NULL)
740 {
165f707a 741 if (expld.phase <= lang_mark_phase_enum)
2aa9aad9
NC
742 new_rel (h->u.def.value, h->u.def.section);
743 else
df5f2391 744 einfo (_("%X%P:%pS: unresolvable symbol `%s'"
7542af2a 745 " referenced in expression\n"),
dab69f68 746 tree, tree->name.name);
8c95a62e 747 }
5c3049d2
AM
748 else if (output_section == bfd_abs_section_ptr
749 && (expld.section != bfd_abs_section_ptr
01554a74 750 || config.sane_expr))
abf4be64 751 new_number (h->u.def.value + h->u.def.section->output_offset);
7542af2a
AM
752 else
753 new_rel (h->u.def.value + h->u.def.section->output_offset,
754 output_section);
8c95a62e 755 }
e9ee469a 756 else if (expld.phase == lang_final_phase_enum
ec8460b5
AM
757 || (expld.phase != lang_mark_phase_enum
758 && expld.assigning_to_dot))
df5f2391 759 einfo (_("%F%P:%pS: undefined symbol `%s'"
dab69f68
AM
760 " referenced in expression\n"),
761 tree, tree->name.name);
1b493742
NS
762 else if (h->type == bfd_link_hash_new)
763 {
764 h->type = bfd_link_hash_undefined;
765 h->u.undef.abfd = NULL;
3eda52aa 766 if (h->u.undef.next == NULL && h != link_info.hash->undefs_tail)
a010d60f 767 bfd_link_add_undef (link_info.hash, h);
1b493742 768 }
cd5b2bab
AM
769 if (expld.assign_src == NULL)
770 expld.assign_src = h;
771 else
e99955cd 772 expld.assign_src = (struct bfd_link_hash_entry *) - 1;
6a846243
AM
773
774 /* Self-assignment is only allowed for absolute symbols
775 defined in a linker script. */
776 if (expld.assign_name != NULL
777 && strcmp (expld.assign_name, tree->name.name) == 0
778 && !(h != NULL
779 && (h->type == bfd_link_hash_defined
780 || h->type == bfd_link_hash_defweak)
781 && h->u.def.section == bfd_abs_section_ptr
782 && (def = symbol_defined (tree->name.name)) != NULL
783 && def->iteration == (lang_statement_iteration & 255)))
784 expld.assign_name = NULL;
8c95a62e
KH
785 }
786 break;
787
788 case ADDR:
e9ee469a 789 if (expld.phase != lang_first_phase_enum)
8c95a62e
KH
790 {
791 lang_output_section_statement_type *os;
792
793 os = lang_output_section_find (tree->name.name);
cc3e2771
NS
794 if (os == NULL)
795 {
796 if (expld.phase == lang_final_phase_enum)
df5f2391 797 einfo (_("%F%P:%pS: undefined section `%s'"
dab69f68
AM
798 " referenced in expression\n"),
799 tree, tree->name.name);
cc3e2771
NS
800 }
801 else if (os->processed_vma)
5942515f 802 new_rel (0, os->bfd_section);
8c95a62e 803 }
8c95a62e
KH
804 break;
805
806 case LOADADDR:
e9ee469a 807 if (expld.phase != lang_first_phase_enum)
8c95a62e
KH
808 {
809 lang_output_section_statement_type *os;
810
811 os = lang_output_section_find (tree->name.name);
cc3e2771
NS
812 if (os == NULL)
813 {
814 if (expld.phase == lang_final_phase_enum)
df5f2391 815 einfo (_("%F%P:%pS: undefined section `%s'"
dab69f68
AM
816 " referenced in expression\n"),
817 tree, tree->name.name);
cc3e2771
NS
818 }
819 else if (os->processed_lma)
1b493742 820 {
e9ee469a 821 if (os->load_base == NULL)
3e23777d 822 new_abs (os->bfd_section->lma);
e9ee469a 823 else
67469e1f
AM
824 {
825 exp_fold_tree_1 (os->load_base);
819da74e
AM
826 if (expld.result.valid_p)
827 make_abs ();
67469e1f 828 }
1b493742 829 }
8c95a62e 830 }
8c95a62e
KH
831 break;
832
833 case SIZEOF:
362c1d1a 834 case ALIGNOF:
e9ee469a 835 if (expld.phase != lang_first_phase_enum)
8c95a62e 836 {
8c95a62e
KH
837 lang_output_section_statement_type *os;
838
839 os = lang_output_section_find (tree->name.name);
5397b1fe 840 if (os == NULL)
cc3e2771
NS
841 {
842 if (expld.phase == lang_final_phase_enum)
df5f2391 843 einfo (_("%F%P:%pS: undefined section `%s'"
dab69f68
AM
844 " referenced in expression\n"),
845 tree, tree->name.name);
7542af2a 846 new_number (0);
cc3e2771 847 }
17d6eea5 848 else if (os->bfd_section != NULL)
362c1d1a
NS
849 {
850 bfd_vma val;
851
852 if (tree->type.node_code == SIZEOF)
f13a99db
AM
853 val = (os->bfd_section->size
854 / bfd_octets_per_byte (link_info.output_bfd));
362c1d1a
NS
855 else
856 val = (bfd_vma)1 << os->bfd_section->alignment_power;
e4492aa0 857
7542af2a 858 new_number (val);
362c1d1a 859 }
17d6eea5
L
860 else
861 new_number (0);
8c95a62e 862 }
8c95a62e
KH
863 break;
864
3ec57632
NC
865 case LENGTH:
866 {
cc9ad334 867 if (expld.phase != lang_first_phase_enum)
0aa7f586
AM
868 {
869 lang_memory_region_type *mem;
870
871 mem = lang_memory_region_lookup (tree->name.name, FALSE);
872 if (mem != NULL)
873 new_number (mem->length);
874 else
df5f2391 875 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
0aa7f586
AM
876 " referenced in expression\n"),
877 tree, tree->name.name);
878 }
3ec57632
NC
879 }
880 break;
881
882 case ORIGIN:
7542af2a
AM
883 if (expld.phase != lang_first_phase_enum)
884 {
885 lang_memory_region_type *mem;
e4492aa0
L
886
887 mem = lang_memory_region_lookup (tree->name.name, FALSE);
888 if (mem != NULL)
7542af2a 889 new_rel_from_abs (mem->origin);
e4492aa0 890 else
df5f2391 891 einfo (_("%F%P:%pS: undefined MEMORY region `%s'"
dab69f68
AM
892 " referenced in expression\n"),
893 tree, tree->name.name);
7542af2a 894 }
3ec57632
NC
895 break;
896
24718e3b
L
897 case CONSTANT:
898 if (strcmp (tree->name.name, "MAXPAGESIZE") == 0)
7542af2a 899 new_number (config.maxpagesize);
24718e3b 900 else if (strcmp (tree->name.name, "COMMONPAGESIZE") == 0)
7542af2a 901 new_number (config.commonpagesize);
24718e3b 902 else
df5f2391 903 einfo (_("%F%P:%pS: unknown constant `%s' referenced in expression\n"),
dab69f68 904 tree, tree->name.name);
24718e3b
L
905 break;
906
8c95a62e
KH
907 default:
908 FAIL ();
909 break;
910 }
252b5132 911}
8c95a62e 912
2edab91c 913/* Return true if TREE is '.'. */
995da1ff 914
2edab91c
AM
915static bfd_boolean
916is_dot (const etree_type *tree)
917{
918 return (tree->type.node_class == etree_name
919 && tree->type.node_code == NAME
920 && tree->name.name[0] == '.'
921 && tree->name.name[1] == 0);
922}
923
924/* Return true if TREE is a constant equal to VAL. */
925
926static bfd_boolean
927is_value (const etree_type *tree, bfd_vma val)
928{
929 return (tree->type.node_class == etree_value
930 && tree->value.value == val);
931}
932
933/* Return true if TREE is an absolute symbol equal to VAL defined in
934 a linker script. */
935
936static bfd_boolean
937is_sym_value (const etree_type *tree, bfd_vma val)
938{
939 struct bfd_link_hash_entry *h;
18d6a79d 940 struct definedness_hash_entry *def;
2edab91c
AM
941
942 return (tree->type.node_class == etree_name
943 && tree->type.node_code == NAME
18d6a79d 944 && (def = symbol_defined (tree->name.name)) != NULL
165f707a 945 && def->iteration == (lang_statement_iteration & 255)
2edab91c
AM
946 && (h = bfd_wrapped_link_hash_lookup (link_info.output_bfd,
947 &link_info,
948 tree->name.name,
949 FALSE, FALSE, TRUE)) != NULL
165f707a 950 && h->ldscript_def
2edab91c
AM
951 && h->type == bfd_link_hash_defined
952 && h->u.def.section == bfd_abs_section_ptr
953 && h->u.def.value == val);
954}
955
956/* Return true if TREE is ". != 0". */
957
958static bfd_boolean
959is_dot_ne_0 (const etree_type *tree)
960{
961 return (tree->type.node_class == etree_binary
962 && tree->type.node_code == NE
963 && is_dot (tree->binary.lhs)
964 && is_value (tree->binary.rhs, 0));
965}
966
967/* Return true if TREE is ". = . + 0" or ". = . + sym" where sym is an
968 absolute constant with value 0 defined in a linker script. */
969
970static bfd_boolean
971is_dot_plus_0 (const etree_type *tree)
972{
973 return (tree->type.node_class == etree_binary
974 && tree->type.node_code == '+'
975 && is_dot (tree->binary.lhs)
976 && (is_value (tree->binary.rhs, 0)
977 || is_sym_value (tree->binary.rhs, 0)));
978}
979
e0a3af22 980/* Return true if TREE is "ALIGN (. != 0 ? some_expression : 1)". */
2edab91c
AM
981
982static bfd_boolean
983is_align_conditional (const etree_type *tree)
984{
e0a3af22
AM
985 if (tree->type.node_class == etree_unary
986 && tree->type.node_code == ALIGN_K)
987 {
988 tree = tree->unary.child;
989 return (tree->type.node_class == etree_trinary
990 && is_dot_ne_0 (tree->trinary.cond)
991 && is_value (tree->trinary.rhs, 1));
992 }
1fb80d6d
SD
993 return FALSE;
994}
995
e9ee469a
AM
996static void
997exp_fold_tree_1 (etree_type *tree)
252b5132 998{
252b5132
RH
999 if (tree == NULL)
1000 {
e9ee469a
AM
1001 memset (&expld.result, 0, sizeof (expld.result));
1002 return;
252b5132
RH
1003 }
1004
4de2d33d 1005 switch (tree->type.node_class)
252b5132
RH
1006 {
1007 case etree_value:
5c3049d2 1008 if (expld.section == bfd_abs_section_ptr
01554a74 1009 && !config.sane_expr)
5c3049d2
AM
1010 new_abs (tree->value.value);
1011 else
1012 new_number (tree->value.value);
5942515f 1013 expld.result.str = tree->value.str;
252b5132
RH
1014 break;
1015
1016 case etree_rel:
e9ee469a
AM
1017 if (expld.phase != lang_first_phase_enum)
1018 {
1019 asection *output_section = tree->rel.section->output_section;
1020 new_rel (tree->rel.value + tree->rel.section->output_offset,
5942515f 1021 output_section);
e9ee469a 1022 }
252b5132 1023 else
e9ee469a 1024 memset (&expld.result, 0, sizeof (expld.result));
252b5132
RH
1025 break;
1026
1027 case etree_assert:
e9ee469a 1028 exp_fold_tree_1 (tree->assert_s.child);
5397b1fe
AM
1029 if (expld.phase == lang_final_phase_enum && !expld.result.value)
1030 einfo ("%X%P: %s\n", tree->assert_s.message);
252b5132
RH
1031 break;
1032
1033 case etree_unary:
e9ee469a 1034 fold_unary (tree);
252b5132
RH
1035 break;
1036
1037 case etree_binary:
e9ee469a 1038 fold_binary (tree);
252b5132 1039 break;
0ae1cf52
AM
1040
1041 case etree_trinary:
e9ee469a 1042 fold_trinary (tree);
0ae1cf52 1043 break;
252b5132
RH
1044
1045 case etree_assign:
1046 case etree_provide:
b46a87b1 1047 case etree_provided:
252b5132
RH
1048 if (tree->assign.dst[0] == '.' && tree->assign.dst[1] == 0)
1049 {
b46a87b1 1050 if (tree->type.node_class != etree_assign)
df5f2391 1051 einfo (_("%F%P:%pS can not PROVIDE assignment to"
dab69f68 1052 " location counter\n"), tree);
ec8460b5 1053 if (expld.phase != lang_first_phase_enum)
252b5132 1054 {
fbbb9ac5 1055 /* Notify the folder that this is an assignment to dot. */
e9ee469a
AM
1056 expld.assigning_to_dot = TRUE;
1057 exp_fold_tree_1 (tree->assign.src);
1058 expld.assigning_to_dot = FALSE;
1059
e0a3af22
AM
1060 /* If we are assigning to dot inside an output section
1061 arrange to keep the section, except for certain
1062 expressions that evaluate to zero. We ignore . = 0,
1063 . = . + 0, and . = ALIGN (. != 0 ? expr : 1).
1064 We can't ignore all expressions that evaluate to zero
1065 because an otherwise empty section might have padding
1066 added by an alignment expression that changes with
1067 relaxation. Such a section might have zero size
1068 before relaxation and so be stripped incorrectly. */
1069 if (expld.phase == lang_mark_phase_enum
1070 && expld.section != bfd_abs_section_ptr
f02cb058 1071 && expld.section != bfd_und_section_ptr
e0a3af22
AM
1072 && !(expld.result.valid_p
1073 && expld.result.value == 0
1074 && (is_value (tree->assign.src, 0)
1075 || is_sym_value (tree->assign.src, 0)
1076 || is_dot_plus_0 (tree->assign.src)
1077 || is_align_conditional (tree->assign.src))))
1078 expld.section->flags |= SEC_KEEP;
1079
f02cb058
AM
1080 if (!expld.result.valid_p
1081 || expld.section == bfd_und_section_ptr)
e9ee469a
AM
1082 {
1083 if (expld.phase != lang_mark_phase_enum)
df5f2391 1084 einfo (_("%F%P:%pS invalid assignment to"
dab69f68 1085 " location counter\n"), tree);
e9ee469a
AM
1086 }
1087 else if (expld.dotp == NULL)
df5f2391 1088 einfo (_("%F%P:%pS assignment to location counter"
ec8460b5
AM
1089 " invalid outside of SECTIONS\n"), tree);
1090
1091 /* After allocation, assignment to dot should not be
1092 done inside an output section since allocation adds a
1093 padding statement that effectively duplicates the
1094 assignment. */
1095 else if (expld.phase <= lang_allocating_phase_enum
1096 || expld.section == bfd_abs_section_ptr)
252b5132 1097 {
e9ee469a
AM
1098 bfd_vma nextdot;
1099
7542af2a
AM
1100 nextdot = expld.result.value;
1101 if (expld.result.section != NULL)
1102 nextdot += expld.result.section->vma;
1103 else
1104 nextdot += expld.section->vma;
e9ee469a
AM
1105 if (nextdot < expld.dot
1106 && expld.section != bfd_abs_section_ptr)
df5f2391 1107 einfo (_("%F%P:%pS cannot move location counter backwards"
dab69f68
AM
1108 " (from %V to %V)\n"),
1109 tree, expld.dot, nextdot);
252b5132
RH
1110 else
1111 {
e9ee469a
AM
1112 expld.dot = nextdot;
1113 *expld.dotp = nextdot;
252b5132
RH
1114 }
1115 }
1116 }
8b3d8fa8 1117 else
e9ee469a 1118 memset (&expld.result, 0, sizeof (expld.result));
252b5132
RH
1119 }
1120 else
1121 {
e9ee469a 1122 struct bfd_link_hash_entry *h = NULL;
252b5132 1123
e9ee469a
AM
1124 if (tree->type.node_class == etree_provide)
1125 {
252b5132 1126 h = bfd_link_hash_lookup (link_info.hash, tree->assign.dst,
e9ee469a
AM
1127 FALSE, FALSE, TRUE);
1128 if (h == NULL
4cc2bf08
AM
1129 || !(h->type == bfd_link_hash_new
1130 || h->type == bfd_link_hash_undefined
321df065 1131 || h->type == bfd_link_hash_undefweak
12b2843a 1132 || h->linker_def))
e9ee469a 1133 {
4cc2bf08 1134 /* Do nothing. The symbol was never referenced, or
321df065
AM
1135 was defined in some object file. Note that
1136 undefweak symbols are defined by PROVIDE. This
1137 is to support glibc use of __rela_iplt_start and
1138 similar weak references. */
e9ee469a
AM
1139 break;
1140 }
1141 }
1142
4194268f 1143 expld.assign_name = tree->assign.dst;
cd5b2bab 1144 expld.assign_src = NULL;
e9ee469a 1145 exp_fold_tree_1 (tree->assign.src);
4194268f
AM
1146 /* expld.assign_name remaining equal to tree->assign.dst
1147 below indicates the evaluation of tree->assign.src did
1148 not use the value of tree->assign.dst. We don't allow
1149 self assignment until the final phase for two reasons:
1150 1) Expressions are evaluated multiple times. With
1151 relaxation, the number of times may vary.
1152 2) Section relative symbol values cannot be correctly
1153 converted to absolute values, as is required by many
1154 expressions, until final section sizing is complete. */
eab62f2f 1155 if (expld.phase == lang_final_phase_enum
6a846243
AM
1156 || expld.phase == lang_fixed_phase_enum
1157 || expld.assign_name != NULL)
e9ee469a 1158 {
eab62f2f
AB
1159 if (tree->type.node_class == etree_provide)
1160 tree->type.node_class = etree_provided;
1161
1579bae1 1162 if (h == NULL)
67010b46 1163 {
e9ee469a
AM
1164 h = bfd_link_hash_lookup (link_info.hash, tree->assign.dst,
1165 TRUE, FALSE, TRUE);
1166 if (h == NULL)
df5f2391 1167 einfo (_("%F%P:%s: hash creation failed\n"),
67010b46
NC
1168 tree->assign.dst);
1169 }
e9ee469a 1170
eab62f2f
AB
1171 /* If the expression is not valid then fake a zero value. In
1172 the final phase any errors will already have been raised,
1173 in earlier phases we want to create this definition so
1174 that it can be seen by other expressions. */
1175 if (!expld.result.valid_p
1176 && h->type == bfd_link_hash_new)
1177 {
1178 expld.result.value = 0;
1179 expld.result.section = NULL;
1180 expld.result.valid_p = TRUE;
1181 }
1182
1183 if (expld.result.valid_p)
422f1c65 1184 {
eab62f2f
AB
1185 if (expld.result.section == NULL)
1186 expld.result.section = expld.section;
1187 if (!update_definedness (tree->assign.dst, h) && 0)
1188 {
1189 /* Symbol was already defined. For now this error
1190 is disabled because it causes failures in the ld
1191 testsuite: ld-elf/var1, ld-scripts/defined5, and
1192 ld-scripts/pr14962. Some of these no doubt
1193 reflect scripts used in the wild. */
1194 (*link_info.callbacks->multiple_definition)
1195 (&link_info, h, link_info.output_bfd,
1196 expld.result.section, expld.result.value);
1197 }
6a846243
AM
1198 if (expld.phase == lang_fixed_phase_enum)
1199 {
1200 if (h->type == bfd_link_hash_defined)
1201 {
1202 expld.result.value = h->u.def.value;
1203 expld.result.section = h->u.def.section;
1204 }
1205 }
1206 else
1207 {
1208 h->type = bfd_link_hash_defined;
1209 h->u.def.value = expld.result.value;
1210 h->u.def.section = expld.result.section;
1211 h->linker_def = ! tree->assign.type.lineno;
1212 h->ldscript_def = 1;
1213 h->rel_from_abs = expld.rel_from_abs;
1214 if (tree->assign.hidden)
1215 bfd_link_hide_symbol (link_info.output_bfd,
1216 &link_info, h);
1217
1218 /* Copy the symbol type if this is an expression only
1219 referencing a single symbol. (If the expression
1220 contains ternary conditions, ignoring symbols on
1221 false branches.) */
1222 if (expld.assign_src != NULL
1223 && (expld.assign_src
1224 != (struct bfd_link_hash_entry *) -1))
1225 bfd_copy_link_hash_symbol_type (link_info.output_bfd,
1226 h, expld.assign_src);
1227 }
422f1c65 1228 }
e092cb30 1229 }
6a846243
AM
1230 if (expld.phase != lang_fixed_phase_enum)
1231 expld.assign_name = NULL;
252b5132
RH
1232 }
1233 break;
1234
1235 case etree_name:
e9ee469a 1236 fold_name (tree);
252b5132
RH
1237 break;
1238
1239 default:
1240 FAIL ();
e9ee469a 1241 memset (&expld.result, 0, sizeof (expld.result));
252b5132
RH
1242 break;
1243 }
252b5132
RH
1244}
1245
e9ee469a
AM
1246void
1247exp_fold_tree (etree_type *tree, asection *current_section, bfd_vma *dotp)
75ff4589 1248{
975f8a9e 1249 expld.rel_from_abs = FALSE;
e9ee469a
AM
1250 expld.dot = *dotp;
1251 expld.dotp = dotp;
1252 expld.section = current_section;
1253 exp_fold_tree_1 (tree);
75ff4589
L
1254}
1255
e759c116 1256void
e9ee469a 1257exp_fold_tree_no_dot (etree_type *tree)
252b5132 1258{
975f8a9e 1259 expld.rel_from_abs = FALSE;
e9ee469a
AM
1260 expld.dot = 0;
1261 expld.dotp = NULL;
1262 expld.section = bfd_abs_section_ptr;
1263 exp_fold_tree_1 (tree);
252b5132
RH
1264}
1265
9ad39107
AM
1266static void
1267exp_value_fold (etree_type *tree)
1268{
1269 exp_fold_tree_no_dot (tree);
1270 if (expld.result.valid_p)
1271 {
1272 tree->type.node_code = INT;
1273 tree->value.value = expld.result.value;
1274 tree->value.str = NULL;
1275 tree->type.node_class = etree_value;
1276 }
1277}
1278
769553e6
AM
1279#define MAX(a, b) ((a) > (b) ? (a) : (b))
1280
252b5132 1281etree_type *
1579bae1 1282exp_binop (int code, etree_type *lhs, etree_type *rhs)
252b5132 1283{
769553e6
AM
1284 etree_type *new_e = (etree_type *) stat_alloc (MAX (sizeof (new_e->binary),
1285 sizeof (new_e->value)));
b751e639
AM
1286 new_e->type.node_code = code;
1287 new_e->type.filename = lhs->type.filename;
1288 new_e->type.lineno = lhs->type.lineno;
1289 new_e->binary.lhs = lhs;
1290 new_e->binary.rhs = rhs;
1291 new_e->type.node_class = etree_binary;
9ad39107
AM
1292 if (lhs->type.node_class == etree_value
1293 && rhs->type.node_class == etree_value
1294 && code != ALIGN_K
1295 && code != DATA_SEGMENT_ALIGN
1296 && code != DATA_SEGMENT_RELRO_END)
1297 exp_value_fold (new_e);
d3ce72d0 1298 return new_e;
252b5132
RH
1299}
1300
1301etree_type *
1579bae1 1302exp_trinop (int code, etree_type *cond, etree_type *lhs, etree_type *rhs)
252b5132 1303{
769553e6
AM
1304 etree_type *new_e = (etree_type *) stat_alloc (MAX (sizeof (new_e->trinary),
1305 sizeof (new_e->value)));
b751e639
AM
1306 new_e->type.node_code = code;
1307 new_e->type.filename = cond->type.filename;
1308 new_e->type.lineno = cond->type.lineno;
1309 new_e->trinary.lhs = lhs;
1310 new_e->trinary.cond = cond;
1311 new_e->trinary.rhs = rhs;
1312 new_e->type.node_class = etree_trinary;
9ad39107
AM
1313 if (cond->type.node_class == etree_value
1314 && lhs->type.node_class == etree_value
1315 && rhs->type.node_class == etree_value)
1316 exp_value_fold (new_e);
d3ce72d0 1317 return new_e;
252b5132
RH
1318}
1319
252b5132 1320etree_type *
1579bae1 1321exp_unop (int code, etree_type *child)
252b5132 1322{
769553e6
AM
1323 etree_type *new_e = (etree_type *) stat_alloc (MAX (sizeof (new_e->unary),
1324 sizeof (new_e->value)));
b751e639
AM
1325 new_e->unary.type.node_code = code;
1326 new_e->unary.type.filename = child->type.filename;
1327 new_e->unary.type.lineno = child->type.lineno;
1328 new_e->unary.child = child;
1329 new_e->unary.type.node_class = etree_unary;
9ad39107
AM
1330 if (child->type.node_class == etree_value
1331 && code != ALIGN_K
1332 && code != ABSOLUTE
1333 && code != NEXT
1334 && code != DATA_SEGMENT_END)
1335 exp_value_fold (new_e);
d3ce72d0 1336 return new_e;
252b5132
RH
1337}
1338
252b5132 1339etree_type *
1579bae1 1340exp_nameop (int code, const char *name)
252b5132 1341{
b751e639 1342 etree_type *new_e = (etree_type *) stat_alloc (sizeof (new_e->name));
c7d701b0 1343
b751e639
AM
1344 new_e->name.type.node_code = code;
1345 new_e->name.type.filename = ldlex_filename ();
1346 new_e->name.type.lineno = lineno;
1347 new_e->name.name = name;
1348 new_e->name.type.node_class = etree_name;
d3ce72d0 1349 return new_e;
252b5132
RH
1350
1351}
1352
2e57b2af
AM
1353static etree_type *
1354exp_assop (const char *dst,
1355 etree_type *src,
1356 enum node_tree_enum class,
1357 bfd_boolean hidden)
252b5132
RH
1358{
1359 etree_type *n;
1360
1e9cc1c2 1361 n = (etree_type *) stat_alloc (sizeof (n->assign));
252b5132 1362 n->assign.type.node_code = '=';
dab69f68 1363 n->assign.type.filename = src->type.filename;
f856040a 1364 n->assign.type.lineno = src->type.lineno;
2e57b2af 1365 n->assign.type.node_class = class;
252b5132
RH
1366 n->assign.src = src;
1367 n->assign.dst = dst;
7af8e998 1368 n->assign.hidden = hidden;
252b5132
RH
1369 return n;
1370}
1371
eb8476a6
MR
1372/* Handle linker script assignments and HIDDEN. */
1373
2e57b2af 1374etree_type *
eb8476a6 1375exp_assign (const char *dst, etree_type *src, bfd_boolean hidden)
2e57b2af 1376{
65f14869 1377 return exp_assop (dst, src, etree_assign, hidden);
2e57b2af
AM
1378}
1379
eb8476a6
MR
1380/* Handle --defsym command-line option. */
1381
2e57b2af
AM
1382etree_type *
1383exp_defsym (const char *dst, etree_type *src)
1384{
65f14869 1385 return exp_assop (dst, src, etree_assign, FALSE);
2e57b2af
AM
1386}
1387
1388/* Handle PROVIDE. */
1389
1390etree_type *
1391exp_provide (const char *dst, etree_type *src, bfd_boolean hidden)
1392{
65f14869 1393 return exp_assop (dst, src, etree_provide, hidden);
2e57b2af
AM
1394}
1395
252b5132
RH
1396/* Handle ASSERT. */
1397
1398etree_type *
1579bae1 1399exp_assert (etree_type *exp, const char *message)
252b5132
RH
1400{
1401 etree_type *n;
1402
1e9cc1c2 1403 n = (etree_type *) stat_alloc (sizeof (n->assert_s));
252b5132 1404 n->assert_s.type.node_code = '!';
dab69f68 1405 n->assert_s.type.filename = exp->type.filename;
f856040a 1406 n->assert_s.type.lineno = exp->type.lineno;
252b5132
RH
1407 n->assert_s.type.node_class = etree_assert;
1408 n->assert_s.child = exp;
1409 n->assert_s.message = message;
1410 return n;
1411}
1412
4de2d33d 1413void
1579bae1 1414exp_print_tree (etree_type *tree)
252b5132 1415{
ae78bbeb
AM
1416 bfd_boolean function_like;
1417
c7d701b0
NC
1418 if (config.map_file == NULL)
1419 config.map_file = stderr;
b7a26f91 1420
c7d701b0
NC
1421 if (tree == NULL)
1422 {
1423 minfo ("NULL TREE\n");
1424 return;
1425 }
b7a26f91 1426
8c95a62e
KH
1427 switch (tree->type.node_class)
1428 {
1429 case etree_value:
1430 minfo ("0x%v", tree->value.value);
1431 return;
1432 case etree_rel:
1433 if (tree->rel.section->owner != NULL)
871b3ab2 1434 minfo ("%pB:", tree->rel.section->owner);
8c95a62e
KH
1435 minfo ("%s+0x%v", tree->rel.section->name, tree->rel.value);
1436 return;
1437 case etree_assign:
ae78bbeb 1438 fputs (tree->assign.dst, config.map_file);
b34976b6 1439 exp_print_token (tree->type.node_code, TRUE);
8c95a62e
KH
1440 exp_print_tree (tree->assign.src);
1441 break;
1442 case etree_provide:
b46a87b1 1443 case etree_provided:
b3b9f8d3 1444 fprintf (config.map_file, "PROVIDE (%s = ", tree->assign.dst);
8c95a62e 1445 exp_print_tree (tree->assign.src);
ae78bbeb 1446 fputc (')', config.map_file);
8c95a62e
KH
1447 break;
1448 case etree_binary:
ae78bbeb
AM
1449 function_like = FALSE;
1450 switch (tree->type.node_code)
1451 {
1452 case MAX_K:
1453 case MIN_K:
1454 case ALIGN_K:
1455 case DATA_SEGMENT_ALIGN:
1456 case DATA_SEGMENT_RELRO_END:
1457 function_like = TRUE;
67baf8c4
TG
1458 break;
1459 case SEGMENT_START:
1460 /* Special handling because arguments are in reverse order and
1461 the segment name is quoted. */
1462 exp_print_token (tree->type.node_code, FALSE);
1463 fputs (" (\"", config.map_file);
1464 exp_print_tree (tree->binary.rhs);
1465 fputs ("\", ", config.map_file);
1466 exp_print_tree (tree->binary.lhs);
1467 fputc (')', config.map_file);
1468 return;
ae78bbeb
AM
1469 }
1470 if (function_like)
1471 {
1472 exp_print_token (tree->type.node_code, FALSE);
1473 fputc (' ', config.map_file);
1474 }
1475 fputc ('(', config.map_file);
8c95a62e 1476 exp_print_tree (tree->binary.lhs);
ae78bbeb
AM
1477 if (function_like)
1478 fprintf (config.map_file, ", ");
1479 else
1480 exp_print_token (tree->type.node_code, TRUE);
8c95a62e 1481 exp_print_tree (tree->binary.rhs);
ae78bbeb 1482 fputc (')', config.map_file);
8c95a62e
KH
1483 break;
1484 case etree_trinary:
1485 exp_print_tree (tree->trinary.cond);
ae78bbeb 1486 fputc ('?', config.map_file);
8c95a62e 1487 exp_print_tree (tree->trinary.lhs);
ae78bbeb 1488 fputc (':', config.map_file);
8c95a62e
KH
1489 exp_print_tree (tree->trinary.rhs);
1490 break;
1491 case etree_unary:
b34976b6 1492 exp_print_token (tree->unary.type.node_code, FALSE);
8c95a62e
KH
1493 if (tree->unary.child)
1494 {
7b17f854 1495 fprintf (config.map_file, " (");
8c95a62e 1496 exp_print_tree (tree->unary.child);
ae78bbeb 1497 fputc (')', config.map_file);
8c95a62e
KH
1498 }
1499 break;
1500
1501 case etree_assert:
1502 fprintf (config.map_file, "ASSERT (");
1503 exp_print_tree (tree->assert_s.child);
1504 fprintf (config.map_file, ", %s)", tree->assert_s.message);
1505 break;
1506
8c95a62e
KH
1507 case etree_name:
1508 if (tree->type.node_code == NAME)
ae78bbeb 1509 fputs (tree->name.name, config.map_file);
8c95a62e
KH
1510 else
1511 {
b34976b6 1512 exp_print_token (tree->type.node_code, FALSE);
8c95a62e 1513 if (tree->name.name)
7b17f854 1514 fprintf (config.map_file, " (%s)", tree->name.name);
8c95a62e
KH
1515 }
1516 break;
1517 default:
1518 FAIL ();
1519 break;
252b5132 1520 }
252b5132
RH
1521}
1522
1523bfd_vma
e9ee469a 1524exp_get_vma (etree_type *tree, bfd_vma def, char *name)
252b5132 1525{
252b5132
RH
1526 if (tree != NULL)
1527 {
e9ee469a
AM
1528 exp_fold_tree_no_dot (tree);
1529 if (expld.result.valid_p)
1530 return expld.result.value;
1531 else if (name != NULL && expld.phase != lang_mark_phase_enum)
df5f2391 1532 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
dab69f68 1533 tree, name);
252b5132 1534 }
e9ee469a 1535 return def;
252b5132
RH
1536}
1537
3d9c8f6b
AM
1538/* Return the smallest non-negative integer such that two raised to
1539 that power is at least as large as the vma evaluated at TREE, if
1540 TREE is a non-NULL expression that can be resolved. If TREE is
1541 NULL or cannot be resolved, return -1. */
1542
4de2d33d 1543int
3d9c8f6b 1544exp_get_power (etree_type *tree, char *name)
252b5132 1545{
3d9c8f6b
AM
1546 bfd_vma x = exp_get_vma (tree, -1, name);
1547 bfd_vma p2;
1548 int n;
1549
1550 if (x == (bfd_vma) -1)
1551 return -1;
1552
1553 for (n = 0, p2 = 1; p2 < x; ++n, p2 <<= 1)
1554 if (p2 == 0)
1555 break;
1556
1557 return n;
252b5132
RH
1558}
1559
2c382fb6 1560fill_type *
e9ee469a 1561exp_get_fill (etree_type *tree, fill_type *def, char *name)
2c382fb6
AM
1562{
1563 fill_type *fill;
2c382fb6
AM
1564 size_t len;
1565 unsigned int val;
1566
1567 if (tree == NULL)
1568 return def;
1569
e9ee469a
AM
1570 exp_fold_tree_no_dot (tree);
1571 if (!expld.result.valid_p)
1572 {
1573 if (name != NULL && expld.phase != lang_mark_phase_enum)
df5f2391 1574 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
dab69f68 1575 tree, name);
e9ee469a
AM
1576 return def;
1577 }
2c382fb6 1578
e9ee469a 1579 if (expld.result.str != NULL && (len = strlen (expld.result.str)) != 0)
2c382fb6
AM
1580 {
1581 unsigned char *dst;
1582 unsigned char *s;
1e9cc1c2 1583 fill = (fill_type *) xmalloc ((len + 1) / 2 + sizeof (*fill) - 1);
2c382fb6
AM
1584 fill->size = (len + 1) / 2;
1585 dst = fill->data;
e9ee469a 1586 s = (unsigned char *) expld.result.str;
2c382fb6
AM
1587 val = 0;
1588 do
1589 {
1590 unsigned int digit;
1591
1592 digit = *s++ - '0';
1593 if (digit > 9)
1594 digit = (digit - 'A' + '0' + 10) & 0xf;
1595 val <<= 4;
1596 val += digit;
1597 --len;
1598 if ((len & 1) == 0)
1599 {
1600 *dst++ = val;
1601 val = 0;
1602 }
1603 }
1604 while (len != 0);
1605 }
1606 else
1607 {
1e9cc1c2 1608 fill = (fill_type *) xmalloc (4 + sizeof (*fill) - 1);
e9ee469a 1609 val = expld.result.value;
2c382fb6
AM
1610 fill->data[0] = (val >> 24) & 0xff;
1611 fill->data[1] = (val >> 16) & 0xff;
1612 fill->data[2] = (val >> 8) & 0xff;
1613 fill->data[3] = (val >> 0) & 0xff;
1614 fill->size = 4;
1615 }
1616 return fill;
1617}
1618
252b5132 1619bfd_vma
e9ee469a 1620exp_get_abs_int (etree_type *tree, int def, char *name)
252b5132 1621{
e9ee469a
AM
1622 if (tree != NULL)
1623 {
1624 exp_fold_tree_no_dot (tree);
c7d701b0 1625
e9ee469a
AM
1626 if (expld.result.valid_p)
1627 {
7542af2a
AM
1628 if (expld.result.section != NULL)
1629 expld.result.value += expld.result.section->vma;
e9ee469a
AM
1630 return expld.result.value;
1631 }
1632 else if (name != NULL && expld.phase != lang_mark_phase_enum)
f856040a 1633 {
df5f2391 1634 einfo (_("%F%P:%pS: nonconstant expression for %s\n"),
dab69f68 1635 tree, name);
f856040a 1636 }
e9ee469a
AM
1637 }
1638 return def;
252b5132 1639}
c553bb91 1640
e5caa5e0
AM
1641static bfd_vma
1642align_n (bfd_vma value, bfd_vma align)
c553bb91
AM
1643{
1644 if (align <= 1)
1645 return value;
1646
1647 value = (value + align - 1) / align;
1648 return value * align;
1649}
18d6a79d
AM
1650
1651void
1652ldexp_init (void)
1653{
1654 /* The value "13" is ad-hoc, somewhat related to the expected number of
1655 assignments in a linker script. */
1656 if (!bfd_hash_table_init_n (&definedness_table,
1657 definedness_newfunc,
1658 sizeof (struct definedness_hash_entry),
1659 13))
df5f2391 1660 einfo (_("%F%P: can not create hash table: %E\n"));
18d6a79d
AM
1661}
1662
975f8a9e
AM
1663/* Convert absolute symbols defined by a script from "dot" (also
1664 SEGMENT_START or ORIGIN) outside of an output section statement,
1665 to section relative. */
1666
1667static bfd_boolean
1668set_sym_sections (struct bfd_hash_entry *bh, void *inf ATTRIBUTE_UNUSED)
1669{
1670 struct definedness_hash_entry *def = (struct definedness_hash_entry *) bh;
1671 if (def->final_sec != bfd_abs_section_ptr)
1672 {
1673 struct bfd_link_hash_entry *h;
1674 h = bfd_link_hash_lookup (link_info.hash, bh->string,
1675 FALSE, FALSE, TRUE);
1676 if (h != NULL
1677 && h->type == bfd_link_hash_defined
1678 && h->u.def.section == bfd_abs_section_ptr)
1679 {
1680 h->u.def.value -= def->final_sec->vma;
1681 h->u.def.section = def->final_sec;
1682 }
1683 }
1684 return TRUE;
1685}
1686
1687void
1688ldexp_finalize_syms (void)
1689{
1690 bfd_hash_traverse (&definedness_table, set_sym_sections, NULL);
1691}
1692
18d6a79d
AM
1693void
1694ldexp_finish (void)
1695{
1696 bfd_hash_table_free (&definedness_table);
1697}
This page took 0.948177 seconds and 4 git commands to generate.