daily update
[binutils.git] / ld / ldexp.h
blobfc7485fc5886425b2a2ab8c9fe08c577c15f01b5
1 /* ldexp.h -
2 Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2007, 2011, 2012 Free Software Foundation, Inc.
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. */
22 #ifndef LDEXP_H
23 #define LDEXP_H
25 /* The result of an expression tree */
26 typedef struct {
27 bfd_vma value;
28 char *str;
29 asection *section;
30 bfd_boolean valid_p;
31 } etree_value_type;
33 enum node_tree_enum {
34 etree_binary,
35 etree_trinary,
36 etree_unary,
37 etree_name,
38 etree_assign,
39 etree_provide,
40 etree_provided,
41 etree_value,
42 etree_assert,
43 etree_rel
46 typedef struct {
47 int node_code;
48 unsigned int lineno;
49 const char *filename;
50 enum node_tree_enum node_class;
51 } node_type;
53 typedef union etree_union {
54 node_type type;
55 struct {
56 node_type type;
57 union etree_union *lhs;
58 union etree_union *rhs;
59 } binary;
60 struct {
61 node_type type;
62 union etree_union *cond;
63 union etree_union *lhs;
64 union etree_union *rhs;
65 } trinary;
66 struct {
67 node_type type;
68 const char *dst;
69 union etree_union *src;
70 bfd_boolean hidden;
71 } assign;
72 struct {
73 node_type type;
74 union etree_union *child;
75 } unary;
76 struct {
77 node_type type;
78 const char *name;
79 } name;
80 struct {
81 node_type type;
82 bfd_vma value;
83 char *str;
84 } value;
85 struct {
86 node_type type;
87 asection *section;
88 bfd_vma value;
89 } rel;
90 struct {
91 node_type type;
92 union etree_union *child;
93 const char *message;
94 } assert_s;
95 } etree_type;
97 typedef enum {
98 lang_first_phase_enum,
99 lang_mark_phase_enum,
100 lang_allocating_phase_enum,
101 lang_assigning_phase_enum,
102 lang_final_phase_enum
103 } lang_phase_type;
105 union lang_statement_union;
107 enum phase_enum {
108 /* We step through the first four states here as we see the
109 associated linker script tokens. */
110 exp_dataseg_none,
111 exp_dataseg_align_seen,
112 exp_dataseg_relro_seen,
113 exp_dataseg_end_seen,
114 /* The last three states are final, and affect the value returned
115 by DATA_SEGMENT_ALIGN. */
116 exp_dataseg_relro_adjust,
117 exp_dataseg_adjust,
118 exp_dataseg_done
121 enum relro_enum {
122 exp_dataseg_relro_none,
123 exp_dataseg_relro_start,
124 exp_dataseg_relro_end,
127 struct ldexp_control {
128 /* Modify expression evaluation depending on this. */
129 lang_phase_type phase;
131 /* Principally used for diagnostics. */
132 bfd_boolean assigning_to_dot;
134 /* Working results. */
135 etree_value_type result;
136 bfd_vma dot;
138 /* Current dot and section passed to ldexp folder. */
139 bfd_vma *dotp;
140 asection *section;
142 /* State machine and results for DATASEG. */
143 struct {
144 enum phase_enum phase;
146 bfd_vma base, min_base, relro_end, end, pagesize, maxpagesize;
148 enum relro_enum relro;
150 union lang_statement_union *relro_start_stat;
151 union lang_statement_union *relro_end_stat;
152 } dataseg;
155 extern struct ldexp_control expld;
157 /* A maps from a segment name to a base address. */
158 typedef struct segment_struct {
159 /* The next segment in the linked list. */
160 struct segment_struct *next;
161 /* The name of the sgement. */
162 const char *name;
163 /* The base address for the segment. */
164 bfd_vma value;
165 /* True if a SEGMENT_START directive corresponding to this segment
166 has been seen. */
167 bfd_boolean used;
168 } segment_type;
170 /* The segments specified by the user on the command-line. */
171 extern segment_type *segments;
173 typedef struct _fill_type fill_type;
175 etree_type *exp_intop
176 (bfd_vma);
177 etree_type *exp_bigintop
178 (bfd_vma, char *);
179 etree_type *exp_relop
180 (asection *, bfd_vma);
181 void exp_fold_tree
182 (etree_type *, asection *, bfd_vma *);
183 void exp_fold_tree_no_dot
184 (etree_type *);
185 etree_type *exp_binop
186 (int, etree_type *, etree_type *);
187 etree_type *exp_trinop
188 (int,etree_type *, etree_type *, etree_type *);
189 etree_type *exp_unop
190 (int, etree_type *);
191 etree_type *exp_nameop
192 (int, const char *);
193 etree_type *exp_assign
194 (const char *, etree_type *);
195 etree_type *exp_defsym
196 (const char *, etree_type *);
197 etree_type *exp_provide
198 (const char *, etree_type *, bfd_boolean);
199 etree_type *exp_assert
200 (etree_type *, const char *);
201 void exp_print_tree
202 (etree_type *);
203 bfd_vma exp_get_vma
204 (etree_type *, bfd_vma, char *);
205 int exp_get_value_int
206 (etree_type *, int, char *);
207 fill_type *exp_get_fill
208 (etree_type *, fill_type *, char *);
209 bfd_vma exp_get_abs_int
210 (etree_type *, int, char *);
212 #endif