2 Copyright (C) 1991-2017 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
24 /* The result of an expression tree */
49 enum node_tree_enum node_class;
52 typedef union etree_union {
56 union etree_union *lhs;
57 union etree_union *rhs;
61 union etree_union *cond;
62 union etree_union *lhs;
63 union etree_union *rhs;
68 union etree_union *src;
74 union etree_union *child;
92 union etree_union *child;
97 /* Expression evaluation control. */
100 /* Parsing linker script. Will only return "valid" for expressions
101 that evaluate to a constant. */
102 lang_first_phase_enum,
103 /* Prior to section sizing. */
104 lang_mark_phase_enum,
105 /* During section sizing. */
106 lang_allocating_phase_enum,
107 /* During assignment of symbol values when relaxation in progress. */
108 lang_assigning_phase_enum,
109 /* Final assignment of symbol values. */
110 lang_final_phase_enum
113 union lang_statement_union;
116 /* We step through the first four states here as we see the
117 associated linker script tokens. */
122 /* The last three states are final, and affect the value returned
123 by XXX_SEGMENT_ALIGN. */
124 exp_seg_relro_adjust,
136 enum phase_enum phase;
138 bfd_vma base, relro_offset, relro_end, end, pagesize, maxpagesize;
140 enum relro_enum relro;
142 union lang_statement_union *relro_start_stat;
143 union lang_statement_union *relro_end_stat;
146 struct ldexp_control {
147 /* Modify expression evaluation depending on this. */
148 lang_phase_type phase;
150 /* Principally used for diagnostics. */
151 bfd_boolean assigning_to_dot;
153 /* Set if the current expression used "dot", SEGMENT_START or
154 ORIGIN, but not ABSOLUTE or combined symbols in a way that forces
155 an absolute result. Used in tracking symbols assigned from dot
156 outside of output section statements, in order to later convert
157 them from absolute. */
158 bfd_boolean rel_from_abs;
160 /* If evaluating an assignment, the destination. Cleared if an
161 etree_name NAME matches this, to signal a self-assignment.
162 Note that an etree_name DEFINED does not clear this field, nor
163 does the false branch of a trinary expression. */
164 const char *assign_name;
166 /* Working results. */
167 etree_value_type result;
170 /* Current dot and section passed to ldexp folder. */
174 /* State machine and results for DATASEG. */
175 seg_align_type dataseg;
178 extern struct ldexp_control expld;
180 /* A maps from a segment name to a base address. */
181 typedef struct segment_struct {
182 /* The next segment in the linked list. */
183 struct segment_struct *next;
184 /* The name of the sgement. */
186 /* The base address for the segment. */
188 /* True if a SEGMENT_START directive corresponding to this segment
193 /* The segments specified by the user on the command-line. */
194 extern segment_type *segments;
196 typedef struct _fill_type fill_type;
198 etree_type *exp_intop
200 etree_type *exp_bigintop
202 etree_type *exp_relop
203 (asection *, bfd_vma);
205 (etree_type *, asection *, bfd_vma *);
206 void exp_fold_tree_no_dot
208 etree_type *exp_binop
209 (int, etree_type *, etree_type *);
210 etree_type *exp_trinop
211 (int,etree_type *, etree_type *, etree_type *);
214 etree_type *exp_nameop
216 etree_type *exp_assign
217 (const char *, etree_type *, bfd_boolean);
218 etree_type *exp_defsym
219 (const char *, etree_type *);
220 etree_type *exp_provide
221 (const char *, etree_type *, bfd_boolean);
222 etree_type *exp_assert
223 (etree_type *, const char *);
227 (etree_type *, bfd_vma, char *);
228 int exp_get_value_int
229 (etree_type *, int, char *);
230 fill_type *exp_get_fill
231 (etree_type *, fill_type *, char *);
232 bfd_vma exp_get_abs_int
233 (etree_type *, int, char *);
234 void ldexp_init (void);
235 void ldexp_finalize_syms (void);
236 void ldexp_finish (void);