2 Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2007 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. */
25 /* The result of an expression tree */
50 typedef union etree_union
{
54 union etree_union
*lhs
;
55 union etree_union
*rhs
;
59 union etree_union
*cond
;
60 union etree_union
*lhs
;
61 union etree_union
*rhs
;
66 union etree_union
*src
;
71 union etree_union
*child
;
89 union etree_union
*child
;
95 lang_first_phase_enum
,
97 lang_allocating_phase_enum
,
101 struct ldexp_control
{
102 /* Modify expression evaluation depending on this. */
103 lang_phase_type phase
;
105 /* Principally used for diagnostics. */
106 bfd_boolean assigning_to_dot
;
108 /* Working results. */
109 etree_value_type result
;
112 /* Current dot and section passed to ldexp folder. */
116 /* State machine and results for DATASEG. */
120 exp_dataseg_align_seen
,
121 exp_dataseg_relro_seen
,
122 exp_dataseg_end_seen
,
123 exp_dataseg_relro_adjust
,
127 bfd_vma base
, min_base
, relro_end
, end
, pagesize
, maxpagesize
;
131 extern struct ldexp_control expld
;
133 /* A maps from a segment name to a base address. */
134 typedef struct segment_struct
{
135 /* The next segment in the linked list. */
136 struct segment_struct
*next
;
137 /* The name of the sgement. */
139 /* The base address for the segment. */
141 /* True if a SEGMENT_START directive corresponding to this segment
146 /* The segments specified by the user on the command-line. */
147 extern segment_type
*segments
;
149 typedef struct _fill_type fill_type
;
151 etree_type
*exp_intop
153 etree_type
*exp_bigintop
155 etree_type
*exp_relop
156 (asection
*, bfd_vma
);
158 (etree_type
*, asection
*, bfd_vma
*);
159 etree_type
*exp_binop
160 (int, etree_type
*, etree_type
*);
161 etree_type
*exp_trinop
162 (int,etree_type
*, etree_type
*, etree_type
*);
165 etree_type
*exp_nameop
167 etree_type
*exp_assop
168 (int, const char *, etree_type
*);
169 etree_type
*exp_provide
170 (const char *, etree_type
*, bfd_boolean
);
171 etree_type
*exp_assert
172 (etree_type
*, const char *);
176 (etree_type
*, bfd_vma
, char *);
177 int exp_get_value_int
178 (etree_type
*, int, char *);
179 fill_type
*exp_get_fill
180 (etree_type
*, fill_type
*, char *);
181 bfd_vma exp_get_abs_int
182 (etree_type
*, int, char *);