bfd/
[deliverable/binutils-gdb.git] / ld / emultempl / mmo.em
CommitLineData
3c3bdf30 1# This shell script emits a C file. -*- C -*-
e5caa5e0 2# Copyright 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3c3bdf30
NC
3#
4# This file is part of GLD, the Gnu Linker.
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
75be928b 18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
3c3bdf30
NC
19#
20
8ded5a0f 21# This file is sourced from generic.em
3c3bdf30 22
48fa4a5d
HPN
23cat >>e${EMULATION_NAME}.c <<EOF
24/* Need to have this define before mmix-elfnmmo, which includes
25 needrelax.em which uses this name for the before_allocation function,
26 normally defined in elf32.em. */
27#define gldmmo_before_allocation before_allocation_default
8ded5a0f
AM
28
29#include "elf-bfd.h"
48fa4a5d
HPN
30EOF
31
8ded5a0f 32. ${srcdir}/emultempl/elf-generic.em
3c3bdf30
NC
33. ${srcdir}/emultempl/mmix-elfnmmo.em
34
35cat >>e${EMULATION_NAME}.c <<EOF
36
3c3bdf30
NC
37/* Place an orphan section. We use this to put random SEC_CODE or
38 SEC_READONLY sections right after MMO_TEXT_SECTION_NAME. Much borrowed
39 from elf32.em. */
40
b34976b6 41static bfd_boolean
7b986e99 42mmo_place_orphan (asection *s)
3c3bdf30 43{
afd7a018
AM
44 static struct orphan_save hold_text =
45 {
46 MMO_TEXT_SECTION_NAME,
47 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
48 0, 0, 0, 0
49 };
3c3bdf30 50 struct orphan_save *place;
afd7a018
AM
51 const char *secname;
52 lang_output_section_statement_type *after;
3c3bdf30 53 lang_output_section_statement_type *os;
3c3bdf30
NC
54
55 /* We have nothing to say for anything other than a final link. */
1049f94e 56 if (link_info.relocatable
afd7a018 57 || (s->flags & (SEC_EXCLUDE | SEC_LOAD)) != SEC_LOAD)
b34976b6 58 return FALSE;
3c3bdf30
NC
59
60 /* Only care for sections we're going to load. */
afd7a018
AM
61 secname = s->name;
62 os = lang_output_section_find (secname);
3c3bdf30
NC
63
64 /* We have an output section by this name. Place the section inside it
65 (regardless of whether the linker script lists it as input). */
66 if (os != NULL)
67 {
7b986e99 68 lang_add_section (&os->children, s, os);
b34976b6 69 return TRUE;
3c3bdf30
NC
70 }
71
72 /* If this section does not have .text-type section flags or there's no
73 MMO_TEXT_SECTION_NAME, we don't have anything to say. */
afd7a018 74 if ((s->flags & (SEC_CODE | SEC_READONLY)) == 0)
b34976b6 75 return FALSE;
3c3bdf30
NC
76
77 if (hold_text.os == NULL)
afd7a018 78 hold_text.os = lang_output_section_find (hold_text.name);
3c3bdf30
NC
79
80 place = &hold_text;
afd7a018
AM
81 if (hold_text.os != NULL)
82 after = hold_text.os;
83 else
84 after = &lang_output_section_statement.head->output_section_statement;
3c3bdf30
NC
85
86 /* If there's an output section by this name, we'll use it, regardless
87 of section flags, in contrast to what's done in elf32.em. */
7b986e99 88 os = lang_insert_orphan (s, secname, after, place, NULL, NULL);
25844aae 89
3595bd6e
HPN
90 /* We need an output section for .text as a root, so if there was none
91 (might happen with a peculiar linker script such as in "map
92 addresses", map-address.exp), we grab the output section created
93 above. */
94 if (hold_text.os == NULL)
afd7a018 95 hold_text.os = os;
3c3bdf30 96
b34976b6 97 return TRUE;
3c3bdf30
NC
98}
99
100/* Remove the spurious settings of SEC_RELOC that make it to the output at
101 link time. We are as confused as elflink.h:elf_bfd_final_link, and
102 paper over the bug similarly. */
103
104static void
0c7a8e5a 105mmo_wipe_sec_reloc_flag (bfd *abfd, asection *sec, void *ptr ATTRIBUTE_UNUSED)
3c3bdf30
NC
106{
107 bfd_set_section_flags (abfd, sec,
108 bfd_get_section_flags (abfd, sec) & ~SEC_RELOC);
109}
110
111/* Iterate with bfd_map_over_sections over mmo_wipe_sec_reloc_flag... */
112
113static void
0c7a8e5a 114mmo_finish (void)
3c3bdf30
NC
115{
116 bfd_map_over_sections (output_bfd, mmo_wipe_sec_reloc_flag, NULL);
8ded5a0f 117 gld${EMULATION_NAME}_map_segments (FALSE);
1e035701 118 finish_default ();
3c3bdf30 119}
48fa4a5d
HPN
120\f
121/* To get on-demand global register allocation right, we need to parse the
122 relocs, like what happens when linking to ELF. It needs to be done
123 before all input sections are supposed to be present. When linking to
124 ELF, it's done when reading symbols. When linking to mmo, we do it
125 when all input files are seen, which is equivalent. */
3c3bdf30 126
48fa4a5d 127static void
0c7a8e5a 128mmo_after_open (void)
48fa4a5d 129{
1c5e6447
HPN
130 /* When there's a mismatch between the output format and the emulation
131 (using weird combinations like "-m mmo --oformat elf64-mmix" for
132 example), we'd count relocs twice because they'd also be counted
133 along the usual route for ELF-only linking, which would lead to an
134 internal accounting error. */
135 if (bfd_get_flavour (output_bfd) != bfd_target_elf_flavour)
48fa4a5d 136 {
1c5e6447
HPN
137 LANG_FOR_EACH_INPUT_STATEMENT (is)
138 {
139 if (bfd_get_flavour (is->the_bfd) == bfd_target_elf_flavour
140 && !_bfd_mmix_check_all_relocs (is->the_bfd, &link_info))
141 einfo ("%X%P: Internal problems scanning %B after opening it",
142 is->the_bfd);
143 }
48fa4a5d
HPN
144 }
145}
3c3bdf30
NC
146EOF
147
148LDEMUL_PLACE_ORPHAN=mmo_place_orphan
149LDEMUL_FINISH=mmo_finish
48fa4a5d 150LDEMUL_AFTER_OPEN=mmo_after_open
This page took 0.231235 seconds and 4 git commands to generate.