1999-05-03 09:29:11 +02:00
|
|
|
|
/* Linker command language support.
|
2001-03-13 07:14:29 +01:00
|
|
|
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
2001, 2002, 2003
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
2002-10-07 18:08:21 +02:00
|
|
|
|
This file is part of GLD, the Gnu Linker.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-10-07 18:08:21 +02:00
|
|
|
|
GLD is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-10-07 18:08:21 +02:00
|
|
|
|
GLD is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-10-07 18:08:21 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GLD; see the file COPYING. If not, write to the Free
|
|
|
|
|
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
|
02111-1307, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
#include "libiberty.h"
|
2001-09-19 07:33:36 +02:00
|
|
|
|
#include "safe-ctype.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "obstack.h"
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
|
#include "ldmain.h"
|
|
|
|
|
#include "ldexp.h"
|
|
|
|
|
#include "ldlang.h"
|
2002-10-30 04:57:39 +01:00
|
|
|
|
#include <ldgram.h>
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "ldlex.h"
|
|
|
|
|
#include "ldmisc.h"
|
|
|
|
|
#include "ldctor.h"
|
|
|
|
|
#include "ldfile.h"
|
2000-07-11 05:42:41 +02:00
|
|
|
|
#include "ldemul.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "fnmatch.h"
|
|
|
|
|
#include "demangle.h"
|
|
|
|
|
|
2002-08-21 01:48:18 +02:00
|
|
|
|
#ifndef offsetof
|
2003-02-21 11:51:24 +01:00
|
|
|
|
#define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
|
2002-08-21 01:48:18 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-21 11:51:24 +01:00
|
|
|
|
/* Locals variables. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static struct obstack stat_obstack;
|
|
|
|
|
|
|
|
|
|
#define obstack_chunk_alloc xmalloc
|
|
|
|
|
#define obstack_chunk_free free
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static const char *startup_file;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static lang_statement_list_type input_file_chain;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean placed_commons = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static lang_output_section_statement_type *default_common_section;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean map_option_f;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static bfd_vma print_dot;
|
|
|
|
|
static lang_input_statement_type *first_file;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static const char *current_target;
|
|
|
|
|
static const char *output_target;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static lang_statement_list_type statement_list;
|
|
|
|
|
static struct lang_phdr *lang_phdr_list;
|
|
|
|
|
|
2003-02-21 11:51:24 +01:00
|
|
|
|
/* Forward declarations. */
|
|
|
|
|
static lang_statement_union_type *new_statement
|
|
|
|
|
PARAMS ((enum statement_enum, size_t, lang_statement_list_type *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void lang_for_each_statement_worker
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((void (*) (lang_statement_union_type *),
|
|
|
|
|
lang_statement_union_type *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static lang_input_statement_type *new_afile
|
2002-11-30 09:39:46 +01:00
|
|
|
|
PARAMS ((const char *, lang_input_file_enum_type, const char *,
|
|
|
|
|
bfd_boolean));
|
|
|
|
|
static lang_memory_region_type *lang_memory_default
|
|
|
|
|
PARAMS ((asection *));
|
|
|
|
|
static void lang_map_flags
|
|
|
|
|
PARAMS ((flagword));
|
|
|
|
|
static void init_os
|
|
|
|
|
PARAMS ((lang_output_section_statement_type *));
|
|
|
|
|
static void exp_init_os
|
|
|
|
|
PARAMS ((etree_type *));
|
|
|
|
|
static void section_already_linked
|
|
|
|
|
PARAMS ((bfd *, asection *, PTR));
|
1999-11-02 00:37:48 +01:00
|
|
|
|
static struct bfd_hash_entry *already_linked_newfunc
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void already_linked_table_init
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void already_linked_table_free
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static bfd_boolean wildcardp
|
|
|
|
|
PARAMS ((const char *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static lang_statement_union_type *wild_sort
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, struct wildcard_list *,
|
|
|
|
|
lang_input_statement_type *, asection *));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static void output_section_callback
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, struct wildcard_list *, asection *,
|
2000-09-05 05:21:16 +02:00
|
|
|
|
lang_input_statement_type *, PTR));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static lang_input_statement_type *lookup_name
|
|
|
|
|
PARAMS ((const char *));
|
|
|
|
|
static bfd_boolean load_symbols
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((lang_input_statement_type *, lang_statement_list_type *));
|
|
|
|
|
static void wild
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *,
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *, lang_output_section_statement_type *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd *open_output
|
|
|
|
|
PARAMS ((const char *));
|
|
|
|
|
static void ldlang_open_output
|
|
|
|
|
PARAMS ((lang_statement_union_type *));
|
|
|
|
|
static void open_input_bfds
|
|
|
|
|
PARAMS ((lang_statement_union_type *, bfd_boolean));
|
|
|
|
|
static void lang_reasonable_defaults
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void insert_undefined
|
|
|
|
|
PARAMS ((const char *));
|
|
|
|
|
static void lang_place_undefineds
|
|
|
|
|
PARAMS ((void));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void map_input_to_output_sections
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((lang_statement_union_type *, const char *,
|
|
|
|
|
lang_output_section_statement_type *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void strip_excluded_output_sections
|
|
|
|
|
PARAMS ((void));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void print_output_section_statement
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((lang_output_section_statement_type *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void print_assignment
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((lang_assignment_statement_type *,
|
|
|
|
|
lang_output_section_statement_type *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void print_input_statement
|
|
|
|
|
PARAMS ((lang_input_statement_type *));
|
|
|
|
|
static bfd_boolean print_one_symbol
|
|
|
|
|
PARAMS ((struct bfd_link_hash_entry *, PTR));
|
|
|
|
|
static void print_input_section
|
|
|
|
|
PARAMS ((lang_input_section_type *));
|
|
|
|
|
static void print_fill_statement
|
|
|
|
|
PARAMS ((lang_fill_statement_type *));
|
|
|
|
|
static void print_data_statement
|
|
|
|
|
PARAMS ((lang_data_statement_type *));
|
|
|
|
|
static void print_address_statement
|
|
|
|
|
PARAMS ((lang_address_statement_type *));
|
|
|
|
|
static void print_reloc_statement
|
|
|
|
|
PARAMS ((lang_reloc_statement_type *));
|
|
|
|
|
static void print_padding_statement
|
|
|
|
|
PARAMS ((lang_padding_statement_type *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void print_wild_statement
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, lang_output_section_statement_type *));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void print_group
|
|
|
|
|
PARAMS ((lang_group_statement_type *, lang_output_section_statement_type *));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static void print_statement
|
|
|
|
|
PARAMS ((lang_statement_union_type *, lang_output_section_statement_type *));
|
|
|
|
|
static void print_statement_list
|
|
|
|
|
PARAMS ((lang_statement_union_type *, lang_output_section_statement_type *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void print_statements
|
|
|
|
|
PARAMS ((void));
|
2001-08-18 16:54:26 +02:00
|
|
|
|
static void insert_pad
|
2002-02-15 03:11:05 +01:00
|
|
|
|
PARAMS ((lang_statement_union_type **, fill_type *,
|
2000-11-30 20:30:33 +01:00
|
|
|
|
unsigned int, asection *, bfd_vma));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static bfd_vma size_input_section
|
2000-11-30 20:30:33 +01:00
|
|
|
|
PARAMS ((lang_statement_union_type **, lang_output_section_statement_type *,
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *, bfd_vma));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void lang_finish
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void ignore_bfd_errors
|
|
|
|
|
PARAMS ((const char *, ...));
|
|
|
|
|
static void lang_check
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void lang_common
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static bfd_boolean lang_one_common
|
|
|
|
|
PARAMS ((struct bfd_link_hash_entry *, PTR));
|
|
|
|
|
static void lang_place_orphans
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static int topower
|
|
|
|
|
PARAMS ((int));
|
|
|
|
|
static void lang_set_startof
|
|
|
|
|
PARAMS ((void));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static void gc_section_callback
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, struct wildcard_list *, asection *,
|
2000-09-05 05:21:16 +02:00
|
|
|
|
lang_input_statement_type *, PTR));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void lang_get_regions
|
|
|
|
|
PARAMS ((struct memory_region_struct **, struct memory_region_struct **,
|
|
|
|
|
const char *, const char *, int));
|
|
|
|
|
static void lang_record_phdrs
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void lang_gc_wild
|
|
|
|
|
PARAMS ((lang_wild_statement_type *));
|
|
|
|
|
static void lang_gc_sections_1
|
|
|
|
|
PARAMS ((lang_statement_union_type *));
|
|
|
|
|
static void lang_gc_sections
|
|
|
|
|
PARAMS ((void));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static int lang_vers_match_lang_c
|
|
|
|
|
PARAMS ((struct bfd_elf_version_expr *, const char *));
|
|
|
|
|
static int lang_vers_match_lang_cplusplus
|
|
|
|
|
PARAMS ((struct bfd_elf_version_expr *, const char *));
|
|
|
|
|
static int lang_vers_match_lang_java
|
|
|
|
|
PARAMS ((struct bfd_elf_version_expr *, const char *));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static void lang_do_version_exports_section
|
|
|
|
|
PARAMS ((void));
|
|
|
|
|
static void lang_check_section_addresses
|
|
|
|
|
PARAMS ((void));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static void os_region_check
|
|
|
|
|
PARAMS ((lang_output_section_statement_type *,
|
|
|
|
|
struct memory_region_struct *, etree_type *, bfd_vma));
|
2002-02-12 15:50:08 +01:00
|
|
|
|
static bfd_vma lang_size_sections_1
|
|
|
|
|
PARAMS ((lang_statement_union_type *, lang_output_section_statement_type *,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
lang_statement_union_type **, fill_type *, bfd_vma, bfd_boolean *,
|
|
|
|
|
bfd_boolean));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
typedef void (*callback_t)
|
|
|
|
|
PARAMS ((lang_wild_statement_type *, struct wildcard_list *, asection *,
|
|
|
|
|
lang_input_statement_type *, PTR));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static void walk_wild
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, callback_t, PTR));
|
1999-05-09 01:40:58 +02:00
|
|
|
|
static void walk_wild_section
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, lang_input_statement_type *,
|
|
|
|
|
callback_t, PTR));
|
1999-05-09 01:40:58 +02:00
|
|
|
|
static void walk_wild_file
|
2001-08-03 03:11:21 +02:00
|
|
|
|
PARAMS ((lang_wild_statement_type *, lang_input_statement_type *,
|
|
|
|
|
callback_t, PTR));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static int get_target
|
|
|
|
|
PARAMS ((const bfd_target *, PTR));
|
|
|
|
|
static void stricpy
|
|
|
|
|
PARAMS ((char *, char *));
|
|
|
|
|
static void strcut
|
|
|
|
|
PARAMS ((char *, char *));
|
|
|
|
|
static int name_compare
|
|
|
|
|
PARAMS ((char *, char *));
|
|
|
|
|
static int closest_target_match
|
|
|
|
|
PARAMS ((const bfd_target *, PTR));
|
|
|
|
|
static char * get_first_input_target
|
|
|
|
|
PARAMS ((void));
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2003-02-21 11:51:24 +01:00
|
|
|
|
/* Exported variables. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_output_section_statement_type *abs_output_section;
|
2000-04-25 07:14:16 +02:00
|
|
|
|
lang_statement_list_type lang_output_section_statement;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_statement_list_type *stat_ptr = &statement_list;
|
1999-07-11 22:09:04 +02:00
|
|
|
|
lang_statement_list_type file_chain = { NULL, NULL };
|
2002-07-01 10:07:31 +02:00
|
|
|
|
struct bfd_sym_chain entry_symbol = { NULL, NULL };
|
2002-02-10 11:55:23 +01:00
|
|
|
|
const char *entry_section = ".text";
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean entry_from_cmdline;
|
|
|
|
|
bfd_boolean lang_has_input_file = FALSE;
|
|
|
|
|
bfd_boolean had_output_filename = FALSE;
|
|
|
|
|
bfd_boolean lang_float_flag = FALSE;
|
|
|
|
|
bfd_boolean delete_output_file_on_failure = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct lang_nocrossrefs *nocrossref_list;
|
2001-01-14 05:36:35 +01:00
|
|
|
|
struct unique_sections *unique_section_list;
|
2003-03-03 21:00:35 +01:00
|
|
|
|
static bfd_boolean ldlang_sysrooted_script = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
etree_type *base; /* Relocation base - or null */
|
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
#if defined (__STDC__) || defined (ALMOST_STDC)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define cat(a,b) a##b
|
|
|
|
|
#else
|
|
|
|
|
#define cat(a,b) a/**/b
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
/* Don't beautify the line below with "innocent" whitespace, it breaks
|
|
|
|
|
the K&R C preprocessor! */
|
|
|
|
|
#define new_stat(x, y) \
|
|
|
|
|
(cat (x,_type)*) new_statement (cat (x,_enum), sizeof (cat (x,_type)), y)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
#define outside_section_address(q) \
|
|
|
|
|
((q)->output_offset + (q)->output_section->vma)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
#define outside_symbol_address(q) \
|
|
|
|
|
((q)->value + outside_section_address (q->section))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#define SECTION_NAME_MAP_LENGTH (16)
|
|
|
|
|
|
|
|
|
|
PTR
|
|
|
|
|
stat_alloc (size)
|
|
|
|
|
size_t size;
|
|
|
|
|
{
|
|
|
|
|
return obstack_alloc (&stat_obstack, size);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean
|
2001-01-14 05:36:35 +01:00
|
|
|
|
unique_section_p (secnam)
|
|
|
|
|
const char *secnam;
|
|
|
|
|
{
|
|
|
|
|
struct unique_sections *unam;
|
|
|
|
|
|
|
|
|
|
for (unam = unique_section_list; unam; unam = unam->next)
|
|
|
|
|
if (wildcardp (unam->name)
|
|
|
|
|
? fnmatch (unam->name, secnam, 0) == 0
|
|
|
|
|
: strcmp (unam->name, secnam) == 0)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2001-01-14 05:36:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-01-14 05:36:35 +01:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Generic traversal routines for finding matching sections. */
|
1999-05-09 01:40:58 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_section (ptr, file, callback, data)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
lang_wild_statement_type *ptr;
|
|
|
|
|
lang_input_statement_type *file;
|
|
|
|
|
callback_t callback;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
if (file->just_syms_flag)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (s = file->the_bfd->sections; s != NULL; s = s->next)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec;
|
|
|
|
|
|
|
|
|
|
sec = ptr->section_list;
|
2001-11-20 16:31:10 +01:00
|
|
|
|
if (sec == NULL)
|
|
|
|
|
(*callback) (ptr, sec, s, file, data);
|
|
|
|
|
|
|
|
|
|
while (sec != NULL)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean skip = FALSE;
|
2001-11-20 16:31:10 +01:00
|
|
|
|
struct name_list *list_tmp;
|
|
|
|
|
|
|
|
|
|
/* Don't process sections from files which were
|
|
|
|
|
excluded. */
|
|
|
|
|
for (list_tmp = sec->spec.exclude_name_list;
|
|
|
|
|
list_tmp;
|
|
|
|
|
list_tmp = list_tmp->next)
|
|
|
|
|
{
|
|
|
|
|
if (wildcardp (list_tmp->name))
|
|
|
|
|
skip = fnmatch (list_tmp->name, file->filename, 0) == 0;
|
|
|
|
|
else
|
|
|
|
|
skip = strcmp (list_tmp->name, file->filename) == 0;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
|
2002-01-08 15:56:09 +01:00
|
|
|
|
/* If this file is part of an archive, and the archive is
|
|
|
|
|
excluded, exclude this file. */
|
|
|
|
|
if (! skip && file->the_bfd != NULL
|
|
|
|
|
&& file->the_bfd->my_archive != NULL
|
|
|
|
|
&& file->the_bfd->my_archive->filename != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (wildcardp (list_tmp->name))
|
|
|
|
|
skip = fnmatch (list_tmp->name,
|
|
|
|
|
file->the_bfd->my_archive->filename,
|
|
|
|
|
0) == 0;
|
|
|
|
|
else
|
|
|
|
|
skip = strcmp (list_tmp->name,
|
|
|
|
|
file->the_bfd->my_archive->filename) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-20 16:31:10 +01:00
|
|
|
|
if (skip)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!skip && sec->spec.name != NULL)
|
2001-08-03 03:11:21 +02:00
|
|
|
|
{
|
2001-11-20 16:31:10 +01:00
|
|
|
|
const char *sname = bfd_get_section_name (file->the_bfd, s);
|
|
|
|
|
|
|
|
|
|
if (wildcardp (sec->spec.name))
|
|
|
|
|
skip = fnmatch (sec->spec.name, sname, 0) != 0;
|
|
|
|
|
else
|
|
|
|
|
skip = strcmp (sec->spec.name, sname) != 0;
|
2001-08-03 03:11:21 +02:00
|
|
|
|
}
|
1999-05-09 01:40:58 +02:00
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (!skip)
|
|
|
|
|
(*callback) (ptr, sec, s, file, data);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
|
2001-11-20 16:31:10 +01:00
|
|
|
|
sec = sec->next;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle a wild statement for a single file F. */
|
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_file (s, f, callback, data)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
lang_wild_statement_type *s;
|
|
|
|
|
lang_input_statement_type *f;
|
|
|
|
|
callback_t callback;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
|
|
|
|
if (f->the_bfd == NULL
|
|
|
|
|
|| ! bfd_check_format (f->the_bfd, bfd_archive))
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_section (s, f, callback, data);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd *member;
|
|
|
|
|
|
|
|
|
|
/* This is an archive file. We must map each member of the
|
|
|
|
|
archive separately. */
|
|
|
|
|
member = bfd_openr_next_archived_file (f->the_bfd, (bfd *) NULL);
|
|
|
|
|
while (member != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* When lookup_name is called, it will call the add_symbols
|
|
|
|
|
entry point for the archive. For each element of the
|
|
|
|
|
archive which is included, BFD will call ldlang_add_file,
|
|
|
|
|
which will set the usrdata field of the member to the
|
|
|
|
|
lang_input_statement. */
|
|
|
|
|
if (member->usrdata != NULL)
|
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_section (s,
|
1999-05-09 01:40:58 +02:00
|
|
|
|
(lang_input_statement_type *) member->usrdata,
|
|
|
|
|
callback, data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
member = bfd_openr_next_archived_file (f->the_bfd, member);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild (s, callback, data)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
lang_wild_statement_type *s;
|
|
|
|
|
callback_t callback;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
const char *file_spec = s->filename;
|
|
|
|
|
|
|
|
|
|
if (file_spec == NULL)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
|
|
|
|
/* Perform the iteration over all files in the list. */
|
1999-07-19 16:57:03 +02:00
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (f)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_file (s, f, callback, data);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-08-03 03:11:21 +02:00
|
|
|
|
else if (wildcardp (file_spec))
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
1999-07-19 16:57:03 +02:00
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (f)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
|
|
|
|
|
walk_wild_file (s, f, callback, data);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1999-07-19 16:57:03 +02:00
|
|
|
|
lang_input_statement_type *f;
|
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
/* Perform the iteration over a single file. */
|
2001-08-03 03:11:21 +02:00
|
|
|
|
f = lookup_name (file_spec);
|
2001-06-15 11:00:11 +02:00
|
|
|
|
if (f)
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild_file (s, f, callback, data);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
}
|
2000-09-05 05:21:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* lang_for_each_statement walks the parse tree and calls the provided
|
|
|
|
|
function for each node. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_for_each_statement_worker (func, s)
|
|
|
|
|
void (*func) PARAMS ((lang_statement_union_type *));
|
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
func (s);
|
|
|
|
|
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
lang_for_each_statement_worker (func, constructor_list.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
lang_for_each_statement_worker
|
|
|
|
|
(func,
|
|
|
|
|
s->output_section_statement.children.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_wild_statement_enum:
|
|
|
|
|
lang_for_each_statement_worker
|
|
|
|
|
(func,
|
|
|
|
|
s->wild_statement.children.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
lang_for_each_statement_worker (func,
|
|
|
|
|
s->group_statement.children.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_data_statement_enum:
|
|
|
|
|
case lang_reloc_statement_enum:
|
|
|
|
|
case lang_object_symbols_statement_enum:
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
case lang_input_section_enum:
|
|
|
|
|
case lang_input_statement_enum:
|
|
|
|
|
case lang_assignment_statement_enum:
|
|
|
|
|
case lang_padding_statement_enum:
|
|
|
|
|
case lang_address_statement_enum:
|
|
|
|
|
case lang_fill_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_for_each_statement (func)
|
|
|
|
|
void (*func) PARAMS ((lang_statement_union_type *));
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_for_each_statement_worker (func, statement_list.head);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------*/
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
|
|
|
|
lang_list_init (list)
|
|
|
|
|
lang_statement_list_type *list;
|
|
|
|
|
{
|
|
|
|
|
list->head = (lang_statement_union_type *) NULL;
|
|
|
|
|
list->tail = &list->head;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Build a new statement node for the parse tree. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
static lang_statement_union_type *
|
1999-05-03 09:29:11 +02:00
|
|
|
|
new_statement (type, size, list)
|
|
|
|
|
enum statement_enum type;
|
|
|
|
|
size_t size;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_list_type *list;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_statement_union_type *new = (lang_statement_union_type *)
|
|
|
|
|
stat_alloc (size);
|
|
|
|
|
|
|
|
|
|
new->header.type = type;
|
|
|
|
|
new->header.next = (lang_statement_union_type *) NULL;
|
|
|
|
|
lang_statement_append (list, new, &new->header.next);
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Build a new input file node for the language. There are several
|
|
|
|
|
ways in which we treat an input file, eg, we only look at symbols,
|
|
|
|
|
or prefix it with a -l etc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
We can be supplied with requests for input files more than once;
|
2003-01-02 04:53:53 +01:00
|
|
|
|
they may, for example be split over several lines like foo.o(.text)
|
2001-05-17 05:58:45 +02:00
|
|
|
|
foo.o(.data) etc, so when asked for a file we check that we haven't
|
2000-10-05 15:03:30 +02:00
|
|
|
|
got it already so we don't duplicate the bfd. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static lang_input_statement_type *
|
|
|
|
|
new_afile (name, file_type, target, add_to_list)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_input_file_enum_type file_type;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *target;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean add_to_list;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_input_statement_type *p;
|
|
|
|
|
|
|
|
|
|
if (add_to_list)
|
|
|
|
|
p = new_stat (lang_input_statement, stat_ptr);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
p = ((lang_input_statement_type *)
|
|
|
|
|
stat_alloc (sizeof (lang_input_statement_type)));
|
|
|
|
|
p->header.next = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
lang_has_input_file = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->target = target;
|
2003-03-03 21:00:35 +01:00
|
|
|
|
p->sysrooted = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (file_type)
|
|
|
|
|
{
|
|
|
|
|
case lang_input_file_is_symbols_only_enum:
|
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = FALSE;
|
|
|
|
|
p->real = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = TRUE;
|
|
|
|
|
p->search_dirs_flag = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case lang_input_file_is_fake_enum:
|
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = FALSE;
|
|
|
|
|
p->real = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = FALSE;
|
|
|
|
|
p->search_dirs_flag = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case lang_input_file_is_l_enum:
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->real = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = concat ("-l", name, (const char *) NULL);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = FALSE;
|
|
|
|
|
p->search_dirs_flag = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case lang_input_file_is_marker_enum:
|
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = FALSE;
|
|
|
|
|
p->real = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = FALSE;
|
|
|
|
|
p->search_dirs_flag = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case lang_input_file_is_search_file_enum:
|
2003-03-03 21:00:35 +01:00
|
|
|
|
p->sysrooted = ldlang_sysrooted_script;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = FALSE;
|
|
|
|
|
p->real = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = FALSE;
|
|
|
|
|
p->search_dirs_flag = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case lang_input_file_is_file_enum:
|
|
|
|
|
p->filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->is_archive = FALSE;
|
|
|
|
|
p->real = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->just_syms_flag = FALSE;
|
|
|
|
|
p->search_dirs_flag = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
FAIL ();
|
|
|
|
|
}
|
|
|
|
|
p->the_bfd = (bfd *) NULL;
|
|
|
|
|
p->asymbols = (asymbol **) NULL;
|
|
|
|
|
p->next_real_file = (lang_statement_union_type *) NULL;
|
|
|
|
|
p->next = (lang_statement_union_type *) NULL;
|
|
|
|
|
p->symbol_count = 0;
|
|
|
|
|
p->dynamic = config.dynamic_link;
|
|
|
|
|
p->whole_archive = whole_archive;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
p->loaded = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_statement_append (&input_file_chain,
|
|
|
|
|
(lang_statement_union_type *) p,
|
|
|
|
|
&p->next_real_file);
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lang_input_statement_type *
|
|
|
|
|
lang_add_input_file (name, file_type, target)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_input_file_enum_type file_type;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *target;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
lang_has_input_file = TRUE;
|
|
|
|
|
return new_afile (name, file_type, target, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Build enough state so that the parser can build its tree. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
|
|
|
|
lang_init ()
|
|
|
|
|
{
|
|
|
|
|
obstack_begin (&stat_obstack, 1000);
|
|
|
|
|
|
|
|
|
|
stat_ptr = &statement_list;
|
|
|
|
|
|
|
|
|
|
lang_list_init (stat_ptr);
|
|
|
|
|
|
|
|
|
|
lang_list_init (&input_file_chain);
|
|
|
|
|
lang_list_init (&lang_output_section_statement);
|
|
|
|
|
lang_list_init (&file_chain);
|
|
|
|
|
first_file = lang_add_input_file ((char *) NULL,
|
|
|
|
|
lang_input_file_is_marker_enum,
|
|
|
|
|
(char *) NULL);
|
2000-10-05 15:03:30 +02:00
|
|
|
|
abs_output_section =
|
|
|
|
|
lang_output_section_statement_lookup (BFD_ABS_SECTION_NAME);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
abs_output_section->bfd_section = bfd_abs_section_ptr;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
2000-10-05 15:03:30 +02:00
|
|
|
|
A region is an area of memory declared with the
|
|
|
|
|
MEMORY { name:org=exp, len=exp ... }
|
|
|
|
|
syntax.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
We maintain a list of all the regions here.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
If no regions are specified in the script, then the default is used
|
|
|
|
|
which is created when looked up to be the entire data space. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static lang_memory_region_type *lang_memory_region_list;
|
|
|
|
|
static lang_memory_region_type **lang_memory_region_list_tail = &lang_memory_region_list;
|
|
|
|
|
|
|
|
|
|
lang_memory_region_type *
|
|
|
|
|
lang_memory_region_lookup (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *const name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *p;
|
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
/* NAME is NULL for LMA memspecs if no region was specified. */
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (p = lang_memory_region_list;
|
|
|
|
|
p != (lang_memory_region_type *) NULL;
|
|
|
|
|
p = p->next)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (p->name, name) == 0)
|
|
|
|
|
{
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* This code used to always use the first region in the list as the
|
|
|
|
|
default region. I changed it to instead use a region
|
|
|
|
|
encompassing all of memory as the default region. This permits
|
|
|
|
|
NOLOAD sections to work reasonably without requiring a region.
|
|
|
|
|
People should specify what region they mean, if they really want
|
|
|
|
|
a region. */
|
|
|
|
|
if (strcmp (name, "*default*") == 0)
|
|
|
|
|
{
|
|
|
|
|
if (lang_memory_region_list != (lang_memory_region_type *) NULL)
|
|
|
|
|
{
|
|
|
|
|
return lang_memory_region_list;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *new =
|
|
|
|
|
(lang_memory_region_type *) stat_alloc (sizeof (lang_memory_region_type));
|
|
|
|
|
|
2001-05-02 18:42:55 +02:00
|
|
|
|
new->name = xstrdup (name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
new->next = (lang_memory_region_type *) NULL;
|
|
|
|
|
|
|
|
|
|
*lang_memory_region_list_tail = new;
|
|
|
|
|
lang_memory_region_list_tail = &new->next;
|
|
|
|
|
new->origin = 0;
|
|
|
|
|
new->flags = 0;
|
|
|
|
|
new->not_flags = 0;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
new->length = ~(bfd_size_type) 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
new->current = 0;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
new->had_full_message = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
static lang_memory_region_type *
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_memory_default (section)
|
|
|
|
|
asection *section;
|
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *p;
|
|
|
|
|
|
|
|
|
|
flagword sec_flags = section->flags;
|
|
|
|
|
|
|
|
|
|
/* Override SEC_DATA to mean a writable section. */
|
|
|
|
|
if ((sec_flags & (SEC_ALLOC | SEC_READONLY | SEC_CODE)) == SEC_ALLOC)
|
|
|
|
|
sec_flags |= SEC_DATA;
|
|
|
|
|
|
|
|
|
|
for (p = lang_memory_region_list;
|
|
|
|
|
p != (lang_memory_region_type *) NULL;
|
|
|
|
|
p = p->next)
|
|
|
|
|
{
|
|
|
|
|
if ((p->flags & sec_flags) != 0
|
|
|
|
|
&& (p->not_flags & sec_flags) == 0)
|
|
|
|
|
{
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return lang_memory_region_lookup ("*default*");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lang_output_section_statement_type *
|
|
|
|
|
lang_output_section_find (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *const name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_statement_union_type *u;
|
|
|
|
|
lang_output_section_statement_type *lookup;
|
|
|
|
|
|
|
|
|
|
for (u = lang_output_section_statement.head;
|
|
|
|
|
u != (lang_statement_union_type *) NULL;
|
|
|
|
|
u = lookup->next)
|
|
|
|
|
{
|
|
|
|
|
lookup = &u->output_section_statement;
|
|
|
|
|
if (strcmp (name, lookup->name) == 0)
|
|
|
|
|
{
|
|
|
|
|
return lookup;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (lang_output_section_statement_type *) NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lang_output_section_statement_type *
|
|
|
|
|
lang_output_section_statement_lookup (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *const name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *lookup;
|
|
|
|
|
|
|
|
|
|
lookup = lang_output_section_find (name);
|
|
|
|
|
if (lookup == (lang_output_section_statement_type *) NULL)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
lookup = (lang_output_section_statement_type *)
|
|
|
|
|
new_stat (lang_output_section_statement, stat_ptr);
|
|
|
|
|
lookup->region = (lang_memory_region_type *) NULL;
|
2000-02-16 19:53:32 +01:00
|
|
|
|
lookup->lma_region = (lang_memory_region_type *) NULL;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
lookup->fill = (fill_type *) 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lookup->block_value = 1;
|
|
|
|
|
lookup->name = name;
|
|
|
|
|
|
|
|
|
|
lookup->next = (lang_statement_union_type *) NULL;
|
|
|
|
|
lookup->bfd_section = (asection *) NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
lookup->processed = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lookup->sectype = normal_section;
|
|
|
|
|
lookup->addr_tree = (etree_type *) NULL;
|
|
|
|
|
lang_list_init (&lookup->children);
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
lookup->memspec = (const char *) NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lookup->flags = 0;
|
|
|
|
|
lookup->subsection_alignment = -1;
|
|
|
|
|
lookup->section_alignment = -1;
|
|
|
|
|
lookup->load_base = (union etree_union *) NULL;
|
2002-05-07 13:04:54 +02:00
|
|
|
|
lookup->update_dot_tree = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lookup->phdrs = NULL;
|
|
|
|
|
|
|
|
|
|
lang_statement_append (&lang_output_section_statement,
|
|
|
|
|
(lang_statement_union_type *) lookup,
|
|
|
|
|
&lookup->next);
|
|
|
|
|
}
|
|
|
|
|
return lookup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_map_flags (flag)
|
|
|
|
|
flagword flag;
|
|
|
|
|
{
|
|
|
|
|
if (flag & SEC_ALLOC)
|
|
|
|
|
minfo ("a");
|
|
|
|
|
|
|
|
|
|
if (flag & SEC_CODE)
|
|
|
|
|
minfo ("x");
|
|
|
|
|
|
|
|
|
|
if (flag & SEC_READONLY)
|
|
|
|
|
minfo ("r");
|
|
|
|
|
|
|
|
|
|
if (flag & SEC_DATA)
|
|
|
|
|
minfo ("w");
|
|
|
|
|
|
|
|
|
|
if (flag & SEC_LOAD)
|
|
|
|
|
minfo ("l");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_map ()
|
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *m;
|
|
|
|
|
|
|
|
|
|
minfo (_("\nMemory Configuration\n\n"));
|
|
|
|
|
fprintf (config.map_file, "%-16s %-18s %-18s %s\n",
|
|
|
|
|
_("Name"), _("Origin"), _("Length"), _("Attributes"));
|
|
|
|
|
|
|
|
|
|
for (m = lang_memory_region_list;
|
|
|
|
|
m != (lang_memory_region_type *) NULL;
|
|
|
|
|
m = m->next)
|
|
|
|
|
{
|
|
|
|
|
char buf[100];
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
fprintf (config.map_file, "%-16s ", m->name);
|
|
|
|
|
|
|
|
|
|
sprintf_vma (buf, m->origin);
|
|
|
|
|
minfo ("0x%s ", buf);
|
|
|
|
|
len = strlen (buf);
|
|
|
|
|
while (len < 16)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V", m->length);
|
|
|
|
|
if (m->flags || m->not_flags)
|
|
|
|
|
{
|
|
|
|
|
#ifndef BFD64
|
|
|
|
|
minfo (" ");
|
|
|
|
|
#endif
|
|
|
|
|
if (m->flags)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
lang_map_flags (m->flags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m->not_flags)
|
|
|
|
|
{
|
|
|
|
|
minfo (" !");
|
|
|
|
|
lang_map_flags (m->not_flags);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fprintf (config.map_file, _("\nLinker script and memory map\n\n"));
|
|
|
|
|
|
|
|
|
|
print_statements ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize an output section. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
init_os (s)
|
|
|
|
|
lang_output_section_statement_type *s;
|
|
|
|
|
{
|
|
|
|
|
section_userdata_type *new;
|
|
|
|
|
|
|
|
|
|
if (s->bfd_section != NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (strcmp (s->name, DISCARD_SECTION_NAME) == 0)
|
2001-06-18 19:23:52 +02:00
|
|
|
|
einfo (_("%P%F: Illegal use of `%s' section\n"), DISCARD_SECTION_NAME);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
new = ((section_userdata_type *)
|
|
|
|
|
stat_alloc (sizeof (section_userdata_type)));
|
|
|
|
|
|
|
|
|
|
s->bfd_section = bfd_get_section_by_name (output_bfd, s->name);
|
|
|
|
|
if (s->bfd_section == (asection *) NULL)
|
|
|
|
|
s->bfd_section = bfd_make_section (output_bfd, s->name);
|
|
|
|
|
if (s->bfd_section == (asection *) NULL)
|
|
|
|
|
{
|
|
|
|
|
einfo (_("%P%F: output format %s cannot represent section called %s\n"),
|
|
|
|
|
output_bfd->xvec->name, s->name);
|
|
|
|
|
}
|
|
|
|
|
s->bfd_section->output_section = s->bfd_section;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* We initialize an output sections output offset to minus its own
|
|
|
|
|
vma to allow us to output a section through itself. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
s->bfd_section->output_offset = 0;
|
|
|
|
|
get_userdata (s->bfd_section) = (PTR) new;
|
|
|
|
|
|
|
|
|
|
/* If there is a base address, make sure that any sections it might
|
|
|
|
|
mention are initialized. */
|
|
|
|
|
if (s->addr_tree != NULL)
|
|
|
|
|
exp_init_os (s->addr_tree);
|
2002-12-06 23:33:18 +01:00
|
|
|
|
|
|
|
|
|
if (s->load_base != NULL)
|
|
|
|
|
exp_init_os (s->load_base);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure that all output sections mentioned in an expression are
|
|
|
|
|
initialized. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
exp_init_os (exp)
|
|
|
|
|
etree_type *exp;
|
|
|
|
|
{
|
|
|
|
|
switch (exp->type.node_class)
|
|
|
|
|
{
|
|
|
|
|
case etree_assign:
|
|
|
|
|
exp_init_os (exp->assign.src);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case etree_binary:
|
|
|
|
|
exp_init_os (exp->binary.lhs);
|
|
|
|
|
exp_init_os (exp->binary.rhs);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case etree_trinary:
|
|
|
|
|
exp_init_os (exp->trinary.cond);
|
|
|
|
|
exp_init_os (exp->trinary.lhs);
|
|
|
|
|
exp_init_os (exp->trinary.rhs);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case etree_unary:
|
|
|
|
|
exp_init_os (exp->unary.child);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case etree_name:
|
|
|
|
|
switch (exp->type.node_code)
|
|
|
|
|
{
|
|
|
|
|
case ADDR:
|
|
|
|
|
case LOADADDR:
|
|
|
|
|
case SIZEOF:
|
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
|
|
|
|
|
os = lang_output_section_find (exp->name.name);
|
|
|
|
|
if (os != NULL && os->bfd_section == NULL)
|
|
|
|
|
init_os (os);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-11-02 00:37:48 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Sections marked with the SEC_LINK_ONCE flag should only be linked
|
1999-11-02 00:37:48 +01:00
|
|
|
|
once into the output. This routine checks each section, and
|
|
|
|
|
arrange to discard it if a section of the same name has already
|
1999-09-12 18:10:00 +02:00
|
|
|
|
been linked. If the section has COMDAT information, then it uses
|
|
|
|
|
that to decide whether the section should be included. This code
|
|
|
|
|
assumes that all relevant sections have the SEC_LINK_ONCE flag set;
|
1999-11-02 00:37:48 +01:00
|
|
|
|
that is, it does not depend solely upon the section name.
|
|
|
|
|
section_already_linked is called via bfd_map_over_sections. */
|
|
|
|
|
|
|
|
|
|
/* This is the shape of the elements inside the already_linked hash
|
|
|
|
|
table. It maps a name onto a list of already_linked elements with
|
|
|
|
|
the same name. It's possible to get more than one element in a
|
|
|
|
|
list if the COMDAT sections have different names. */
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
struct already_linked_hash_entry
|
1999-11-02 00:37:48 +01:00
|
|
|
|
{
|
|
|
|
|
struct bfd_hash_entry root;
|
|
|
|
|
struct already_linked *entry;
|
|
|
|
|
};
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
struct already_linked
|
1999-11-02 00:37:48 +01:00
|
|
|
|
{
|
|
|
|
|
struct already_linked *next;
|
|
|
|
|
asection *sec;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The hash table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_table already_linked_table;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
section_already_linked (abfd, sec, data)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
asection *sec;
|
|
|
|
|
PTR data;
|
|
|
|
|
{
|
|
|
|
|
lang_input_statement_type *entry = (lang_input_statement_type *) data;
|
|
|
|
|
flagword flags;
|
|
|
|
|
const char *name;
|
1999-11-02 00:37:48 +01:00
|
|
|
|
struct already_linked *l;
|
|
|
|
|
struct already_linked_hash_entry *already_linked_list;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* If we are only reading symbols from this object, then we want to
|
|
|
|
|
discard all sections. */
|
|
|
|
|
if (entry->just_syms_flag)
|
|
|
|
|
{
|
2002-05-15 02:19:23 +02:00
|
|
|
|
bfd_link_just_syms (sec, &link_info);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
flags = bfd_get_section_flags (abfd, sec);
|
|
|
|
|
|
|
|
|
|
if ((flags & SEC_LINK_ONCE) == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2001-01-14 05:36:35 +01:00
|
|
|
|
/* FIXME: When doing a relocatable link, we may have trouble
|
1999-07-02 09:45:31 +02:00
|
|
|
|
copying relocations in other sections that refer to local symbols
|
|
|
|
|
in the section being discarded. Those relocations will have to
|
|
|
|
|
be converted somehow; as of this writing I'm not sure that any of
|
|
|
|
|
the backends handle that correctly.
|
|
|
|
|
|
|
|
|
|
It is tempting to instead not discard link once sections when
|
2001-01-14 05:36:35 +01:00
|
|
|
|
doing a relocatable link (technically, they should be discarded
|
1999-07-02 09:45:31 +02:00
|
|
|
|
whenever we are building constructors). However, that fails,
|
|
|
|
|
because the linker winds up combining all the link once sections
|
|
|
|
|
into a single large link once section, which defeats the purpose
|
|
|
|
|
of having link once sections in the first place.
|
|
|
|
|
|
2001-01-14 05:36:35 +01:00
|
|
|
|
Also, not merging link once sections in a relocatable link
|
2002-06-04 03:07:29 +02:00
|
|
|
|
causes trouble for MIPS ELF, which relies on link once semantics
|
1999-07-02 09:45:31 +02:00
|
|
|
|
to handle the .reginfo section correctly. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
name = bfd_get_section_name (abfd, sec);
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
already_linked_list =
|
1999-11-02 00:37:48 +01:00
|
|
|
|
((struct already_linked_hash_entry *)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_hash_lookup (&already_linked_table, name, TRUE, FALSE));
|
1999-11-02 00:37:48 +01:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
for (l = already_linked_list->entry; l != NULL; l = l->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-11-02 00:37:48 +01:00
|
|
|
|
if (sec->comdat == NULL
|
|
|
|
|
|| l->sec->comdat == NULL
|
|
|
|
|
|| strcmp (sec->comdat->name, l->sec->comdat->name) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* The section has already been linked. See if we should
|
|
|
|
|
issue a warning. */
|
|
|
|
|
switch (flags & SEC_LINK_DUPLICATES)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_DISCARD:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_ONE_ONLY:
|
1999-09-12 18:10:00 +02:00
|
|
|
|
if (sec->comdat == NULL)
|
|
|
|
|
einfo (_("%P: %B: warning: ignoring duplicate section `%s'\n"),
|
|
|
|
|
abfd, name);
|
|
|
|
|
else
|
|
|
|
|
einfo (_("%P: %B: warning: ignoring duplicate `%s' section symbol `%s'\n"),
|
|
|
|
|
abfd, name, sec->comdat->name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_SAME_CONTENTS:
|
|
|
|
|
/* FIXME: We should really dig out the contents of both
|
|
|
|
|
sections and memcmp them. The COFF/PE spec says that
|
|
|
|
|
the Microsoft linker does not implement this
|
|
|
|
|
correctly, so I'm not going to bother doing it
|
|
|
|
|
either. */
|
|
|
|
|
/* Fall through. */
|
|
|
|
|
case SEC_LINK_DUPLICATES_SAME_SIZE:
|
|
|
|
|
if (bfd_section_size (abfd, sec)
|
|
|
|
|
!= bfd_section_size (l->sec->owner, l->sec))
|
|
|
|
|
einfo (_("%P: %B: warning: duplicate section `%s' has different size\n"),
|
|
|
|
|
abfd, name);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-14 04:01:31 +02:00
|
|
|
|
/* Set the output_section field so that lang_add_section
|
|
|
|
|
does not create a lang_input_section structure for this
|
2001-09-29 14:07:01 +02:00
|
|
|
|
section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sec->output_section = bfd_abs_section_ptr;
|
|
|
|
|
|
2002-06-04 03:07:29 +02:00
|
|
|
|
if (flags & SEC_GROUP)
|
|
|
|
|
bfd_discard_group (abfd, sec);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-02 00:37:48 +01:00
|
|
|
|
/* This is the first section with this name. Record it. Allocate
|
|
|
|
|
the memory from the same obstack as the hash table is kept in. */
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
l = ((struct already_linked *)
|
1999-11-02 00:37:48 +01:00
|
|
|
|
bfd_hash_allocate (&already_linked_table, sizeof *l));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
l->sec = sec;
|
1999-11-02 00:37:48 +01:00
|
|
|
|
l->next = already_linked_list->entry;
|
|
|
|
|
already_linked_list->entry = l;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Support routines for the hash table used by section_already_linked,
|
|
|
|
|
initialize the table, fill in an entry and remove the table. */
|
|
|
|
|
|
|
|
|
|
static struct bfd_hash_entry *
|
|
|
|
|
already_linked_newfunc (entry, table, string)
|
|
|
|
|
struct bfd_hash_entry *entry ATTRIBUTE_UNUSED;
|
|
|
|
|
struct bfd_hash_table *table;
|
|
|
|
|
const char *string ATTRIBUTE_UNUSED;
|
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
struct already_linked_hash_entry *ret =
|
1999-11-02 00:37:48 +01:00
|
|
|
|
bfd_hash_allocate (table, sizeof (struct already_linked_hash_entry));
|
|
|
|
|
|
|
|
|
|
ret->entry = NULL;
|
|
|
|
|
|
|
|
|
|
return (struct bfd_hash_entry *) ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
already_linked_table_init ()
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_hash_table_init_n (&already_linked_table,
|
|
|
|
|
already_linked_newfunc,
|
|
|
|
|
42))
|
|
|
|
|
einfo (_("%P%F: Failed to create hash table\n"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
already_linked_table_free ()
|
|
|
|
|
{
|
|
|
|
|
bfd_hash_table_free (&already_linked_table);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The wild routines.
|
|
|
|
|
|
|
|
|
|
These expand statements like *(.text) and foo.o to a list of
|
|
|
|
|
explicit actions, like foo.o(.text), bar.o(.text) and
|
|
|
|
|
foo.o(.text, .data). */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return TRUE if the PATTERN argument is a wildcard pattern.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Although backslashes are treated specially if a pattern contains
|
|
|
|
|
wildcards, we do not consider the mere presence of a backslash to
|
2001-10-29 23:36:32 +01:00
|
|
|
|
be enough to cause the pattern to be treated as a wildcard.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
That lets us handle DOS filenames more naturally. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
wildcardp (pattern)
|
|
|
|
|
const char *pattern;
|
|
|
|
|
{
|
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
|
|
for (s = pattern; *s != '\0'; ++s)
|
|
|
|
|
if (*s == '?'
|
|
|
|
|
|| *s == '*'
|
|
|
|
|
|| *s == '[')
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add SECTION to the output section OUTPUT. Do this by creating a
|
|
|
|
|
lang_input_section statement which is placed at PTR. FILE is the
|
|
|
|
|
input file which holds SECTION. */
|
|
|
|
|
|
|
|
|
|
void
|
2001-08-14 04:01:31 +02:00
|
|
|
|
lang_add_section (ptr, section, output, file)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_statement_list_type *ptr;
|
|
|
|
|
asection *section;
|
|
|
|
|
lang_output_section_statement_type *output;
|
|
|
|
|
lang_input_statement_type *file;
|
|
|
|
|
{
|
|
|
|
|
flagword flags;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean discard;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
flags = bfd_get_section_flags (section->owner, section);
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
discard = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-12 12:31:43 +01:00
|
|
|
|
/* Discard sections marked with SEC_EXCLUDE if we are doing a final
|
|
|
|
|
link. Discard debugging sections marked with SEC_EXCLUDE on a
|
|
|
|
|
relocatable link too. */
|
|
|
|
|
if ((flags & SEC_EXCLUDE) != 0
|
|
|
|
|
&& ((flags & SEC_DEBUGGING) != 0 || !link_info.relocateable))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
discard = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Discard input sections which are assigned to a section named
|
|
|
|
|
DISCARD_SECTION_NAME. */
|
|
|
|
|
if (strcmp (output->name, DISCARD_SECTION_NAME) == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
discard = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Discard debugging sections if we are stripping debugging
|
|
|
|
|
information. */
|
|
|
|
|
if ((link_info.strip == strip_debugger || link_info.strip == strip_all)
|
|
|
|
|
&& (flags & SEC_DEBUGGING) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
discard = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (discard)
|
|
|
|
|
{
|
|
|
|
|
if (section->output_section == NULL)
|
|
|
|
|
{
|
|
|
|
|
/* This prevents future calls from assigning this section. */
|
|
|
|
|
section->output_section = bfd_abs_section_ptr;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (section->output_section == NULL)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean first;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_input_section_type *new;
|
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
|
|
if (output->bfd_section == NULL)
|
2001-05-17 05:58:45 +02:00
|
|
|
|
init_os (output);
|
|
|
|
|
|
|
|
|
|
first = ! output->bfd_section->linker_has_input;
|
|
|
|
|
output->bfd_section->linker_has_input = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Add a section reference to the list. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
new = new_stat (lang_input_section, ptr);
|
|
|
|
|
|
|
|
|
|
new->section = section;
|
|
|
|
|
new->ifile = file;
|
|
|
|
|
section->output_section = output->bfd_section;
|
|
|
|
|
|
|
|
|
|
flags = section->flags;
|
|
|
|
|
|
|
|
|
|
/* We don't copy the SEC_NEVER_LOAD flag from an input section
|
|
|
|
|
to an output section, because we want to be able to include a
|
|
|
|
|
SEC_NEVER_LOAD section in the middle of an otherwise loaded
|
|
|
|
|
section (I don't know why we want to do this, but we do).
|
|
|
|
|
build_link_order in ldwrite.c handles this case by turning
|
|
|
|
|
the embedded SEC_NEVER_LOAD section into a fill. */
|
|
|
|
|
|
|
|
|
|
flags &= ~ SEC_NEVER_LOAD;
|
|
|
|
|
|
|
|
|
|
/* If final link, don't copy the SEC_LINK_ONCE flags, they've
|
|
|
|
|
already been processed. One reason to do this is that on pe
|
|
|
|
|
format targets, .text$foo sections go into .text and it's odd
|
|
|
|
|
to see .text with SEC_LINK_ONCE set. */
|
|
|
|
|
|
|
|
|
|
if (! link_info.relocateable)
|
|
|
|
|
flags &= ~ (SEC_LINK_ONCE | SEC_LINK_DUPLICATES);
|
|
|
|
|
|
|
|
|
|
/* If this is not the first input section, and the SEC_READONLY
|
|
|
|
|
flag is not currently set, then don't set it just because the
|
|
|
|
|
input section has it set. */
|
|
|
|
|
|
|
|
|
|
if (! first && (section->output_section->flags & SEC_READONLY) == 0)
|
|
|
|
|
flags &= ~ SEC_READONLY;
|
|
|
|
|
|
2001-04-13 02:34:36 +02:00
|
|
|
|
/* Keep SEC_MERGE and SEC_STRINGS only if they are the same. */
|
|
|
|
|
if (! first
|
|
|
|
|
&& ((section->output_section->flags & (SEC_MERGE | SEC_STRINGS))
|
|
|
|
|
!= (flags & (SEC_MERGE | SEC_STRINGS))
|
|
|
|
|
|| ((flags & SEC_MERGE)
|
|
|
|
|
&& section->output_section->entsize != section->entsize)))
|
|
|
|
|
{
|
|
|
|
|
section->output_section->flags &= ~ (SEC_MERGE | SEC_STRINGS);
|
|
|
|
|
flags &= ~ (SEC_MERGE | SEC_STRINGS);
|
|
|
|
|
}
|
|
|
|
|
|
* elf.c (_bfd_elf_make_section_from_shdr): Set SEC_THREAD_LOCAL
for symbols from SHF_TLS section.
(_bfd_elf_print_private_bfd_data): Add PT_TLS.
(elf_fake_sections): Set SHF_TLS for SEC_THREAD_LOCAL sections.
(map_sections_to_segments): Build PT_TLS segment if necessary.
(assign_file_positions_for_segments): Likewise.
(get_program_header_size): Account for PT_TLS segment.
(swap_out_syms): Set type of BSF_THREAD_LOCAL symbols and symbols from
SEC_THREAD_LOCAL sections to STT_TLS.
* reloc.c: Add 386 and IA-64 TLS relocs.
* section.c (SEC_THREAD_LOCAL): Define.
(SEC_CONSTRUCTOR_TEXT, SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS):
Remove.
* elflink.h (elf_link_add_object_symbols): Support .tcommon.
(size_dynamic_sections): If DF_STATIC_TLS, set DF_FLAGS
unconditionally.
(struct elf_final_link_info): Add first_tls_sec.
(elf_bfd_final_link): Set first_tls_sec.
Compute elf_hash_table (info)->tls_segment.
(elf_link_output_extsym): Handle STT_TLS symbols.
(elf_link_input_bfd): Likewise.
* syms.c (BSF_THREAD_LOCAL): Define.
* bfd-in2.h: Rebuilt.
* libbfd.h: Rebuilt.
* elf32-i386.c (elf_i386_tls_transition, dtpoff_base, tpoff,
elf_i386_mkobject, elf_i386_object_p): New functions.
(elf_howto_table): Add TLS relocs.
(elf_i386_reloc_type_lookup): Support TLS relocs.
(elf_i386_info_to_howto_rel): Likewise.
(struct elf_i386_link_hash_entry): Add tls_type.
(struct elf_i386_obj_tdata): New.
(elf_i386_hash_entry, elf_i386_tdata, elf_i386_local_got_tls_type):
New macros.
(struct elf_i386_link_hash_table): Add tls_ldm_got.
(link_hash_newfunc): Clear tls_type.
(elf_i386_check_relocs): Support TLS relocs.
(elf_i386_gc_sweep_hook): Likewise.
(allocate_dynrelocs): Likewise.
(elf_i386_size_dynamic_sections): Likewise.
(elf_i386_relocate_section): Likewise.
(elf_i386_finish_dynamic_symbol): Likewise.
(bfd_elf32_mkobject, elf_backend_object_p): Define.
* elfxx-ia64.c (struct elfNN_ia64_dyn_sym_info): Add tprel_offset,
dtpmod_offset, dtprel_offset, tprel_done, dtpmod_done, dtprel_done,
want_tprel, want_dtpmod, want_dtprel.
(elfNN_ia64_tprel_base, elfNN_ia64_dtprel_base): New functions.
(ia64_howto_table): Add TLS relocs, rename R_IA64_LTOFF_TP22 to
R_IA64_LTOFF_TPREL22.
(elf_code_to_howto_index): Add TLS relocs.
(elfNN_ia64_check_relocs): Support TLS relocs.
(allocate_global_data_got): Account for TLS .got data.
(allocate_dynrel_entries): Account for TLS dynamic relocations.
(elfNN_ia64_install_value): Supprt TLS relocs.
(set_got_entry): Support TLS relocs.
(elfNN_ia64_relocate_section): Likewise.
* config/obj-elf.c (elf_common): Renamed from obj_elf_common.
(obj_elf_common): Call elf_common.
(obj_elf_tls_common): New function.
(elf_pseudo_tab): Support .tls_common.
(special_sections): Add .tdata and .tbss.
(obj_elf_change_section): Set SEC_THREAD_LOCAL for SHF_TLS
sections.
(obj_elf_parse_section_letters): Support T in section flags (SHF_TLS).
(obj_elf_parse_section_letters): Include T in error message.
* config/tc-ppc.c (ppc_section_letter): Likewise.
* config/tc-alpha.c (alpha_elf_section_letter): Likewise.
(tc_gen_reloc): Handle SEC_THREAD_LOCAL the same way as
SEC_MERGE.
* config/tc-sparc.c (md_apply_fix3): Likewise.
* config/tc-i386.c (tc_i386_fix_adjustable): Add TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Support @TLSGD, @TLSLDM, @GOTTPOFF, @TPOFF, @DTPOFF
and @NTPOFF.
(md_apply_fix3): Add TLS relocs.
* config/tc-ia64.c (enum reloc_func): Add FUNC_DTP_MODULE,
FUNC_DTP_RELATIVE, FUNC_TP_RELATIVE, FUNC_LT_DTP_MODULE,
FUNC_LT_DTP_RELATIVE, FUNC_LT_TP_RELATIVE.
(pseudo_func): Support @dtpmod(), @dtprel() and @tprel().
(ia64_elf_section_letter): Include T in error message.
(md_begin): Support TLS operators.
(md_operand): Likewise.
(ia64_gen_real_reloc_type): Support TLS relocs.
* testsuite/gas/i386/tlspic.s: New file.
* testsuite/gas/i386/tlsd.s: New file.
* testsuite/gas/i386/tlsnopic.s: New file.
* testsuite/gas/i386/tlsd.d: New file.
* testsuite/gas/i386/tlsnopic.d: New file.
* testsuite/gas/i386/tlspic.d: New file.
* testsuite/gas/i386/i386.exp: Add tlsd, tlsnopic and tlspic tests.
* testsuite/gas/ia64/tls.s: New file.
* testsuite/gas/ia64/tls.d: New file.
* testsuite/gas/ia64/ia64.exp: Add tls test.
* write.c (adjust_reloc_syms): Don't change symbols in
SEC_THREAD_LOCAL sections to STT_SECTION + addend.
* elf/common.h (PT_TLS, SHF_TLS, STT_TLS, DF_STATIC_TLS): Define.
* elf/ia64.h (R_IA64_LTOFF_TPREL22): Renamed from R_IA64_LTOFF_TP22.
* elf/i386.h: Add TLS relocs.
* scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss.
* ldlang.c (lang_add_section): Set SEC_THREAD_LOCAL for
output section if necessary. Handle .tbss.
(lang_size_sections): Clear _raw_size for .tbss section
(it allocates space in PT_TLS segment only).
* ldwrite.c (build_link_order): Build link order for .tbss too.
* readelf.c (get_segment_type): Add PT_TLS.
(get_elf_section_flags): Add SHF_TLS.
(get_dynamic_flags): Optimize. Add DF_STATIC_TLS.
(process_dynamic_segment): Use puts instead of printf.
(get_symbol_type): Support STT_TLS.
* objdump.c (dump_section_header): Remove SEC_CONSTRUCTOR_TEXT,
SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS.
Add SEC_THREAD_LOCAL.
2002-05-23 15:12:53 +02:00
|
|
|
|
/* For now make .tbss normal section. */
|
2002-07-30 16:28:55 +02:00
|
|
|
|
if ((flags & SEC_THREAD_LOCAL) && ! link_info.relocateable)
|
* elf.c (_bfd_elf_make_section_from_shdr): Set SEC_THREAD_LOCAL
for symbols from SHF_TLS section.
(_bfd_elf_print_private_bfd_data): Add PT_TLS.
(elf_fake_sections): Set SHF_TLS for SEC_THREAD_LOCAL sections.
(map_sections_to_segments): Build PT_TLS segment if necessary.
(assign_file_positions_for_segments): Likewise.
(get_program_header_size): Account for PT_TLS segment.
(swap_out_syms): Set type of BSF_THREAD_LOCAL symbols and symbols from
SEC_THREAD_LOCAL sections to STT_TLS.
* reloc.c: Add 386 and IA-64 TLS relocs.
* section.c (SEC_THREAD_LOCAL): Define.
(SEC_CONSTRUCTOR_TEXT, SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS):
Remove.
* elflink.h (elf_link_add_object_symbols): Support .tcommon.
(size_dynamic_sections): If DF_STATIC_TLS, set DF_FLAGS
unconditionally.
(struct elf_final_link_info): Add first_tls_sec.
(elf_bfd_final_link): Set first_tls_sec.
Compute elf_hash_table (info)->tls_segment.
(elf_link_output_extsym): Handle STT_TLS symbols.
(elf_link_input_bfd): Likewise.
* syms.c (BSF_THREAD_LOCAL): Define.
* bfd-in2.h: Rebuilt.
* libbfd.h: Rebuilt.
* elf32-i386.c (elf_i386_tls_transition, dtpoff_base, tpoff,
elf_i386_mkobject, elf_i386_object_p): New functions.
(elf_howto_table): Add TLS relocs.
(elf_i386_reloc_type_lookup): Support TLS relocs.
(elf_i386_info_to_howto_rel): Likewise.
(struct elf_i386_link_hash_entry): Add tls_type.
(struct elf_i386_obj_tdata): New.
(elf_i386_hash_entry, elf_i386_tdata, elf_i386_local_got_tls_type):
New macros.
(struct elf_i386_link_hash_table): Add tls_ldm_got.
(link_hash_newfunc): Clear tls_type.
(elf_i386_check_relocs): Support TLS relocs.
(elf_i386_gc_sweep_hook): Likewise.
(allocate_dynrelocs): Likewise.
(elf_i386_size_dynamic_sections): Likewise.
(elf_i386_relocate_section): Likewise.
(elf_i386_finish_dynamic_symbol): Likewise.
(bfd_elf32_mkobject, elf_backend_object_p): Define.
* elfxx-ia64.c (struct elfNN_ia64_dyn_sym_info): Add tprel_offset,
dtpmod_offset, dtprel_offset, tprel_done, dtpmod_done, dtprel_done,
want_tprel, want_dtpmod, want_dtprel.
(elfNN_ia64_tprel_base, elfNN_ia64_dtprel_base): New functions.
(ia64_howto_table): Add TLS relocs, rename R_IA64_LTOFF_TP22 to
R_IA64_LTOFF_TPREL22.
(elf_code_to_howto_index): Add TLS relocs.
(elfNN_ia64_check_relocs): Support TLS relocs.
(allocate_global_data_got): Account for TLS .got data.
(allocate_dynrel_entries): Account for TLS dynamic relocations.
(elfNN_ia64_install_value): Supprt TLS relocs.
(set_got_entry): Support TLS relocs.
(elfNN_ia64_relocate_section): Likewise.
* config/obj-elf.c (elf_common): Renamed from obj_elf_common.
(obj_elf_common): Call elf_common.
(obj_elf_tls_common): New function.
(elf_pseudo_tab): Support .tls_common.
(special_sections): Add .tdata and .tbss.
(obj_elf_change_section): Set SEC_THREAD_LOCAL for SHF_TLS
sections.
(obj_elf_parse_section_letters): Support T in section flags (SHF_TLS).
(obj_elf_parse_section_letters): Include T in error message.
* config/tc-ppc.c (ppc_section_letter): Likewise.
* config/tc-alpha.c (alpha_elf_section_letter): Likewise.
(tc_gen_reloc): Handle SEC_THREAD_LOCAL the same way as
SEC_MERGE.
* config/tc-sparc.c (md_apply_fix3): Likewise.
* config/tc-i386.c (tc_i386_fix_adjustable): Add TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Support @TLSGD, @TLSLDM, @GOTTPOFF, @TPOFF, @DTPOFF
and @NTPOFF.
(md_apply_fix3): Add TLS relocs.
* config/tc-ia64.c (enum reloc_func): Add FUNC_DTP_MODULE,
FUNC_DTP_RELATIVE, FUNC_TP_RELATIVE, FUNC_LT_DTP_MODULE,
FUNC_LT_DTP_RELATIVE, FUNC_LT_TP_RELATIVE.
(pseudo_func): Support @dtpmod(), @dtprel() and @tprel().
(ia64_elf_section_letter): Include T in error message.
(md_begin): Support TLS operators.
(md_operand): Likewise.
(ia64_gen_real_reloc_type): Support TLS relocs.
* testsuite/gas/i386/tlspic.s: New file.
* testsuite/gas/i386/tlsd.s: New file.
* testsuite/gas/i386/tlsnopic.s: New file.
* testsuite/gas/i386/tlsd.d: New file.
* testsuite/gas/i386/tlsnopic.d: New file.
* testsuite/gas/i386/tlspic.d: New file.
* testsuite/gas/i386/i386.exp: Add tlsd, tlsnopic and tlspic tests.
* testsuite/gas/ia64/tls.s: New file.
* testsuite/gas/ia64/tls.d: New file.
* testsuite/gas/ia64/ia64.exp: Add tls test.
* write.c (adjust_reloc_syms): Don't change symbols in
SEC_THREAD_LOCAL sections to STT_SECTION + addend.
* elf/common.h (PT_TLS, SHF_TLS, STT_TLS, DF_STATIC_TLS): Define.
* elf/ia64.h (R_IA64_LTOFF_TPREL22): Renamed from R_IA64_LTOFF_TP22.
* elf/i386.h: Add TLS relocs.
* scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss.
* ldlang.c (lang_add_section): Set SEC_THREAD_LOCAL for
output section if necessary. Handle .tbss.
(lang_size_sections): Clear _raw_size for .tbss section
(it allocates space in PT_TLS segment only).
* ldwrite.c (build_link_order): Build link order for .tbss too.
* readelf.c (get_segment_type): Add PT_TLS.
(get_elf_section_flags): Add SHF_TLS.
(get_dynamic_flags): Optimize. Add DF_STATIC_TLS.
(process_dynamic_segment): Use puts instead of printf.
(get_symbol_type): Support STT_TLS.
* objdump.c (dump_section_header): Remove SEC_CONSTRUCTOR_TEXT,
SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS.
Add SEC_THREAD_LOCAL.
2002-05-23 15:12:53 +02:00
|
|
|
|
flags |= SEC_LOAD;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
section->output_section->flags |= flags;
|
|
|
|
|
|
2001-04-13 02:34:36 +02:00
|
|
|
|
if (flags & SEC_MERGE)
|
|
|
|
|
section->output_section->entsize = section->entsize;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* If SEC_READONLY is not set in the input section, then clear
|
|
|
|
|
it from the output section. */
|
|
|
|
|
if ((section->flags & SEC_READONLY) == 0)
|
|
|
|
|
section->output_section->flags &= ~SEC_READONLY;
|
|
|
|
|
|
|
|
|
|
switch (output->sectype)
|
|
|
|
|
{
|
|
|
|
|
case normal_section:
|
|
|
|
|
break;
|
|
|
|
|
case dsect_section:
|
|
|
|
|
case copy_section:
|
|
|
|
|
case info_section:
|
|
|
|
|
case overlay_section:
|
|
|
|
|
output->bfd_section->flags &= ~SEC_ALLOC;
|
|
|
|
|
break;
|
|
|
|
|
case noload_section:
|
|
|
|
|
output->bfd_section->flags &= ~SEC_LOAD;
|
|
|
|
|
output->bfd_section->flags |= SEC_NEVER_LOAD;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-09 05:22:27 +02:00
|
|
|
|
/* Copy over SEC_SMALL_DATA. */
|
|
|
|
|
if (section->flags & SEC_SMALL_DATA)
|
|
|
|
|
section->output_section->flags |= SEC_SMALL_DATA;
|
1999-07-14 18:45:13 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (section->alignment_power > output->bfd_section->alignment_power)
|
|
|
|
|
output->bfd_section->alignment_power = section->alignment_power;
|
|
|
|
|
|
2003-01-02 04:53:53 +01:00
|
|
|
|
/* If supplied an alignment, then force it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (output->section_alignment != -1)
|
|
|
|
|
output->bfd_section->alignment_power = output->section_alignment;
|
2000-06-20 15:29:07 +02:00
|
|
|
|
|
|
|
|
|
if (section->flags & SEC_BLOCK)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
{
|
|
|
|
|
section->output_section->flags |= SEC_BLOCK;
|
|
|
|
|
/* FIXME: This value should really be obtained from the bfd... */
|
|
|
|
|
output->block_value = 128;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Handle wildcard sorting. This returns the lang_input_section which
|
|
|
|
|
should follow the one we are going to create for SECTION and FILE,
|
|
|
|
|
based on the sorting requirements of WILD. It returns NULL if the
|
|
|
|
|
new section should just go at the end of the current list. */
|
|
|
|
|
|
|
|
|
|
static lang_statement_union_type *
|
2001-08-03 03:11:21 +02:00
|
|
|
|
wild_sort (wild, sec, file, section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_wild_statement_type *wild;
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_input_statement_type *file;
|
|
|
|
|
asection *section;
|
|
|
|
|
{
|
|
|
|
|
const char *section_name;
|
|
|
|
|
lang_statement_union_type *l;
|
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (!wild->filenames_sorted && (sec == NULL || !sec->spec.sorted))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
section_name = bfd_get_section_name (file->the_bfd, section);
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (l = wild->children.head; l != NULL; l = l->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_input_section_type *ls;
|
|
|
|
|
|
|
|
|
|
if (l->header.type != lang_input_section_enum)
|
|
|
|
|
continue;
|
|
|
|
|
ls = &l->input_section;
|
|
|
|
|
|
|
|
|
|
/* Sorting by filename takes precedence over sorting by section
|
|
|
|
|
name. */
|
|
|
|
|
|
|
|
|
|
if (wild->filenames_sorted)
|
|
|
|
|
{
|
|
|
|
|
const char *fn, *ln;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean fa, la;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* The PE support for the .idata section as generated by
|
|
|
|
|
dlltool assumes that files will be sorted by the name of
|
|
|
|
|
the archive and then the name of the file within the
|
|
|
|
|
archive. */
|
|
|
|
|
|
|
|
|
|
if (file->the_bfd != NULL
|
|
|
|
|
&& bfd_my_archive (file->the_bfd) != NULL)
|
|
|
|
|
{
|
|
|
|
|
fn = bfd_get_filename (bfd_my_archive (file->the_bfd));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
fa = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fn = file->filename;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
fa = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ls->ifile->the_bfd != NULL
|
|
|
|
|
&& bfd_my_archive (ls->ifile->the_bfd) != NULL)
|
|
|
|
|
{
|
|
|
|
|
ln = bfd_get_filename (bfd_my_archive (ls->ifile->the_bfd));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
la = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ln = ls->ifile->filename;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
la = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = strcmp (fn, ln);
|
|
|
|
|
if (i > 0)
|
|
|
|
|
continue;
|
|
|
|
|
else if (i < 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (fa || la)
|
|
|
|
|
{
|
|
|
|
|
if (fa)
|
|
|
|
|
fn = file->filename;
|
|
|
|
|
if (la)
|
|
|
|
|
ln = ls->ifile->filename;
|
|
|
|
|
|
|
|
|
|
i = strcmp (fn, ln);
|
|
|
|
|
if (i > 0)
|
|
|
|
|
continue;
|
|
|
|
|
else if (i < 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Here either the files are not sorted by name, or we are
|
|
|
|
|
looking at the sections for this file. */
|
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (sec != NULL && sec->spec.sorted)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (strcmp (section_name,
|
|
|
|
|
bfd_get_section_name (ls->ifile->the_bfd,
|
|
|
|
|
ls->section))
|
|
|
|
|
< 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return l;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Expand a wild statement for a particular FILE. SECTION may be
|
|
|
|
|
NULL, in which case it is a wild card. */
|
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
output_section_callback (ptr, sec, section, file, output)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_wild_statement_type *ptr;
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
asection *section;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_input_statement_type *file;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR output;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
{
|
|
|
|
|
lang_statement_union_type *before;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
/* Exclude sections that match UNIQUE_SECTION_LIST. */
|
|
|
|
|
if (unique_section_p (bfd_get_section_name (file->the_bfd, section)))
|
|
|
|
|
return;
|
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
/* If the wild pattern was marked KEEP, the member sections
|
|
|
|
|
should be as well. */
|
|
|
|
|
if (ptr->keep_sections)
|
|
|
|
|
section->flags |= SEC_KEEP;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
before = wild_sort (ptr, sec, file, section);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
/* Here BEFORE points to the lang_input_section which
|
|
|
|
|
should follow the one we are about to add. If BEFORE
|
|
|
|
|
is NULL, then the section should just go at the end
|
|
|
|
|
of the current list. */
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
if (before == NULL)
|
2001-08-14 04:01:31 +02:00
|
|
|
|
lang_add_section (&ptr->children, section,
|
|
|
|
|
(lang_output_section_statement_type *) output,
|
|
|
|
|
file);
|
1999-05-09 01:40:58 +02:00
|
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-05-09 01:40:58 +02:00
|
|
|
|
lang_statement_list_type list;
|
|
|
|
|
lang_statement_union_type **pp;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
lang_list_init (&list);
|
2001-08-14 04:01:31 +02:00
|
|
|
|
lang_add_section (&list, section,
|
|
|
|
|
(lang_output_section_statement_type *) output,
|
|
|
|
|
file);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
/* If we are discarding the section, LIST.HEAD will
|
|
|
|
|
be NULL. */
|
|
|
|
|
if (list.head != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
ASSERT (list.head->header.next == NULL);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-09 01:40:58 +02:00
|
|
|
|
for (pp = &ptr->children.head;
|
|
|
|
|
*pp != before;
|
2001-08-20 04:14:50 +02:00
|
|
|
|
pp = &(*pp)->header.next)
|
1999-05-09 01:40:58 +02:00
|
|
|
|
ASSERT (*pp != NULL);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2001-08-20 04:14:50 +02:00
|
|
|
|
list.head->header.next = *pp;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
*pp = list.head;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is passed a file name which must have been seen already and
|
|
|
|
|
added to the statement tree. We will see if it has been opened
|
|
|
|
|
already and had its symbols read. If not then we'll read it. */
|
|
|
|
|
|
|
|
|
|
static lang_input_statement_type *
|
|
|
|
|
lookup_name (name)
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
lang_input_statement_type *search;
|
|
|
|
|
|
|
|
|
|
for (search = (lang_input_statement_type *) input_file_chain.head;
|
|
|
|
|
search != (lang_input_statement_type *) NULL;
|
|
|
|
|
search = (lang_input_statement_type *) search->next_real_file)
|
|
|
|
|
{
|
|
|
|
|
if (search->filename == (char *) NULL && name == (char *) NULL)
|
|
|
|
|
return search;
|
|
|
|
|
if (search->filename != (char *) NULL
|
|
|
|
|
&& name != (char *) NULL
|
|
|
|
|
&& strcmp (search->filename, name) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (search == (lang_input_statement_type *) NULL)
|
|
|
|
|
search = new_afile (name, lang_input_file_is_file_enum, default_target,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* If we have already added this file, or this file is not real
|
|
|
|
|
(FIXME: can that ever actually happen?) or the name is NULL
|
|
|
|
|
(FIXME: can that ever actually happen?) don't add this file. */
|
|
|
|
|
if (search->loaded
|
|
|
|
|
|| ! search->real
|
|
|
|
|
|| search->filename == (const char *) NULL)
|
|
|
|
|
return search;
|
|
|
|
|
|
2001-06-15 11:00:11 +02:00
|
|
|
|
if (! load_symbols (search, (lang_statement_list_type *) NULL))
|
|
|
|
|
return NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
return search;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the symbols for an input file. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
load_symbols (entry, place)
|
|
|
|
|
lang_input_statement_type *entry;
|
|
|
|
|
lang_statement_list_type *place;
|
|
|
|
|
{
|
|
|
|
|
char **matching;
|
|
|
|
|
|
|
|
|
|
if (entry->loaded)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
ldfile_open_file (entry);
|
|
|
|
|
|
|
|
|
|
if (! bfd_check_format (entry->the_bfd, bfd_archive)
|
|
|
|
|
&& ! bfd_check_format_matches (entry->the_bfd, bfd_object, &matching))
|
|
|
|
|
{
|
|
|
|
|
bfd_error_type err;
|
|
|
|
|
lang_statement_list_type *hold;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean bad_load = TRUE;
|
2003-03-03 21:00:35 +01:00
|
|
|
|
bfd_boolean save_ldlang_sysrooted_script;
|
2002-05-03 15:48:55 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
err = bfd_get_error ();
|
2001-04-28 20:00:10 +02:00
|
|
|
|
|
|
|
|
|
/* See if the emulation has some special knowledge. */
|
|
|
|
|
if (ldemul_unrecognized_file (entry))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2001-04-28 20:00:10 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (err == bfd_error_file_ambiguously_recognized)
|
|
|
|
|
{
|
|
|
|
|
char **p;
|
|
|
|
|
|
|
|
|
|
einfo (_("%B: file not recognized: %E\n"), entry->the_bfd);
|
|
|
|
|
einfo (_("%B: matching formats:"), entry->the_bfd);
|
|
|
|
|
for (p = matching; *p != NULL; p++)
|
|
|
|
|
einfo (" %s", *p);
|
|
|
|
|
einfo ("%F\n");
|
|
|
|
|
}
|
|
|
|
|
else if (err != bfd_error_file_not_recognized
|
|
|
|
|
|| place == NULL)
|
2001-06-15 11:00:11 +02:00
|
|
|
|
einfo (_("%F%B: file not recognized: %E\n"), entry->the_bfd);
|
|
|
|
|
else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bad_load = FALSE;
|
2002-05-03 15:48:55 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_close (entry->the_bfd);
|
|
|
|
|
entry->the_bfd = NULL;
|
|
|
|
|
|
|
|
|
|
/* Try to interpret the file as a linker script. */
|
|
|
|
|
ldfile_open_command_file (entry->filename);
|
|
|
|
|
|
|
|
|
|
hold = stat_ptr;
|
|
|
|
|
stat_ptr = place;
|
2003-03-03 21:00:35 +01:00
|
|
|
|
save_ldlang_sysrooted_script = ldlang_sysrooted_script;
|
|
|
|
|
ldlang_sysrooted_script = entry->sysrooted;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
ldfile_assumed_script = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
parser_input = input_script;
|
|
|
|
|
yyparse ();
|
2002-11-30 09:39:46 +01:00
|
|
|
|
ldfile_assumed_script = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-03-03 21:00:35 +01:00
|
|
|
|
ldlang_sysrooted_script = save_ldlang_sysrooted_script;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
stat_ptr = hold;
|
|
|
|
|
|
2001-06-15 11:00:11 +02:00
|
|
|
|
return ! bad_load;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ldemul_recognized_file (entry))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* We don't call ldlang_add_file for an archive. Instead, the
|
|
|
|
|
add_symbols entry point will call ldlang_add_file, via the
|
|
|
|
|
add_archive_element callback, for each element of the archive
|
|
|
|
|
which is used. */
|
|
|
|
|
switch (bfd_get_format (entry->the_bfd))
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case bfd_object:
|
|
|
|
|
ldlang_add_file (entry);
|
|
|
|
|
if (trace_files || trace_file_tries)
|
|
|
|
|
info_msg ("%I\n", entry);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case bfd_archive:
|
|
|
|
|
if (entry->whole_archive)
|
|
|
|
|
{
|
2002-05-03 15:48:55 +02:00
|
|
|
|
bfd *member = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean loaded = TRUE;
|
2001-06-15 11:00:11 +02:00
|
|
|
|
|
|
|
|
|
for (;;)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-06-15 11:00:11 +02:00
|
|
|
|
member = bfd_openr_next_archived_file (entry->the_bfd, member);
|
|
|
|
|
|
|
|
|
|
if (member == NULL)
|
|
|
|
|
break;
|
2002-05-03 15:48:55 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! bfd_check_format (member, bfd_object))
|
2001-06-15 11:00:11 +02:00
|
|
|
|
{
|
|
|
|
|
einfo (_("%F%B: member %B in archive is not an object\n"),
|
|
|
|
|
entry->the_bfd, member);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
loaded = FALSE;
|
2001-06-15 11:00:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! ((*link_info.callbacks->add_archive_element)
|
|
|
|
|
(&link_info, member, "--whole-archive")))
|
|
|
|
|
abort ();
|
2001-06-15 11:00:11 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! bfd_link_add_symbols (member, &link_info))
|
2001-06-15 11:00:11 +02:00
|
|
|
|
{
|
|
|
|
|
einfo (_("%F%B: could not read symbols: %E\n"), member);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
loaded = FALSE;
|
2001-06-15 11:00:11 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-15 11:00:11 +02:00
|
|
|
|
entry->loaded = loaded;
|
|
|
|
|
return loaded;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-06-15 11:00:11 +02:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-15 02:09:02 +02:00
|
|
|
|
if (bfd_link_add_symbols (entry->the_bfd, &link_info))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
entry->loaded = TRUE;
|
2001-06-15 11:00:11 +02:00
|
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
einfo (_("%F%B: could not read symbols: %E\n"), entry->the_bfd);
|
|
|
|
|
|
2001-06-15 11:00:11 +02:00
|
|
|
|
return entry->loaded;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
/* Handle a wild statement. S->FILENAME or S->SECTION_LIST or both
|
|
|
|
|
may be NULL, indicating that it is a wildcard. Separate
|
|
|
|
|
lang_input_section statements are created for each part of the
|
|
|
|
|
expansion; they are added after the wild statement S. OUTPUT is
|
|
|
|
|
the output section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
wild (s, target, output)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_wild_statement_type *s;
|
1999-07-11 22:09:04 +02:00
|
|
|
|
const char *target ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_output_section_statement_type *output;
|
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild (s, output_section_callback, (PTR) output);
|
|
|
|
|
|
|
|
|
|
for (sec = s->section_list; sec != NULL; sec = sec->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (default_common_section != NULL)
|
|
|
|
|
break;
|
|
|
|
|
if (sec->spec.name != NULL && strcmp (sec->spec.name, "COMMON") == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Remember the section that common is going to in case we
|
2002-05-03 15:48:55 +02:00
|
|
|
|
later get something which doesn't know where to put it. */
|
2001-08-03 03:11:21 +02:00
|
|
|
|
default_common_section = output;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return TRUE iff target is the sought target. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static int
|
|
|
|
|
get_target (target, data)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const bfd_target *target;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const char *sought = (const char *) data;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
return strcmp (target->name, sought) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like strcpy() but convert to lower case as well. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static void
|
|
|
|
|
stricpy (dest, src)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *dest;
|
|
|
|
|
char *src;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
|
|
|
|
char c;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
while ((c = *src++) != 0)
|
2001-09-19 07:33:36 +02:00
|
|
|
|
*dest++ = TOLOWER (c);
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
*dest = 0;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-02 04:53:53 +01:00
|
|
|
|
/* Remove the first occurrence of needle (if any) in haystack
|
1999-07-19 16:57:03 +02:00
|
|
|
|
from haystack. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static void
|
|
|
|
|
strcut (haystack, needle)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *haystack;
|
|
|
|
|
char *needle;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
|
|
|
|
haystack = strstr (haystack, needle);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
if (haystack)
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *src;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
for (src = haystack + strlen (needle); *src;)
|
|
|
|
|
*haystack++ = *src++;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
*haystack = 0;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compare two target format name strings.
|
|
|
|
|
Return a value indicating how "similar" they are. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static int
|
|
|
|
|
name_compare (first, second)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *first;
|
|
|
|
|
char *second;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *copy1;
|
|
|
|
|
char *copy2;
|
|
|
|
|
int result;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
copy1 = xmalloc (strlen (first) + 1);
|
|
|
|
|
copy2 = xmalloc (strlen (second) + 1);
|
|
|
|
|
|
|
|
|
|
/* Convert the names to lower case. */
|
|
|
|
|
stricpy (copy1, first);
|
|
|
|
|
stricpy (copy2, second);
|
|
|
|
|
|
|
|
|
|
/* Remove and endian strings from the name. */
|
|
|
|
|
strcut (copy1, "big");
|
|
|
|
|
strcut (copy1, "little");
|
|
|
|
|
strcut (copy2, "big");
|
|
|
|
|
strcut (copy2, "little");
|
|
|
|
|
|
|
|
|
|
/* Return a value based on how many characters match,
|
|
|
|
|
starting from the beginning. If both strings are
|
|
|
|
|
the same then return 10 * their length. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
for (result = 0; copy1[result] == copy2[result]; result++)
|
|
|
|
|
if (copy1[result] == 0)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
|
|
|
|
result *= 10;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
free (copy1);
|
|
|
|
|
free (copy2);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set by closest_target_match() below. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
static const bfd_target *winner;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
|
|
|
|
/* Scan all the valid bfd targets looking for one that has the endianness
|
|
|
|
|
requirement that was specified on the command line, and is the nearest
|
|
|
|
|
match to the original output target. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static int
|
|
|
|
|
closest_target_match (target, data)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const bfd_target *target;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const bfd_target *original = (const bfd_target *) data;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (command_line.endian == ENDIAN_BIG
|
|
|
|
|
&& target->byteorder != BFD_ENDIAN_BIG)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
return 0;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (command_line.endian == ENDIAN_LITTLE
|
|
|
|
|
&& target->byteorder != BFD_ENDIAN_LITTLE)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Must be the same flavour. */
|
|
|
|
|
if (target->flavour != original->flavour)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* If we have not found a potential winner yet, then record this one. */
|
|
|
|
|
if (winner == NULL)
|
|
|
|
|
{
|
|
|
|
|
winner = target;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Oh dear, we now have two potential candidates for a successful match.
|
2000-09-29 13:18:18 +02:00
|
|
|
|
Compare their names and choose the better one. */
|
2001-05-17 05:58:45 +02:00
|
|
|
|
if (name_compare (target->name, original->name)
|
|
|
|
|
> name_compare (winner->name, original->name))
|
1999-07-19 16:57:03 +02:00
|
|
|
|
winner = target;
|
|
|
|
|
|
|
|
|
|
/* Keep on searching until wqe have checked them all. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the BFD target format of the first input file. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
static char *
|
|
|
|
|
get_first_input_target ()
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
char *target = NULL;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (s)
|
|
|
|
|
{
|
|
|
|
|
if (s->header.type == lang_input_statement_enum
|
|
|
|
|
&& s->real)
|
|
|
|
|
{
|
|
|
|
|
ldfile_open_file (s);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
if (s->the_bfd != NULL
|
|
|
|
|
&& bfd_check_format (s->the_bfd, bfd_object))
|
|
|
|
|
{
|
|
|
|
|
target = bfd_get_target (s->the_bfd);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
if (target != NULL)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-07-19 16:57:03 +02:00
|
|
|
|
return target;
|
|
|
|
|
}
|
|
|
|
|
|
2002-10-10 17:59:10 +02:00
|
|
|
|
const char *
|
|
|
|
|
lang_get_output_target ()
|
|
|
|
|
{
|
|
|
|
|
const char *target;
|
|
|
|
|
|
|
|
|
|
/* Has the user told us which output format to use? */
|
|
|
|
|
if (output_target != (char *) NULL)
|
|
|
|
|
return output_target;
|
|
|
|
|
|
|
|
|
|
/* No - has the current target been set to something other than
|
|
|
|
|
the default? */
|
|
|
|
|
if (current_target != default_target)
|
|
|
|
|
return current_target;
|
|
|
|
|
|
|
|
|
|
/* No - can we determine the format of the first input file? */
|
|
|
|
|
target = get_first_input_target ();
|
|
|
|
|
if (target != NULL)
|
|
|
|
|
return target;
|
|
|
|
|
|
|
|
|
|
/* Failed - use the default output target. */
|
|
|
|
|
return default_target;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Open the output file. */
|
|
|
|
|
|
|
|
|
|
static bfd *
|
|
|
|
|
open_output (name)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
bfd *output;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-10-10 17:59:10 +02:00
|
|
|
|
output_target = lang_get_output_target ();
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Has the user requested a particular endianness on the command
|
|
|
|
|
line? */
|
1999-07-19 16:57:03 +02:00
|
|
|
|
if (command_line.endian != ENDIAN_UNSET)
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
const bfd_target *target;
|
1999-09-12 16:50:15 +02:00
|
|
|
|
enum bfd_endian desired_endian;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
|
|
|
|
/* Get the chosen target. */
|
2000-09-05 05:21:16 +02:00
|
|
|
|
target = bfd_search_for_target (get_target, (PTR) output_target);
|
1999-07-19 16:57:03 +02:00
|
|
|
|
|
2000-08-25 22:44:09 +02:00
|
|
|
|
/* If the target is not supported, we cannot do anything. */
|
|
|
|
|
if (target != NULL)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
2000-08-25 22:44:09 +02:00
|
|
|
|
if (command_line.endian == ENDIAN_BIG)
|
|
|
|
|
desired_endian = BFD_ENDIAN_BIG;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
else
|
2000-08-25 22:44:09 +02:00
|
|
|
|
desired_endian = BFD_ENDIAN_LITTLE;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
|
|
|
|
/* See if the target has the wrong endianness. This should
|
|
|
|
|
not happen if the linker script has provided big and
|
|
|
|
|
little endian alternatives, but some scrips don't do
|
|
|
|
|
this. */
|
2000-08-25 22:44:09 +02:00
|
|
|
|
if (target->byteorder != desired_endian)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
{
|
2000-08-25 22:44:09 +02:00
|
|
|
|
/* If it does, then see if the target provides
|
|
|
|
|
an alternative with the correct endianness. */
|
|
|
|
|
if (target->alternative_target != NULL
|
|
|
|
|
&& (target->alternative_target->byteorder == desired_endian))
|
|
|
|
|
output_target = target->alternative_target->name;
|
1999-07-19 16:57:03 +02:00
|
|
|
|
else
|
2000-08-25 22:44:09 +02:00
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
/* Try to find a target as similar as possible to
|
|
|
|
|
the default target, but which has the desired
|
|
|
|
|
endian characteristic. */
|
2001-05-17 05:58:45 +02:00
|
|
|
|
(void) bfd_search_for_target (closest_target_match,
|
|
|
|
|
(PTR) target);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
|
|
|
|
/* Oh dear - we could not find any targets that
|
|
|
|
|
satisfy our requirements. */
|
2000-08-25 22:44:09 +02:00
|
|
|
|
if (winner == NULL)
|
|
|
|
|
einfo (_("%P: warning: could not find any targets that match endianness requirement\n"));
|
|
|
|
|
else
|
|
|
|
|
output_target = winner->name;
|
|
|
|
|
}
|
1999-07-19 16:57:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
output = bfd_openw (name, output_target);
|
|
|
|
|
|
|
|
|
|
if (output == (bfd *) NULL)
|
|
|
|
|
{
|
|
|
|
|
if (bfd_get_error () == bfd_error_invalid_target)
|
1999-07-19 16:57:03 +02:00
|
|
|
|
einfo (_("%P%F: target %s not found\n"), output_target);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
einfo (_("%P%F: cannot open output file %s: %E\n"), name);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
delete_output_file_on_failure = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
#if 0
|
|
|
|
|
output->flags |= D_PAGED;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (! bfd_set_format (output, bfd_object))
|
|
|
|
|
einfo (_("%P%F:%s: can not make object file: %E\n"), name);
|
|
|
|
|
if (! bfd_set_arch_mach (output,
|
|
|
|
|
ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine))
|
|
|
|
|
einfo (_("%P%F:%s: can not set architecture: %E\n"), name);
|
|
|
|
|
|
|
|
|
|
link_info.hash = bfd_link_hash_table_create (output);
|
|
|
|
|
if (link_info.hash == (struct bfd_link_hash_table *) NULL)
|
|
|
|
|
einfo (_("%P%F: can not create link hash table: %E\n"));
|
|
|
|
|
|
|
|
|
|
bfd_set_gp_size (output, g_switch_value);
|
|
|
|
|
return output;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ldlang_open_output (statement)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *statement;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (statement->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
ASSERT (output_bfd == (bfd *) NULL);
|
|
|
|
|
output_bfd = open_output (statement->output_statement.name);
|
|
|
|
|
ldemul_set_output_arch ();
|
|
|
|
|
if (config.magic_demand_paged && !link_info.relocateable)
|
|
|
|
|
output_bfd->flags |= D_PAGED;
|
|
|
|
|
else
|
|
|
|
|
output_bfd->flags &= ~D_PAGED;
|
|
|
|
|
if (config.text_read_only)
|
|
|
|
|
output_bfd->flags |= WP_TEXT;
|
|
|
|
|
else
|
|
|
|
|
output_bfd->flags &= ~WP_TEXT;
|
|
|
|
|
if (link_info.traditional_format)
|
|
|
|
|
output_bfd->flags |= BFD_TRADITIONAL_FORMAT;
|
|
|
|
|
else
|
|
|
|
|
output_bfd->flags &= ~BFD_TRADITIONAL_FORMAT;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
current_target = statement->target_statement.target;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Open all the input files. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
open_input_bfds (s, force)
|
|
|
|
|
lang_statement_union_type *s;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean force;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
open_input_bfds (constructor_list.head, force);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
open_input_bfds (s->output_section_statement.children.head, force);
|
|
|
|
|
break;
|
|
|
|
|
case lang_wild_statement_enum:
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Maybe we should load the file's symbols. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (s->wild_statement.filename
|
|
|
|
|
&& ! wildcardp (s->wild_statement.filename))
|
|
|
|
|
(void) lookup_name (s->wild_statement.filename);
|
|
|
|
|
open_input_bfds (s->wild_statement.children.head, force);
|
|
|
|
|
break;
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *undefs;
|
|
|
|
|
|
|
|
|
|
/* We must continually search the entries in the group
|
2000-10-05 15:03:30 +02:00
|
|
|
|
until no new symbols are added to the list of undefined
|
|
|
|
|
symbols. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
undefs = link_info.hash->undefs_tail;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
open_input_bfds (s->group_statement.children.head, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
while (undefs != link_info.hash->undefs_tail);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
current_target = s->target_statement.target;
|
|
|
|
|
break;
|
|
|
|
|
case lang_input_statement_enum:
|
1999-07-19 16:57:03 +02:00
|
|
|
|
if (s->input_statement.real)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_statement_list_type add;
|
|
|
|
|
|
|
|
|
|
s->input_statement.target = current_target;
|
|
|
|
|
|
|
|
|
|
/* If we are being called from within a group, and this
|
|
|
|
|
is an archive which has already been searched, then
|
2000-05-11 01:12:35 +02:00
|
|
|
|
force it to be researched unless the whole archive
|
|
|
|
|
has been loaded already. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (force
|
2000-05-11 01:12:35 +02:00
|
|
|
|
&& !s->input_statement.whole_archive
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& s->input_statement.loaded
|
|
|
|
|
&& bfd_check_format (s->input_statement.the_bfd,
|
|
|
|
|
bfd_archive))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
s->input_statement.loaded = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
lang_list_init (&add);
|
2001-02-27 02:38:06 +01:00
|
|
|
|
|
2001-06-15 11:00:11 +02:00
|
|
|
|
if (! load_symbols (&s->input_statement, &add))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
config.make_executable = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (add.head != NULL)
|
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
*add.tail = s->header.next;
|
|
|
|
|
s->header.next = add.head;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* If there are [COMMONS] statements, put a wild one into the bss
|
|
|
|
|
section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_reasonable_defaults ()
|
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
lang_output_section_statement_lookup (".text");
|
|
|
|
|
lang_output_section_statement_lookup (".data");
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
default_common_section = lang_output_section_statement_lookup (".bss");
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!placed_commons)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_wild_statement_type *new =
|
|
|
|
|
new_stat (lang_wild_statement,
|
|
|
|
|
&default_common_section->children);
|
|
|
|
|
|
|
|
|
|
new->section_name = "COMMON";
|
|
|
|
|
new->filename = (char *) NULL;
|
|
|
|
|
lang_list_init (&new->children);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Add the supplied name to the symbol table as an undefined reference.
|
2002-03-20 08:49:53 +01:00
|
|
|
|
This is a two step process as the symbol table doesn't even exist at
|
|
|
|
|
the time the ld command line is processed. First we put the name
|
|
|
|
|
on a list, then, once the output file has been opened, transfer the
|
|
|
|
|
name to the symbol table. */
|
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
typedef struct bfd_sym_chain ldlang_undef_chain_list_type;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
#define ldlang_undef_chain_list_head entry_symbol.next
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ldlang_add_undef (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *const name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
ldlang_undef_chain_list_type *new =
|
|
|
|
|
((ldlang_undef_chain_list_type *)
|
|
|
|
|
stat_alloc (sizeof (ldlang_undef_chain_list_type)));
|
|
|
|
|
|
|
|
|
|
new->next = ldlang_undef_chain_list_head;
|
|
|
|
|
ldlang_undef_chain_list_head = new;
|
|
|
|
|
|
2001-05-02 18:42:55 +02:00
|
|
|
|
new->name = xstrdup (name);
|
2002-03-20 08:49:53 +01:00
|
|
|
|
|
|
|
|
|
if (output_bfd != NULL)
|
|
|
|
|
insert_undefined (new->name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Insert NAME as undefined in the symbol table. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
insert_undefined (name)
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, name, TRUE, FALSE, TRUE);
|
2002-03-20 08:49:53 +01:00
|
|
|
|
if (h == (struct bfd_link_hash_entry *) NULL)
|
|
|
|
|
einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
|
|
|
|
|
if (h->type == bfd_link_hash_new)
|
|
|
|
|
{
|
|
|
|
|
h->type = bfd_link_hash_undefined;
|
|
|
|
|
h->u.undef.abfd = NULL;
|
|
|
|
|
bfd_link_add_undef (link_info.hash, h);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Run through the list of undefineds created above and place them
|
|
|
|
|
into the linker hash table as undefined symbols belonging to the
|
2000-10-05 15:03:30 +02:00
|
|
|
|
script file. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
lang_place_undefineds ()
|
|
|
|
|
{
|
|
|
|
|
ldlang_undef_chain_list_type *ptr;
|
|
|
|
|
|
|
|
|
|
for (ptr = ldlang_undef_chain_list_head;
|
|
|
|
|
ptr != (ldlang_undef_chain_list_type *) NULL;
|
|
|
|
|
ptr = ptr->next)
|
|
|
|
|
{
|
2002-03-20 08:49:53 +01:00
|
|
|
|
insert_undefined (ptr->name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-01-02 04:53:53 +01:00
|
|
|
|
/* Open input files and attach to output sections. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
map_input_to_output_sections (s, target, output_section_statement)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *s;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *target;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_wild_statement_enum:
|
2001-08-03 03:11:21 +02:00
|
|
|
|
wild (&s->wild_statement, target, output_section_statement);
|
2001-11-21 02:13:15 +01:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
map_input_to_output_sections (constructor_list.head,
|
|
|
|
|
target,
|
|
|
|
|
output_section_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
map_input_to_output_sections (s->output_section_statement.children.head,
|
|
|
|
|
target,
|
|
|
|
|
&s->output_section_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
target = s->target_statement.target;
|
|
|
|
|
break;
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
map_input_to_output_sections (s->group_statement.children.head,
|
|
|
|
|
target,
|
|
|
|
|
output_section_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_fill_statement_enum:
|
|
|
|
|
case lang_input_section_enum:
|
|
|
|
|
case lang_object_symbols_statement_enum:
|
|
|
|
|
case lang_data_statement_enum:
|
|
|
|
|
case lang_reloc_statement_enum:
|
|
|
|
|
case lang_padding_statement_enum:
|
|
|
|
|
case lang_input_statement_enum:
|
|
|
|
|
if (output_section_statement != NULL
|
|
|
|
|
&& output_section_statement->bfd_section == NULL)
|
|
|
|
|
init_os (output_section_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_assignment_statement_enum:
|
|
|
|
|
if (output_section_statement != NULL
|
|
|
|
|
&& output_section_statement->bfd_section == NULL)
|
|
|
|
|
init_os (output_section_statement);
|
|
|
|
|
|
|
|
|
|
/* Make sure that any sections mentioned in the assignment
|
2000-10-05 15:03:30 +02:00
|
|
|
|
are initialized. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
exp_init_os (s->assignment_statement.exp);
|
|
|
|
|
break;
|
|
|
|
|
case lang_afile_asection_pair_statement_enum:
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
case lang_address_statement_enum:
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Mark the specified section with the supplied address. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *os =
|
|
|
|
|
lang_output_section_statement_lookup
|
|
|
|
|
(s->address_statement.section_name);
|
|
|
|
|
|
|
|
|
|
if (os->bfd_section == NULL)
|
|
|
|
|
init_os (os);
|
|
|
|
|
os->addr_tree = s->address_statement.address;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-04 16:41:01 +02:00
|
|
|
|
/* An output section might have been removed after its statement was
|
|
|
|
|
added. For example, ldemul_before_allocation can remove dynamic
|
|
|
|
|
sections if they turn out to be not needed. Clean them up here. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
strip_excluded_output_sections ()
|
|
|
|
|
{
|
|
|
|
|
lang_statement_union_type *u;
|
|
|
|
|
|
|
|
|
|
for (u = lang_output_section_statement.head;
|
|
|
|
|
u != NULL;
|
|
|
|
|
u = u->output_section_statement.next)
|
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
os = &u->output_section_statement;
|
|
|
|
|
s = os->bfd_section;
|
|
|
|
|
if (s != NULL && (s->flags & SEC_EXCLUDE) != 0)
|
|
|
|
|
{
|
|
|
|
|
asection **p;
|
|
|
|
|
|
|
|
|
|
os->bfd_section = NULL;
|
|
|
|
|
|
|
|
|
|
for (p = &output_bfd->sections; *p; p = &(*p)->next)
|
|
|
|
|
if (*p == s)
|
|
|
|
|
{
|
|
|
|
|
bfd_section_list_remove (output_bfd, p);
|
|
|
|
|
output_bfd->section_count--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
print_output_section_statement (output_section_statement)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *section = output_section_statement->bfd_section;
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
if (output_section_statement != abs_output_section)
|
|
|
|
|
{
|
|
|
|
|
minfo ("\n%s", output_section_statement->name);
|
|
|
|
|
|
|
|
|
|
if (section != NULL)
|
|
|
|
|
{
|
|
|
|
|
print_dot = section->vma;
|
|
|
|
|
|
|
|
|
|
len = strlen (output_section_statement->name);
|
|
|
|
|
if (len >= SECTION_NAME_MAP_LENGTH - 1)
|
|
|
|
|
{
|
|
|
|
|
print_nl ();
|
|
|
|
|
len = 0;
|
|
|
|
|
}
|
|
|
|
|
while (len < SECTION_NAME_MAP_LENGTH)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V %W", section->vma, section->_raw_size);
|
|
|
|
|
|
|
|
|
|
if (output_section_statement->load_base != NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma addr;
|
|
|
|
|
|
|
|
|
|
addr = exp_get_abs_int (output_section_statement->load_base, 0,
|
|
|
|
|
"load base", lang_final_phase_enum);
|
|
|
|
|
minfo (_(" load address 0x%V"), addr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_statement_list (output_section_statement->children.head,
|
|
|
|
|
output_section_statement);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_assignment (assignment, output_section)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_assignment_statement_type *assignment;
|
|
|
|
|
lang_output_section_statement_type *output_section;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
etree_value_type result;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
|
|
|
|
|
print_space ();
|
|
|
|
|
|
|
|
|
|
result = exp_fold_tree (assignment->exp->assign.src, output_section,
|
|
|
|
|
lang_final_phase_enum, print_dot, &print_dot);
|
|
|
|
|
if (result.valid_p)
|
2002-04-30 11:21:27 +02:00
|
|
|
|
{
|
|
|
|
|
const char *dst;
|
|
|
|
|
bfd_vma value;
|
|
|
|
|
|
|
|
|
|
value = result.value + result.section->bfd_section->vma;
|
|
|
|
|
dst = assignment->exp->assign.dst;
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V", value);
|
|
|
|
|
if (dst[0] == '.' && dst[1] == 0)
|
|
|
|
|
print_dot = value;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
minfo ("*undef* ");
|
|
|
|
|
#ifdef BFD64
|
|
|
|
|
minfo (" ");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo (" ");
|
|
|
|
|
|
|
|
|
|
exp_print_tree (assignment->exp);
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_input_statement (statm)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_input_statement_type *statm;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (statm->filename != (char *) NULL)
|
|
|
|
|
{
|
|
|
|
|
fprintf (config.map_file, "LOAD %s\n", statm->filename);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print all symbols defined in a particular section. This is called
|
|
|
|
|
via bfd_link_hash_traverse. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
print_one_symbol (hash_entry, ptr)
|
|
|
|
|
struct bfd_link_hash_entry *hash_entry;
|
|
|
|
|
PTR ptr;
|
|
|
|
|
{
|
|
|
|
|
asection *sec = (asection *) ptr;
|
|
|
|
|
|
|
|
|
|
if ((hash_entry->type == bfd_link_hash_defined
|
|
|
|
|
|| hash_entry->type == bfd_link_hash_defweak)
|
|
|
|
|
&& sec == hash_entry->u.def.section)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
|
|
|
|
|
print_space ();
|
|
|
|
|
minfo ("0x%V ",
|
|
|
|
|
(hash_entry->u.def.value
|
|
|
|
|
+ hash_entry->u.def.section->output_offset
|
|
|
|
|
+ hash_entry->u.def.section->output_section->vma));
|
|
|
|
|
|
|
|
|
|
minfo (" %T\n", hash_entry->root.string);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print information about an input section to the map file. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_input_section (in)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_input_section_type *in;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *i = in->section;
|
|
|
|
|
bfd_size_type size = i->_cooked_size != 0 ? i->_cooked_size : i->_raw_size;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
2000-02-21 13:01:27 +01:00
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (size != 0)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
|
|
|
|
|
minfo ("%s", i->name);
|
|
|
|
|
|
|
|
|
|
if (i->output_section != NULL)
|
|
|
|
|
{
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
len = 1 + strlen (i->name);
|
|
|
|
|
if (len >= SECTION_NAME_MAP_LENGTH - 1)
|
|
|
|
|
{
|
|
|
|
|
print_nl ();
|
|
|
|
|
len = 0;
|
|
|
|
|
}
|
|
|
|
|
while (len < SECTION_NAME_MAP_LENGTH)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V %W %B\n",
|
2000-02-03 19:24:46 +01:00
|
|
|
|
i->output_section->vma + i->output_offset, size / opb,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
i->owner);
|
|
|
|
|
|
|
|
|
|
if (i->_cooked_size != 0 && i->_cooked_size != i->_raw_size)
|
|
|
|
|
{
|
|
|
|
|
len = SECTION_NAME_MAP_LENGTH + 3;
|
|
|
|
|
#ifdef BFD64
|
|
|
|
|
len += 16;
|
|
|
|
|
#else
|
|
|
|
|
len += 8;
|
|
|
|
|
#endif
|
|
|
|
|
while (len > 0)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
--len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo (_("%W (size before relaxing)\n"), i->_raw_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_link_hash_traverse (link_info.hash, print_one_symbol, (PTR) i);
|
|
|
|
|
|
2000-02-03 19:24:46 +01:00
|
|
|
|
print_dot = i->output_section->vma + i->output_offset + size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_fill_statement (fill)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_fill_statement_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-02-15 03:11:05 +01:00
|
|
|
|
size_t size;
|
|
|
|
|
unsigned char *p;
|
|
|
|
|
fputs (" FILL mask 0x", config.map_file);
|
|
|
|
|
for (p = fill->fill->data, size = fill->fill->size; size != 0; p++, size--)
|
|
|
|
|
fprintf (config.map_file, "%02x", *p);
|
|
|
|
|
fputs ("\n", config.map_file);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_data_statement (data)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_data_statement_type *data;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
bfd_vma addr;
|
|
|
|
|
bfd_size_type size;
|
|
|
|
|
const char *name;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
2000-02-21 13:01:27 +01:00
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
|
|
|
|
|
print_space ();
|
|
|
|
|
|
|
|
|
|
addr = data->output_vma;
|
|
|
|
|
if (data->output_section != NULL)
|
|
|
|
|
addr += data->output_section->vma;
|
|
|
|
|
|
|
|
|
|
switch (data->type)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
case BYTE:
|
|
|
|
|
size = BYTE_SIZE;
|
|
|
|
|
name = "BYTE";
|
|
|
|
|
break;
|
|
|
|
|
case SHORT:
|
|
|
|
|
size = SHORT_SIZE;
|
|
|
|
|
name = "SHORT";
|
|
|
|
|
break;
|
|
|
|
|
case LONG:
|
|
|
|
|
size = LONG_SIZE;
|
|
|
|
|
name = "LONG";
|
|
|
|
|
break;
|
|
|
|
|
case QUAD:
|
|
|
|
|
size = QUAD_SIZE;
|
|
|
|
|
name = "QUAD";
|
|
|
|
|
break;
|
|
|
|
|
case SQUAD:
|
|
|
|
|
size = QUAD_SIZE;
|
|
|
|
|
name = "SQUAD";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
|
|
|
|
|
|
|
|
|
|
if (data->exp->type.node_class != etree_value)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
exp_print_tree (data->exp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
|
2000-02-03 19:24:46 +01:00
|
|
|
|
print_dot = addr + size / opb;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print an address statement. These are generated by options like
|
|
|
|
|
-Ttext. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_address_statement (address)
|
|
|
|
|
lang_address_statement_type *address;
|
|
|
|
|
{
|
|
|
|
|
minfo (_("Address of section %s set to "), address->section_name);
|
|
|
|
|
exp_print_tree (address->address);
|
|
|
|
|
print_nl ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a reloc statement. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_reloc_statement (reloc)
|
|
|
|
|
lang_reloc_statement_type *reloc;
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
bfd_vma addr;
|
|
|
|
|
bfd_size_type size;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < SECTION_NAME_MAP_LENGTH; i++)
|
|
|
|
|
print_space ();
|
|
|
|
|
|
|
|
|
|
addr = reloc->output_vma;
|
|
|
|
|
if (reloc->output_section != NULL)
|
|
|
|
|
addr += reloc->output_section->vma;
|
|
|
|
|
|
|
|
|
|
size = bfd_get_reloc_size (reloc->howto);
|
|
|
|
|
|
|
|
|
|
minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
|
|
|
|
|
|
|
|
|
|
if (reloc->name != NULL)
|
|
|
|
|
minfo ("%s+", reloc->name);
|
|
|
|
|
else
|
|
|
|
|
minfo ("%s+", reloc->section->name);
|
|
|
|
|
|
|
|
|
|
exp_print_tree (reloc->addend_exp);
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
|
2000-02-03 19:24:46 +01:00
|
|
|
|
print_dot = addr + size / opb;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_padding_statement (s)
|
|
|
|
|
lang_padding_statement_type *s;
|
|
|
|
|
{
|
|
|
|
|
int len;
|
|
|
|
|
bfd_vma addr;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
minfo (" *fill*");
|
|
|
|
|
|
|
|
|
|
len = sizeof " *fill*" - 1;
|
|
|
|
|
while (len < SECTION_NAME_MAP_LENGTH)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addr = s->output_offset;
|
|
|
|
|
if (s->output_section != NULL)
|
|
|
|
|
addr += s->output_section->vma;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
minfo ("0x%V %W ", addr, s->size);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-02-15 03:11:05 +01:00
|
|
|
|
if (s->fill->size != 0)
|
|
|
|
|
{
|
|
|
|
|
size_t size;
|
|
|
|
|
unsigned char *p;
|
|
|
|
|
for (p = s->fill->data, size = s->fill->size; size != 0; p++, size--)
|
|
|
|
|
fprintf (config.map_file, "%02x", *p);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
|
2000-02-03 19:24:46 +01:00
|
|
|
|
print_dot = addr + s->size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_wild_statement (w, os)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_wild_statement_type *w;
|
|
|
|
|
lang_output_section_statement_type *os;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
print_space ();
|
|
|
|
|
|
|
|
|
|
if (w->filenames_sorted)
|
|
|
|
|
minfo ("SORT(");
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (w->filename != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
minfo ("%s", w->filename);
|
|
|
|
|
else
|
|
|
|
|
minfo ("*");
|
|
|
|
|
if (w->filenames_sorted)
|
|
|
|
|
minfo (")");
|
|
|
|
|
|
|
|
|
|
minfo ("(");
|
2001-08-03 03:11:21 +02:00
|
|
|
|
for (sec = w->section_list; sec; sec = sec->next)
|
|
|
|
|
{
|
|
|
|
|
if (sec->spec.sorted)
|
|
|
|
|
minfo ("SORT(");
|
|
|
|
|
if (sec->spec.exclude_name_list != NULL)
|
|
|
|
|
{
|
|
|
|
|
name_list *tmp;
|
2002-07-05 14:54:28 +02:00
|
|
|
|
minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
|
2001-08-03 03:11:21 +02:00
|
|
|
|
for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
|
2002-07-05 14:54:28 +02:00
|
|
|
|
minfo (" %s", tmp->name);
|
|
|
|
|
minfo (") ");
|
2001-08-03 03:11:21 +02:00
|
|
|
|
}
|
|
|
|
|
if (sec->spec.name != NULL)
|
|
|
|
|
minfo ("%s", sec->spec.name);
|
|
|
|
|
else
|
|
|
|
|
minfo ("*");
|
|
|
|
|
if (sec->spec.sorted)
|
|
|
|
|
minfo (")");
|
2002-07-05 14:54:28 +02:00
|
|
|
|
if (sec->next)
|
|
|
|
|
minfo (" ");
|
2001-08-03 03:11:21 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
minfo (")");
|
|
|
|
|
|
|
|
|
|
print_nl ();
|
|
|
|
|
|
|
|
|
|
print_statement_list (w->children.head, os);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print a group statement. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_group (s, os)
|
|
|
|
|
lang_group_statement_type *s;
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
{
|
|
|
|
|
fprintf (config.map_file, "START GROUP\n");
|
|
|
|
|
print_statement_list (s->children.head, os);
|
|
|
|
|
fprintf (config.map_file, "END GROUP\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the list of statements in S.
|
|
|
|
|
This can be called for any statement type. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_statement_list (s, os)
|
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
{
|
|
|
|
|
while (s != NULL)
|
|
|
|
|
{
|
|
|
|
|
print_statement (s, os);
|
2001-08-20 04:14:50 +02:00
|
|
|
|
s = s->header.next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the first statement in statement list S.
|
|
|
|
|
This can be called for any statement type. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_statement (s, os)
|
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
fprintf (config.map_file, _("Fail with %d\n"), s->header.type);
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
if (constructor_list.head != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (constructors_sorted)
|
|
|
|
|
minfo (" SORT (CONSTRUCTORS)\n");
|
|
|
|
|
else
|
|
|
|
|
minfo (" CONSTRUCTORS\n");
|
|
|
|
|
print_statement_list (constructor_list.head, os);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case lang_wild_statement_enum:
|
|
|
|
|
print_wild_statement (&s->wild_statement, os);
|
|
|
|
|
break;
|
|
|
|
|
case lang_address_statement_enum:
|
|
|
|
|
print_address_statement (&s->address_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_object_symbols_statement_enum:
|
|
|
|
|
minfo (" CREATE_OBJECT_SYMBOLS\n");
|
|
|
|
|
break;
|
|
|
|
|
case lang_fill_statement_enum:
|
|
|
|
|
print_fill_statement (&s->fill_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_data_statement_enum:
|
|
|
|
|
print_data_statement (&s->data_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_reloc_statement_enum:
|
|
|
|
|
print_reloc_statement (&s->reloc_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_input_section_enum:
|
|
|
|
|
print_input_section (&s->input_section);
|
|
|
|
|
break;
|
|
|
|
|
case lang_padding_statement_enum:
|
|
|
|
|
print_padding_statement (&s->padding_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
print_output_section_statement (&s->output_section_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_assignment_statement_enum:
|
|
|
|
|
print_assignment (&s->assignment_statement, os);
|
|
|
|
|
break;
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
fprintf (config.map_file, "TARGET(%s)\n", s->target_statement.target);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
minfo ("OUTPUT(%s", s->output_statement.name);
|
|
|
|
|
if (output_target != NULL)
|
|
|
|
|
minfo (" %s", output_target);
|
|
|
|
|
minfo (")\n");
|
|
|
|
|
break;
|
|
|
|
|
case lang_input_statement_enum:
|
|
|
|
|
print_input_statement (&s->input_statement);
|
|
|
|
|
break;
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
print_group (&s->group_statement, os);
|
|
|
|
|
break;
|
|
|
|
|
case lang_afile_asection_pair_statement_enum:
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_statements ()
|
|
|
|
|
{
|
|
|
|
|
print_statement_list (statement_list.head, abs_output_section);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the first N statements in statement list S to STDERR.
|
|
|
|
|
If N == 0, nothing is printed.
|
|
|
|
|
If N < 0, the entire list is printed.
|
|
|
|
|
Intended to be called from GDB. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
dprint_statement (s, n)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *s;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int n;
|
|
|
|
|
{
|
|
|
|
|
FILE *map_save = config.map_file;
|
|
|
|
|
|
|
|
|
|
config.map_file = stderr;
|
|
|
|
|
|
|
|
|
|
if (n < 0)
|
|
|
|
|
print_statement_list (s, abs_output_section);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
while (s && --n >= 0)
|
|
|
|
|
{
|
|
|
|
|
print_statement (s, abs_output_section);
|
2001-08-20 04:14:50 +02:00
|
|
|
|
s = s->header.next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
config.map_file = map_save;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-18 16:54:26 +02:00
|
|
|
|
static void
|
|
|
|
|
insert_pad (ptr, fill, alignment_needed, output_section, dot)
|
|
|
|
|
lang_statement_union_type **ptr;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
2001-08-18 16:54:26 +02:00
|
|
|
|
unsigned int alignment_needed;
|
|
|
|
|
asection *output_section;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma dot;
|
|
|
|
|
{
|
2002-02-15 03:11:05 +01:00
|
|
|
|
static fill_type zero_fill = { 1, { 0 } };
|
2001-08-18 16:54:26 +02:00
|
|
|
|
lang_statement_union_type *pad;
|
|
|
|
|
|
2001-08-20 03:21:08 +02:00
|
|
|
|
pad = ((lang_statement_union_type *)
|
2001-08-20 05:09:07 +02:00
|
|
|
|
((char *) ptr - offsetof (lang_statement_union_type, header.next)));
|
2001-08-18 16:54:26 +02:00
|
|
|
|
if (ptr != &statement_list.head
|
2001-08-20 05:09:07 +02:00
|
|
|
|
&& pad->header.type == lang_padding_statement_enum
|
2001-08-18 16:54:26 +02:00
|
|
|
|
&& pad->padding_statement.output_section == output_section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-18 16:54:26 +02:00
|
|
|
|
/* Use the existing pad statement. The above test on output
|
|
|
|
|
section is probably redundant, but it doesn't hurt to check. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-08-18 16:54:26 +02:00
|
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-18 16:54:26 +02:00
|
|
|
|
/* Make a new padding statement, linked into existing chain. */
|
|
|
|
|
pad = ((lang_statement_union_type *)
|
|
|
|
|
stat_alloc (sizeof (lang_padding_statement_type)));
|
|
|
|
|
pad->header.next = *ptr;
|
|
|
|
|
*ptr = pad;
|
|
|
|
|
pad->header.type = lang_padding_statement_enum;
|
|
|
|
|
pad->padding_statement.output_section = output_section;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
if (fill == (fill_type *) 0)
|
|
|
|
|
fill = &zero_fill;
|
2001-08-18 16:54:26 +02:00
|
|
|
|
pad->padding_statement.fill = fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-08-18 16:54:26 +02:00
|
|
|
|
pad->padding_statement.output_offset = dot - output_section->vma;
|
|
|
|
|
pad->padding_statement.size = alignment_needed;
|
|
|
|
|
output_section->_raw_size += alignment_needed;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Work out how much this section will move the dot point. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static bfd_vma
|
2001-08-18 16:54:26 +02:00
|
|
|
|
size_input_section (this_ptr, output_section_statement, fill, dot)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type **this_ptr;
|
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma dot;
|
|
|
|
|
{
|
|
|
|
|
lang_input_section_type *is = &((*this_ptr)->input_section);
|
|
|
|
|
asection *i = is->section;
|
|
|
|
|
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!is->ifile->just_syms_flag)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-18 16:54:26 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine);
|
|
|
|
|
unsigned int alignment_needed;
|
|
|
|
|
asection *o;
|
|
|
|
|
|
|
|
|
|
/* Align this section first to the input sections requirement,
|
|
|
|
|
then to the output section's requirement. If this alignment
|
|
|
|
|
is greater than any seen before, then record it too. Perform
|
|
|
|
|
the alignment by inserting a magic 'padding' statement. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (output_section_statement->subsection_alignment != -1)
|
2001-08-18 16:54:26 +02:00
|
|
|
|
i->alignment_power = output_section_statement->subsection_alignment;
|
|
|
|
|
|
|
|
|
|
o = output_section_statement->bfd_section;
|
|
|
|
|
if (o->alignment_power < i->alignment_power)
|
|
|
|
|
o->alignment_power = i->alignment_power;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-08-18 16:54:26 +02:00
|
|
|
|
alignment_needed = align_power (dot, i->alignment_power) - dot;
|
|
|
|
|
|
|
|
|
|
if (alignment_needed != 0)
|
|
|
|
|
{
|
|
|
|
|
insert_pad (this_ptr, fill, alignment_needed * opb, o, dot);
|
|
|
|
|
dot += alignment_needed;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Remember where in the output section this input section goes. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-08-18 16:54:26 +02:00
|
|
|
|
i->output_offset = dot - o->vma;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Mark how big the output section must be to contain this now. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (i->_cooked_size != 0)
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += i->_cooked_size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += i->_raw_size / opb;
|
2001-08-18 16:54:26 +02:00
|
|
|
|
o->_raw_size = (dot - o->vma) * opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
i->output_offset = i->vma - output_section_statement->bfd_section->vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return dot;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
#define IGNORE_SECTION(bfd, s) \
|
2001-05-17 05:58:45 +02:00
|
|
|
|
(((bfd_get_section_flags (bfd, s) & (SEC_ALLOC | SEC_LOAD)) \
|
|
|
|
|
!= (SEC_ALLOC | SEC_LOAD)) \
|
1999-11-23 15:13:07 +01:00
|
|
|
|
|| bfd_section_size (bfd, s) == 0)
|
2001-05-17 05:58:45 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Check to see if any allocated sections overlap with other allocated
|
|
|
|
|
sections. This can happen when the linker script specifically specifies
|
|
|
|
|
the output section addresses of the two sections. */
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
|
|
|
|
lang_check_section_addresses ()
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
asection *s;
|
2000-02-21 13:01:27 +01:00
|
|
|
|
unsigned opb = bfd_octets_per_byte (output_bfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Scan all sections in the output list. */
|
|
|
|
|
for (s = output_bfd->sections; s != NULL; s = s->next)
|
1999-11-23 15:13:07 +01:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
asection *os;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* Ignore sections which are not loaded or which have no contents. */
|
|
|
|
|
if (IGNORE_SECTION (output_bfd, s))
|
|
|
|
|
continue;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* Once we reach section 's' stop our seach. This prevents two
|
|
|
|
|
warning messages from being produced, one for 'section A overlaps
|
|
|
|
|
section B' and one for 'section B overlaps section A'. */
|
|
|
|
|
for (os = output_bfd->sections; os != s; os = os->next)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma s_start;
|
|
|
|
|
bfd_vma s_end;
|
|
|
|
|
bfd_vma os_start;
|
|
|
|
|
bfd_vma os_end;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* Only consider loadable sections with real contents. */
|
|
|
|
|
if (IGNORE_SECTION (output_bfd, os))
|
|
|
|
|
continue;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* We must check the sections' LMA addresses not their
|
|
|
|
|
VMA addresses because overlay sections can have
|
|
|
|
|
overlapping VMAs but they must have distinct LMAs. */
|
|
|
|
|
s_start = bfd_section_lma (output_bfd, s);
|
|
|
|
|
os_start = bfd_section_lma (output_bfd, os);
|
2000-02-09 15:42:48 +01:00
|
|
|
|
s_end = s_start + bfd_section_size (output_bfd, s) / opb - 1;
|
|
|
|
|
os_end = os_start + bfd_section_size (output_bfd, os) / opb - 1;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* Look for an overlap. */
|
|
|
|
|
if ((s_end < os_start) || (s_start > os_end))
|
|
|
|
|
continue;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
einfo (
|
1999-05-03 09:29:11 +02:00
|
|
|
|
_("%X%P: section %s [%V -> %V] overlaps section %s [%V -> %V]\n"),
|
1999-11-23 15:13:07 +01:00
|
|
|
|
s->name, s_start, s_end, os->name, os_start, os_end);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-11-23 15:13:07 +01:00
|
|
|
|
/* Once we have found one overlap for this section,
|
|
|
|
|
stop looking for others. */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-16 19:53:32 +01:00
|
|
|
|
/* Make sure the new address is within the region. We explicitly permit the
|
|
|
|
|
current address to be at the exact end of the region when the address is
|
|
|
|
|
non-zero, in case the region is at the end of addressable memory and the
|
2000-09-05 05:21:16 +02:00
|
|
|
|
calculation wraps around. */
|
2000-02-16 19:53:32 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
os_region_check (os, region, tree, base)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
struct memory_region_struct *region;
|
|
|
|
|
etree_type *tree;
|
|
|
|
|
bfd_vma base;
|
2000-02-16 19:53:32 +01:00
|
|
|
|
{
|
|
|
|
|
if ((region->current < region->origin
|
|
|
|
|
|| (region->current - region->origin > region->length))
|
|
|
|
|
&& ((region->current != region->origin + region->length)
|
2002-05-03 15:48:55 +02:00
|
|
|
|
|| base == 0))
|
2000-02-16 19:53:32 +01:00
|
|
|
|
{
|
|
|
|
|
if (tree != (etree_type *) NULL)
|
2002-05-03 15:48:55 +02:00
|
|
|
|
{
|
|
|
|
|
einfo (_("%X%P: address 0x%v of %B section %s is not within region %s\n"),
|
|
|
|
|
region->current,
|
|
|
|
|
os->bfd_section->owner,
|
|
|
|
|
os->bfd_section->name,
|
|
|
|
|
region->name);
|
|
|
|
|
}
|
2000-02-16 19:53:32 +01:00
|
|
|
|
else
|
2002-05-03 15:48:55 +02:00
|
|
|
|
{
|
|
|
|
|
einfo (_("%X%P: region %s is full (%B section %s)\n"),
|
|
|
|
|
region->name,
|
|
|
|
|
os->bfd_section->owner,
|
|
|
|
|
os->bfd_section->name);
|
|
|
|
|
}
|
2000-02-16 19:53:32 +01:00
|
|
|
|
/* Reset the region pointer. */
|
|
|
|
|
region->current = region->origin;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Set the sizes for all the output sections. */
|
|
|
|
|
|
2002-02-12 15:50:08 +01:00
|
|
|
|
static bfd_vma
|
2003-02-21 11:51:24 +01:00
|
|
|
|
lang_size_sections_1 (s, output_section_statement, prev, fill, dot, relax,
|
|
|
|
|
check_regions)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
|
|
|
|
lang_statement_union_type **prev;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma dot;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean *relax;
|
2003-02-21 11:51:24 +01:00
|
|
|
|
bfd_boolean check_regions;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
2000-02-21 13:01:27 +01:00
|
|
|
|
ldfile_output_machine);
|
2000-02-03 19:24:46 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Size up the sections from their constituent parts. */
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
bfd_vma after;
|
2001-05-17 05:58:45 +02:00
|
|
|
|
lang_output_section_statement_type *os;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
os = &s->output_section_statement;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (os->bfd_section == NULL)
|
|
|
|
|
/* This section was never actually created. */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
/* If this is a COFF shared library section, use the size and
|
|
|
|
|
address from the input section. FIXME: This is COFF
|
|
|
|
|
specific; it would be cleaner if there were some other way
|
|
|
|
|
to do this, but nothing simple comes to mind. */
|
|
|
|
|
if ((os->bfd_section->flags & SEC_COFF_SHARED_LIBRARY) != 0)
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
asection *input;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (os->children.head == NULL
|
2001-08-20 04:14:50 +02:00
|
|
|
|
|| os->children.head->header.next != NULL
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|| os->children.head->header.type != lang_input_section_enum)
|
|
|
|
|
einfo (_("%P%X: Internal error on COFF shared library section %s\n"),
|
|
|
|
|
os->name);
|
|
|
|
|
|
|
|
|
|
input = os->children.head->input_section.section;
|
|
|
|
|
bfd_set_section_vma (os->bfd_section->owner,
|
|
|
|
|
os->bfd_section,
|
|
|
|
|
bfd_section_vma (input->owner, input));
|
|
|
|
|
os->bfd_section->_raw_size = input->_raw_size;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bfd_is_abs_section (os->bfd_section))
|
|
|
|
|
{
|
|
|
|
|
/* No matter what happens, an abs section starts at zero. */
|
|
|
|
|
ASSERT (os->bfd_section->vma == 0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (os->addr_tree == (etree_type *) NULL)
|
|
|
|
|
{
|
|
|
|
|
/* No address specified for this section, get one
|
|
|
|
|
from the region specification. */
|
|
|
|
|
if (os->region == (lang_memory_region_type *) NULL
|
|
|
|
|
|| (((bfd_get_section_flags (output_bfd, os->bfd_section)
|
|
|
|
|
& (SEC_ALLOC | SEC_LOAD)) != 0)
|
|
|
|
|
&& os->region->name[0] == '*'
|
|
|
|
|
&& strcmp (os->region->name, "*default*") == 0))
|
|
|
|
|
{
|
|
|
|
|
os->region = lang_memory_default (os->bfd_section);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If a loadable section is using the default memory
|
|
|
|
|
region, and some non default memory regions were
|
2003-05-09 18:12:07 +02:00
|
|
|
|
defined, issue an error message. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((bfd_get_section_flags (output_bfd, os->bfd_section)
|
|
|
|
|
& (SEC_ALLOC | SEC_LOAD)) != 0
|
2002-04-08 03:01:43 +02:00
|
|
|
|
&& (bfd_get_section_flags (output_bfd, os->bfd_section)
|
|
|
|
|
& SEC_NEVER_LOAD) == 0
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& ! link_info.relocateable
|
2003-02-21 11:51:24 +01:00
|
|
|
|
&& check_regions
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& strcmp (os->region->name, "*default*") == 0
|
|
|
|
|
&& lang_memory_region_list != NULL
|
2001-05-17 05:58:45 +02:00
|
|
|
|
&& (strcmp (lang_memory_region_list->name,
|
|
|
|
|
"*default*") != 0
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|| lang_memory_region_list->next != NULL))
|
2003-05-09 18:12:07 +02:00
|
|
|
|
{
|
|
|
|
|
/* By default this is an error rather than just a
|
|
|
|
|
warning because if we allocate the section to the
|
|
|
|
|
default memory region we can end up creating an
|
|
|
|
|
excessivly large binary, or even seg faulting when
|
|
|
|
|
attmepting to perform a negative seek. See
|
|
|
|
|
http://sources.redhat.com/ml/binutils/2003-04/msg00423.html
|
|
|
|
|
for an example of this. This behaviour can be
|
|
|
|
|
overridden by the using the --no-check-sections
|
|
|
|
|
switch. */
|
|
|
|
|
if (command_line.check_section_addresses)
|
|
|
|
|
einfo (_("%P%F: error: no memory region specified for loadable section `%s'\n"),
|
|
|
|
|
bfd_get_section_name (output_bfd,
|
|
|
|
|
os->bfd_section));
|
|
|
|
|
else
|
|
|
|
|
einfo (_("%P: warning: no memory region specified for loadable section `%s'\n"),
|
|
|
|
|
bfd_get_section_name (output_bfd,
|
|
|
|
|
os->bfd_section));
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
dot = os->region->current;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (os->section_alignment == -1)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma olddot;
|
|
|
|
|
|
|
|
|
|
olddot = dot;
|
2001-05-17 05:58:45 +02:00
|
|
|
|
dot = align_power (dot,
|
|
|
|
|
os->bfd_section->alignment_power);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (dot != olddot && config.warn_section_align)
|
|
|
|
|
einfo (_("%P: warning: changing start of section %s by %u bytes\n"),
|
|
|
|
|
os->name, (unsigned int) (dot - olddot));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
etree_value_type r;
|
|
|
|
|
|
|
|
|
|
r = exp_fold_tree (os->addr_tree,
|
|
|
|
|
abs_output_section,
|
|
|
|
|
lang_allocating_phase_enum,
|
|
|
|
|
dot, &dot);
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!r.valid_p)
|
|
|
|
|
einfo (_("%F%S: non constant address expression for section %s\n"),
|
|
|
|
|
os->name);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dot = r.value + r.section->bfd_section->vma;
|
|
|
|
|
}
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* The section starts here.
|
|
|
|
|
First, align to what the section needs. */
|
|
|
|
|
|
|
|
|
|
if (os->section_alignment != -1)
|
|
|
|
|
dot = align_power (dot, os->section_alignment);
|
|
|
|
|
|
|
|
|
|
bfd_set_section_vma (0, os->bfd_section, dot);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
os->bfd_section->output_offset = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-12 15:50:08 +01:00
|
|
|
|
lang_size_sections_1 (os->children.head, os, &os->children.head,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
os->fill, dot, relax, check_regions);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Put the section within the requested block size, or
|
|
|
|
|
align at the block boundary. */
|
2002-08-13 04:08:26 +02:00
|
|
|
|
after = align_n (os->bfd_section->vma
|
2000-02-04 20:49:21 +01:00
|
|
|
|
+ os->bfd_section->_raw_size / opb,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
(bfd_vma) os->block_value);
|
|
|
|
|
|
|
|
|
|
if (bfd_is_abs_section (os->bfd_section))
|
|
|
|
|
ASSERT (after == os->bfd_section->vma);
|
* elf.c (_bfd_elf_make_section_from_shdr): Set SEC_THREAD_LOCAL
for symbols from SHF_TLS section.
(_bfd_elf_print_private_bfd_data): Add PT_TLS.
(elf_fake_sections): Set SHF_TLS for SEC_THREAD_LOCAL sections.
(map_sections_to_segments): Build PT_TLS segment if necessary.
(assign_file_positions_for_segments): Likewise.
(get_program_header_size): Account for PT_TLS segment.
(swap_out_syms): Set type of BSF_THREAD_LOCAL symbols and symbols from
SEC_THREAD_LOCAL sections to STT_TLS.
* reloc.c: Add 386 and IA-64 TLS relocs.
* section.c (SEC_THREAD_LOCAL): Define.
(SEC_CONSTRUCTOR_TEXT, SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS):
Remove.
* elflink.h (elf_link_add_object_symbols): Support .tcommon.
(size_dynamic_sections): If DF_STATIC_TLS, set DF_FLAGS
unconditionally.
(struct elf_final_link_info): Add first_tls_sec.
(elf_bfd_final_link): Set first_tls_sec.
Compute elf_hash_table (info)->tls_segment.
(elf_link_output_extsym): Handle STT_TLS symbols.
(elf_link_input_bfd): Likewise.
* syms.c (BSF_THREAD_LOCAL): Define.
* bfd-in2.h: Rebuilt.
* libbfd.h: Rebuilt.
* elf32-i386.c (elf_i386_tls_transition, dtpoff_base, tpoff,
elf_i386_mkobject, elf_i386_object_p): New functions.
(elf_howto_table): Add TLS relocs.
(elf_i386_reloc_type_lookup): Support TLS relocs.
(elf_i386_info_to_howto_rel): Likewise.
(struct elf_i386_link_hash_entry): Add tls_type.
(struct elf_i386_obj_tdata): New.
(elf_i386_hash_entry, elf_i386_tdata, elf_i386_local_got_tls_type):
New macros.
(struct elf_i386_link_hash_table): Add tls_ldm_got.
(link_hash_newfunc): Clear tls_type.
(elf_i386_check_relocs): Support TLS relocs.
(elf_i386_gc_sweep_hook): Likewise.
(allocate_dynrelocs): Likewise.
(elf_i386_size_dynamic_sections): Likewise.
(elf_i386_relocate_section): Likewise.
(elf_i386_finish_dynamic_symbol): Likewise.
(bfd_elf32_mkobject, elf_backend_object_p): Define.
* elfxx-ia64.c (struct elfNN_ia64_dyn_sym_info): Add tprel_offset,
dtpmod_offset, dtprel_offset, tprel_done, dtpmod_done, dtprel_done,
want_tprel, want_dtpmod, want_dtprel.
(elfNN_ia64_tprel_base, elfNN_ia64_dtprel_base): New functions.
(ia64_howto_table): Add TLS relocs, rename R_IA64_LTOFF_TP22 to
R_IA64_LTOFF_TPREL22.
(elf_code_to_howto_index): Add TLS relocs.
(elfNN_ia64_check_relocs): Support TLS relocs.
(allocate_global_data_got): Account for TLS .got data.
(allocate_dynrel_entries): Account for TLS dynamic relocations.
(elfNN_ia64_install_value): Supprt TLS relocs.
(set_got_entry): Support TLS relocs.
(elfNN_ia64_relocate_section): Likewise.
* config/obj-elf.c (elf_common): Renamed from obj_elf_common.
(obj_elf_common): Call elf_common.
(obj_elf_tls_common): New function.
(elf_pseudo_tab): Support .tls_common.
(special_sections): Add .tdata and .tbss.
(obj_elf_change_section): Set SEC_THREAD_LOCAL for SHF_TLS
sections.
(obj_elf_parse_section_letters): Support T in section flags (SHF_TLS).
(obj_elf_parse_section_letters): Include T in error message.
* config/tc-ppc.c (ppc_section_letter): Likewise.
* config/tc-alpha.c (alpha_elf_section_letter): Likewise.
(tc_gen_reloc): Handle SEC_THREAD_LOCAL the same way as
SEC_MERGE.
* config/tc-sparc.c (md_apply_fix3): Likewise.
* config/tc-i386.c (tc_i386_fix_adjustable): Add TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Support @TLSGD, @TLSLDM, @GOTTPOFF, @TPOFF, @DTPOFF
and @NTPOFF.
(md_apply_fix3): Add TLS relocs.
* config/tc-ia64.c (enum reloc_func): Add FUNC_DTP_MODULE,
FUNC_DTP_RELATIVE, FUNC_TP_RELATIVE, FUNC_LT_DTP_MODULE,
FUNC_LT_DTP_RELATIVE, FUNC_LT_TP_RELATIVE.
(pseudo_func): Support @dtpmod(), @dtprel() and @tprel().
(ia64_elf_section_letter): Include T in error message.
(md_begin): Support TLS operators.
(md_operand): Likewise.
(ia64_gen_real_reloc_type): Support TLS relocs.
* testsuite/gas/i386/tlspic.s: New file.
* testsuite/gas/i386/tlsd.s: New file.
* testsuite/gas/i386/tlsnopic.s: New file.
* testsuite/gas/i386/tlsd.d: New file.
* testsuite/gas/i386/tlsnopic.d: New file.
* testsuite/gas/i386/tlspic.d: New file.
* testsuite/gas/i386/i386.exp: Add tlsd, tlsnopic and tlspic tests.
* testsuite/gas/ia64/tls.s: New file.
* testsuite/gas/ia64/tls.d: New file.
* testsuite/gas/ia64/ia64.exp: Add tls test.
* write.c (adjust_reloc_syms): Don't change symbols in
SEC_THREAD_LOCAL sections to STT_SECTION + addend.
* elf/common.h (PT_TLS, SHF_TLS, STT_TLS, DF_STATIC_TLS): Define.
* elf/ia64.h (R_IA64_LTOFF_TPREL22): Renamed from R_IA64_LTOFF_TP22.
* elf/i386.h: Add TLS relocs.
* scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss.
* ldlang.c (lang_add_section): Set SEC_THREAD_LOCAL for
output section if necessary. Handle .tbss.
(lang_size_sections): Clear _raw_size for .tbss section
(it allocates space in PT_TLS segment only).
* ldwrite.c (build_link_order): Build link order for .tbss too.
* readelf.c (get_segment_type): Add PT_TLS.
(get_elf_section_flags): Add SHF_TLS.
(get_dynamic_flags): Optimize. Add DF_STATIC_TLS.
(process_dynamic_segment): Use puts instead of printf.
(get_symbol_type): Support STT_TLS.
* objdump.c (dump_section_header): Remove SEC_CONSTRUCTOR_TEXT,
SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS.
Add SEC_THREAD_LOCAL.
2002-05-23 15:12:53 +02:00
|
|
|
|
else if ((os->bfd_section->flags & SEC_HAS_CONTENTS) == 0
|
2002-07-30 16:28:55 +02:00
|
|
|
|
&& (os->bfd_section->flags & SEC_THREAD_LOCAL)
|
|
|
|
|
&& ! link_info.relocateable)
|
* elf.c (_bfd_elf_make_section_from_shdr): Set SEC_THREAD_LOCAL
for symbols from SHF_TLS section.
(_bfd_elf_print_private_bfd_data): Add PT_TLS.
(elf_fake_sections): Set SHF_TLS for SEC_THREAD_LOCAL sections.
(map_sections_to_segments): Build PT_TLS segment if necessary.
(assign_file_positions_for_segments): Likewise.
(get_program_header_size): Account for PT_TLS segment.
(swap_out_syms): Set type of BSF_THREAD_LOCAL symbols and symbols from
SEC_THREAD_LOCAL sections to STT_TLS.
* reloc.c: Add 386 and IA-64 TLS relocs.
* section.c (SEC_THREAD_LOCAL): Define.
(SEC_CONSTRUCTOR_TEXT, SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS):
Remove.
* elflink.h (elf_link_add_object_symbols): Support .tcommon.
(size_dynamic_sections): If DF_STATIC_TLS, set DF_FLAGS
unconditionally.
(struct elf_final_link_info): Add first_tls_sec.
(elf_bfd_final_link): Set first_tls_sec.
Compute elf_hash_table (info)->tls_segment.
(elf_link_output_extsym): Handle STT_TLS symbols.
(elf_link_input_bfd): Likewise.
* syms.c (BSF_THREAD_LOCAL): Define.
* bfd-in2.h: Rebuilt.
* libbfd.h: Rebuilt.
* elf32-i386.c (elf_i386_tls_transition, dtpoff_base, tpoff,
elf_i386_mkobject, elf_i386_object_p): New functions.
(elf_howto_table): Add TLS relocs.
(elf_i386_reloc_type_lookup): Support TLS relocs.
(elf_i386_info_to_howto_rel): Likewise.
(struct elf_i386_link_hash_entry): Add tls_type.
(struct elf_i386_obj_tdata): New.
(elf_i386_hash_entry, elf_i386_tdata, elf_i386_local_got_tls_type):
New macros.
(struct elf_i386_link_hash_table): Add tls_ldm_got.
(link_hash_newfunc): Clear tls_type.
(elf_i386_check_relocs): Support TLS relocs.
(elf_i386_gc_sweep_hook): Likewise.
(allocate_dynrelocs): Likewise.
(elf_i386_size_dynamic_sections): Likewise.
(elf_i386_relocate_section): Likewise.
(elf_i386_finish_dynamic_symbol): Likewise.
(bfd_elf32_mkobject, elf_backend_object_p): Define.
* elfxx-ia64.c (struct elfNN_ia64_dyn_sym_info): Add tprel_offset,
dtpmod_offset, dtprel_offset, tprel_done, dtpmod_done, dtprel_done,
want_tprel, want_dtpmod, want_dtprel.
(elfNN_ia64_tprel_base, elfNN_ia64_dtprel_base): New functions.
(ia64_howto_table): Add TLS relocs, rename R_IA64_LTOFF_TP22 to
R_IA64_LTOFF_TPREL22.
(elf_code_to_howto_index): Add TLS relocs.
(elfNN_ia64_check_relocs): Support TLS relocs.
(allocate_global_data_got): Account for TLS .got data.
(allocate_dynrel_entries): Account for TLS dynamic relocations.
(elfNN_ia64_install_value): Supprt TLS relocs.
(set_got_entry): Support TLS relocs.
(elfNN_ia64_relocate_section): Likewise.
* config/obj-elf.c (elf_common): Renamed from obj_elf_common.
(obj_elf_common): Call elf_common.
(obj_elf_tls_common): New function.
(elf_pseudo_tab): Support .tls_common.
(special_sections): Add .tdata and .tbss.
(obj_elf_change_section): Set SEC_THREAD_LOCAL for SHF_TLS
sections.
(obj_elf_parse_section_letters): Support T in section flags (SHF_TLS).
(obj_elf_parse_section_letters): Include T in error message.
* config/tc-ppc.c (ppc_section_letter): Likewise.
* config/tc-alpha.c (alpha_elf_section_letter): Likewise.
(tc_gen_reloc): Handle SEC_THREAD_LOCAL the same way as
SEC_MERGE.
* config/tc-sparc.c (md_apply_fix3): Likewise.
* config/tc-i386.c (tc_i386_fix_adjustable): Add TLS relocs.
Define them if not BFD_ASSEMBLER.
(lex_got): Support @TLSGD, @TLSLDM, @GOTTPOFF, @TPOFF, @DTPOFF
and @NTPOFF.
(md_apply_fix3): Add TLS relocs.
* config/tc-ia64.c (enum reloc_func): Add FUNC_DTP_MODULE,
FUNC_DTP_RELATIVE, FUNC_TP_RELATIVE, FUNC_LT_DTP_MODULE,
FUNC_LT_DTP_RELATIVE, FUNC_LT_TP_RELATIVE.
(pseudo_func): Support @dtpmod(), @dtprel() and @tprel().
(ia64_elf_section_letter): Include T in error message.
(md_begin): Support TLS operators.
(md_operand): Likewise.
(ia64_gen_real_reloc_type): Support TLS relocs.
* testsuite/gas/i386/tlspic.s: New file.
* testsuite/gas/i386/tlsd.s: New file.
* testsuite/gas/i386/tlsnopic.s: New file.
* testsuite/gas/i386/tlsd.d: New file.
* testsuite/gas/i386/tlsnopic.d: New file.
* testsuite/gas/i386/tlspic.d: New file.
* testsuite/gas/i386/i386.exp: Add tlsd, tlsnopic and tlspic tests.
* testsuite/gas/ia64/tls.s: New file.
* testsuite/gas/ia64/tls.d: New file.
* testsuite/gas/ia64/ia64.exp: Add tls test.
* write.c (adjust_reloc_syms): Don't change symbols in
SEC_THREAD_LOCAL sections to STT_SECTION + addend.
* elf/common.h (PT_TLS, SHF_TLS, STT_TLS, DF_STATIC_TLS): Define.
* elf/ia64.h (R_IA64_LTOFF_TPREL22): Renamed from R_IA64_LTOFF_TP22.
* elf/i386.h: Add TLS relocs.
* scripttempl/elf.sc: Add .rel{,a}.t{bss,data}, .tdata and .tbss.
* ldlang.c (lang_add_section): Set SEC_THREAD_LOCAL for
output section if necessary. Handle .tbss.
(lang_size_sections): Clear _raw_size for .tbss section
(it allocates space in PT_TLS segment only).
* ldwrite.c (build_link_order): Build link order for .tbss too.
* readelf.c (get_segment_type): Add PT_TLS.
(get_elf_section_flags): Add SHF_TLS.
(get_dynamic_flags): Optimize. Add DF_STATIC_TLS.
(process_dynamic_segment): Use puts instead of printf.
(get_symbol_type): Support STT_TLS.
* objdump.c (dump_section_header): Remove SEC_CONSTRUCTOR_TEXT,
SEC_CONSTRUCTOR_DATA, SEC_CONSTRUCTOR_BSS.
Add SEC_THREAD_LOCAL.
2002-05-23 15:12:53 +02:00
|
|
|
|
os->bfd_section->_raw_size = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-09-05 05:21:16 +02:00
|
|
|
|
os->bfd_section->_raw_size =
|
2000-10-05 15:03:30 +02:00
|
|
|
|
(after - os->bfd_section->vma) * opb;
|
2002-05-07 13:04:54 +02:00
|
|
|
|
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot = os->bfd_section->vma + os->bfd_section->_raw_size / opb;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
os->processed = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
if (os->update_dot_tree != 0)
|
|
|
|
|
exp_fold_tree (os->update_dot_tree, abs_output_section,
|
|
|
|
|
lang_allocating_phase_enum, dot, &dot);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Update dot in the region ?
|
|
|
|
|
We only do this if the section is going to be allocated,
|
|
|
|
|
since unallocated sections do not contribute to the region's
|
2000-01-21 18:44:51 +01:00
|
|
|
|
overall size in memory.
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-01-19 00:58:58 +01:00
|
|
|
|
If the SEC_NEVER_LOAD bit is not set, it will affect the
|
|
|
|
|
addresses of sections after it. We have to update
|
|
|
|
|
dot. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (os->region != (lang_memory_region_type *) NULL
|
2000-01-19 00:58:58 +01:00
|
|
|
|
&& ((bfd_get_section_flags (output_bfd, os->bfd_section)
|
|
|
|
|
& SEC_NEVER_LOAD) == 0
|
|
|
|
|
|| (bfd_get_section_flags (output_bfd, os->bfd_section)
|
|
|
|
|
& (SEC_ALLOC | SEC_LOAD))))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
os->region->current = dot;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2003-02-21 11:51:24 +01:00
|
|
|
|
if (check_regions)
|
|
|
|
|
/* Make sure the new address is within the region. */
|
|
|
|
|
os_region_check (os, os->region, os->addr_tree,
|
|
|
|
|
os->bfd_section->vma);
|
2000-10-05 15:03:30 +02:00
|
|
|
|
|
|
|
|
|
/* If there's no load address specified, use the run
|
|
|
|
|
region as the load region. */
|
|
|
|
|
if (os->lma_region == NULL && os->load_base == NULL)
|
|
|
|
|
os->lma_region = os->region;
|
|
|
|
|
|
2002-05-27 10:22:08 +02:00
|
|
|
|
if (os->lma_region != NULL && os->lma_region != os->region)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
{
|
2002-05-27 10:22:08 +02:00
|
|
|
|
/* Set load_base, which will be handled later. */
|
|
|
|
|
os->load_base = exp_intop (os->lma_region->current);
|
|
|
|
|
os->lma_region->current +=
|
|
|
|
|
os->bfd_section->_raw_size / opb;
|
2003-02-21 11:51:24 +01:00
|
|
|
|
if (check_regions)
|
|
|
|
|
os_region_check (os, os->lma_region, NULL,
|
|
|
|
|
os->bfd_section->lma);
|
2000-10-05 15:03:30 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_constructors_statement_enum:
|
2002-02-12 15:50:08 +01:00
|
|
|
|
dot = lang_size_sections_1 (constructor_list.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
&s->wild_statement.children.head,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
fill, dot, relax, check_regions);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_data_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
unsigned int size = 0;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
s->data_statement.output_vma =
|
|
|
|
|
dot - output_section_statement->bfd_section->vma;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
s->data_statement.output_section =
|
|
|
|
|
output_section_statement->bfd_section;
|
|
|
|
|
|
|
|
|
|
switch (s->data_statement.type)
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
default:
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case QUAD:
|
|
|
|
|
case SQUAD:
|
|
|
|
|
size = QUAD_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case LONG:
|
|
|
|
|
size = LONG_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case SHORT:
|
|
|
|
|
size = SHORT_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case BYTE:
|
|
|
|
|
size = BYTE_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (size < opb)
|
|
|
|
|
size = opb;
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
output_section_statement->bfd_section->_raw_size += size;
|
|
|
|
|
/* The output section gets contents, and then we inspect for
|
|
|
|
|
any flags set in the input script which override any ALLOC. */
|
|
|
|
|
output_section_statement->bfd_section->flags |= SEC_HAS_CONTENTS;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (!(output_section_statement->flags & SEC_NEVER_LOAD))
|
|
|
|
|
{
|
|
|
|
|
output_section_statement->bfd_section->flags |=
|
|
|
|
|
SEC_ALLOC | SEC_LOAD;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_reloc_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
int size;
|
|
|
|
|
|
|
|
|
|
s->reloc_statement.output_vma =
|
|
|
|
|
dot - output_section_statement->bfd_section->vma;
|
|
|
|
|
s->reloc_statement.output_section =
|
|
|
|
|
output_section_statement->bfd_section;
|
|
|
|
|
size = bfd_get_reloc_size (s->reloc_statement.howto);
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
output_section_statement->bfd_section->_raw_size += size;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case lang_wild_statement_enum:
|
|
|
|
|
|
2002-02-12 15:50:08 +01:00
|
|
|
|
dot = lang_size_sections_1 (s->wild_statement.children.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
&s->wild_statement.children.head,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
fill, dot, relax, check_regions);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_object_symbols_statement_enum:
|
|
|
|
|
link_info.create_object_symbols_section =
|
|
|
|
|
output_section_statement->bfd_section;
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
case lang_input_section_enum:
|
|
|
|
|
{
|
|
|
|
|
asection *i;
|
|
|
|
|
|
|
|
|
|
i = (*prev)->input_section.section;
|
|
|
|
|
if (! relax)
|
|
|
|
|
{
|
|
|
|
|
if (i->_cooked_size == 0)
|
|
|
|
|
i->_cooked_size = i->_raw_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean again;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (! bfd_relax_section (i->owner, i, &link_info, &again))
|
|
|
|
|
einfo (_("%P%F: can't relax section: %E\n"));
|
|
|
|
|
if (again)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
*relax = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-08-18 16:54:26 +02:00
|
|
|
|
dot = size_input_section (prev, output_section_statement,
|
|
|
|
|
output_section_statement->fill, dot);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case lang_input_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
case lang_fill_statement_enum:
|
2000-10-05 15:03:30 +02:00
|
|
|
|
s->fill_statement.output_section =
|
|
|
|
|
output_section_statement->bfd_section;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
fill = s->fill_statement.fill;
|
|
|
|
|
break;
|
|
|
|
|
case lang_assignment_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
bfd_vma newdot = dot;
|
|
|
|
|
|
|
|
|
|
exp_fold_tree (s->assignment_statement.exp,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
lang_allocating_phase_enum,
|
|
|
|
|
dot,
|
|
|
|
|
&newdot);
|
|
|
|
|
|
|
|
|
|
if (newdot != dot)
|
|
|
|
|
{
|
|
|
|
|
if (output_section_statement == abs_output_section)
|
|
|
|
|
{
|
|
|
|
|
/* If we don't have an output section, then just adjust
|
|
|
|
|
the default memory address. */
|
|
|
|
|
lang_memory_region_lookup ("*default*")->current = newdot;
|
|
|
|
|
}
|
2001-08-18 16:54:26 +02:00
|
|
|
|
else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-18 16:54:26 +02:00
|
|
|
|
/* Insert a pad after this statement. We can't
|
|
|
|
|
put the pad before when relaxing, in case the
|
|
|
|
|
assignment references dot. */
|
|
|
|
|
insert_pad (&s->header.next, fill, (newdot - dot) * opb,
|
|
|
|
|
output_section_statement->bfd_section, dot);
|
|
|
|
|
|
|
|
|
|
/* Don't neuter the pad below when relaxing. */
|
|
|
|
|
s = s->header.next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dot = newdot;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_padding_statement_enum:
|
2001-08-20 03:21:08 +02:00
|
|
|
|
/* If this is the first time lang_size_sections is called,
|
|
|
|
|
we won't have any padding statements. If this is the
|
|
|
|
|
second or later passes when relaxing, we should allow
|
|
|
|
|
padding to shrink. If padding is needed on this pass, it
|
|
|
|
|
will be added back in. */
|
|
|
|
|
s->padding_statement.size = 0;
|
2001-10-31 02:12:26 +01:00
|
|
|
|
|
|
|
|
|
/* Make sure output_offset is valid. If relaxation shrinks
|
|
|
|
|
the section and this pad isn't needed, it's possible to
|
|
|
|
|
have output_offset larger than the final size of the
|
|
|
|
|
section. bfd_set_section_contents will complain even for
|
|
|
|
|
a pad size of zero. */
|
|
|
|
|
s->padding_statement.output_offset
|
|
|
|
|
= dot - output_section_statement->bfd_section->vma;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_group_statement_enum:
|
2002-02-12 15:50:08 +01:00
|
|
|
|
dot = lang_size_sections_1 (s->group_statement.children.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
&s->group_statement.children.head,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
fill, dot, relax, check_regions);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
|
2001-08-20 03:21:08 +02:00
|
|
|
|
/* We can only get here when relaxing is turned on. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case lang_address_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
prev = &s->header.next;
|
|
|
|
|
}
|
|
|
|
|
return dot;
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-12 15:50:08 +01:00
|
|
|
|
bfd_vma
|
2003-02-21 11:51:24 +01:00
|
|
|
|
lang_size_sections (s, output_section_statement, prev, fill, dot, relax,
|
|
|
|
|
check_regions)
|
2002-02-12 15:50:08 +01:00
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
|
|
|
|
lang_statement_union_type **prev;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
2002-02-12 15:50:08 +01:00
|
|
|
|
bfd_vma dot;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean *relax;
|
2003-02-21 11:51:24 +01:00
|
|
|
|
bfd_boolean check_regions;
|
2002-02-12 15:50:08 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_vma result;
|
|
|
|
|
|
|
|
|
|
exp_data_seg.phase = exp_dataseg_none;
|
|
|
|
|
result = lang_size_sections_1 (s, output_section_statement, prev, fill,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
dot, relax, check_regions);
|
2002-02-12 15:50:08 +01:00
|
|
|
|
if (exp_data_seg.phase == exp_dataseg_end_seen)
|
|
|
|
|
{
|
|
|
|
|
/* If DATA_SEGMENT_ALIGN DATA_SEGMENT_END pair was seen, check whether
|
|
|
|
|
a page could be saved in the data segment. */
|
|
|
|
|
bfd_vma first, last;
|
|
|
|
|
|
|
|
|
|
first = -exp_data_seg.base & (exp_data_seg.pagesize - 1);
|
|
|
|
|
last = exp_data_seg.end & (exp_data_seg.pagesize - 1);
|
|
|
|
|
if (first && last
|
|
|
|
|
&& ((exp_data_seg.base & ~(exp_data_seg.pagesize - 1))
|
|
|
|
|
!= (exp_data_seg.end & ~(exp_data_seg.pagesize - 1)))
|
|
|
|
|
&& first + last <= exp_data_seg.pagesize)
|
|
|
|
|
{
|
|
|
|
|
exp_data_seg.phase = exp_dataseg_adjust;
|
|
|
|
|
result = lang_size_sections_1 (s, output_section_statement, prev,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
fill, dot, relax, check_regions);
|
2002-02-12 15:50:08 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma
|
|
|
|
|
lang_do_assignments (s, output_section_statement, fill, dot)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *s;
|
|
|
|
|
lang_output_section_statement_type *output_section_statement;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_vma dot;
|
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine);
|
2000-02-03 19:24:46 +01:00
|
|
|
|
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
dot = lang_do_assignments (constructor_list.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
fill,
|
|
|
|
|
dot);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
{
|
2001-05-17 05:58:45 +02:00
|
|
|
|
lang_output_section_statement_type *os;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
os = &(s->output_section_statement);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (os->bfd_section != NULL)
|
|
|
|
|
{
|
|
|
|
|
dot = os->bfd_section->vma;
|
|
|
|
|
(void) lang_do_assignments (os->children.head, os,
|
|
|
|
|
os->fill, dot);
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot = os->bfd_section->vma + os->bfd_section->_raw_size / opb;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-08-25 22:44:09 +02:00
|
|
|
|
if (os->load_base)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* If nothing has been placed into the output section then
|
2000-09-29 13:18:18 +02:00
|
|
|
|
it won't have a bfd_section. */
|
2000-09-05 05:21:16 +02:00
|
|
|
|
if (os->bfd_section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
os->bfd_section->lma
|
2000-10-05 15:03:30 +02:00
|
|
|
|
= exp_get_abs_int (os->load_base, 0, "load base",
|
|
|
|
|
lang_final_phase_enum);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case lang_wild_statement_enum:
|
|
|
|
|
|
|
|
|
|
dot = lang_do_assignments (s->wild_statement.children.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
fill, dot);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_object_symbols_statement_enum:
|
|
|
|
|
case lang_output_statement_enum:
|
|
|
|
|
case lang_target_statement_enum:
|
|
|
|
|
#if 0
|
|
|
|
|
case lang_common_statement_enum:
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
case lang_data_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
etree_value_type value;
|
|
|
|
|
|
|
|
|
|
value = exp_fold_tree (s->data_statement.exp,
|
|
|
|
|
abs_output_section,
|
|
|
|
|
lang_final_phase_enum, dot, &dot);
|
|
|
|
|
s->data_statement.value = value.value;
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!value.valid_p)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
einfo (_("%F%P: invalid data statement\n"));
|
|
|
|
|
}
|
2002-05-03 15:48:55 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int size;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
switch (s->data_statement.type)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
case QUAD:
|
|
|
|
|
case SQUAD:
|
|
|
|
|
size = QUAD_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case LONG:
|
|
|
|
|
size = LONG_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case SHORT:
|
|
|
|
|
size = SHORT_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
case BYTE:
|
|
|
|
|
size = BYTE_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (size < opb)
|
|
|
|
|
size = opb;
|
|
|
|
|
dot += size / opb;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_reloc_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
etree_value_type value;
|
|
|
|
|
|
|
|
|
|
value = exp_fold_tree (s->reloc_statement.addend_exp,
|
|
|
|
|
abs_output_section,
|
|
|
|
|
lang_final_phase_enum, dot, &dot);
|
|
|
|
|
s->reloc_statement.addend_value = value.value;
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!value.valid_p)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
einfo (_("%F%P: invalid reloc statement\n"));
|
|
|
|
|
}
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += bfd_get_reloc_size (s->reloc_statement.howto) / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_input_section_enum:
|
|
|
|
|
{
|
|
|
|
|
asection *in = s->input_section.section;
|
|
|
|
|
|
|
|
|
|
if (in->_cooked_size != 0)
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += in->_cooked_size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += in->_raw_size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_input_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
case lang_fill_statement_enum:
|
|
|
|
|
fill = s->fill_statement.fill;
|
|
|
|
|
break;
|
|
|
|
|
case lang_assignment_statement_enum:
|
|
|
|
|
{
|
|
|
|
|
exp_fold_tree (s->assignment_statement.exp,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
lang_final_phase_enum,
|
|
|
|
|
dot,
|
|
|
|
|
&dot);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case lang_padding_statement_enum:
|
2000-02-03 19:24:46 +01:00
|
|
|
|
dot += s->padding_statement.size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
dot = lang_do_assignments (s->group_statement.children.head,
|
|
|
|
|
output_section_statement,
|
|
|
|
|
fill, dot);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
FAIL ();
|
|
|
|
|
break;
|
|
|
|
|
case lang_address_statement_enum:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return dot;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fix any .startof. or .sizeof. symbols. When the assemblers see the
|
|
|
|
|
operator .startof. (section_name), it produces an undefined symbol
|
|
|
|
|
.startof.section_name. Similarly, when it sees
|
|
|
|
|
.sizeof. (section_name), it produces an undefined symbol
|
|
|
|
|
.sizeof.section_name. For all the output sections, we look for
|
|
|
|
|
such symbols, and set them to the correct value. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_set_startof ()
|
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
if (link_info.relocateable)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (s = output_bfd->sections; s != NULL; s = s->next)
|
|
|
|
|
{
|
|
|
|
|
const char *secname;
|
|
|
|
|
char *buf;
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
|
|
|
|
|
|
|
|
|
secname = bfd_get_section_name (output_bfd, s);
|
|
|
|
|
buf = xmalloc (10 + strlen (secname));
|
|
|
|
|
|
|
|
|
|
sprintf (buf, ".startof.%s", secname);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h != NULL && h->type == bfd_link_hash_undefined)
|
|
|
|
|
{
|
|
|
|
|
h->type = bfd_link_hash_defined;
|
|
|
|
|
h->u.def.value = bfd_get_section_vma (output_bfd, s);
|
|
|
|
|
h->u.def.section = bfd_abs_section_ptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sprintf (buf, ".sizeof.%s", secname);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, buf, FALSE, FALSE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h != NULL && h->type == bfd_link_hash_undefined)
|
|
|
|
|
{
|
2002-05-03 15:48:55 +02:00
|
|
|
|
unsigned opb;
|
2001-05-17 05:58:45 +02:00
|
|
|
|
|
2002-05-03 15:48:55 +02:00
|
|
|
|
opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
2001-05-17 05:58:45 +02:00
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
h->type = bfd_link_hash_defined;
|
|
|
|
|
if (s->_cooked_size != 0)
|
2000-02-03 19:24:46 +01:00
|
|
|
|
h->u.def.value = s->_cooked_size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-02-03 19:24:46 +01:00
|
|
|
|
h->u.def.value = s->_raw_size / opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
h->u.def.section = bfd_abs_section_ptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free (buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_finish ()
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean warn;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (link_info.relocateable || link_info.shared)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
warn = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
warn = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
if (entry_symbol.name == (const char *) NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* No entry has been specified. Look for start, but don't warn
|
|
|
|
|
if we don't find it. */
|
2002-07-01 10:07:31 +02:00
|
|
|
|
entry_symbol.name = "start";
|
2002-11-30 09:39:46 +01:00
|
|
|
|
warn = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, entry_symbol.name,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h != (struct bfd_link_hash_entry *) NULL
|
|
|
|
|
&& (h->type == bfd_link_hash_defined
|
|
|
|
|
|| h->type == bfd_link_hash_defweak)
|
|
|
|
|
&& h->u.def.section->output_section != NULL)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma val;
|
|
|
|
|
|
|
|
|
|
val = (h->u.def.value
|
|
|
|
|
+ bfd_get_section_vma (output_bfd,
|
|
|
|
|
h->u.def.section->output_section)
|
|
|
|
|
+ h->u.def.section->output_offset);
|
|
|
|
|
if (! bfd_set_start_address (output_bfd, val))
|
2002-07-01 10:07:31 +02:00
|
|
|
|
einfo (_("%P%F:%s: can't set start address\n"), entry_symbol.name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bfd_vma val;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *send;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* We couldn't find the entry symbol. Try parsing it as a
|
|
|
|
|
number. */
|
2002-07-01 10:07:31 +02:00
|
|
|
|
val = bfd_scan_vma (entry_symbol.name, &send, 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (*send == '\0')
|
|
|
|
|
{
|
|
|
|
|
if (! bfd_set_start_address (output_bfd, val))
|
|
|
|
|
einfo (_("%P%F: can't set start address\n"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
asection *ts;
|
|
|
|
|
|
|
|
|
|
/* Can't find the entry symbol, and it's not a number. Use
|
|
|
|
|
the first address in the text section. */
|
2002-02-10 11:55:23 +01:00
|
|
|
|
ts = bfd_get_section_by_name (output_bfd, entry_section);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (ts != (asection *) NULL)
|
|
|
|
|
{
|
|
|
|
|
if (warn)
|
|
|
|
|
einfo (_("%P: warning: cannot find entry symbol %s; defaulting to %V\n"),
|
2002-07-01 10:07:31 +02:00
|
|
|
|
entry_symbol.name,
|
|
|
|
|
bfd_get_section_vma (output_bfd, ts));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! bfd_set_start_address (output_bfd,
|
|
|
|
|
bfd_get_section_vma (output_bfd,
|
|
|
|
|
ts)))
|
|
|
|
|
einfo (_("%P%F: can't set start address\n"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (warn)
|
|
|
|
|
einfo (_("%P: warning: cannot find entry symbol %s; not setting start address\n"),
|
2002-07-01 10:07:31 +02:00
|
|
|
|
entry_symbol.name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is a small function used when we want to ignore errors from
|
|
|
|
|
BFD. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
#ifdef ANSI_PROTOTYPES
|
1999-07-11 22:09:04 +02:00
|
|
|
|
ignore_bfd_errors (const char *s ATTRIBUTE_UNUSED, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
|
|
|
|
ignore_bfd_errors (s)
|
1999-07-11 22:09:04 +02:00
|
|
|
|
const char *s ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
/* Don't do anything. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check that the architecture of all the input files is compatible
|
|
|
|
|
with the output file. Also call the backend to let it do any
|
|
|
|
|
other checking that is needed. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_check ()
|
|
|
|
|
{
|
|
|
|
|
lang_statement_union_type *file;
|
|
|
|
|
bfd *input_bfd;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const bfd_arch_info_type *compatible;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (file = file_chain.head;
|
|
|
|
|
file != (lang_statement_union_type *) NULL;
|
|
|
|
|
file = file->input_statement.next)
|
|
|
|
|
{
|
|
|
|
|
input_bfd = file->input_statement.the_bfd;
|
2002-12-23 11:45:03 +01:00
|
|
|
|
compatible = bfd_arch_get_compatible (input_bfd, output_bfd,
|
|
|
|
|
command_line.accept_unknown_input_arch);
|
2002-03-13 03:56:36 +01:00
|
|
|
|
|
|
|
|
|
/* In general it is not possible to perform a relocatable
|
|
|
|
|
link between differing object formats when the input
|
|
|
|
|
file has relocations, because the relocations in the
|
|
|
|
|
input format may not have equivalent representations in
|
|
|
|
|
the output format (and besides BFD does not translate
|
|
|
|
|
relocs for other link purposes than a final link). */
|
2002-03-14 11:39:46 +01:00
|
|
|
|
if ((link_info.relocateable || link_info.emitrelocations)
|
2002-03-13 03:56:36 +01:00
|
|
|
|
&& (compatible == NULL
|
2002-03-14 11:39:46 +01:00
|
|
|
|
|| bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd))
|
2002-03-13 03:56:36 +01:00
|
|
|
|
&& (bfd_get_file_flags (input_bfd) & HAS_RELOC) != 0)
|
|
|
|
|
{
|
|
|
|
|
einfo (_("%P%F: Relocatable linking with relocations from format %s (%B) to format %s (%B) is not supported\n"),
|
|
|
|
|
bfd_get_target (input_bfd), input_bfd,
|
|
|
|
|
bfd_get_target (output_bfd), output_bfd);
|
|
|
|
|
/* einfo with %F exits. */
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (compatible == NULL)
|
|
|
|
|
{
|
|
|
|
|
if (command_line.warn_mismatch)
|
|
|
|
|
einfo (_("%P: warning: %s architecture of input file `%B' is incompatible with %s output\n"),
|
|
|
|
|
bfd_printable_name (input_bfd), input_bfd,
|
|
|
|
|
bfd_printable_name (output_bfd));
|
|
|
|
|
}
|
2001-01-16 22:04:29 +01:00
|
|
|
|
else if (bfd_count_sections (input_bfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-01-16 22:04:29 +01:00
|
|
|
|
/* If the input bfd has no contents, it shouldn't set the
|
2002-05-03 15:48:55 +02:00
|
|
|
|
private data of the output bfd. */
|
2001-01-16 22:04:29 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_error_handler_type pfn = NULL;
|
|
|
|
|
|
|
|
|
|
/* If we aren't supposed to warn about mismatched input
|
|
|
|
|
files, temporarily set the BFD error handler to a
|
|
|
|
|
function which will do nothing. We still want to call
|
|
|
|
|
bfd_merge_private_bfd_data, since it may set up
|
|
|
|
|
information which is needed in the output file. */
|
|
|
|
|
if (! command_line.warn_mismatch)
|
|
|
|
|
pfn = bfd_set_error_handler (ignore_bfd_errors);
|
|
|
|
|
if (! bfd_merge_private_bfd_data (input_bfd, output_bfd))
|
|
|
|
|
{
|
|
|
|
|
if (command_line.warn_mismatch)
|
|
|
|
|
einfo (_("%E%X: failed to merge target specific data of file %B\n"),
|
|
|
|
|
input_bfd);
|
|
|
|
|
}
|
|
|
|
|
if (! command_line.warn_mismatch)
|
|
|
|
|
bfd_set_error_handler (pfn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Look through all the global common symbols and attach them to the
|
|
|
|
|
correct section. The -sort-common command line switch may be used
|
|
|
|
|
to roughly sort the entries by size. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_common ()
|
|
|
|
|
{
|
2001-09-29 14:57:54 +02:00
|
|
|
|
if (command_line.inhibit_common_definition)
|
|
|
|
|
return;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (link_info.relocateable
|
|
|
|
|
&& ! command_line.force_common_definition)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (! config.sort_common)
|
|
|
|
|
bfd_link_hash_traverse (link_info.hash, lang_one_common, (PTR) NULL);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int power;
|
|
|
|
|
|
|
|
|
|
for (power = 4; power >= 0; power--)
|
|
|
|
|
bfd_link_hash_traverse (link_info.hash, lang_one_common,
|
|
|
|
|
(PTR) &power);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Place one common symbol in the correct section. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_one_common (h, info)
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
|
|
|
|
PTR info;
|
|
|
|
|
{
|
|
|
|
|
unsigned int power_of_two;
|
|
|
|
|
bfd_vma size;
|
|
|
|
|
asection *section;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
unsigned opb = bfd_arch_mach_octets_per_byte (ldfile_output_architecture,
|
|
|
|
|
ldfile_output_machine);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (h->type != bfd_link_hash_common)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
size = h->u.c.size;
|
|
|
|
|
power_of_two = h->u.c.p->alignment_power;
|
|
|
|
|
|
|
|
|
|
if (config.sort_common
|
|
|
|
|
&& power_of_two < (unsigned int) *(int *) info)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
section = h->u.c.p->section;
|
|
|
|
|
|
|
|
|
|
/* Increase the size of the section. */
|
2002-08-13 04:08:26 +02:00
|
|
|
|
section->_cooked_size = align_n ((section->_cooked_size + opb - 1) / opb,
|
|
|
|
|
(bfd_vma) 1 << power_of_two) * opb;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Adjust the alignment if necessary. */
|
|
|
|
|
if (power_of_two > section->alignment_power)
|
|
|
|
|
section->alignment_power = power_of_two;
|
|
|
|
|
|
|
|
|
|
/* Change the symbol from common to defined. */
|
|
|
|
|
h->type = bfd_link_hash_defined;
|
|
|
|
|
h->u.def.section = section;
|
|
|
|
|
h->u.def.value = section->_cooked_size;
|
|
|
|
|
|
|
|
|
|
/* Increase the size of the section. */
|
|
|
|
|
section->_cooked_size += size;
|
|
|
|
|
|
|
|
|
|
/* Make sure the section is allocated in memory, and make sure that
|
|
|
|
|
it is no longer a common section. */
|
|
|
|
|
section->flags |= SEC_ALLOC;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
section->flags &= ~SEC_IS_COMMON;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (config.map_file != NULL)
|
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean header_printed;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int len;
|
|
|
|
|
char *name;
|
|
|
|
|
char buf[50];
|
|
|
|
|
|
|
|
|
|
if (! header_printed)
|
|
|
|
|
{
|
|
|
|
|
minfo (_("\nAllocating common symbols\n"));
|
|
|
|
|
minfo (_("Common symbol size file\n\n"));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
header_printed = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name = demangle (h->root.string);
|
|
|
|
|
minfo ("%s", name);
|
|
|
|
|
len = strlen (name);
|
|
|
|
|
free (name);
|
|
|
|
|
|
|
|
|
|
if (len >= 19)
|
|
|
|
|
{
|
|
|
|
|
print_nl ();
|
|
|
|
|
len = 0;
|
|
|
|
|
}
|
|
|
|
|
while (len < 20)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("0x");
|
|
|
|
|
if (size <= 0xffffffff)
|
|
|
|
|
sprintf (buf, "%lx", (unsigned long) size);
|
|
|
|
|
else
|
|
|
|
|
sprintf_vma (buf, size);
|
|
|
|
|
minfo ("%s", buf);
|
|
|
|
|
len = strlen (buf);
|
|
|
|
|
|
|
|
|
|
while (len < 16)
|
|
|
|
|
{
|
|
|
|
|
print_space ();
|
|
|
|
|
++len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
minfo ("%B\n", section->owner);
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Run through the input files and ensure that every input section has
|
|
|
|
|
somewhere to go. If one is found without a destination then create
|
|
|
|
|
an input request and place it into the statement tree. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_place_orphans ()
|
|
|
|
|
{
|
1999-07-19 16:57:03 +02:00
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (file)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
|
|
|
|
|
for (s = file->the_bfd->sections;
|
|
|
|
|
s != (asection *) NULL;
|
|
|
|
|
s = s->next)
|
|
|
|
|
{
|
|
|
|
|
if (s->output_section == (asection *) NULL)
|
|
|
|
|
{
|
2003-01-02 04:53:53 +01:00
|
|
|
|
/* This section of the file is not attached, root
|
2000-10-05 15:03:30 +02:00
|
|
|
|
around for a sensible place for it to go. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (file->just_syms_flag)
|
|
|
|
|
{
|
2002-05-15 02:19:23 +02:00
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else if (strcmp (s->name, "COMMON") == 0)
|
|
|
|
|
{
|
|
|
|
|
/* This is a lonely common section which must have
|
|
|
|
|
come from an archive. We attach to the section
|
|
|
|
|
with the wildcard. */
|
|
|
|
|
if (! link_info.relocateable
|
|
|
|
|
|| command_line.force_common_definition)
|
|
|
|
|
{
|
|
|
|
|
if (default_common_section == NULL)
|
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
/* This message happens when using the
|
|
|
|
|
svr3.ifile linker script, so I have
|
|
|
|
|
disabled it. */
|
|
|
|
|
info_msg (_("%P: no [COMMON] command, defaulting to .bss\n"));
|
|
|
|
|
#endif
|
|
|
|
|
default_common_section =
|
|
|
|
|
lang_output_section_statement_lookup (".bss");
|
|
|
|
|
|
|
|
|
|
}
|
2001-08-14 04:01:31 +02:00
|
|
|
|
lang_add_section (&default_common_section->children, s,
|
|
|
|
|
default_common_section, file);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (ldemul_place_orphan (file, s))
|
|
|
|
|
;
|
|
|
|
|
else
|
|
|
|
|
{
|
2001-08-14 04:01:31 +02:00
|
|
|
|
lang_output_section_statement_type *os;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-08-14 04:01:31 +02:00
|
|
|
|
os = lang_output_section_statement_lookup (s->name);
|
|
|
|
|
lang_add_section (&os->children, s, os, file);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1999-06-12 23:24:56 +02:00
|
|
|
|
lang_set_flags (ptr, flags, invert)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_memory_region_type *ptr;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *flags;
|
1999-06-12 23:24:56 +02:00
|
|
|
|
int invert;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-06-12 23:24:56 +02:00
|
|
|
|
flagword *ptr_flags;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-06-12 23:24:56 +02:00
|
|
|
|
ptr_flags = invert ? &ptr->not_flags : &ptr->flags;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (*flags)
|
|
|
|
|
{
|
|
|
|
|
switch (*flags)
|
|
|
|
|
{
|
|
|
|
|
case 'A': case 'a':
|
|
|
|
|
*ptr_flags |= SEC_ALLOC;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'R': case 'r':
|
|
|
|
|
*ptr_flags |= SEC_READONLY;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'W': case 'w':
|
|
|
|
|
*ptr_flags |= SEC_DATA;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'X': case 'x':
|
|
|
|
|
*ptr_flags |= SEC_CODE;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'L': case 'l':
|
|
|
|
|
case 'I': case 'i':
|
|
|
|
|
*ptr_flags |= SEC_LOAD;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
einfo (_("%P%F: invalid syntax in flags\n"));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
flags++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call a function on each input file. This function will be called
|
|
|
|
|
on an archive, but not on the elements. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_for_each_input_file (func)
|
|
|
|
|
void (*func) PARAMS ((lang_input_statement_type *));
|
|
|
|
|
{
|
|
|
|
|
lang_input_statement_type *f;
|
|
|
|
|
|
|
|
|
|
for (f = (lang_input_statement_type *) input_file_chain.head;
|
|
|
|
|
f != NULL;
|
|
|
|
|
f = (lang_input_statement_type *) f->next_real_file)
|
|
|
|
|
func (f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Call a function on each file. The function will be called on all
|
|
|
|
|
the elements of an archive which are included in the link, but will
|
|
|
|
|
not be called on the archive file itself. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_for_each_file (func)
|
|
|
|
|
void (*func) PARAMS ((lang_input_statement_type *));
|
|
|
|
|
{
|
1999-07-19 16:57:03 +02:00
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (f)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
func (f);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
|
|
/* Not used. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_for_each_input_section (func)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
void (*func) PARAMS ((bfd *ab, asection *as));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-07-19 16:57:03 +02:00
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (f)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
asection *s;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (s = f->the_bfd->sections;
|
|
|
|
|
s != (asection *) NULL;
|
|
|
|
|
s = s->next)
|
|
|
|
|
{
|
|
|
|
|
func (f->the_bfd, s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ldlang_add_file (entry)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_input_statement_type *entry;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
bfd **pp;
|
|
|
|
|
|
|
|
|
|
lang_statement_append (&file_chain,
|
|
|
|
|
(lang_statement_union_type *) entry,
|
|
|
|
|
&entry->next);
|
|
|
|
|
|
|
|
|
|
/* The BFD linker needs to have a list of all input BFDs involved in
|
|
|
|
|
a link. */
|
|
|
|
|
ASSERT (entry->the_bfd->link_next == (bfd *) NULL);
|
|
|
|
|
ASSERT (entry->the_bfd != output_bfd);
|
|
|
|
|
for (pp = &link_info.input_bfds;
|
|
|
|
|
*pp != (bfd *) NULL;
|
|
|
|
|
pp = &(*pp)->link_next)
|
|
|
|
|
;
|
|
|
|
|
*pp = entry->the_bfd;
|
|
|
|
|
entry->the_bfd->usrdata = (PTR) entry;
|
|
|
|
|
bfd_set_gp_size (entry->the_bfd, g_switch_value);
|
|
|
|
|
|
|
|
|
|
/* Look through the sections and check for any which should not be
|
|
|
|
|
included in the link. We need to do this now, so that we can
|
|
|
|
|
notice when the backend linker tries to report multiple
|
|
|
|
|
definition errors for symbols which are in sections we aren't
|
|
|
|
|
going to link. FIXME: It might be better to entirely ignore
|
|
|
|
|
symbols which are defined in sections which are going to be
|
|
|
|
|
discarded. This would require modifying the backend linker for
|
|
|
|
|
each backend which might set the SEC_LINK_ONCE flag. If we do
|
|
|
|
|
this, we should probably handle SEC_EXCLUDE in the same way. */
|
|
|
|
|
|
|
|
|
|
bfd_map_over_sections (entry->the_bfd, section_already_linked, (PTR) entry);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_output (name, from_script)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int from_script;
|
|
|
|
|
{
|
|
|
|
|
/* Make -o on command line override OUTPUT in script. */
|
2002-10-14 15:08:19 +02:00
|
|
|
|
if (!had_output_filename || !from_script)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
output_filename = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
had_output_filename = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static lang_output_section_statement_type *current_section;
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
topower (x)
|
|
|
|
|
int x;
|
|
|
|
|
{
|
|
|
|
|
unsigned int i = 1;
|
|
|
|
|
int l;
|
|
|
|
|
|
|
|
|
|
if (x < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
2000-09-05 05:21:16 +02:00
|
|
|
|
for (l = 0; l < 32; l++)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (i >= (unsigned int) x)
|
|
|
|
|
return l;
|
|
|
|
|
i <<= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-25 07:14:16 +02:00
|
|
|
|
lang_output_section_statement_type *
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_enter_output_section_statement (output_section_statement_name,
|
|
|
|
|
address_exp, sectype, block_value,
|
|
|
|
|
align, subalign, ebase)
|
|
|
|
|
const char *output_section_statement_name;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
etree_type *address_exp;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
enum section_type sectype;
|
|
|
|
|
bfd_vma block_value;
|
|
|
|
|
etree_type *align;
|
|
|
|
|
etree_type *subalign;
|
|
|
|
|
etree_type *ebase;
|
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
|
|
|
|
|
current_section =
|
|
|
|
|
os =
|
|
|
|
|
lang_output_section_statement_lookup (output_section_statement_name);
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Add this statement to tree. */
|
|
|
|
|
#if 0
|
|
|
|
|
add_statement (lang_output_section_statement_enum,
|
|
|
|
|
output_section_statement);
|
|
|
|
|
#endif
|
|
|
|
|
/* Make next things chain into subchain of this. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
if (os->addr_tree == (etree_type *) NULL)
|
|
|
|
|
{
|
|
|
|
|
os->addr_tree = address_exp;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
os->sectype = sectype;
|
|
|
|
|
if (sectype != noload_section)
|
|
|
|
|
os->flags = SEC_NO_FLAGS;
|
|
|
|
|
else
|
|
|
|
|
os->flags = SEC_NEVER_LOAD;
|
|
|
|
|
os->block_value = block_value ? block_value : 1;
|
|
|
|
|
stat_ptr = &os->children;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
os->subsection_alignment =
|
|
|
|
|
topower (exp_get_value_int (subalign, -1, "subsection alignment", 0));
|
|
|
|
|
os->section_alignment =
|
|
|
|
|
topower (exp_get_value_int (align, -1, "section alignment", 0));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
os->load_base = ebase;
|
2000-04-25 07:14:16 +02:00
|
|
|
|
return os;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_final ()
|
|
|
|
|
{
|
|
|
|
|
lang_output_statement_type *new =
|
|
|
|
|
new_stat (lang_output_statement, stat_ptr);
|
|
|
|
|
|
|
|
|
|
new->name = output_filename;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Reset the current counters in the regions. */
|
|
|
|
|
|
2002-02-05 07:52:17 +01:00
|
|
|
|
void
|
|
|
|
|
lang_reset_memory_regions ()
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *p = lang_memory_region_list;
|
2001-08-18 16:54:26 +02:00
|
|
|
|
asection *o;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (p = lang_memory_region_list;
|
|
|
|
|
p != (lang_memory_region_type *) NULL;
|
|
|
|
|
p = p->next)
|
|
|
|
|
{
|
|
|
|
|
p->old_length = (bfd_size_type) (p->current - p->origin);
|
|
|
|
|
p->current = p->origin;
|
|
|
|
|
}
|
2001-08-18 16:54:26 +02:00
|
|
|
|
|
|
|
|
|
for (o = output_bfd->sections; o != NULL; o = o->next)
|
|
|
|
|
o->_raw_size = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
/* If the wild pattern was marked KEEP, the member sections
|
|
|
|
|
should be as well. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
gc_section_callback (ptr, sec, section, file, data)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_wild_statement_type *ptr;
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *sec ATTRIBUTE_UNUSED;
|
1999-05-09 01:40:58 +02:00
|
|
|
|
asection *section;
|
1999-07-11 22:09:04 +02:00
|
|
|
|
lang_input_statement_type *file ATTRIBUTE_UNUSED;
|
2000-09-05 05:21:16 +02:00
|
|
|
|
PTR data ATTRIBUTE_UNUSED;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-05-09 01:40:58 +02:00
|
|
|
|
if (ptr->keep_sections)
|
|
|
|
|
section->flags |= SEC_KEEP;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
/* Handle a wild statement, marking it against GC. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
lang_gc_wild (s)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_wild_statement_type *s;
|
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
walk_wild (s, gc_section_callback, NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Iterate over sections marking them against GC. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_gc_sections_1 (s)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_union_type *s;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-20 04:14:50 +02:00
|
|
|
|
for (; s != (lang_statement_union_type *) NULL; s = s->header.next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (s->header.type)
|
|
|
|
|
{
|
|
|
|
|
case lang_wild_statement_enum:
|
2001-08-03 03:11:21 +02:00
|
|
|
|
lang_gc_wild (&s->wild_statement);
|
2001-11-21 02:13:15 +01:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case lang_constructors_statement_enum:
|
|
|
|
|
lang_gc_sections_1 (constructor_list.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_output_section_statement_enum:
|
|
|
|
|
lang_gc_sections_1 (s->output_section_statement.children.head);
|
|
|
|
|
break;
|
|
|
|
|
case lang_group_statement_enum:
|
|
|
|
|
lang_gc_sections_1 (s->group_statement.children.head);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_gc_sections ()
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
2002-07-01 10:07:31 +02:00
|
|
|
|
ldlang_undef_chain_list_type *ulist;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Keep all sections so marked in the link script. */
|
|
|
|
|
|
|
|
|
|
lang_gc_sections_1 (statement_list.head);
|
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
/* Keep all sections containing symbols undefined on the command-line,
|
|
|
|
|
and the section containing the entry symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
for (ulist = link_info.gc_sym_list; ulist; ulist = ulist->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-09-05 05:21:16 +02:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, ulist->name,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE, FALSE, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (h != (struct bfd_link_hash_entry *) NULL
|
2000-10-05 15:03:30 +02:00
|
|
|
|
&& (h->type == bfd_link_hash_defined
|
|
|
|
|
|| h->type == bfd_link_hash_defweak)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& ! bfd_is_abs_section (h->u.def.section))
|
|
|
|
|
{
|
|
|
|
|
h->u.def.section->flags |= SEC_KEEP;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_gc_sections (output_bfd, &link_info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_process ()
|
|
|
|
|
{
|
|
|
|
|
lang_reasonable_defaults ();
|
|
|
|
|
current_target = default_target;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Open the output file. */
|
|
|
|
|
lang_for_each_statement (ldlang_open_output);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
ldemul_create_output_section_statements ();
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Add to the hash table all undefineds on the command line. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_place_undefineds ();
|
|
|
|
|
|
1999-11-02 00:37:48 +01:00
|
|
|
|
already_linked_table_init ();
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Create a bfd for each input file. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
current_target = default_target;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
open_input_bfds (statement_list.head, FALSE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-07-01 10:07:31 +02:00
|
|
|
|
link_info.gc_sym_list = &entry_symbol;
|
|
|
|
|
if (entry_symbol.name == NULL)
|
|
|
|
|
link_info.gc_sym_list = ldlang_undef_chain_list_head;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ldemul_after_open ();
|
|
|
|
|
|
1999-11-02 00:37:48 +01:00
|
|
|
|
already_linked_table_free ();
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Make sure that we're not mixing architectures. We call this
|
|
|
|
|
after all the input files have been opened, but before we do any
|
|
|
|
|
other processing, so that any operations merge_private_bfd_data
|
|
|
|
|
does on the output file will be known during the rest of the
|
|
|
|
|
link. */
|
|
|
|
|
lang_check ();
|
|
|
|
|
|
|
|
|
|
/* Handle .exports instead of a version script if we're told to do so. */
|
|
|
|
|
if (command_line.version_exports_section)
|
|
|
|
|
lang_do_version_exports_section ();
|
|
|
|
|
|
|
|
|
|
/* Build all sets based on the information gathered from the input
|
|
|
|
|
files. */
|
|
|
|
|
ldctor_build_sets ();
|
|
|
|
|
|
|
|
|
|
/* Remove unreferenced sections if asked to. */
|
|
|
|
|
if (command_line.gc_sections)
|
|
|
|
|
lang_gc_sections ();
|
|
|
|
|
|
* merge.c (struct sec_merge_hash_entry): Add u.entsize and u.suffix
fields, change sec into secinfo.
(struct sec_merge_info): Add chain, remove last fields.
(struct sec_merge_sec_info): Add next, sec, psecinfo fields.
(sec_merge_hash_lookup): If lookup could not use a string only
because it has bad alignment, mark the old string for deletion.
(sec_merge_add): Add secinfo argument. Don't compute entry's
position, instead record the section.
(sec_merge_emit): Update for the sec into secinfo change in
struct sec_merge_hash_entry.
(_bfd_merge_section): Only record the section for merging, defer
putting strings into the hash table.
(cmplengthentry, last4_eq, last_eq, record_section, merge_strings,
_bfd_merge_sections): New functions.
(_bfd_merged_section_offset): Update for the sec_merge_hash_entry
changes.
* libbfd-in.h (_bfd_merge_sections): Add prototype.
(_bfd_nolink_bfd_merge_sections): Define.
* libbfd.h: Likewise.
(bfd_generic_merge_sections): Add prototype.
* targets.c (BFD_JUMP_TABLE_LINK): Add _bfd_merge_sections.
(struct bfd_target): Likewise.
* bfd.c (bfd_merge_sections): Define.
* bfd-in2.h: Rebuilt.
* elf.c (_bfd_elf_merge_sections): New function.
* elf-bfd.h (_bfd_elf_merge_sections): Add prototype.
* elfxx-target.h (bfd_elfNN_bfd_merge_sections): Define.
* reloc.c (bfd_generic_merge_sections): New function.
* vms.c (vms_bfd_merge_sections): New function.
* aout-adobe.c (aout_32_bfd_merge_sections): Define.
* aout-target.h (MY_bfd_merge_sections): Define.
* aout-tic30.c (MY_bfd_merge_sections): Define.
* binary.c (binary_bfd_merge_sections): Define.
* bout.c (b_out_bfd_merge_sections): Define.
* coff-alpha.c (_bfd_ecoff_bfd_merge_sections): Define.
* coffcode.c (coff_bfd_merge_sections): Define.
* coff-mips.c (_bfd_ecoff_bfd_merge_sections): Define.
* i386msdos.c (msdos_bfd_merge_sections): Define.
* i386os9k.c (os9k_bfd_merge_sections): Define.
* ieee.c (ieee_bfd_merge_sections): Define.
* ihex.c (ihex_bfd_merge_sections): Define.
* nlm-target.h (nlm_bfd_merge_sections): Define.
* oasys.c (oasys_bfd_merge_sections): Define.
* ppcboot.c (ppcboot_bfd_merge_sections): Define.
* som.c (som_bfd_merge_sections): Define.
* srec.c (srec_bfd_merge_sections): Define.
* tekhex.c (tekhex_bfd_merge_sections): Define.
* versados.c (versados_bfd_merge_sections): Define.
* xcoff-target.h (_bfd_xcoff_bfd_merge_sections): Define.
* ldlang.c (lang_process): Call bfd_merge_sections.
2001-05-11 14:23:48 +02:00
|
|
|
|
/* If there were any SEC_MERGE sections, finish their merging, so that
|
|
|
|
|
section sizes can be computed. This has to be done after GC of sections,
|
|
|
|
|
so that GCed sections are not merged, but before assigning output
|
|
|
|
|
sections, since removing whole input sections is hard then. */
|
|
|
|
|
bfd_merge_sections (output_bfd, &link_info);
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Size up the common data. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_common ();
|
|
|
|
|
|
|
|
|
|
/* Run through the contours of the script and attach input sections
|
2000-10-05 15:03:30 +02:00
|
|
|
|
to the correct output sections. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
map_input_to_output_sections (statement_list.head, (char *) NULL,
|
|
|
|
|
(lang_output_section_statement_type *) NULL);
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Find any sections not attached explicitly and handle them. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_place_orphans ();
|
|
|
|
|
|
2002-03-18 03:55:51 +01:00
|
|
|
|
if (! link_info.relocateable)
|
|
|
|
|
{
|
|
|
|
|
/* Look for a text section and set the readonly attribute in it. */
|
|
|
|
|
asection *found = bfd_get_section_by_name (output_bfd, ".text");
|
|
|
|
|
|
|
|
|
|
if (found != (asection *) NULL)
|
|
|
|
|
{
|
|
|
|
|
if (config.text_read_only)
|
|
|
|
|
found->flags |= SEC_READONLY;
|
|
|
|
|
else
|
|
|
|
|
found->flags &= ~SEC_READONLY;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Do anything special before sizing sections. This is where ELF
|
|
|
|
|
and other back-ends size dynamic sections. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ldemul_before_allocation ();
|
|
|
|
|
|
2002-07-04 16:41:01 +02:00
|
|
|
|
if (!link_info.relocateable)
|
|
|
|
|
strip_excluded_output_sections ();
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* We must record the program headers before we try to fix the
|
|
|
|
|
section positions, since they will affect SIZEOF_HEADERS. */
|
|
|
|
|
lang_record_phdrs ();
|
|
|
|
|
|
2001-08-18 16:54:26 +02:00
|
|
|
|
/* Size up the sections. */
|
|
|
|
|
lang_size_sections (statement_list.head,
|
|
|
|
|
abs_output_section,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
&statement_list.head, 0, (bfd_vma) 0, NULL,
|
|
|
|
|
command_line.relax ? FALSE : TRUE);
|
2001-08-18 16:54:26 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Now run around and relax if we can. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (command_line.relax)
|
|
|
|
|
{
|
|
|
|
|
/* Keep relaxing until bfd_relax_section gives up. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean relax_again;
|
2001-08-18 16:54:26 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
do
|
|
|
|
|
{
|
2002-02-05 07:52:17 +01:00
|
|
|
|
lang_reset_memory_regions ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
relax_again = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Note: pe-dll.c does something like this also. If you find
|
|
|
|
|
you need to change this code, you probably need to change
|
2000-10-05 15:03:30 +02:00
|
|
|
|
pe-dll.c also. DJ */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Do all the assignments with our current guesses as to
|
|
|
|
|
section sizes. */
|
|
|
|
|
lang_do_assignments (statement_list.head,
|
|
|
|
|
abs_output_section,
|
2002-02-15 03:11:05 +01:00
|
|
|
|
(fill_type *) 0, (bfd_vma) 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Perform another relax pass - this time we know where the
|
2002-05-25 15:10:11 +02:00
|
|
|
|
globals are, so can make a better guess. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_size_sections (statement_list.head,
|
|
|
|
|
abs_output_section,
|
2002-05-25 15:10:11 +02:00
|
|
|
|
&statement_list.head, 0, (bfd_vma) 0,
|
2003-02-21 11:51:24 +01:00
|
|
|
|
&relax_again, FALSE);
|
2003-04-29 03:53:46 +02:00
|
|
|
|
|
|
|
|
|
/* If the normal relax is done and the relax finalize pass
|
|
|
|
|
is not performed yet, we perform another relax pass. */
|
|
|
|
|
if (!relax_again && !link_info.relax_finalizing)
|
|
|
|
|
{
|
|
|
|
|
link_info.relax_finalizing = TRUE;
|
|
|
|
|
relax_again = TRUE;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
while (relax_again);
|
2003-02-21 11:51:24 +01:00
|
|
|
|
|
|
|
|
|
/* Final extra sizing to report errors. */
|
|
|
|
|
lang_reset_memory_regions ();
|
|
|
|
|
lang_do_assignments (statement_list.head,
|
|
|
|
|
abs_output_section,
|
|
|
|
|
(fill_type *) 0, (bfd_vma) 0);
|
|
|
|
|
lang_size_sections (statement_list.head,
|
|
|
|
|
abs_output_section,
|
|
|
|
|
& statement_list.head, 0, (bfd_vma) 0,
|
|
|
|
|
NULL, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* See if anything special should be done now we know how big
|
|
|
|
|
everything is. */
|
|
|
|
|
ldemul_after_allocation ();
|
|
|
|
|
|
|
|
|
|
/* Fix any .startof. or .sizeof. symbols. */
|
|
|
|
|
lang_set_startof ();
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Do all the assignments, now that we know the final resting places
|
|
|
|
|
of all the symbols. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
lang_do_assignments (statement_list.head,
|
|
|
|
|
abs_output_section,
|
2002-02-15 03:11:05 +01:00
|
|
|
|
(fill_type *) 0, (bfd_vma) 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Make sure that the section addresses make sense. */
|
|
|
|
|
if (! link_info.relocateable
|
|
|
|
|
&& command_line.check_section_addresses)
|
|
|
|
|
lang_check_section_addresses ();
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Final stuffs. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
ldemul_finish ();
|
|
|
|
|
lang_finish ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* EXPORTED TO YACC */
|
|
|
|
|
|
|
|
|
|
void
|
2001-08-03 03:11:21 +02:00
|
|
|
|
lang_add_wild (filespec, section_list, keep_sections)
|
|
|
|
|
struct wildcard_spec *filespec;
|
|
|
|
|
struct wildcard_list *section_list;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean keep_sections;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
struct wildcard_list *curr, *next;
|
|
|
|
|
lang_wild_statement_type *new;
|
|
|
|
|
|
|
|
|
|
/* Reverse the list as the parser puts it back to front. */
|
|
|
|
|
for (curr = section_list, section_list = NULL;
|
|
|
|
|
curr != NULL;
|
|
|
|
|
section_list = curr, curr = next)
|
|
|
|
|
{
|
|
|
|
|
if (curr->spec.name != NULL && strcmp (curr->spec.name, "COMMON") == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
placed_commons = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
|
next = curr->next;
|
|
|
|
|
curr->next = section_list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (filespec != NULL && filespec->name != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (strcmp (filespec->name, "*") == 0)
|
|
|
|
|
filespec->name = NULL;
|
|
|
|
|
else if (! wildcardp (filespec->name))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
lang_has_input_file = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-08-03 03:11:21 +02:00
|
|
|
|
|
|
|
|
|
new = new_stat (lang_wild_statement, stat_ptr);
|
|
|
|
|
new->filename = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
new->filenames_sorted = FALSE;
|
2001-08-03 03:11:21 +02:00
|
|
|
|
if (filespec != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
|
new->filename = filespec->name;
|
|
|
|
|
new->filenames_sorted = filespec->sorted;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-08-03 03:11:21 +02:00
|
|
|
|
new->section_list = section_list;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
new->keep_sections = keep_sections;
|
|
|
|
|
lang_list_init (&new->children);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_section_start (name, address)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
2000-10-05 15:03:30 +02:00
|
|
|
|
etree_type *address;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-05-17 05:58:45 +02:00
|
|
|
|
lang_address_statement_type *ad;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-05-17 05:58:45 +02:00
|
|
|
|
ad = new_stat (lang_address_statement, stat_ptr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ad->section_name = name;
|
|
|
|
|
ad->address = address;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the start symbol to NAME. CMDLINE is nonzero if this is called
|
|
|
|
|
because of a -e argument on the command line, or zero if this is
|
|
|
|
|
called by ENTRY in a linker script. Command line arguments take
|
|
|
|
|
precedence. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_entry (name, cmdline)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean cmdline;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-07-01 10:07:31 +02:00
|
|
|
|
if (entry_symbol.name == NULL
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|| cmdline
|
|
|
|
|
|| ! entry_from_cmdline)
|
|
|
|
|
{
|
2002-07-01 10:07:31 +02:00
|
|
|
|
entry_symbol.name = name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
entry_from_cmdline = cmdline;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_target (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_target_statement_type *new = new_stat (lang_target_statement,
|
|
|
|
|
stat_ptr);
|
|
|
|
|
|
|
|
|
|
new->target = name;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_map (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
while (*name)
|
|
|
|
|
{
|
|
|
|
|
switch (*name)
|
|
|
|
|
{
|
2000-10-05 15:03:30 +02:00
|
|
|
|
case 'F':
|
2002-11-30 09:39:46 +01:00
|
|
|
|
map_option_f = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
name++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2002-02-15 03:11:05 +01:00
|
|
|
|
lang_add_fill (fill)
|
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_fill_statement_type *new = new_stat (lang_fill_statement,
|
|
|
|
|
stat_ptr);
|
|
|
|
|
|
2002-02-15 03:11:05 +01:00
|
|
|
|
new->fill = fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_data (type, exp)
|
|
|
|
|
int type;
|
|
|
|
|
union etree_union *exp;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
lang_data_statement_type *new = new_stat (lang_data_statement,
|
|
|
|
|
stat_ptr);
|
|
|
|
|
|
|
|
|
|
new->exp = exp;
|
|
|
|
|
new->type = type;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a new reloc statement. RELOC is the BFD relocation type to
|
|
|
|
|
generate. HOWTO is the corresponding howto structure (we could
|
|
|
|
|
look this up, but the caller has already done so). SECTION is the
|
|
|
|
|
section to generate a reloc against, or NAME is the name of the
|
|
|
|
|
symbol to generate a reloc against. Exactly one of SECTION and
|
|
|
|
|
NAME must be NULL. ADDEND is an expression for the addend. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_reloc (reloc, howto, section, name, addend)
|
|
|
|
|
bfd_reloc_code_real_type reloc;
|
|
|
|
|
reloc_howto_type *howto;
|
|
|
|
|
asection *section;
|
|
|
|
|
const char *name;
|
|
|
|
|
union etree_union *addend;
|
|
|
|
|
{
|
|
|
|
|
lang_reloc_statement_type *p = new_stat (lang_reloc_statement, stat_ptr);
|
2000-09-05 05:21:16 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p->reloc = reloc;
|
|
|
|
|
p->howto = howto;
|
|
|
|
|
p->section = section;
|
|
|
|
|
p->name = name;
|
|
|
|
|
p->addend_exp = addend;
|
|
|
|
|
|
|
|
|
|
p->addend_value = 0;
|
|
|
|
|
p->output_section = NULL;
|
|
|
|
|
p->output_vma = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lang_assignment_statement_type *
|
|
|
|
|
lang_add_assignment (exp)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
etree_type *exp;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_assignment_statement_type *new = new_stat (lang_assignment_statement,
|
|
|
|
|
stat_ptr);
|
|
|
|
|
|
|
|
|
|
new->exp = exp;
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_attribute (attribute)
|
|
|
|
|
enum statement_enum attribute;
|
|
|
|
|
{
|
|
|
|
|
new_statement (attribute, sizeof (lang_statement_union_type), stat_ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_startup (name)
|
2000-09-05 05:21:16 +02:00
|
|
|
|
const char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (startup_file != (char *) NULL)
|
|
|
|
|
{
|
|
|
|
|
einfo (_("%P%Fmultiple STARTUP files\n"));
|
|
|
|
|
}
|
|
|
|
|
first_file->filename = name;
|
|
|
|
|
first_file->local_sym_name = name;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
first_file->real = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
startup_file = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_float (maybe)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean maybe;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_float_flag = maybe;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-27 10:22:08 +02:00
|
|
|
|
|
|
|
|
|
/* Work out the load- and run-time regions from a script statement, and
|
|
|
|
|
store them in *LMA_REGION and *REGION respectively.
|
|
|
|
|
|
|
|
|
|
MEMSPEC is the name of the run-time region, or "*default*" if the
|
|
|
|
|
statement didn't specify one. LMA_MEMSPEC is the name of the
|
|
|
|
|
load-time region, or null if the statement didn't specify one.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
HAVE_LMA_P is TRUE if the statement had an explicit load address.
|
2002-05-27 10:22:08 +02:00
|
|
|
|
|
|
|
|
|
It is an error to specify both a load region and a load address. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_get_regions (region, lma_region, memspec, lma_memspec, have_lma_p)
|
|
|
|
|
struct memory_region_struct **region, **lma_region;
|
|
|
|
|
const char *memspec, *lma_memspec;
|
|
|
|
|
int have_lma_p;
|
|
|
|
|
{
|
|
|
|
|
*lma_region = lang_memory_region_lookup (lma_memspec);
|
|
|
|
|
|
|
|
|
|
/* If no runtime region has been given, but the load region has
|
|
|
|
|
been, use the load region. */
|
|
|
|
|
if (lma_memspec != 0 && strcmp (memspec, "*default*") == 0)
|
|
|
|
|
*region = *lma_region;
|
|
|
|
|
else
|
|
|
|
|
*region = lang_memory_region_lookup (memspec);
|
|
|
|
|
|
|
|
|
|
if (have_lma_p && lma_memspec != 0)
|
|
|
|
|
einfo (_("%X%P:%S: section has both a load address and a load region\n"));
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
2000-02-16 19:53:32 +01:00
|
|
|
|
lang_leave_output_section_statement (fill, memspec, phdrs, lma_memspec)
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char *memspec;
|
|
|
|
|
struct lang_output_section_phdr_list *phdrs;
|
2000-02-16 19:53:32 +01:00
|
|
|
|
const char *lma_memspec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-05-27 10:22:08 +02:00
|
|
|
|
lang_get_regions (¤t_section->region,
|
|
|
|
|
¤t_section->lma_region,
|
|
|
|
|
memspec, lma_memspec,
|
|
|
|
|
current_section->load_base != 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
current_section->fill = fill;
|
|
|
|
|
current_section->phdrs = phdrs;
|
|
|
|
|
stat_ptr = &statement_list;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Create an absolute symbol with the given name with the value of the
|
|
|
|
|
address of first byte of the section named.
|
|
|
|
|
|
|
|
|
|
If the symbol already exists, then do nothing. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_abs_symbol_at_beginning_of (secname, name)
|
|
|
|
|
const char *secname;
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h == (struct bfd_link_hash_entry *) NULL)
|
|
|
|
|
einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
|
|
|
|
|
|
|
|
|
|
if (h->type == bfd_link_hash_new
|
|
|
|
|
|| h->type == bfd_link_hash_undefined)
|
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
h->type = bfd_link_hash_defined;
|
|
|
|
|
|
|
|
|
|
sec = bfd_get_section_by_name (output_bfd, secname);
|
|
|
|
|
if (sec == (asection *) NULL)
|
|
|
|
|
h->u.def.value = 0;
|
|
|
|
|
else
|
|
|
|
|
h->u.def.value = bfd_get_section_vma (output_bfd, sec);
|
|
|
|
|
|
|
|
|
|
h->u.def.section = bfd_abs_section_ptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
/* Create an absolute symbol with the given name with the value of the
|
|
|
|
|
address of the first byte after the end of the section named.
|
|
|
|
|
|
|
|
|
|
If the symbol already exists, then do nothing. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_abs_symbol_at_end_of (secname, name)
|
|
|
|
|
const char *secname;
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_link_hash_entry *h;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
h = bfd_link_hash_lookup (link_info.hash, name, TRUE, TRUE, TRUE);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (h == (struct bfd_link_hash_entry *) NULL)
|
|
|
|
|
einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
|
|
|
|
|
|
|
|
|
|
if (h->type == bfd_link_hash_new
|
|
|
|
|
|| h->type == bfd_link_hash_undefined)
|
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
h->type = bfd_link_hash_defined;
|
|
|
|
|
|
|
|
|
|
sec = bfd_get_section_by_name (output_bfd, secname);
|
|
|
|
|
if (sec == (asection *) NULL)
|
|
|
|
|
h->u.def.value = 0;
|
|
|
|
|
else
|
|
|
|
|
h->u.def.value = (bfd_get_section_vma (output_bfd, sec)
|
2000-02-03 19:24:46 +01:00
|
|
|
|
+ bfd_section_size (output_bfd, sec) /
|
|
|
|
|
bfd_octets_per_byte (output_bfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
h->u.def.section = bfd_abs_section_ptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_statement_append (list, element, field)
|
2000-10-05 15:03:30 +02:00
|
|
|
|
lang_statement_list_type *list;
|
|
|
|
|
lang_statement_union_type *element;
|
|
|
|
|
lang_statement_union_type **field;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
*(list->tail) = element;
|
|
|
|
|
list->tail = field;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the output format type. -oformat overrides scripts. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_output_format (format, big, little, from_script)
|
|
|
|
|
const char *format;
|
|
|
|
|
const char *big;
|
|
|
|
|
const char *little;
|
|
|
|
|
int from_script;
|
|
|
|
|
{
|
|
|
|
|
if (output_target == NULL || !from_script)
|
|
|
|
|
{
|
|
|
|
|
if (command_line.endian == ENDIAN_BIG
|
|
|
|
|
&& big != NULL)
|
|
|
|
|
format = big;
|
|
|
|
|
else if (command_line.endian == ENDIAN_LITTLE
|
|
|
|
|
&& little != NULL)
|
|
|
|
|
format = little;
|
|
|
|
|
|
|
|
|
|
output_target = format;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Enter a group. This creates a new lang_group_statement, and sets
|
|
|
|
|
stat_ptr to build new statements within the group. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_enter_group ()
|
|
|
|
|
{
|
|
|
|
|
lang_group_statement_type *g;
|
|
|
|
|
|
|
|
|
|
g = new_stat (lang_group_statement, stat_ptr);
|
|
|
|
|
lang_list_init (&g->children);
|
|
|
|
|
stat_ptr = &g->children;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Leave a group. This just resets stat_ptr to start writing to the
|
|
|
|
|
regular list of statements again. Note that this will not work if
|
|
|
|
|
groups can occur inside anything else which can adjust stat_ptr,
|
|
|
|
|
but currently they can't. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_leave_group ()
|
|
|
|
|
{
|
|
|
|
|
stat_ptr = &statement_list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Add a new program header. This is called for each entry in a PHDRS
|
|
|
|
|
command in a linker script. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_new_phdr (name, type, filehdr, phdrs, at, flags)
|
|
|
|
|
const char *name;
|
|
|
|
|
etree_type *type;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean filehdr;
|
|
|
|
|
bfd_boolean phdrs;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etree_type *at;
|
|
|
|
|
etree_type *flags;
|
|
|
|
|
{
|
|
|
|
|
struct lang_phdr *n, **pp;
|
|
|
|
|
|
|
|
|
|
n = (struct lang_phdr *) stat_alloc (sizeof (struct lang_phdr));
|
|
|
|
|
n->next = NULL;
|
|
|
|
|
n->name = name;
|
|
|
|
|
n->type = exp_get_value_int (type, 0, "program header type",
|
|
|
|
|
lang_final_phase_enum);
|
|
|
|
|
n->filehdr = filehdr;
|
|
|
|
|
n->phdrs = phdrs;
|
|
|
|
|
n->at = at;
|
|
|
|
|
n->flags = flags;
|
|
|
|
|
|
|
|
|
|
for (pp = &lang_phdr_list; *pp != NULL; pp = &(*pp)->next)
|
|
|
|
|
;
|
|
|
|
|
*pp = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Record the program header information in the output BFD. FIXME: We
|
|
|
|
|
should not be calling an ELF specific function here. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_record_phdrs ()
|
|
|
|
|
{
|
|
|
|
|
unsigned int alc;
|
|
|
|
|
asection **secs;
|
|
|
|
|
struct lang_output_section_phdr_list *last;
|
|
|
|
|
struct lang_phdr *l;
|
|
|
|
|
lang_statement_union_type *u;
|
|
|
|
|
|
|
|
|
|
alc = 10;
|
|
|
|
|
secs = (asection **) xmalloc (alc * sizeof (asection *));
|
|
|
|
|
last = NULL;
|
|
|
|
|
for (l = lang_phdr_list; l != NULL; l = l->next)
|
|
|
|
|
{
|
|
|
|
|
unsigned int c;
|
|
|
|
|
flagword flags;
|
|
|
|
|
bfd_vma at;
|
|
|
|
|
|
|
|
|
|
c = 0;
|
|
|
|
|
for (u = lang_output_section_statement.head;
|
|
|
|
|
u != NULL;
|
|
|
|
|
u = u->output_section_statement.next)
|
|
|
|
|
{
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
struct lang_output_section_phdr_list *pl;
|
|
|
|
|
|
|
|
|
|
os = &u->output_section_statement;
|
|
|
|
|
|
|
|
|
|
pl = os->phdrs;
|
|
|
|
|
if (pl != NULL)
|
|
|
|
|
last = pl;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (os->sectype == noload_section
|
|
|
|
|
|| os->bfd_section == NULL
|
|
|
|
|
|| (os->bfd_section->flags & SEC_ALLOC) == 0)
|
|
|
|
|
continue;
|
|
|
|
|
pl = last;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (os->bfd_section == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (; pl != NULL; pl = pl->next)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (pl->name, l->name) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (c >= alc)
|
|
|
|
|
{
|
|
|
|
|
alc *= 2;
|
|
|
|
|
secs = ((asection **)
|
|
|
|
|
xrealloc (secs, alc * sizeof (asection *)));
|
|
|
|
|
}
|
|
|
|
|
secs[c] = os->bfd_section;
|
|
|
|
|
++c;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
pl->used = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (l->flags == NULL)
|
|
|
|
|
flags = 0;
|
|
|
|
|
else
|
|
|
|
|
flags = exp_get_vma (l->flags, 0, "phdr flags",
|
|
|
|
|
lang_final_phase_enum);
|
|
|
|
|
|
|
|
|
|
if (l->at == NULL)
|
|
|
|
|
at = 0;
|
|
|
|
|
else
|
|
|
|
|
at = exp_get_vma (l->at, 0, "phdr load address",
|
|
|
|
|
lang_final_phase_enum);
|
|
|
|
|
|
|
|
|
|
if (! bfd_record_phdr (output_bfd, l->type,
|
2001-05-17 05:58:45 +02:00
|
|
|
|
l->flags != NULL, flags, l->at != NULL,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
at, l->filehdr, l->phdrs, c, secs))
|
|
|
|
|
einfo (_("%F%P: bfd_record_phdr failed: %E\n"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
free (secs);
|
|
|
|
|
|
|
|
|
|
/* Make sure all the phdr assignments succeeded. */
|
|
|
|
|
for (u = lang_output_section_statement.head;
|
|
|
|
|
u != NULL;
|
|
|
|
|
u = u->output_section_statement.next)
|
|
|
|
|
{
|
|
|
|
|
struct lang_output_section_phdr_list *pl;
|
|
|
|
|
|
|
|
|
|
if (u->output_section_statement.bfd_section == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (pl = u->output_section_statement.phdrs;
|
|
|
|
|
pl != NULL;
|
|
|
|
|
pl = pl->next)
|
|
|
|
|
if (! pl->used && strcmp (pl->name, "NONE") != 0)
|
|
|
|
|
einfo (_("%X%P: section `%s' assigned to non-existent phdr `%s'\n"),
|
|
|
|
|
u->output_section_statement.name, pl->name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Record a list of sections which may not be cross referenced. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_nocrossref (l)
|
|
|
|
|
struct lang_nocrossref *l;
|
|
|
|
|
{
|
|
|
|
|
struct lang_nocrossrefs *n;
|
|
|
|
|
|
|
|
|
|
n = (struct lang_nocrossrefs *) xmalloc (sizeof *n);
|
|
|
|
|
n->next = nocrossref_list;
|
|
|
|
|
n->list = l;
|
|
|
|
|
nocrossref_list = n;
|
|
|
|
|
|
|
|
|
|
/* Set notice_all so that we get informed about all symbols. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
link_info.notice_all = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Overlay handling. We handle overlays with some static variables. */
|
|
|
|
|
|
|
|
|
|
/* The overlay virtual address. */
|
|
|
|
|
static etree_type *overlay_vma;
|
|
|
|
|
|
|
|
|
|
/* An expression for the maximum section size seen so far. */
|
|
|
|
|
static etree_type *overlay_max;
|
|
|
|
|
|
|
|
|
|
/* A list of all the sections in this overlay. */
|
|
|
|
|
|
2000-10-09 17:09:17 +02:00
|
|
|
|
struct overlay_list {
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct overlay_list *next;
|
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct overlay_list *overlay_list;
|
|
|
|
|
|
|
|
|
|
/* Start handling an overlay. */
|
|
|
|
|
|
|
|
|
|
void
|
2002-05-07 13:04:54 +02:00
|
|
|
|
lang_enter_overlay (vma_expr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
etree_type *vma_expr;
|
|
|
|
|
{
|
|
|
|
|
/* The grammar should prevent nested overlays from occurring. */
|
2002-05-07 13:04:54 +02:00
|
|
|
|
ASSERT (overlay_vma == NULL && overlay_max == NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
overlay_vma = vma_expr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Start a section in an overlay. We handle this by calling
|
2002-05-07 13:04:54 +02:00
|
|
|
|
lang_enter_output_section_statement with the correct VMA.
|
|
|
|
|
lang_leave_overlay sets up the LMA and memory regions. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_enter_overlay_section (name)
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct overlay_list *n;
|
|
|
|
|
etree_type *size;
|
|
|
|
|
|
|
|
|
|
lang_enter_output_section_statement (name, overlay_vma, normal_section,
|
2002-05-07 13:04:54 +02:00
|
|
|
|
0, 0, 0, 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
/* If this is the first section, then base the VMA of future
|
1999-05-03 09:29:11 +02:00
|
|
|
|
sections on this one. This will work correctly even if `.' is
|
|
|
|
|
used in the addresses. */
|
|
|
|
|
if (overlay_list == NULL)
|
2002-05-07 13:04:54 +02:00
|
|
|
|
overlay_vma = exp_nameop (ADDR, name);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Remember the section. */
|
|
|
|
|
n = (struct overlay_list *) xmalloc (sizeof *n);
|
|
|
|
|
n->os = current_section;
|
|
|
|
|
n->next = overlay_list;
|
|
|
|
|
overlay_list = n;
|
|
|
|
|
|
|
|
|
|
size = exp_nameop (SIZEOF, name);
|
|
|
|
|
|
|
|
|
|
/* Arrange to work out the maximum section end address. */
|
|
|
|
|
if (overlay_max == NULL)
|
|
|
|
|
overlay_max = size;
|
|
|
|
|
else
|
|
|
|
|
overlay_max = exp_binop (MAX_K, overlay_max, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finish a section in an overlay. There isn't any special to do
|
|
|
|
|
here. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_leave_overlay_section (fill, phdrs)
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct lang_output_section_phdr_list *phdrs;
|
|
|
|
|
{
|
|
|
|
|
const char *name;
|
|
|
|
|
char *clean, *s2;
|
|
|
|
|
const char *s1;
|
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
|
|
name = current_section->name;
|
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
/* For now, assume that "*default*" is the run-time memory region and
|
|
|
|
|
that no load-time region has been specified. It doesn't really
|
|
|
|
|
matter what we say here, since lang_leave_overlay will override it. */
|
|
|
|
|
lang_leave_output_section_statement (fill, "*default*", phdrs, 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Define the magic symbols. */
|
|
|
|
|
|
|
|
|
|
clean = xmalloc (strlen (name) + 1);
|
|
|
|
|
s2 = clean;
|
|
|
|
|
for (s1 = name; *s1 != '\0'; s1++)
|
2001-09-19 07:33:36 +02:00
|
|
|
|
if (ISALNUM (*s1) || *s1 == '_')
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*s2++ = *s1;
|
|
|
|
|
*s2 = '\0';
|
|
|
|
|
|
|
|
|
|
buf = xmalloc (strlen (clean) + sizeof "__load_start_");
|
|
|
|
|
sprintf (buf, "__load_start_%s", clean);
|
|
|
|
|
lang_add_assignment (exp_assop ('=', buf,
|
|
|
|
|
exp_nameop (LOADADDR, name)));
|
|
|
|
|
|
|
|
|
|
buf = xmalloc (strlen (clean) + sizeof "__load_stop_");
|
|
|
|
|
sprintf (buf, "__load_stop_%s", clean);
|
|
|
|
|
lang_add_assignment (exp_assop ('=', buf,
|
|
|
|
|
exp_binop ('+',
|
|
|
|
|
exp_nameop (LOADADDR, name),
|
|
|
|
|
exp_nameop (SIZEOF, name))));
|
|
|
|
|
|
|
|
|
|
free (clean);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finish an overlay. If there are any overlay wide settings, this
|
|
|
|
|
looks through all the sections in the overlay and sets them. */
|
|
|
|
|
|
|
|
|
|
void
|
2002-05-07 13:04:54 +02:00
|
|
|
|
lang_leave_overlay (lma_expr, nocrossrefs, fill, memspec, phdrs, lma_memspec)
|
|
|
|
|
etree_type *lma_expr;
|
|
|
|
|
int nocrossrefs;
|
2002-02-15 03:11:05 +01:00
|
|
|
|
fill_type *fill;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char *memspec;
|
|
|
|
|
struct lang_output_section_phdr_list *phdrs;
|
2000-02-16 19:53:32 +01:00
|
|
|
|
const char *lma_memspec;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
lang_memory_region_type *region;
|
2000-02-16 19:53:32 +01:00
|
|
|
|
lang_memory_region_type *lma_region;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct overlay_list *l;
|
|
|
|
|
struct lang_nocrossref *nocrossref;
|
|
|
|
|
|
2002-05-27 10:22:08 +02:00
|
|
|
|
lang_get_regions (®ion, &lma_region,
|
|
|
|
|
memspec, lma_memspec,
|
|
|
|
|
lma_expr != 0);
|
2000-02-16 19:53:32 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
nocrossref = NULL;
|
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
/* After setting the size of the last section, set '.' to end of the
|
|
|
|
|
overlay region. */
|
|
|
|
|
if (overlay_list != NULL)
|
|
|
|
|
overlay_list->os->update_dot_tree
|
|
|
|
|
= exp_assop ('=', ".", exp_binop ('+', overlay_vma, overlay_max));
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
l = overlay_list;
|
|
|
|
|
while (l != NULL)
|
|
|
|
|
{
|
|
|
|
|
struct overlay_list *next;
|
|
|
|
|
|
2002-02-15 03:11:05 +01:00
|
|
|
|
if (fill != (fill_type *) 0 && l->os->fill == (fill_type *) 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
l->os->fill = fill;
|
2001-07-19 18:21:39 +02:00
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
l->os->region = region;
|
|
|
|
|
l->os->lma_region = lma_region;
|
|
|
|
|
|
|
|
|
|
/* The first section has the load address specified in the
|
|
|
|
|
OVERLAY statement. The rest are worked out from that.
|
|
|
|
|
The base address is not needed (and should be null) if
|
|
|
|
|
an LMA region was specified. */
|
|
|
|
|
if (l->next == 0)
|
|
|
|
|
l->os->load_base = lma_expr;
|
|
|
|
|
else if (lma_region == 0)
|
|
|
|
|
l->os->load_base = exp_binop ('+',
|
|
|
|
|
exp_nameop (LOADADDR, l->next->os->name),
|
|
|
|
|
exp_nameop (SIZEOF, l->next->os->name));
|
2001-07-19 18:21:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (phdrs != NULL && l->os->phdrs == NULL)
|
|
|
|
|
l->os->phdrs = phdrs;
|
|
|
|
|
|
2002-05-07 13:04:54 +02:00
|
|
|
|
if (nocrossrefs)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct lang_nocrossref *nc;
|
|
|
|
|
|
|
|
|
|
nc = (struct lang_nocrossref *) xmalloc (sizeof *nc);
|
|
|
|
|
nc->name = l->os->name;
|
|
|
|
|
nc->next = nocrossref;
|
|
|
|
|
nocrossref = nc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
next = l->next;
|
|
|
|
|
free (l);
|
|
|
|
|
l = next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nocrossref != NULL)
|
|
|
|
|
lang_add_nocrossref (nocrossref);
|
|
|
|
|
|
|
|
|
|
overlay_vma = NULL;
|
|
|
|
|
overlay_list = NULL;
|
|
|
|
|
overlay_max = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Version handling. This is only useful for ELF. */
|
|
|
|
|
|
|
|
|
|
/* This global variable holds the version tree that we build. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_tree *lang_elf_version_info;
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
lang_vers_match_lang_c (expr, sym)
|
|
|
|
|
struct bfd_elf_version_expr *expr;
|
|
|
|
|
const char *sym;
|
|
|
|
|
{
|
|
|
|
|
if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
return fnmatch (expr->pattern, sym, 0) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
lang_vers_match_lang_cplusplus (expr, sym)
|
|
|
|
|
struct bfd_elf_version_expr *expr;
|
|
|
|
|
const char *sym;
|
|
|
|
|
{
|
|
|
|
|
char *alt_sym;
|
|
|
|
|
int result;
|
|
|
|
|
|
|
|
|
|
if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
alt_sym = cplus_demangle (sym, /* DMGL_NO_TPARAMS */ 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!alt_sym)
|
|
|
|
|
{
|
|
|
|
|
/* cplus_demangle (also) returns NULL when it is not a C++ symbol.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
Should we early out FALSE in this case? */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
result = fnmatch (expr->pattern, sym, 0) == 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
result = fnmatch (expr->pattern, alt_sym, 0) == 0;
|
|
|
|
|
free (alt_sym);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
lang_vers_match_lang_java (expr, sym)
|
|
|
|
|
struct bfd_elf_version_expr *expr;
|
|
|
|
|
const char *sym;
|
|
|
|
|
{
|
|
|
|
|
char *alt_sym;
|
|
|
|
|
int result;
|
|
|
|
|
|
|
|
|
|
if (expr->pattern[0] == '*' && expr->pattern[1] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
|
2000-10-05 15:03:30 +02:00
|
|
|
|
alt_sym = cplus_demangle (sym, DMGL_JAVA);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!alt_sym)
|
|
|
|
|
{
|
|
|
|
|
/* cplus_demangle (also) returns NULL when it is not a Java symbol.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
Should we early out FALSE in this case? */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
result = fnmatch (expr->pattern, sym, 0) == 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
result = fnmatch (expr->pattern, alt_sym, 0) == 0;
|
|
|
|
|
free (alt_sym);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is called for each variable name or match expression. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_expr *
|
2002-02-14 05:24:33 +01:00
|
|
|
|
lang_new_vers_pattern (orig, new, lang)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct bfd_elf_version_expr *orig;
|
|
|
|
|
const char *new;
|
|
|
|
|
const char *lang;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_expr *ret;
|
|
|
|
|
|
|
|
|
|
ret = (struct bfd_elf_version_expr *) xmalloc (sizeof *ret);
|
|
|
|
|
ret->next = orig;
|
|
|
|
|
ret->pattern = new;
|
2002-08-08 05:50:18 +02:00
|
|
|
|
ret->symver = 0;
|
|
|
|
|
ret->script = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (lang == NULL || strcasecmp (lang, "C") == 0)
|
|
|
|
|
ret->match = lang_vers_match_lang_c;
|
|
|
|
|
else if (strcasecmp (lang, "C++") == 0)
|
|
|
|
|
ret->match = lang_vers_match_lang_cplusplus;
|
|
|
|
|
else if (strcasecmp (lang, "Java") == 0)
|
|
|
|
|
ret->match = lang_vers_match_lang_java;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
einfo (_("%X%P: unknown language `%s' in version information\n"),
|
|
|
|
|
lang);
|
|
|
|
|
ret->match = lang_vers_match_lang_c;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-22 11:04:48 +02:00
|
|
|
|
return ldemul_new_vers_pattern (ret);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is called for each set of variable names and match
|
|
|
|
|
expressions. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_tree *
|
|
|
|
|
lang_new_vers_node (globals, locals)
|
|
|
|
|
struct bfd_elf_version_expr *globals;
|
|
|
|
|
struct bfd_elf_version_expr *locals;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_tree *ret;
|
|
|
|
|
|
|
|
|
|
ret = (struct bfd_elf_version_tree *) xmalloc (sizeof *ret);
|
|
|
|
|
ret->next = NULL;
|
|
|
|
|
ret->name = NULL;
|
|
|
|
|
ret->vernum = 0;
|
|
|
|
|
ret->globals = globals;
|
|
|
|
|
ret->locals = locals;
|
|
|
|
|
ret->deps = NULL;
|
|
|
|
|
ret->name_indx = (unsigned int) -1;
|
|
|
|
|
ret->used = 0;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This static variable keeps track of version indices. */
|
|
|
|
|
|
|
|
|
|
static int version_index;
|
|
|
|
|
|
|
|
|
|
/* This is called when we know the name and dependencies of the
|
|
|
|
|
version. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_register_vers_node (name, version, deps)
|
|
|
|
|
const char *name;
|
|
|
|
|
struct bfd_elf_version_tree *version;
|
|
|
|
|
struct bfd_elf_version_deps *deps;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_tree *t, **pp;
|
|
|
|
|
struct bfd_elf_version_expr *e1;
|
|
|
|
|
|
2001-12-18 13:15:35 +01:00
|
|
|
|
if (name == NULL)
|
|
|
|
|
name = "";
|
|
|
|
|
|
|
|
|
|
if ((name[0] == '\0' && lang_elf_version_info != NULL)
|
|
|
|
|
|| (lang_elf_version_info && lang_elf_version_info->name[0] == '\0'))
|
|
|
|
|
{
|
|
|
|
|
einfo (_("%X%P: anonymous version tag cannot be combined with other version tags\n"));
|
2003-03-31 20:13:25 +02:00
|
|
|
|
free (version);
|
2001-12-18 13:15:35 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Make sure this node has a unique name. */
|
|
|
|
|
for (t = lang_elf_version_info; t != NULL; t = t->next)
|
|
|
|
|
if (strcmp (t->name, name) == 0)
|
|
|
|
|
einfo (_("%X%P: duplicate version tag `%s'\n"), name);
|
|
|
|
|
|
|
|
|
|
/* Check the global and local match names, and make sure there
|
|
|
|
|
aren't any duplicates. */
|
|
|
|
|
|
|
|
|
|
for (e1 = version->globals; e1 != NULL; e1 = e1->next)
|
|
|
|
|
{
|
|
|
|
|
for (t = lang_elf_version_info; t != NULL; t = t->next)
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_expr *e2;
|
|
|
|
|
|
|
|
|
|
for (e2 = t->locals; e2 != NULL; e2 = e2->next)
|
|
|
|
|
if (strcmp (e1->pattern, e2->pattern) == 0)
|
|
|
|
|
einfo (_("%X%P: duplicate expression `%s' in version information\n"),
|
|
|
|
|
e1->pattern);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (e1 = version->locals; e1 != NULL; e1 = e1->next)
|
|
|
|
|
{
|
|
|
|
|
for (t = lang_elf_version_info; t != NULL; t = t->next)
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_expr *e2;
|
|
|
|
|
|
|
|
|
|
for (e2 = t->globals; e2 != NULL; e2 = e2->next)
|
|
|
|
|
if (strcmp (e1->pattern, e2->pattern) == 0)
|
|
|
|
|
einfo (_("%X%P: duplicate expression `%s' in version information\n"),
|
|
|
|
|
e1->pattern);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
version->deps = deps;
|
|
|
|
|
version->name = name;
|
2001-12-18 13:15:35 +01:00
|
|
|
|
if (name[0] != '\0')
|
|
|
|
|
{
|
|
|
|
|
++version_index;
|
|
|
|
|
version->vernum = version_index;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
version->vernum = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (pp = &lang_elf_version_info; *pp != NULL; pp = &(*pp)->next)
|
|
|
|
|
;
|
|
|
|
|
*pp = version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is called when we see a version dependency. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_deps *
|
|
|
|
|
lang_add_vers_depend (list, name)
|
|
|
|
|
struct bfd_elf_version_deps *list;
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_deps *ret;
|
|
|
|
|
struct bfd_elf_version_tree *t;
|
|
|
|
|
|
|
|
|
|
ret = (struct bfd_elf_version_deps *) xmalloc (sizeof *ret);
|
|
|
|
|
ret->next = list;
|
|
|
|
|
|
|
|
|
|
for (t = lang_elf_version_info; t != NULL; t = t->next)
|
|
|
|
|
{
|
|
|
|
|
if (strcmp (t->name, name) == 0)
|
|
|
|
|
{
|
|
|
|
|
ret->version_needed = t;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
einfo (_("%X%P: unable to find version dependency `%s'\n"), name);
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
lang_do_version_exports_section ()
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_expr *greg = NULL, *lreg;
|
|
|
|
|
|
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (is)
|
|
|
|
|
{
|
|
|
|
|
asection *sec = bfd_get_section_by_name (is->the_bfd, ".exports");
|
|
|
|
|
char *contents, *p;
|
|
|
|
|
bfd_size_type len;
|
|
|
|
|
|
|
|
|
|
if (sec == NULL)
|
2002-05-03 15:48:55 +02:00
|
|
|
|
continue;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
len = bfd_section_size (is->the_bfd, sec);
|
|
|
|
|
contents = xmalloc (len);
|
|
|
|
|
if (!bfd_get_section_contents (is->the_bfd, sec, contents, 0, len))
|
2001-06-18 19:23:52 +02:00
|
|
|
|
einfo (_("%X%P: unable to read .exports section contents\n"), sec);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
p = contents;
|
2000-10-09 17:09:17 +02:00
|
|
|
|
while (p < contents + len)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-02-14 05:24:33 +01:00
|
|
|
|
greg = lang_new_vers_pattern (greg, p, NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p = strchr (p, '\0') + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Do not free the contents, as we used them creating the regex. */
|
|
|
|
|
|
|
|
|
|
/* Do not include this section in the link. */
|
|
|
|
|
bfd_set_section_flags (is->the_bfd, sec,
|
|
|
|
|
bfd_get_section_flags (is->the_bfd, sec) | SEC_EXCLUDE);
|
|
|
|
|
}
|
|
|
|
|
|
2002-02-14 05:24:33 +01:00
|
|
|
|
lreg = lang_new_vers_pattern (NULL, "*", NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
lang_register_vers_node (command_line.version_exports_section,
|
|
|
|
|
lang_new_vers_node (greg, lreg), NULL);
|
|
|
|
|
}
|
2001-01-14 05:36:35 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
lang_add_unique (name)
|
|
|
|
|
const char *name;
|
|
|
|
|
{
|
|
|
|
|
struct unique_sections *ent;
|
|
|
|
|
|
|
|
|
|
for (ent = unique_section_list; ent; ent = ent->next)
|
|
|
|
|
if (strcmp (ent->name, name) == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
ent = (struct unique_sections *) xmalloc (sizeof *ent);
|
|
|
|
|
ent->name = xstrdup (name);
|
|
|
|
|
ent->next = unique_section_list;
|
|
|
|
|
unique_section_list = ent;
|
|
|
|
|
}
|