1 /* This module handles expression trees.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
5 Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
7 This file is part of the GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
25 /* This module is in charge of working out the contents of expressions.
27 It has to keep track of the relative/absness of a symbol etc. This
28 is done by keeping all values in a struct (an etree_value_type)
29 which contains a value, a section to which it is relative and a
43 #include "libiberty.h"
44 #include "safe-ctype.h"
46 static void exp_fold_tree_1 (etree_type
*);
47 static void exp_fold_tree_no_dot (etree_type
*);
48 static bfd_vma
align_n (bfd_vma
, bfd_vma
);
50 segment_type
*segments
;
52 struct ldexp_control expld
;
54 /* Print the string representation of the given token. Surround it
55 with spaces if INFIX_P is TRUE. */
58 exp_print_token (token_code_type code
, int infix_p
)
92 { SECTIONS
, "SECTIONS" },
93 { SIZEOF_HEADERS
, "SIZEOF_HEADERS" },
95 { DEFINED
, "DEFINED" },
96 { TARGET_K
, "TARGET" },
97 { SEARCH_DIR
, "SEARCH_DIR" },
101 { ALIGNOF
, "ALIGNOF" },
102 { SIZEOF
, "SIZEOF" },
104 { LOADADDR
, "LOADADDR" },
105 { CONSTANT
, "CONSTANT" },
107 { REL
, "relocatable" },
108 { DATA_SEGMENT_ALIGN
, "DATA_SEGMENT_ALIGN" },
109 { DATA_SEGMENT_RELRO_END
, "DATA_SEGMENT_RELRO_END" },
110 { DATA_SEGMENT_END
, "DATA_SEGMENT_END" },
111 { ORIGIN
, "ORIGIN" },
112 { LENGTH
, "LENGTH" },
113 { SEGMENT_START
, "SEGMENT_START" }
117 for (idx
= 0; idx
< ARRAY_SIZE (table
); idx
++)
118 if (table
[idx
].code
== code
)
122 fputc (' ', config
.map_file
);
124 if (idx
< ARRAY_SIZE (table
))
125 fputs (table
[idx
].name
, config
.map_file
);
127 fputc (code
, config
.map_file
);
129 fprintf (config
.map_file
, "<code %d>", code
);
132 fputc (' ', config
.map_file
);
138 expld
.result
.value
+= expld
.result
.section
->vma
;
139 expld
.result
.section
= bfd_abs_section_ptr
;
143 new_abs (bfd_vma value
)
145 expld
.result
.valid_p
= TRUE
;
146 expld
.result
.section
= bfd_abs_section_ptr
;
147 expld
.result
.value
= value
;
148 expld
.result
.str
= NULL
;
152 exp_intop (bfd_vma value
)
154 etree_type
*new = stat_alloc (sizeof (new->value
));
155 new->type
.node_code
= INT
;
156 new->type
.lineno
= lineno
;
157 new->value
.value
= value
;
158 new->value
.str
= NULL
;
159 new->type
.node_class
= etree_value
;
164 exp_bigintop (bfd_vma value
, char *str
)
166 etree_type
*new = stat_alloc (sizeof (new->value
));
167 new->type
.node_code
= INT
;
168 new->type
.lineno
= lineno
;
169 new->value
.value
= value
;
170 new->value
.str
= str
;
171 new->type
.node_class
= etree_value
;
175 /* Build an expression representing an unnamed relocatable value. */
178 exp_relop (asection
*section
, bfd_vma value
)
180 etree_type
*new = stat_alloc (sizeof (new->rel
));
181 new->type
.node_code
= REL
;
182 new->type
.lineno
= lineno
;
183 new->type
.node_class
= etree_rel
;
184 new->rel
.section
= section
;
185 new->rel
.value
= value
;
190 new_rel (bfd_vma value
, char *str
, asection
*section
)
192 expld
.result
.valid_p
= TRUE
;
193 expld
.result
.value
= value
;
194 expld
.result
.str
= str
;
195 expld
.result
.section
= section
;
199 new_rel_from_abs (bfd_vma value
)
201 expld
.result
.valid_p
= TRUE
;
202 expld
.result
.value
= value
- expld
.section
->vma
;
203 expld
.result
.str
= NULL
;
204 expld
.result
.section
= expld
.section
;
208 fold_unary (etree_type
*tree
)
210 exp_fold_tree_1 (tree
->unary
.child
);
211 if (expld
.result
.valid_p
)
213 switch (tree
->type
.node_code
)
216 if (expld
.phase
!= lang_first_phase_enum
)
217 new_rel_from_abs (align_n (expld
.dot
, expld
.result
.value
));
219 expld
.result
.valid_p
= FALSE
;
228 expld
.result
.value
= ~expld
.result
.value
;
233 expld
.result
.value
= !expld
.result
.value
;
238 expld
.result
.value
= -expld
.result
.value
;
242 /* Return next place aligned to value. */
243 if (expld
.phase
!= lang_first_phase_enum
)
246 expld
.result
.value
= align_n (expld
.dot
, expld
.result
.value
);
249 expld
.result
.valid_p
= FALSE
;
252 case DATA_SEGMENT_END
:
253 if (expld
.phase
!= lang_first_phase_enum
254 && expld
.section
== bfd_abs_section_ptr
255 && (expld
.dataseg
.phase
== exp_dataseg_align_seen
256 || expld
.dataseg
.phase
== exp_dataseg_relro_seen
257 || expld
.dataseg
.phase
== exp_dataseg_adjust
258 || expld
.dataseg
.phase
== exp_dataseg_relro_adjust
259 || expld
.phase
== lang_final_phase_enum
))
261 if (expld
.dataseg
.phase
== exp_dataseg_align_seen
262 || expld
.dataseg
.phase
== exp_dataseg_relro_seen
)
264 expld
.dataseg
.phase
= exp_dataseg_end_seen
;
265 expld
.dataseg
.end
= expld
.result
.value
;
269 expld
.result
.valid_p
= FALSE
;
280 fold_binary (etree_type
*tree
)
282 exp_fold_tree_1 (tree
->binary
.lhs
);
284 /* The SEGMENT_START operator is special because its first
285 operand is a string, not the name of a symbol. */
286 if (expld
.result
.valid_p
&& tree
->type
.node_code
== SEGMENT_START
)
288 const char *segment_name
;
290 /* Check to see if the user has overridden the default
292 segment_name
= tree
->binary
.rhs
->name
.name
;
293 for (seg
= segments
; seg
; seg
= seg
->next
)
294 if (strcmp (seg
->name
, segment_name
) == 0)
297 expld
.result
.value
= seg
->value
;
298 expld
.result
.str
= NULL
;
299 expld
.result
.section
= NULL
;
303 else if (expld
.result
.valid_p
)
305 etree_value_type lhs
= expld
.result
;
307 exp_fold_tree_1 (tree
->binary
.rhs
);
308 if (expld
.result
.valid_p
)
310 /* If the values are from different sections, or this is an
311 absolute expression, make both the source arguments
312 absolute. However, adding or subtracting an absolute
313 value from a relative value is meaningful, and is an
315 if (expld
.section
!= bfd_abs_section_ptr
316 && lhs
.section
== bfd_abs_section_ptr
317 && tree
->type
.node_code
== '+')
319 /* Keep the section of the rhs term. */
320 expld
.result
.value
= lhs
.value
+ expld
.result
.value
;
323 else if (expld
.section
!= bfd_abs_section_ptr
324 && expld
.result
.section
== bfd_abs_section_ptr
325 && (tree
->type
.node_code
== '+'
326 || tree
->type
.node_code
== '-'))
328 /* Keep the section of the lhs term. */
329 expld
.result
.section
= lhs
.section
;
331 else if (expld
.result
.section
!= lhs
.section
332 || expld
.section
== bfd_abs_section_ptr
)
335 lhs
.value
+= lhs
.section
->vma
;
338 switch (tree
->type
.node_code
)
341 if (expld
.result
.value
!= 0)
342 expld
.result
.value
= ((bfd_signed_vma
) lhs
.value
343 % (bfd_signed_vma
) expld
.result
.value
);
344 else if (expld
.phase
!= lang_mark_phase_enum
)
345 einfo (_("%F%S %% by zero\n"));
349 if (expld
.result
.value
!= 0)
350 expld
.result
.value
= ((bfd_signed_vma
) lhs
.value
351 / (bfd_signed_vma
) expld
.result
.value
);
352 else if (expld
.phase
!= lang_mark_phase_enum
)
353 einfo (_("%F%S / by zero\n"));
358 expld.result.value = lhs.value y expld.result.value; \
379 if (lhs
.value
> expld
.result
.value
)
380 expld
.result
.value
= lhs
.value
;
384 if (lhs
.value
< expld
.result
.value
)
385 expld
.result
.value
= lhs
.value
;
389 expld
.result
.value
= align_n (lhs
.value
, expld
.result
.value
);
392 case DATA_SEGMENT_ALIGN
:
393 if (expld
.phase
!= lang_first_phase_enum
394 && expld
.section
== bfd_abs_section_ptr
395 && (expld
.dataseg
.phase
== exp_dataseg_none
396 || expld
.dataseg
.phase
== exp_dataseg_adjust
397 || expld
.dataseg
.phase
== exp_dataseg_relro_adjust
398 || expld
.phase
== lang_final_phase_enum
))
400 bfd_vma maxpage
= lhs
.value
;
401 bfd_vma commonpage
= expld
.result
.value
;
403 expld
.result
.value
= align_n (expld
.dot
, maxpage
);
404 if (expld
.dataseg
.phase
== exp_dataseg_relro_adjust
)
405 expld
.result
.value
= expld
.dataseg
.base
;
406 else if (expld
.dataseg
.phase
!= exp_dataseg_adjust
)
408 expld
.result
.value
+= expld
.dot
& (maxpage
- 1);
409 if (expld
.phase
== lang_allocating_phase_enum
)
411 expld
.dataseg
.phase
= exp_dataseg_align_seen
;
412 expld
.dataseg
.min_base
= align_n (expld
.dot
, maxpage
);
413 expld
.dataseg
.base
= expld
.result
.value
;
414 expld
.dataseg
.pagesize
= commonpage
;
415 expld
.dataseg
.maxpagesize
= maxpage
;
416 expld
.dataseg
.relro_end
= 0;
419 else if (commonpage
< maxpage
)
420 expld
.result
.value
+= ((expld
.dot
+ commonpage
- 1)
421 & (maxpage
- commonpage
));
424 expld
.result
.valid_p
= FALSE
;
427 case DATA_SEGMENT_RELRO_END
:
428 if (expld
.phase
!= lang_first_phase_enum
429 && (expld
.dataseg
.phase
== exp_dataseg_align_seen
430 || expld
.dataseg
.phase
== exp_dataseg_adjust
431 || expld
.dataseg
.phase
== exp_dataseg_relro_adjust
432 || expld
.phase
== lang_final_phase_enum
))
434 if (expld
.dataseg
.phase
== exp_dataseg_align_seen
435 || expld
.dataseg
.phase
== exp_dataseg_relro_adjust
)
436 expld
.dataseg
.relro_end
= lhs
.value
+ expld
.result
.value
;
438 if (expld
.dataseg
.phase
== exp_dataseg_relro_adjust
439 && (expld
.dataseg
.relro_end
440 & (expld
.dataseg
.pagesize
- 1)))
442 expld
.dataseg
.relro_end
+= expld
.dataseg
.pagesize
- 1;
443 expld
.dataseg
.relro_end
&= ~(expld
.dataseg
.pagesize
- 1);
444 expld
.result
.value
= (expld
.dataseg
.relro_end
445 - expld
.result
.value
);
448 expld
.result
.value
= lhs
.value
;
450 if (expld
.dataseg
.phase
== exp_dataseg_align_seen
)
451 expld
.dataseg
.phase
= exp_dataseg_relro_seen
;
454 expld
.result
.valid_p
= FALSE
;
462 expld
.result
.valid_p
= FALSE
;
467 fold_trinary (etree_type
*tree
)
469 exp_fold_tree_1 (tree
->trinary
.cond
);
470 if (expld
.result
.valid_p
)
471 exp_fold_tree_1 (expld
.result
.value
473 : tree
->trinary
.rhs
);
477 fold_name (etree_type
*tree
)
479 memset (&expld
.result
, 0, sizeof (expld
.result
));
481 switch (tree
->type
.node_code
)
484 if (expld
.phase
!= lang_first_phase_enum
)
486 bfd_vma hdr_size
= 0;
487 /* Don't find the real header size if only marking sections;
488 The bfd function may cache incorrect data. */
489 if (expld
.phase
!= lang_mark_phase_enum
)
490 hdr_size
= bfd_sizeof_headers (output_bfd
, &link_info
);
496 if (expld
.phase
== lang_first_phase_enum
)
497 lang_track_definedness (tree
->name
.name
);
500 struct bfd_link_hash_entry
*h
;
502 = lang_symbol_definition_iteration (tree
->name
.name
);
504 h
= bfd_wrapped_link_hash_lookup (output_bfd
, &link_info
,
507 expld
.result
.value
= (h
!= NULL
508 && (h
->type
== bfd_link_hash_defined
509 || h
->type
== bfd_link_hash_defweak
510 || h
->type
== bfd_link_hash_common
)
511 && (def_iteration
== lang_statement_iteration
512 || def_iteration
== -1));
513 expld
.result
.section
= bfd_abs_section_ptr
;
514 expld
.result
.valid_p
= TRUE
;
519 if (expld
.phase
== lang_first_phase_enum
)
521 else if (tree
->name
.name
[0] == '.' && tree
->name
.name
[1] == 0)
522 new_rel_from_abs (expld
.dot
);
525 struct bfd_link_hash_entry
*h
;
527 h
= bfd_wrapped_link_hash_lookup (output_bfd
, &link_info
,
531 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
532 else if (h
->type
== bfd_link_hash_defined
533 || h
->type
== bfd_link_hash_defweak
)
535 if (bfd_is_abs_section (h
->u
.def
.section
))
536 new_abs (h
->u
.def
.value
);
539 asection
*output_section
;
541 output_section
= h
->u
.def
.section
->output_section
;
542 if (output_section
== NULL
)
544 if (expld
.phase
!= lang_mark_phase_enum
)
545 einfo (_("%X%S: unresolvable symbol `%s'"
546 " referenced in expression\n"),
550 new_rel (h
->u
.def
.value
+ h
->u
.def
.section
->output_offset
,
551 NULL
, output_section
);
554 else if (expld
.phase
== lang_final_phase_enum
555 || expld
.assigning_to_dot
)
556 einfo (_("%F%S: undefined symbol `%s' referenced in expression\n"),
558 else if (h
->type
== bfd_link_hash_new
)
560 h
->type
= bfd_link_hash_undefined
;
561 h
->u
.undef
.abfd
= NULL
;
562 if (h
->u
.undef
.next
== NULL
&& h
!= link_info
.hash
->undefs_tail
)
563 bfd_link_add_undef (link_info
.hash
, h
);
569 if (expld
.phase
!= lang_first_phase_enum
)
571 lang_output_section_statement_type
*os
;
573 os
= lang_output_section_find (tree
->name
.name
);
576 if (expld
.phase
== lang_final_phase_enum
)
577 einfo (_("%F%S: undefined section `%s' referenced in expression\n"),
580 else if (os
->processed_vma
)
581 new_rel (0, NULL
, os
->bfd_section
);
586 if (expld
.phase
!= lang_first_phase_enum
)
588 lang_output_section_statement_type
*os
;
590 os
= lang_output_section_find (tree
->name
.name
);
593 if (expld
.phase
== lang_final_phase_enum
)
594 einfo (_("%F%S: undefined section `%s' referenced in expression\n"),
597 else if (os
->processed_lma
)
599 if (os
->load_base
== NULL
)
600 new_abs (os
->bfd_section
->lma
);
603 exp_fold_tree_1 (os
->load_base
);
612 if (expld
.phase
!= lang_first_phase_enum
)
614 lang_output_section_statement_type
*os
;
616 os
= lang_output_section_find (tree
->name
.name
);
619 if (expld
.phase
== lang_final_phase_enum
)
620 einfo (_("%F%S: undefined section `%s' referenced in expression\n"),
624 else if (os
->processed_vma
)
628 if (tree
->type
.node_code
== SIZEOF
)
629 val
= os
->bfd_section
->size
/ bfd_octets_per_byte (output_bfd
);
631 val
= (bfd_vma
)1 << os
->bfd_section
->alignment_power
;
640 lang_memory_region_type
*mem
;
642 mem
= lang_memory_region_lookup (tree
->name
.name
, FALSE
);
644 new_abs (mem
->length
);
646 einfo (_("%F%S: undefined MEMORY region `%s'"
647 " referenced in expression\n"), tree
->name
.name
);
653 lang_memory_region_type
*mem
;
655 mem
= lang_memory_region_lookup (tree
->name
.name
, FALSE
);
657 new_abs (mem
->origin
);
659 einfo (_("%F%S: undefined MEMORY region `%s'"
660 " referenced in expression\n"), tree
->name
.name
);
665 if (strcmp (tree
->name
.name
, "MAXPAGESIZE") == 0)
666 new_abs (bfd_emul_get_maxpagesize (default_target
));
667 else if (strcmp (tree
->name
.name
, "COMMONPAGESIZE") == 0)
668 new_abs (bfd_emul_get_commonpagesize (default_target
));
670 einfo (_("%F%S: unknown constant `%s' referenced in expression\n"),
681 exp_fold_tree_1 (etree_type
*tree
)
685 memset (&expld
.result
, 0, sizeof (expld
.result
));
689 switch (tree
->type
.node_class
)
692 new_rel (tree
->value
.value
, tree
->value
.str
, expld
.section
);
696 if (expld
.phase
!= lang_first_phase_enum
)
698 asection
*output_section
= tree
->rel
.section
->output_section
;
699 new_rel (tree
->rel
.value
+ tree
->rel
.section
->output_offset
,
700 NULL
, output_section
);
703 memset (&expld
.result
, 0, sizeof (expld
.result
));
707 exp_fold_tree_1 (tree
->assert_s
.child
);
708 if (expld
.phase
== lang_final_phase_enum
&& !expld
.result
.value
)
709 einfo ("%X%P: %s\n", tree
->assert_s
.message
);
727 if (tree
->assign
.dst
[0] == '.' && tree
->assign
.dst
[1] == 0)
729 /* Assignment to dot can only be done during allocation. */
730 if (tree
->type
.node_class
!= etree_assign
)
731 einfo (_("%F%S can not PROVIDE assignment to location counter\n"));
732 if (expld
.phase
== lang_mark_phase_enum
733 || expld
.phase
== lang_allocating_phase_enum
734 || (expld
.phase
== lang_final_phase_enum
735 && expld
.section
== bfd_abs_section_ptr
))
737 /* Notify the folder that this is an assignment to dot. */
738 expld
.assigning_to_dot
= TRUE
;
739 exp_fold_tree_1 (tree
->assign
.src
);
740 expld
.assigning_to_dot
= FALSE
;
742 if (!expld
.result
.valid_p
)
744 if (expld
.phase
!= lang_mark_phase_enum
)
745 einfo (_("%F%S invalid assignment to location counter\n"));
747 else if (expld
.dotp
== NULL
)
748 einfo (_("%F%S assignment to location counter"
749 " invalid outside of SECTION\n"));
754 nextdot
= expld
.result
.value
+ expld
.section
->vma
;
755 if (nextdot
< expld
.dot
756 && expld
.section
!= bfd_abs_section_ptr
)
757 einfo (_("%F%S cannot move location counter backwards"
758 " (from %V to %V)\n"), expld
.dot
, nextdot
);
762 *expld
.dotp
= nextdot
;
767 memset (&expld
.result
, 0, sizeof (expld
.result
));
771 struct bfd_link_hash_entry
*h
= NULL
;
773 if (tree
->type
.node_class
== etree_provide
)
775 h
= bfd_link_hash_lookup (link_info
.hash
, tree
->assign
.dst
,
778 || (h
->type
!= bfd_link_hash_new
779 && h
->type
!= bfd_link_hash_undefined
780 && h
->type
!= bfd_link_hash_common
))
782 /* Do nothing. The symbol was never referenced, or was
783 defined by some object. */
788 exp_fold_tree_1 (tree
->assign
.src
);
789 if (expld
.result
.valid_p
)
793 h
= bfd_link_hash_lookup (link_info
.hash
, tree
->assign
.dst
,
796 einfo (_("%P%F:%s: hash creation failed\n"),
800 /* FIXME: Should we worry if the symbol is already
802 lang_update_definedness (tree
->assign
.dst
, h
);
803 h
->type
= bfd_link_hash_defined
;
804 h
->u
.def
.value
= expld
.result
.value
;
805 h
->u
.def
.section
= expld
.result
.section
;
806 if (tree
->type
.node_class
== etree_provide
)
807 tree
->type
.node_class
= etree_provided
;
818 memset (&expld
.result
, 0, sizeof (expld
.result
));
824 exp_fold_tree (etree_type
*tree
, asection
*current_section
, bfd_vma
*dotp
)
828 expld
.section
= current_section
;
829 exp_fold_tree_1 (tree
);
833 exp_fold_tree_no_dot (etree_type
*tree
)
837 expld
.section
= bfd_abs_section_ptr
;
838 exp_fold_tree_1 (tree
);
842 exp_binop (int code
, etree_type
*lhs
, etree_type
*rhs
)
844 etree_type value
, *new;
846 value
.type
.node_code
= code
;
847 value
.type
.lineno
= lhs
->type
.lineno
;
848 value
.binary
.lhs
= lhs
;
849 value
.binary
.rhs
= rhs
;
850 value
.type
.node_class
= etree_binary
;
851 exp_fold_tree_no_dot (&value
);
852 if (expld
.result
.valid_p
)
853 return exp_intop (expld
.result
.value
);
855 new = stat_alloc (sizeof (new->binary
));
856 memcpy (new, &value
, sizeof (new->binary
));
861 exp_trinop (int code
, etree_type
*cond
, etree_type
*lhs
, etree_type
*rhs
)
863 etree_type value
, *new;
865 value
.type
.node_code
= code
;
866 value
.type
.lineno
= lhs
->type
.lineno
;
867 value
.trinary
.lhs
= lhs
;
868 value
.trinary
.cond
= cond
;
869 value
.trinary
.rhs
= rhs
;
870 value
.type
.node_class
= etree_trinary
;
871 exp_fold_tree_no_dot (&value
);
872 if (expld
.result
.valid_p
)
873 return exp_intop (expld
.result
.value
);
875 new = stat_alloc (sizeof (new->trinary
));
876 memcpy (new, &value
, sizeof (new->trinary
));
881 exp_unop (int code
, etree_type
*child
)
883 etree_type value
, *new;
885 value
.unary
.type
.node_code
= code
;
886 value
.unary
.type
.lineno
= child
->type
.lineno
;
887 value
.unary
.child
= child
;
888 value
.unary
.type
.node_class
= etree_unary
;
889 exp_fold_tree_no_dot (&value
);
890 if (expld
.result
.valid_p
)
891 return exp_intop (expld
.result
.value
);
893 new = stat_alloc (sizeof (new->unary
));
894 memcpy (new, &value
, sizeof (new->unary
));
899 exp_nameop (int code
, const char *name
)
901 etree_type value
, *new;
903 value
.name
.type
.node_code
= code
;
904 value
.name
.type
.lineno
= lineno
;
905 value
.name
.name
= name
;
906 value
.name
.type
.node_class
= etree_name
;
908 exp_fold_tree_no_dot (&value
);
909 if (expld
.result
.valid_p
)
910 return exp_intop (expld
.result
.value
);
912 new = stat_alloc (sizeof (new->name
));
913 memcpy (new, &value
, sizeof (new->name
));
919 exp_assop (int code
, const char *dst
, etree_type
*src
)
923 new = stat_alloc (sizeof (new->assign
));
924 new->type
.node_code
= code
;
925 new->type
.lineno
= src
->type
.lineno
;
926 new->type
.node_class
= etree_assign
;
927 new->assign
.src
= src
;
928 new->assign
.dst
= dst
;
932 /* Handle PROVIDE. */
935 exp_provide (const char *dst
, etree_type
*src
, bfd_boolean hidden
)
939 n
= stat_alloc (sizeof (n
->assign
));
940 n
->assign
.type
.node_code
= '=';
941 n
->assign
.type
.lineno
= src
->type
.lineno
;
942 n
->assign
.type
.node_class
= etree_provide
;
945 n
->assign
.hidden
= hidden
;
952 exp_assert (etree_type
*exp
, const char *message
)
956 n
= stat_alloc (sizeof (n
->assert_s
));
957 n
->assert_s
.type
.node_code
= '!';
958 n
->assert_s
.type
.lineno
= exp
->type
.lineno
;
959 n
->assert_s
.type
.node_class
= etree_assert
;
960 n
->assert_s
.child
= exp
;
961 n
->assert_s
.message
= message
;
966 exp_print_tree (etree_type
*tree
)
968 if (config
.map_file
== NULL
)
969 config
.map_file
= stderr
;
973 minfo ("NULL TREE\n");
977 switch (tree
->type
.node_class
)
980 minfo ("0x%v", tree
->value
.value
);
983 if (tree
->rel
.section
->owner
!= NULL
)
984 minfo ("%B:", tree
->rel
.section
->owner
);
985 minfo ("%s+0x%v", tree
->rel
.section
->name
, tree
->rel
.value
);
988 fprintf (config
.map_file
, "%s", tree
->assign
.dst
);
989 exp_print_token (tree
->type
.node_code
, TRUE
);
990 exp_print_tree (tree
->assign
.src
);
994 fprintf (config
.map_file
, "PROVIDE (%s, ", tree
->assign
.dst
);
995 exp_print_tree (tree
->assign
.src
);
996 fprintf (config
.map_file
, ")");
999 fprintf (config
.map_file
, "(");
1000 exp_print_tree (tree
->binary
.lhs
);
1001 exp_print_token (tree
->type
.node_code
, TRUE
);
1002 exp_print_tree (tree
->binary
.rhs
);
1003 fprintf (config
.map_file
, ")");
1006 exp_print_tree (tree
->trinary
.cond
);
1007 fprintf (config
.map_file
, "?");
1008 exp_print_tree (tree
->trinary
.lhs
);
1009 fprintf (config
.map_file
, ":");
1010 exp_print_tree (tree
->trinary
.rhs
);
1013 exp_print_token (tree
->unary
.type
.node_code
, FALSE
);
1014 if (tree
->unary
.child
)
1016 fprintf (config
.map_file
, " (");
1017 exp_print_tree (tree
->unary
.child
);
1018 fprintf (config
.map_file
, ")");
1023 fprintf (config
.map_file
, "ASSERT (");
1024 exp_print_tree (tree
->assert_s
.child
);
1025 fprintf (config
.map_file
, ", %s)", tree
->assert_s
.message
);
1029 if (tree
->type
.node_code
== NAME
)
1031 fprintf (config
.map_file
, "%s", tree
->name
.name
);
1035 exp_print_token (tree
->type
.node_code
, FALSE
);
1036 if (tree
->name
.name
)
1037 fprintf (config
.map_file
, " (%s)", tree
->name
.name
);
1047 exp_get_vma (etree_type
*tree
, bfd_vma def
, char *name
)
1051 exp_fold_tree_no_dot (tree
);
1052 if (expld
.result
.valid_p
)
1053 return expld
.result
.value
;
1054 else if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1055 einfo (_("%F%S nonconstant expression for %s\n"), name
);
1061 exp_get_value_int (etree_type
*tree
, int def
, char *name
)
1063 return exp_get_vma (tree
, def
, name
);
1067 exp_get_fill (etree_type
*tree
, fill_type
*def
, char *name
)
1076 exp_fold_tree_no_dot (tree
);
1077 if (!expld
.result
.valid_p
)
1079 if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1080 einfo (_("%F%S nonconstant expression for %s\n"), name
);
1084 if (expld
.result
.str
!= NULL
&& (len
= strlen (expld
.result
.str
)) != 0)
1088 fill
= xmalloc ((len
+ 1) / 2 + sizeof (*fill
) - 1);
1089 fill
->size
= (len
+ 1) / 2;
1091 s
= (unsigned char *) expld
.result
.str
;
1099 digit
= (digit
- 'A' + '0' + 10) & 0xf;
1113 fill
= xmalloc (4 + sizeof (*fill
) - 1);
1114 val
= expld
.result
.value
;
1115 fill
->data
[0] = (val
>> 24) & 0xff;
1116 fill
->data
[1] = (val
>> 16) & 0xff;
1117 fill
->data
[2] = (val
>> 8) & 0xff;
1118 fill
->data
[3] = (val
>> 0) & 0xff;
1125 exp_get_abs_int (etree_type
*tree
, int def
, char *name
)
1129 exp_fold_tree_no_dot (tree
);
1131 if (expld
.result
.valid_p
)
1133 expld
.result
.value
+= expld
.result
.section
->vma
;
1134 return expld
.result
.value
;
1136 else if (name
!= NULL
&& expld
.phase
!= lang_mark_phase_enum
)
1138 lineno
= tree
->type
.lineno
;
1139 einfo (_("%F%S: nonconstant expression for %s\n"), name
);
1146 align_n (bfd_vma value
, bfd_vma align
)
1151 value
= (value
+ align
- 1) / align
;
1152 return value
* align
;