| 1 | # This shell script emits a C file. -*- C -*- | 
|---|
| 2 | #   Copyright 2001, 2002 Free Software Foundation, Inc. | 
|---|
| 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 | 
|---|
| 18 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 
|---|
| 19 | # | 
|---|
| 20 |  | 
|---|
| 21 | # This file is sourced from elf32.em and mmo.em, used to define | 
|---|
| 22 | # MMIX-specific things common to ELF and MMO. | 
|---|
| 23 |  | 
|---|
| 24 | cat >>e${EMULATION_NAME}.c <<EOF | 
|---|
| 25 | #include "elf/mmix.h" | 
|---|
| 26 |  | 
|---|
| 27 | static void mmix_before_allocation PARAMS ((void)); | 
|---|
| 28 | static void mmix_after_allocation PARAMS ((void)); | 
|---|
| 29 |  | 
|---|
| 30 | /* Set up handling of linker-allocated global registers.  */ | 
|---|
| 31 |  | 
|---|
| 32 | static void | 
|---|
| 33 | mmix_before_allocation () | 
|---|
| 34 | { | 
|---|
| 35 | /* Call the default first.  */ | 
|---|
| 36 | gld${EMULATION_NAME}_before_allocation (); | 
|---|
| 37 |  | 
|---|
| 38 | /* There's a needrelax.em which uses this ..._before_allocation-hook and | 
|---|
| 39 | just has the statement below as payload.  It's more of a hassle to | 
|---|
| 40 | use that than to just include these two lines and take the | 
|---|
| 41 | maintenance burden to keep them in sync.  (Of course we lose the | 
|---|
| 42 | maintenance burden of checking that it still does what we need.)  */ | 
|---|
| 43 |  | 
|---|
| 44 | /* Force -relax on if not doing a relocatable link.  */ | 
|---|
| 45 | if (! link_info.relocateable) | 
|---|
| 46 | command_line.relax = TRUE; | 
|---|
| 47 |  | 
|---|
| 48 | if (!_bfd_mmix_prepare_linker_allocated_gregs (output_bfd, &link_info)) | 
|---|
| 49 | einfo ("%X%P: Internal problems setting up section %s", | 
|---|
| 50 | MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME); | 
|---|
| 51 | } | 
|---|
| 52 |  | 
|---|
| 53 | /* We need to set the VMA of the .MMIX.reg_contents section when it has | 
|---|
| 54 | been allocated, and produce the final settings for the linker-generated | 
|---|
| 55 | GREGs.  */ | 
|---|
| 56 |  | 
|---|
| 57 | static void | 
|---|
| 58 | mmix_after_allocation () | 
|---|
| 59 | { | 
|---|
| 60 | asection *sec | 
|---|
| 61 | = bfd_get_section_by_name (output_bfd, MMIX_REG_CONTENTS_SECTION_NAME); | 
|---|
| 62 | bfd_signed_vma regvma; | 
|---|
| 63 |  | 
|---|
| 64 | /* If there's no register section, we don't need to do anything.  On the | 
|---|
| 65 | other hand, if there's a non-standard linker-script without a mapping | 
|---|
| 66 | from MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME when that section is | 
|---|
| 67 | present (as in the ld test "NOCROSSREFS 2"), that section (1) will be | 
|---|
| 68 | orphaned; not inserted in MMIX_REG_CONTENTS_SECTION_NAME and (2) we | 
|---|
| 69 | will not do the necessary preparations for those relocations that | 
|---|
| 70 | caused it to be created.  We'll SEGV from the latter error.  The | 
|---|
| 71 | former error in separation will result in a non-working binary, but | 
|---|
| 72 | that's expected when you play tricks with linker scripts.  The | 
|---|
| 73 | "NOCROSSREFS 2" test does not run the output so it does not matter | 
|---|
| 74 | there.  */ | 
|---|
| 75 | if (sec == NULL) | 
|---|
| 76 | sec | 
|---|
| 77 | = bfd_get_section_by_name (output_bfd, | 
|---|
| 78 | MMIX_LD_ALLOCATED_REG_CONTENTS_SECTION_NAME); | 
|---|
| 79 | if (sec == NULL) | 
|---|
| 80 | return; | 
|---|
| 81 |  | 
|---|
| 82 | regvma = 256 * 8 - sec->_raw_size - 8; | 
|---|
| 83 |  | 
|---|
| 84 | /* If we start on a local register, we have too many global registers. | 
|---|
| 85 | We treat this error as nonfatal (meaning processing will continue in | 
|---|
| 86 | search for other errors), because it's a link error in the same way | 
|---|
| 87 | as an undefined symbol.  */ | 
|---|
| 88 | if (regvma < 32 * 8) | 
|---|
| 89 | { | 
|---|
| 90 | einfo ("%X%P: Too many global registers: %u, max 223\n", | 
|---|
| 91 | (unsigned) sec->_raw_size / 8); | 
|---|
| 92 | regvma = 32 * 8; | 
|---|
| 93 | } | 
|---|
| 94 |  | 
|---|
| 95 | /* Set vma to correspond to first such register number * 8.  */ | 
|---|
| 96 | bfd_set_section_vma (output_bfd, sec, (bfd_vma) regvma); | 
|---|
| 97 |  | 
|---|
| 98 | /* ??? Why isn't the section size (_cooked_size) set?  Doesn't it get | 
|---|
| 99 | set regardless of presence of relocations?  */ | 
|---|
| 100 | if (sec->_cooked_size == 0 | 
|---|
| 101 | && ! bfd_set_section_size (output_bfd, sec, sec->_raw_size)) | 
|---|
| 102 | { | 
|---|
| 103 | /* This is a fatal error; make the einfo call not return.  */ | 
|---|
| 104 | einfo ("%F%P: Can't set section %s size to %u\n", | 
|---|
| 105 | MMIX_REG_CONTENTS_SECTION_NAME, (unsigned) sec->_raw_size); | 
|---|
| 106 | } | 
|---|
| 107 |  | 
|---|
| 108 | /* Simplify symbol output for the register section (without contents; | 
|---|
| 109 | created for register symbols) by setting the output offset to 0. | 
|---|
| 110 | This section is only present when there are register symbols.  */ | 
|---|
| 111 | sec = bfd_get_section_by_name (output_bfd, MMIX_REG_SECTION_NAME); | 
|---|
| 112 | if (sec != NULL) | 
|---|
| 113 | bfd_set_section_vma (abfd, sec, 0); | 
|---|
| 114 |  | 
|---|
| 115 | if (!_bfd_mmix_finalize_linker_allocated_gregs (output_bfd, &link_info)) | 
|---|
| 116 | { | 
|---|
| 117 | /* This is a fatal error; make einfo call not return.  */ | 
|---|
| 118 | einfo ("%F%P: Can't finalize linker-allocated global registers\n"); | 
|---|
| 119 | } | 
|---|
| 120 | } | 
|---|
| 121 | EOF | 
|---|
| 122 |  | 
|---|
| 123 | LDEMUL_AFTER_ALLOCATION=mmix_after_allocation | 
|---|
| 124 | LDEMUL_BEFORE_ALLOCATION=mmix_before_allocation | 
|---|