1999-05-03 09:29:11 +02:00
|
|
|
|
/* subsegs.c - subsegments -
|
2001-03-09 00:24:26 +01:00
|
|
|
|
Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
2005-03-03 12:52:12 +01:00
|
|
|
|
1999, 2000, 2001, 2002, 2003, 2004, 2005
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
|
|
GAS 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.
|
|
|
|
|
|
|
|
|
|
GAS 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.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
2005-05-05 11:13:19 +02:00
|
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
|
/* Segments & sub-segments. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#include "as.h"
|
|
|
|
|
|
|
|
|
|
#include "subsegs.h"
|
|
|
|
|
#include "obstack.h"
|
|
|
|
|
|
|
|
|
|
frchainS *frchain_root, *frchain_now;
|
|
|
|
|
|
|
|
|
|
static struct obstack frchains;
|
|
|
|
|
|
|
|
|
|
/* Gas segment information for bfd_abs_section_ptr and
|
|
|
|
|
bfd_und_section_ptr. */
|
|
|
|
|
static segment_info_type *abs_seg_info;
|
|
|
|
|
static segment_info_type *und_seg_info;
|
|
|
|
|
|
2003-12-03 04:39:58 +01:00
|
|
|
|
static void subseg_set_rest (segT, subsegT);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static fragS dummy_frag;
|
|
|
|
|
|
|
|
|
|
static frchainS absolute_frchain;
|
|
|
|
|
|
|
|
|
|
void
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subsegs_begin (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
obstack_begin (&frchains, chunksize);
|
|
|
|
|
#if __GNUC__ >= 2
|
|
|
|
|
obstack_alignment_mask (&frchains) = __alignof__ (frchainS) - 1;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
frchain_root = NULL;
|
2000-09-12 05:56:22 +02:00
|
|
|
|
frchain_now = NULL; /* Warn new_subseg() that we are booting. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
frag_now = &dummy_frag;
|
|
|
|
|
|
|
|
|
|
absolute_frchain.frch_seg = absolute_section;
|
|
|
|
|
absolute_frchain.frch_subseg = 0;
|
|
|
|
|
absolute_frchain.fix_root = absolute_frchain.fix_tail = 0;
|
|
|
|
|
absolute_frchain.frch_frag_now = &zero_address_frag;
|
|
|
|
|
absolute_frchain.frch_root = absolute_frchain.frch_last = &zero_address_frag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* subseg_change()
|
|
|
|
|
*
|
|
|
|
|
* Change the subsegment we are in, BUT DO NOT MAKE A NEW FRAG for the
|
|
|
|
|
* subsegment. If we are already in the correct subsegment, change nothing.
|
|
|
|
|
* This is used eg as a worker for subseg_set [which does make a new frag_now]
|
|
|
|
|
* and for changing segments after we have read the source. We construct eg
|
|
|
|
|
* fixSs even after the source file is read, so we do have to keep the
|
|
|
|
|
* segment context correct.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_change (register segT seg, register int subseg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-08-11 18:22:08 +02:00
|
|
|
|
segment_info_type *seginfo;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
now_seg = seg;
|
|
|
|
|
now_subseg = subseg;
|
|
|
|
|
|
|
|
|
|
if (now_seg == absolute_section)
|
|
|
|
|
return;
|
|
|
|
|
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 03:25:29 +02:00
|
|
|
|
seginfo = (segment_info_type *) bfd_get_section_userdata (stdoutput, seg);
|
|
|
|
|
if (! seginfo)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 03:25:29 +02:00
|
|
|
|
seginfo = (segment_info_type *) xmalloc (sizeof (*seginfo));
|
|
|
|
|
memset ((PTR) seginfo, 0, sizeof (*seginfo));
|
|
|
|
|
seginfo->fix_root = NULL;
|
|
|
|
|
seginfo->fix_tail = NULL;
|
|
|
|
|
seginfo->bfd_section = seg;
|
|
|
|
|
seginfo->sym = 0;
|
|
|
|
|
if (seg == bfd_abs_section_ptr)
|
|
|
|
|
abs_seg_info = seginfo;
|
|
|
|
|
else if (seg == bfd_und_section_ptr)
|
|
|
|
|
und_seg_info = seginfo;
|
|
|
|
|
else
|
|
|
|
|
bfd_set_section_userdata (stdoutput, seg, (PTR) seginfo);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_set_rest (segT seg, subsegT subseg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
register frchainS *frcP; /* crawl frchain chain */
|
|
|
|
|
register frchainS **lastPP; /* address of last pointer */
|
|
|
|
|
frchainS *newP; /* address of new frchain */
|
|
|
|
|
|
|
|
|
|
mri_common_symbol = NULL;
|
|
|
|
|
|
|
|
|
|
if (frag_now && frchain_now)
|
|
|
|
|
frchain_now->frch_frag_now = frag_now;
|
|
|
|
|
|
|
|
|
|
assert (frchain_now == 0
|
|
|
|
|
|| now_seg == undefined_section
|
|
|
|
|
|| now_seg == absolute_section
|
|
|
|
|
|| frchain_now->frch_last == frag_now);
|
|
|
|
|
|
|
|
|
|
subseg_change (seg, (int) subseg);
|
|
|
|
|
|
|
|
|
|
if (seg == absolute_section)
|
|
|
|
|
{
|
|
|
|
|
frchain_now = &absolute_frchain;
|
|
|
|
|
frag_now = &zero_address_frag;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert (frchain_now == 0
|
|
|
|
|
|| now_seg == undefined_section
|
|
|
|
|
|| frchain_now->frch_last == frag_now);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Attempt to find or make a frchain for that sub seg.
|
|
|
|
|
* Crawl along chain of frchainSs, begins @ frchain_root.
|
|
|
|
|
* If we need to make a frchainS, link it into correct
|
|
|
|
|
* position of chain rooted in frchain_root.
|
|
|
|
|
*/
|
|
|
|
|
for (frcP = *(lastPP = &frchain_root);
|
|
|
|
|
frcP && frcP->frch_seg <= seg;
|
|
|
|
|
frcP = *(lastPP = &frcP->frch_next))
|
|
|
|
|
{
|
|
|
|
|
if (frcP->frch_seg == seg
|
|
|
|
|
&& frcP->frch_subseg >= subseg)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* frcP: Address of the 1st frchainS in correct segment with
|
|
|
|
|
* frch_subseg >= subseg.
|
|
|
|
|
* We want to either use this frchainS, or we want
|
|
|
|
|
* to insert a new frchainS just before it.
|
|
|
|
|
*
|
|
|
|
|
* If frcP==NULL, then we are at the end of the chain
|
|
|
|
|
* of frchainS-s. A NULL frcP means we fell off the end
|
|
|
|
|
* of the chain looking for a
|
|
|
|
|
* frch_subseg >= subseg, so we
|
|
|
|
|
* must make a new frchainS.
|
|
|
|
|
*
|
|
|
|
|
* If we ever maintain a pointer to
|
|
|
|
|
* the last frchainS in the chain, we change that pointer
|
|
|
|
|
* ONLY when frcP==NULL.
|
|
|
|
|
*
|
|
|
|
|
* lastPP: Address of the pointer with value frcP;
|
|
|
|
|
* Never NULL.
|
|
|
|
|
* May point to frchain_root.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
if (!frcP
|
|
|
|
|
|| (frcP->frch_seg > seg
|
2000-09-12 05:56:22 +02:00
|
|
|
|
|| frcP->frch_subseg > subseg)) /* Kinky logic only works with 2 segments. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* This should be the only code that creates a frchainS.
|
|
|
|
|
*/
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 03:25:29 +02:00
|
|
|
|
segment_info_type *seginfo;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
newP = (frchainS *) obstack_alloc (&frchains, sizeof (frchainS));
|
|
|
|
|
newP->frch_subseg = subseg;
|
|
|
|
|
newP->frch_seg = seg;
|
|
|
|
|
newP->fix_root = NULL;
|
|
|
|
|
newP->fix_tail = NULL;
|
|
|
|
|
obstack_begin (&newP->frch_obstack, chunksize);
|
|
|
|
|
#if __GNUC__ >= 2
|
|
|
|
|
obstack_alignment_mask (&newP->frch_obstack) = __alignof__ (fragS) - 1;
|
|
|
|
|
#endif
|
|
|
|
|
newP->frch_frag_now = frag_alloc (&newP->frch_obstack);
|
|
|
|
|
newP->frch_frag_now->fr_type = rs_fill;
|
|
|
|
|
|
|
|
|
|
newP->frch_root = newP->frch_last = newP->frch_frag_now;
|
|
|
|
|
|
|
|
|
|
*lastPP = newP;
|
|
|
|
|
newP->frch_next = frcP; /* perhaps NULL */
|
|
|
|
|
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 03:25:29 +02:00
|
|
|
|
seginfo = seg_info (seg);
|
2006-05-01 07:41:40 +02:00
|
|
|
|
if (seginfo && (!seginfo->frchainP || seginfo->frchainP == frcP))
|
* README-vms: Delete.
* config-gas.com: Delete.
* makefile.vms: Delete.
* vmsconf.sh: Delete.
* config/atof-tahoe.c: Delete.
* config/m88k-opcode.h: Delete.
* config/obj-bout.c: Delete.
* config/obj-bout.h: Delete.
* config/obj-hp300.c: Delete.
* config/obj-hp300.h: Delete.
* config/tc-a29k.c: Delete.
* config/tc-a29k.h: Delete.
* config/tc-h8500.c: Delete.
* config/tc-h8500.h: Delete.
* config/tc-m88k.c: Delete.
* config/tc-m88k.h: Delete.
* config/tc-tahoe.c: Delete.
* config/tc-tahoe.h: Delete.
* config/tc-tic80.c: Delete.
* config/tc-tic80.h: Delete.
* config/tc-w65.c: Delete.
* config/tc-w65.h: Delete.
* config/te-aux.h: Delete.
* config/te-delt88.h: Delete.
* config/te-delta.h: Delete.
* config/te-dpx2.h: Delete.
* config/te-hp300.h: Delete.
* config/te-ic960.h: Delete.
* config/vms-a-conf.h: Delete.
* doc/c-a29k.texi: Delete.
* doc/c-h8500.texi: Delete.
* doc/c-m88k.texi: Delete.
* README: Remove obsolete examples, and list of supported targets.
* Makefile.am: Remove a29k, h8500, m88k, tahoe, tic80, w65,
bout and hp300 support.
(DEP_FLAGS): Don't define BFD_ASSEMBLER.
* configure.in: Remove --enable-bfd-assembler, need_bfd,
primary_bfd_gas.
* configure.tgt: Remove a29k, h8300-coff, h8500-*, i960 non-elf,
m68k non bfd, m88k, or32-coff, tic80-*, vax non-bfd, w65k-*, *-nindy.
* as.c: Remove all non-BFD_ASSEMBLER code, support for above targets.
* as.h: Likewise.
* dw2gencfi.c: Likewise.
* dwarf2dbg.c: Likewise.
* ehopt.c: Likewise.
* input-file.c: Likewise.
* listing.c: Likewise.
* literal.c: Likewise.
* messages.c: Likewise.
* obj.h: Likewise.
* output-file.c: Likewise.
* read.c: Likewise.
* stabs.c: Likewise.
* struc-symbol.h: Likewise.
* subsegs.c: Likewise.
* subsegs.h: Likewise.
* symbols.c: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.c: Likewise.
* write.h: Likewise.
* config/aout_gnu.h: Likewise.
* config/obj-aout.c: Likewise.
* config/obj-aout.h: Likewise.
* config/obj-coff.c: Likewise.
* config/obj-coff.h: Likewise.
* config/obj-evax.h: Likewise.
* config/obj-ieee.h: Likewise.
* config/tc-arm.c: Likewise.
* config/tc-arm.h: Likewise.
* config/tc-avr.c: Likewise.
* config/tc-avr.h: Likewise.
* config/tc-crx.h: Likewise.
* config/tc-d10v.h: Likewise.
* config/tc-d30v.h: Likewise.
* config/tc-dlx.h: Likewise.
* config/tc-fr30.h: Likewise.
* config/tc-frv.h: Likewise.
* config/tc-h8300.c: Likewise.
* config/tc-h8300.h: Likewise.
* config/tc-hppa.h: Likewise.
* config/tc-i370.h: Likewise.
* config/tc-i386.c: Likewise.
* config/tc-i386.h: Likewise.
* config/tc-i860.h: Likewise.
* config/tc-i960.c: Likewise.
* config/tc-i960.h: Likewise.
* config/tc-ip2k.h: Likewise.
* config/tc-iq2000.h: Likewise.
* config/tc-m32c.h: Likewise.
* config/tc-m32r.h: Likewise.
* config/tc-m68hc11.h: Likewise.
* config/tc-m68k.c: Likewise.
* config/tc-m68k.h: Likewise.
* config/tc-maxq.c: Likewise.
* config/tc-maxq.h: Likewise.
* config/tc-mcore.c: Likewise.
* config/tc-mcore.h: Likewise.
* config/tc-mn10200.h: Likewise.
* config/tc-mn10300.c: Likewise.
* config/tc-mn10300.h: Likewise.
* config/tc-ms1.h: Likewise.
* config/tc-msp430.c: Likewise.
* config/tc-msp430.h: Likewise.
* config/tc-ns32k.c: Likewise.
* config/tc-ns32k.h: Likewise.
* config/tc-openrisc.h: Likewise.
* config/tc-or32.c: Likewise.
* config/tc-or32.h: Likewise.
* config/tc-ppc.c: Likewise.
* config/tc-ppc.h: Likewise.
* config/tc-s390.h: Likewise.
* config/tc-sh.c: Likewise.
* config/tc-sh.h: Likewise.
* config/tc-sparc.c: Likewise.
* config/tc-tic30.c: Likewise.
* config/tc-tic30.h: Likewise.
* config/tc-tic4x.c: Likewise.
* config/tc-tic4x.h: Likewise.
* config/tc-tic54x.c: Likewise.
* config/tc-tic54x.h: Likewise.
* config/tc-v850.h: Likewise.
* config/tc-vax.c: Likewise.
* config/tc-vax.h: Likewise.
* config/tc-xstormy16.h: Likewise.
* config/tc-xtensa.h: Likewise.
* config/tc-z8k.c: Likewise.
* config/tc-z8k.h: Likewise.
* config/vms-a-conf.h
* doc/Makefile.am: Likewise.
* doc/all.texi: Likewise.
* doc/as.texinfo: Likewise.
* doc/Makefile.in: Regenerate.
* Makefile.in: Regenerate.
* configure: Regenerate.
* config.in: Regenerate.
* po/POTFILES.in: Regenerate.
2005-08-11 03:25:29 +02:00
|
|
|
|
seginfo->frchainP = newP;
|
2000-09-12 05:56:22 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
frcP = newP;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* Here with frcP pointing to the frchainS for subseg.
|
|
|
|
|
*/
|
|
|
|
|
frchain_now = frcP;
|
|
|
|
|
frag_now = frcP->frch_frag_now;
|
|
|
|
|
|
|
|
|
|
assert (frchain_now->frch_last == frag_now);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* subseg_set(segT, subsegT)
|
|
|
|
|
*
|
|
|
|
|
* If you attempt to change to the current subsegment, nothing happens.
|
|
|
|
|
*
|
|
|
|
|
* In: segT, subsegT code for new subsegment.
|
|
|
|
|
* frag_now -> incomplete frag for current subsegment.
|
|
|
|
|
* If frag_now==NULL, then there is no old, incomplete frag, so
|
|
|
|
|
* the old frag is not closed off.
|
|
|
|
|
*
|
|
|
|
|
* Out: now_subseg, now_seg updated.
|
|
|
|
|
* Frchain_now points to the (possibly new) struct frchain for this
|
|
|
|
|
* sub-segment.
|
|
|
|
|
* Frchain_root updated if needed.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
segT
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_get (const char *segname, int force_new)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
segT secptr;
|
|
|
|
|
segment_info_type *seginfo;
|
|
|
|
|
const char *now_seg_name = (now_seg
|
|
|
|
|
? bfd_get_section_name (stdoutput, now_seg)
|
|
|
|
|
: 0);
|
|
|
|
|
|
|
|
|
|
if (!force_new
|
|
|
|
|
&& now_seg_name
|
|
|
|
|
&& (now_seg_name == segname
|
|
|
|
|
|| !strcmp (now_seg_name, segname)))
|
|
|
|
|
return now_seg;
|
|
|
|
|
|
|
|
|
|
if (!force_new)
|
|
|
|
|
secptr = bfd_make_section_old_way (stdoutput, segname);
|
|
|
|
|
else
|
|
|
|
|
secptr = bfd_make_section_anyway (stdoutput, segname);
|
|
|
|
|
|
2003-07-25 16:35:56 +02:00
|
|
|
|
#ifdef obj_sec_set_private_data
|
|
|
|
|
obj_sec_set_private_data (stdoutput, secptr);
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
seginfo = seg_info (secptr);
|
|
|
|
|
if (! seginfo)
|
|
|
|
|
{
|
|
|
|
|
/* Check whether output_section is set first because secptr may
|
2002-12-08 04:47:57 +01:00
|
|
|
|
be bfd_abs_section_ptr. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (secptr->output_section != secptr)
|
|
|
|
|
secptr->output_section = secptr;
|
|
|
|
|
seginfo = (segment_info_type *) xmalloc (sizeof (*seginfo));
|
|
|
|
|
memset ((PTR) seginfo, 0, sizeof (*seginfo));
|
|
|
|
|
seginfo->fix_root = NULL;
|
|
|
|
|
seginfo->fix_tail = NULL;
|
|
|
|
|
seginfo->bfd_section = secptr;
|
|
|
|
|
if (secptr == bfd_abs_section_ptr)
|
|
|
|
|
abs_seg_info = seginfo;
|
|
|
|
|
else if (secptr == bfd_und_section_ptr)
|
|
|
|
|
und_seg_info = seginfo;
|
|
|
|
|
else
|
|
|
|
|
bfd_set_section_userdata (stdoutput, secptr, (PTR) seginfo);
|
|
|
|
|
seginfo->frchainP = NULL;
|
|
|
|
|
seginfo->lineno_list_head = seginfo->lineno_list_tail = NULL;
|
|
|
|
|
seginfo->sym = NULL;
|
|
|
|
|
seginfo->dot = NULL;
|
|
|
|
|
}
|
|
|
|
|
return secptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
segT
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_new (const char *segname, subsegT subseg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
segT secptr;
|
|
|
|
|
segment_info_type *seginfo;
|
|
|
|
|
|
|
|
|
|
secptr = subseg_get (segname, 0);
|
|
|
|
|
subseg_set_rest (secptr, subseg);
|
|
|
|
|
seginfo = seg_info (secptr);
|
|
|
|
|
if (! seginfo->frchainP)
|
|
|
|
|
seginfo->frchainP = frchain_now;
|
|
|
|
|
return secptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like subseg_new, except a new section is always created, even if
|
|
|
|
|
a section with that name already exists. */
|
|
|
|
|
segT
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_force_new (const char *segname, subsegT subseg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
segT secptr;
|
|
|
|
|
segment_info_type *seginfo;
|
|
|
|
|
|
|
|
|
|
secptr = subseg_get (segname, 1);
|
|
|
|
|
subseg_set_rest (secptr, subseg);
|
|
|
|
|
seginfo = seg_info (secptr);
|
|
|
|
|
if (! seginfo->frchainP)
|
|
|
|
|
seginfo->frchainP = frchain_now;
|
|
|
|
|
return secptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_set (segT secptr, subsegT subseg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (! (secptr == now_seg && subseg == now_subseg))
|
|
|
|
|
subseg_set_rest (secptr, subseg);
|
|
|
|
|
mri_common_symbol = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef obj_sec_sym_ok_for_reloc
|
|
|
|
|
#define obj_sec_sym_ok_for_reloc(SEC) 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Get the gas information we are storing for a section. */
|
|
|
|
|
|
|
|
|
|
segment_info_type *
|
2003-12-03 04:39:58 +01:00
|
|
|
|
seg_info (segT sec)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (sec == bfd_abs_section_ptr)
|
|
|
|
|
return abs_seg_info;
|
|
|
|
|
else if (sec == bfd_und_section_ptr)
|
|
|
|
|
return und_seg_info;
|
|
|
|
|
else
|
|
|
|
|
return (segment_info_type *) bfd_get_section_userdata (stdoutput, sec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
symbolS *
|
2003-12-03 04:39:58 +01:00
|
|
|
|
section_symbol (segT sec)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
segment_info_type *seginfo = seg_info (sec);
|
|
|
|
|
symbolS *s;
|
|
|
|
|
|
|
|
|
|
if (seginfo == 0)
|
|
|
|
|
abort ();
|
|
|
|
|
if (seginfo->sym)
|
|
|
|
|
return seginfo->sym;
|
|
|
|
|
|
|
|
|
|
#ifndef EMIT_SECTION_SYMBOLS
|
|
|
|
|
#define EMIT_SECTION_SYMBOLS 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-09-05 02:01:18 +02:00
|
|
|
|
if (! EMIT_SECTION_SYMBOLS || symbol_table_frozen)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* Here we know it won't be going into the symbol table. */
|
2002-12-08 04:47:57 +01:00
|
|
|
|
s = symbol_create (sec->symbol->name, sec, 0, &zero_address_frag);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-07-19 21:15:43 +02:00
|
|
|
|
segT seg;
|
2005-04-19 17:05:09 +02:00
|
|
|
|
s = symbol_find (sec->symbol->name);
|
2004-05-11 17:53:47 +02:00
|
|
|
|
/* We have to make sure it is the right symbol when we
|
|
|
|
|
have multiple sections with the same section name. */
|
2004-07-19 21:15:43 +02:00
|
|
|
|
if (s == NULL
|
|
|
|
|
|| ((seg = S_GET_SEGMENT (s)) != sec
|
|
|
|
|
&& seg != undefined_section))
|
2002-12-08 04:47:57 +01:00
|
|
|
|
s = symbol_new (sec->symbol->name, sec, 0, &zero_address_frag);
|
2004-07-19 21:15:43 +02:00
|
|
|
|
else if (seg == undefined_section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2004-07-19 21:15:43 +02:00
|
|
|
|
S_SET_SEGMENT (s, sec);
|
|
|
|
|
symbol_set_frag (s, &zero_address_frag);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
S_CLEAR_EXTERNAL (s);
|
|
|
|
|
|
|
|
|
|
/* Use the BFD section symbol, if possible. */
|
|
|
|
|
if (obj_sec_sym_ok_for_reloc (sec))
|
Add support for storing local symbols in a small structure to save
memory when assembling large files.
* as.h: Don't include struc-symbol.h.
(symbolS): Add typedef.
* symbols.c: Include struc-symbol.h.
(local_hash): New static variable.
(save_symbol_name): New static function, from symbol_create.
(symbol_create): Call save_symbol_name.
(local_symbol_count): New static variable.
(local_symbol_conversion_count): Likewise.
(LOCAL_SYMBOL_CHECK): Define.
(local_symbol_make): New static function.
(local_symbol_convert): New static function.
(colon): Handle local symbols. Create local symbol for local
label name.
(symbol_table_insert): Handle local symbols.
(symbol_find_or_make): Create local symbol for local label name.
(symbol_find_base): Check for local symbol.
(symbol_append, symbol_insert): Check for local symbols.
(symbol_clear_list_pointers, symbol_remove): Likewise.
(verify_symbol_chain): Likewise.
(copy_symbol_attributes): Likewise.
(resolve_symbol_value): Handle local symbols.
(resolve_local_symbol): New static function.
(resolve_local_symbol_values): New function.
(S_GET_VALUE, S_SET_VALUE): Handle local symbols.
(S_IS_FUNCTION, S_IS_EXTERNAL, S_IS_WEAK, S_IS_COMMON): Likewise.
(S_IS_DEFINED, S_IS_DEBUG, S_IS_LOCAL, S_GET_NAME): Likewise.
(S_GET_SEGMENT, S_SET_SEGMENT, S_SET_EXTERNAL): Likewise.
(S_CLEAR_EXTERNAL, S_SET_WEAK, S_SET_NAME): Likewise.
(symbol_previous, symbol_next): New functions.
(symbol_get_value_expression): Likewise.
(symbol_set_value_expression): Likewise.
(symbol_set_frag, symbol_get_frag): Likewise.
(symbol_mark_used, symbol_clear_used, symbol_used_p): Likewise.
(symbol_mark_used_in_reloc): Likewise.
(symbol_clear_used_in_reloc, symbol_used_in_reloc_p): Likewise.
(symbol_mark_mri_common, symbol_clear_mri_common): Likewise.
(symbol_mri_common_p): Likewise.
(symbol_mark_written, symbol_clear_written): Likewise.
(symbol_written_p): Likewise.
(symbol_mark_resolved, symbol_resolved_p): Likewise.
(symbol_section_p, symbol_equated_p): Likewise.
(symbol_constant_p): Likewise.
(symbol_get_bfdsym, symbol_set_bfdsym): Likewise.
(symbol_get_obj, symbol_set_obj): Likewise.
(symbol_get_tc, symbol_set_tc): Likewise.
(symbol_begin): Initialize local_hash.
(print_symbol_value_1): Handle local symbols.
(symbol_print_statistics): Print local symbol statistics.
* symbols.h: Include "struc-symbol.h" if not BFD_ASSEMBLER.
Declare new symbols.c functions. Move many declarations here from
struc-symbol.h.
(SYMBOLS_NEED_BACKPOINTERS): Define if needed.
* struc-symbol.h (SYMBOLS_NEED_BACKPOINTERS): Don't set.
(struct symbol): Move bsym to make it clearly the first field.
Remove TARGET_SYMBOL_FIELDS.
(symbolS): Don't typedef.
(struct broken_word): Remove.
(N_TYPE_seg, seg_N_TYPE): Move to symbol.h.
(SEGMENT_TO_SYMBOL_TYPE, N_REGISTER): Likewise.
(symbol_clear_list_pointers): Likewise.
(symbol_insert, symbol_remove): Likewise.
(symbol_previous, symbol_append): Likewise.
(verify_symbol_chain, verify_symbol_chain_2): Likewise.
(struct local_symbol): Define.
(local_symbol_converted_p, local_symbol_mark_converted): Define.
(local_symbol_resolved_p, local_symbol_mark_resolved): Define.
(local_symbol_get_frag, local_symbol_set_frag): Define.
(local_symbol_get_real_symbol): Define.
(local_symbol_set_real_symbol): Define.
Define.
* write.c (write_object_file): Call resolve_local_symbol_values.
* config/obj-ecoff.h (OBJ_SYMFIELD_TYPE): Define.
(TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-elf.h (OBJ_SYMFIELD_TYPE): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
* config/obj-multi.h (struct elf_obj_sy): Add local field. If
ECOFF_DEBUGGING, add ECOFF fields.
(ELF_TARGET_SYMBOL_FIELDS, TARGET_SYMBOL_FIELDS): Don't define.
(ECOFF_DEBUG_TARGET_SYMBOL_FIELDS): Don't define.
* config/tc-mcore.h: Don't include struc-symbol.h.
(TARGET_SYMBOL_FIELDS): Don't define.
(struct mcore_tc_sy): Define.
(TC_SYMFIELD_TYPE): Define.
* Many files: Use symbolS instead of struct symbol. Use new
accessor functions rather than referring to symbolS fields
directly.
* read.c (s_mri_common): Don't add in value of line_label.
* config/tc-mips.c (md_apply_fix): Correct parenthesization when
checking for SEC_LINK_ONCE.
* config/tc-sh.h (sh_fix_adjustable): Declare.
1999-06-03 02:29:48 +02:00
|
|
|
|
symbol_set_bfdsym (s, sec->symbol);
|
2002-09-05 02:01:18 +02:00
|
|
|
|
else
|
|
|
|
|
symbol_get_bfdsym (s)->flags |= BSF_SECTION_SYM;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
seginfo->sym = s;
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
1999-06-12 18:49:51 +02:00
|
|
|
|
/* Return whether the specified segment is thought to hold text. */
|
|
|
|
|
|
|
|
|
|
int
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subseg_text_p (segT sec)
|
1999-06-12 18:49:51 +02:00
|
|
|
|
{
|
|
|
|
|
return (bfd_get_section_flags (stdoutput, sec) & SEC_CODE) != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-27 17:33:47 +01:00
|
|
|
|
/* Return non zero if SEC has at least one byte of data. It is
|
|
|
|
|
possible that we'll return zero even on a non-empty section because
|
|
|
|
|
we don't know all the fragment types, and it is possible that an
|
|
|
|
|
fr_fix == 0 one still contributes data. Think of this as
|
|
|
|
|
seg_definitely_not_empty_p. */
|
|
|
|
|
|
2005-02-07 18:53:26 +01:00
|
|
|
|
int
|
2005-02-17 14:46:05 +01:00
|
|
|
|
seg_not_empty_p (segT sec ATTRIBUTE_UNUSED)
|
2005-01-27 17:33:47 +01:00
|
|
|
|
{
|
|
|
|
|
segment_info_type *seginfo = seg_info (sec);
|
|
|
|
|
frchainS *chain;
|
|
|
|
|
fragS *frag;
|
|
|
|
|
|
|
|
|
|
if (!seginfo)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
for (chain = seginfo->frchainP; chain; chain = chain->frch_next)
|
|
|
|
|
{
|
|
|
|
|
for (frag = chain->frch_root; frag; frag = frag->fr_next)
|
|
|
|
|
if (frag->fr_fix)
|
|
|
|
|
return 1;
|
|
|
|
|
if (obstack_next_free (&chain->frch_obstack)
|
|
|
|
|
!= chain->frch_last->fr_literal)
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
2003-12-03 04:39:58 +01:00
|
|
|
|
subsegs_print_statistics (FILE *file)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
frchainS *frchp;
|
|
|
|
|
fprintf (file, "frag chains:\n");
|
|
|
|
|
for (frchp = frchain_root; frchp; frchp = frchp->frch_next)
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
fragS *fragp;
|
|
|
|
|
|
|
|
|
|
/* If frch_subseg is non-zero, it's probably been chained onto
|
|
|
|
|
the end of a previous subsection. Don't count it again. */
|
|
|
|
|
if (frchp->frch_subseg != 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Skip gas-internal sections. */
|
|
|
|
|
if (segment_name (frchp->frch_seg)[0] == '*')
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (fragp = frchp->frch_root; fragp; fragp = fragp->fr_next)
|
|
|
|
|
{
|
|
|
|
|
count++;
|
|
|
|
|
}
|
|
|
|
|
fprintf (file, "\n");
|
2002-06-12 18:39:29 +02:00
|
|
|
|
fprintf (file, "\t%p %-10s\t%10d frags\n", (void *) frchp,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
segment_name (frchp->frch_seg), count);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* end of subsegs.c */
|