2000-10-09 Kazu Hirata <kazu@hxi.com>
[deliverable/binutils-gdb.git] / ld / ldlang.h
1 /* ldlang.h - linker command language support
2 Copyright 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
4
5 This file is part of GLD, the Gnu Linker.
6
7 GLD 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 1, or (at your option)
10 any later version.
11
12 GLD 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.
16
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22 #ifndef LDLANG_H
23 #define LDLANG_H
24
25 typedef enum {
26 lang_input_file_is_l_enum,
27 lang_input_file_is_symbols_only_enum,
28 lang_input_file_is_marker_enum,
29 lang_input_file_is_fake_enum,
30 lang_input_file_is_search_file_enum,
31 lang_input_file_is_file_enum
32 } lang_input_file_enum_type;
33
34 typedef unsigned int fill_type;
35
36 typedef struct statement_list {
37 union lang_statement_union *head;
38 union lang_statement_union **tail;
39 } lang_statement_list_type;
40
41 typedef struct memory_region_struct {
42 char *name;
43 struct memory_region_struct *next;
44 bfd_vma origin;
45 bfd_size_type length;
46 bfd_vma current;
47 bfd_size_type old_length;
48 flagword flags;
49 flagword not_flags;
50 boolean had_full_message;
51 } lang_memory_region_type;
52
53 typedef struct lang_statement_header_struct {
54 union lang_statement_union *next;
55 enum statement_enum {
56 lang_output_section_statement_enum,
57 lang_assignment_statement_enum,
58 lang_input_statement_enum,
59 lang_address_statement_enum,
60 lang_wild_statement_enum,
61 lang_input_section_enum,
62 lang_object_symbols_statement_enum,
63 lang_fill_statement_enum,
64 lang_data_statement_enum,
65 lang_reloc_statement_enum,
66 lang_target_statement_enum,
67 lang_output_statement_enum,
68 lang_padding_statement_enum,
69 lang_group_statement_enum,
70
71 lang_afile_asection_pair_statement_enum,
72 lang_constructors_statement_enum
73 } type;
74 } lang_statement_header_type;
75
76 typedef struct {
77 lang_statement_header_type header;
78 union etree_union *exp;
79 } lang_assignment_statement_type;
80
81 typedef struct lang_target_statement_struct {
82 lang_statement_header_type header;
83 const char *target;
84 } lang_target_statement_type;
85
86 typedef struct lang_output_statement_struct {
87 lang_statement_header_type header;
88 const char *name;
89 } lang_output_statement_type;
90
91 /* Section types specified in a linker script. */
92
93 enum section_type {
94 normal_section,
95 dsect_section,
96 copy_section,
97 noload_section,
98 info_section,
99 overlay_section
100 };
101
102 /* This structure holds a list of program headers describing segments
103 in which this section should be placed. */
104
105 struct lang_output_section_phdr_list {
106 struct lang_output_section_phdr_list *next;
107 const char *name;
108 boolean used;
109 };
110
111 typedef struct lang_output_section_statement_struct {
112 lang_statement_header_type header;
113 union etree_union *addr_tree;
114 lang_statement_list_type children;
115 const char *memspec;
116 union lang_statement_union *next;
117 const char *name;
118
119 boolean processed;
120
121 asection *bfd_section;
122 flagword flags; /* Or together of all input sections */
123 enum section_type sectype;
124 struct memory_region_struct *region;
125 struct memory_region_struct *lma_region;
126 size_t block_value;
127 fill_type fill;
128
129 int subsection_alignment; /* alignment of components */
130 int section_alignment; /* alignment of start of section */
131
132 union etree_union *load_base;
133
134 struct lang_output_section_phdr_list *phdrs;
135 } lang_output_section_statement_type;
136
137 typedef struct {
138 lang_statement_header_type header;
139 } lang_common_statement_type;
140
141 typedef struct {
142 lang_statement_header_type header;
143 } lang_object_symbols_statement_type;
144
145 typedef struct {
146 lang_statement_header_type header;
147 fill_type fill;
148 int size;
149 asection *output_section;
150 } lang_fill_statement_type;
151
152 typedef struct {
153 lang_statement_header_type header;
154 unsigned int type;
155 union etree_union *exp;
156 bfd_vma value;
157 asection *output_section;
158 bfd_vma output_vma;
159 } lang_data_statement_type;
160
161 /* Generate a reloc in the output file. */
162
163 typedef struct {
164 lang_statement_header_type header;
165
166 /* Reloc to generate. */
167 bfd_reloc_code_real_type reloc;
168
169 /* Reloc howto structure. */
170 reloc_howto_type *howto;
171
172 /* Section to generate reloc against. Exactly one of section and
173 name must be NULL. */
174 asection *section;
175
176 /* Name of symbol to generate reloc against. Exactly one of section
177 and name must be NULL. */
178 const char *name;
179
180 /* Expression for addend. */
181 union etree_union *addend_exp;
182
183 /* Resolved addend. */
184 bfd_vma addend_value;
185
186 /* Output section where reloc should be performed. */
187 asection *output_section;
188
189 /* VMA within output section. */
190 bfd_vma output_vma;
191 } lang_reloc_statement_type;
192
193 typedef struct lang_input_statement_struct {
194 lang_statement_header_type header;
195 /* Name of this file. */
196 const char *filename;
197 /* Name to use for the symbol giving address of text start */
198 /* Usually the same as filename, but for a file spec'd with -l
199 this is the -l switch itself rather than the filename. */
200 const char *local_sym_name;
201
202 bfd *the_bfd;
203
204 boolean closed;
205 file_ptr passive_position;
206
207 /* Symbol table of the file. */
208 asymbol **asymbols;
209 unsigned int symbol_count;
210
211 /* Point to the next file - whatever it is, wanders up and down
212 archives */
213
214 union lang_statement_union *next;
215 /* Point to the next file, but skips archive contents */
216 union lang_statement_union *next_real_file;
217
218 boolean is_archive;
219
220 /* 1 means search a set of directories for this file. */
221 boolean search_dirs_flag;
222
223 /* 1 means this is base file of incremental load.
224 Do not load this file's text or data.
225 Also default text_start to after this file's bss. */
226
227 boolean just_syms_flag;
228
229 /* Whether to search for this entry as a dynamic archive. */
230 boolean dynamic;
231
232 /* Whether to include the entire contents of an archive. */
233 boolean whole_archive;
234
235 boolean loaded;
236
237 #if 0
238 unsigned int globals_in_this_file;
239 #endif
240 const char *target;
241 boolean real;
242 } lang_input_statement_type;
243
244 typedef struct {
245 lang_statement_header_type header;
246 asection *section;
247 lang_input_statement_type *ifile;
248
249 } lang_input_section_type;
250
251 typedef struct {
252 lang_statement_header_type header;
253 asection *section;
254 union lang_statement_union *file;
255 } lang_afile_asection_pair_statement_type;
256
257 typedef struct lang_wild_statement_struct {
258 lang_statement_header_type header;
259 const char *section_name;
260 boolean sections_sorted;
261 const char *filename;
262 boolean filenames_sorted;
263 boolean keep_sections;
264 struct name_list *exclude_filename_list;
265 lang_statement_list_type children;
266 } lang_wild_statement_type;
267
268 typedef struct lang_address_statement_struct {
269 lang_statement_header_type header;
270 const char *section_name;
271 union etree_union *address;
272 } lang_address_statement_type;
273
274 typedef struct {
275 lang_statement_header_type header;
276 bfd_vma output_offset;
277 size_t size;
278 asection *output_section;
279 fill_type fill;
280 } lang_padding_statement_type;
281
282 /* A group statement collects a set of libraries together. The
283 libraries are searched multiple times, until no new undefined
284 symbols are found. The effect is to search a group of libraries as
285 though they were a single library. */
286
287 typedef struct {
288 lang_statement_header_type header;
289 lang_statement_list_type children;
290 } lang_group_statement_type;
291
292 typedef union lang_statement_union {
293 lang_statement_header_type header;
294 union lang_statement_union *next;
295 lang_wild_statement_type wild_statement;
296 lang_data_statement_type data_statement;
297 lang_reloc_statement_type reloc_statement;
298 lang_address_statement_type address_statement;
299 lang_output_section_statement_type output_section_statement;
300 lang_afile_asection_pair_statement_type afile_asection_pair_statement;
301 lang_assignment_statement_type assignment_statement;
302 lang_input_statement_type input_statement;
303 lang_target_statement_type target_statement;
304 lang_output_statement_type output_statement;
305 lang_input_section_type input_section;
306 lang_common_statement_type common_statement;
307 lang_object_symbols_statement_type object_symbols_statement;
308 lang_fill_statement_type fill_statement;
309 lang_padding_statement_type padding_statement;
310 lang_group_statement_type group_statement;
311 } lang_statement_union_type;
312
313 /* This structure holds information about a program header, from the
314 PHDRS command in the linker script. */
315
316 struct lang_phdr {
317 struct lang_phdr *next;
318 const char *name;
319 unsigned long type;
320 boolean filehdr;
321 boolean phdrs;
322 etree_type *at;
323 etree_type *flags;
324 };
325
326 /* This structure is used to hold a list of sections which may not
327 cross reference each other. */
328
329 struct lang_nocrossref {
330 struct lang_nocrossref *next;
331 const char *name;
332 };
333
334 /* The list of nocrossref lists. */
335
336 struct lang_nocrossrefs {
337 struct lang_nocrossrefs *next;
338 struct lang_nocrossref *list;
339 };
340
341 extern struct lang_nocrossrefs *nocrossref_list;
342
343 extern lang_output_section_statement_type *abs_output_section;
344 extern lang_statement_list_type lang_output_section_statement;
345 extern boolean lang_has_input_file;
346 extern etree_type *base;
347 extern lang_statement_list_type *stat_ptr;
348 extern boolean delete_output_file_on_failure;
349
350 extern const char *entry_symbol;
351 extern boolean entry_from_cmdline;
352 extern lang_statement_list_type file_chain;
353
354 extern void lang_init PARAMS ((void));
355 extern struct memory_region_struct *lang_memory_region_lookup
356 PARAMS ((const char *const));
357 extern struct memory_region_struct *lang_memory_region_default
358 PARAMS ((asection *));
359 extern void lang_map PARAMS ((void));
360 extern void lang_set_flags PARAMS ((lang_memory_region_type *, const char *,
361 int));
362 extern void lang_add_output PARAMS ((const char *, int from_script));
363 extern lang_output_section_statement_type *lang_enter_output_section_statement
364 PARAMS ((const char *output_section_statement_name,
365 etree_type * address_exp,
366 enum section_type sectype,
367 bfd_vma block_value,
368 etree_type *align,
369 etree_type *subalign,
370 etree_type *));
371 extern void lang_final PARAMS ((void));
372 extern void lang_process PARAMS ((void));
373 extern void lang_section_start PARAMS ((const char *, union etree_union *));
374 extern void lang_add_entry PARAMS ((const char *, boolean));
375 extern void lang_add_target PARAMS ((const char *));
376 extern void lang_add_wild
377 PARAMS ((const char *, boolean, const char *, boolean, boolean, name_list *));
378 extern void lang_add_map PARAMS ((const char *));
379 extern void lang_add_fill PARAMS ((int));
380 extern lang_assignment_statement_type * lang_add_assignment PARAMS ((union etree_union *));
381 extern void lang_add_attribute PARAMS ((enum statement_enum));
382 extern void lang_startup PARAMS ((const char *));
383 extern void lang_float PARAMS ((enum bfd_boolean));
384 extern void lang_leave_output_section_statement
385 PARAMS ((bfd_vma, const char *, struct lang_output_section_phdr_list *,
386 const char *));
387 extern void lang_abs_symbol_at_end_of PARAMS ((const char *, const char *));
388 extern void lang_abs_symbol_at_beginning_of PARAMS ((const char *,
389 const char *));
390 extern void lang_statement_append PARAMS ((struct statement_list *,
391 union lang_statement_union *,
392 union lang_statement_union **));
393 extern void lang_for_each_input_file
394 PARAMS ((void (*dothis) (lang_input_statement_type *)));
395 extern void lang_for_each_file
396 PARAMS ((void (*dothis) (lang_input_statement_type *)));
397 extern bfd_vma lang_do_assignments
398 PARAMS ((lang_statement_union_type * s,
399 lang_output_section_statement_type *output_section_statement,
400 fill_type fill,
401 bfd_vma dot));
402
403 #define LANG_FOR_EACH_INPUT_STATEMENT(statement) \
404 lang_input_statement_type *statement; \
405 for (statement = (lang_input_statement_type *)file_chain.head;\
406 statement != (lang_input_statement_type *)NULL; \
407 statement = (lang_input_statement_type *)statement->next)\
408
409 extern void lang_process PARAMS ((void));
410 extern void ldlang_add_file PARAMS ((lang_input_statement_type *));
411 extern lang_output_section_statement_type *lang_output_section_find
412 PARAMS ((const char * const));
413 extern lang_input_statement_type *lang_add_input_file
414 PARAMS ((const char *name, lang_input_file_enum_type file_type,
415 const char *target));
416 extern void lang_add_keepsyms_file PARAMS ((const char *filename));
417 extern lang_output_section_statement_type *
418 lang_output_section_statement_lookup PARAMS ((const char * const name));
419 extern void ldlang_add_undef PARAMS ((const char *const name));
420 extern void lang_add_output_format PARAMS ((const char *, const char *,
421 const char *, int from_script));
422 extern void lang_list_init PARAMS ((lang_statement_list_type*));
423 extern void lang_add_data PARAMS ((int type, union etree_union *));
424 extern void lang_add_reloc
425 PARAMS ((bfd_reloc_code_real_type reloc, reloc_howto_type *howto,
426 asection *section, const char *name, union etree_union *addend));
427 extern void lang_for_each_statement
428 PARAMS ((void (*func) (lang_statement_union_type *)));
429 extern PTR stat_alloc PARAMS ((size_t size));
430 extern void dprint_statement PARAMS ((lang_statement_union_type *, int));
431 extern bfd_vma lang_size_sections
432 PARAMS ((lang_statement_union_type *s,
433 lang_output_section_statement_type *output_section_statement,
434 lang_statement_union_type **prev, fill_type fill,
435 bfd_vma dot, boolean relax));
436 extern void lang_enter_group PARAMS ((void));
437 extern void lang_leave_group PARAMS ((void));
438 extern void wild_doit
439 PARAMS ((lang_statement_list_type *ptr, asection *section,
440 lang_output_section_statement_type *output,
441 lang_input_statement_type *file));
442 extern void lang_new_phdr
443 PARAMS ((const char *, etree_type *, boolean, boolean, etree_type *,
444 etree_type *));
445 extern void lang_add_nocrossref PARAMS ((struct lang_nocrossref *));
446 extern void lang_enter_overlay PARAMS ((etree_type *, etree_type *, int));
447 extern void lang_enter_overlay_section PARAMS ((const char *));
448 extern void lang_leave_overlay_section
449 PARAMS ((bfd_vma, struct lang_output_section_phdr_list *));
450 extern void lang_leave_overlay
451 PARAMS ((bfd_vma, const char *, struct lang_output_section_phdr_list *,
452 const char *));
453
454 extern struct bfd_elf_version_tree *lang_elf_version_info;
455
456 extern struct bfd_elf_version_expr *lang_new_vers_regex
457 PARAMS ((struct bfd_elf_version_expr *, const char *, const char *));
458 extern struct bfd_elf_version_tree *lang_new_vers_node
459 PARAMS ((struct bfd_elf_version_expr *, struct bfd_elf_version_expr *));
460 extern struct bfd_elf_version_deps *lang_add_vers_depend
461 PARAMS ((struct bfd_elf_version_deps *, const char *));
462 extern void lang_register_vers_node
463 PARAMS ((const char *, struct bfd_elf_version_tree *,
464 struct bfd_elf_version_deps *));
465
466 #endif
This page took 0.04458 seconds and 4 git commands to generate.