2010-11-02 16:20:47 +01:00
|
|
|
/* simple-object.c -- simple routines to read and write object files.
|
Update libiberty sources with changes in the gcc mainline.
+2020-01-01 Jakub Jelinek <jakub@redhat.com>
+
+ Update copyright years.
+
+2019-12-06 Tim Ruehsen <tim.ruehsen@gmx.de>
+
+ * make-relative-prefix.c (split_directories):
+ Return early on empty 'name'
+
+2019-11-16 Tim Ruehsen <tim.ruehsen@gmx.de>
+
+ * cp-demangle.c (d_print_init): Remove const from 4th param.
+ (cplus_demangle_fill_name): Initialize d->d_counting.
+ (cplus_demangle_fill_extended_operator): Likewise.
+ (cplus_demangle_fill_ctor): Likewise.
+ (cplus_demangle_fill_dtor): Likewise.
+ (d_make_empty): Likewise.
+ (d_count_templates_scopes): Remobe const from 3rd param,
+ Return on dc->d_counting > 1,
+ Increment dc->d_counting.
+ * cp-demint.c (cplus_demangle_fill_component): Initialize d->d_counting.
+ (cplus_demangle_fill_builtin_type): Likewise.
+ (cplus_demangle_fill_operator): Likewise.
+
+2019-11-16 Eduard-Mihai Burtescu <eddyb@lyken.rs>
+
+ * cplus-dem.c (cplus_demangle): Use rust_demangle directly.
+ (rust_demangle): Remove.
+ * rust-demangle.c (is_prefixed_hash): Rename to is_legacy_prefixed_hash.
+ (parse_lower_hex_nibble): Rename to decode_lower_hex_nibble.
+ (parse_legacy_escape): Rename to decode_legacy_escape.
+ (rust_is_mangled): Remove.
+ (struct rust_demangler): Add.
+ (peek): Add.
+ (next): Add.
+ (struct rust_mangled_ident): Add.
+ (parse_ident): Add.
+ (rust_demangle_sym): Remove.
+ (print_str): Add.
+ (PRINT): Add.
+ (print_ident): Add.
+ (rust_demangle_callback): Add.
+ (struct str_buf): Add.
+ (str_buf_reserve): Add.
+ (str_buf_append): Add.
+ (str_buf_demangle_callback): Add.
+ (rust_demangle): Add.
+ * rust-demangle.h: Remove.
+
+2019-11-15 Miguel Saldivar <saldivarcher@gmail.com>
+
+ * testsuite/demangle-expected: Fix test.
+
+2019-11-04 Kamlesh Kumar <kamleshbhalui@gmail.com>
+
+ * cp-demangle.c (d_expr_primary): Handle
+ nullptr demangling.
+ * testsuite/demangle-expected: Added test.
+
+2019-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * cp-demangle.c (d_number): Avoid signed int overflow.
+
+2019-10-28 Miguel Saldivar <saldivarcher@gmail.com>
+
+ * cp-demangle.c (d_print_mod): Add a space before printing `complex`
+ and `imaginary`, as opposed to after.
+ * testsuite/demangle-expected: Adjust test.
+
+2019-10-03 Eduard-Mihai Burtescu <eddyb@lyken.rs>
+
+ * rust-demangle.c (looks_like_rust): Remove.
+ (rust_is_mangled): Don't check escapes.
+ (is_prefixed_hash): Allow 0-9a-f permutations.
+ (rust_demangle_sym): Don't bail on unknown escapes.
+ * testsuite/rust-demangle-expected: Update 'main::$99$' test.
+
+2019-09-03 Eduard-Mihai Burtescu <eddyb@lyken.rs>
+
+ * rust-demangle.c (unescape): Remove.
+ (parse_lower_hex_nibble): New function.
+ (parse_legacy_escape): New function.
+ (is_prefixed_hash): Use parse_lower_hex_nibble.
+ (looks_like_rust): Use parse_legacy_escape.
+ (rust_demangle_sym): Use parse_legacy_escape.
+ * testsuite/rust-demangle-expected: Add 'llv$u6d$' test.
+
+2019-08-27 Martin Liska <mliska@suse.cz>
+
+ PR lto/91478
+ * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
+ First find a WEAK HIDDEN symbol in symbol table that will be
+ preserved. Later, use the symbol name for all removed symbols.
+
+2019-08-12 Martin Liska <mliska@suse.cz>
+
+ * Makefile.in: Add filedescriptor.c.
+ * filedescriptor.c: New file.
+ * lrealpath.c (is_valid_fd): Remove.
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in
index 0be45b4ae8..fe738d0db4 100644
--- a/libiberty/Makefile.in
+++ b/libiberty/Makefile.in
@@ -1,7 +1,7 @@
# Makefile for the libiberty library.
# Originally written by K. Richard Pixley <rich@cygnus.com>.
#
-# Copyright (C) 1990-2019 Free Software Foundation, Inc.
+# Copyright (C) 1990-2020 Free Software Foundation, Inc.
#
# This file is part of the libiberty library.
# Libiberty is free software; you can redistribute it and/or
@@ -127,7 +127,7 @@ CFILES = alloca.c argv.c asprintf.c atexit.c \
calloc.c choose-temp.c clock.c concat.c cp-demangle.c \
cp-demint.c cplus-dem.c crc32.c \
d-demangle.c dwarfnames.c dyn-string.c \
- fdmatch.c ffs.c fibheap.c filename_cmp.c floatformat.c \
+ fdmatch.c ffs.c fibheap.c filedescriptor.c filename_cmp.c floatformat.c \
fnmatch.c fopen_unlocked.c \
getcwd.c getopt.c getopt1.c getpagesize.c getpwd.c getruntime.c \
gettimeofday.c \
@@ -171,6 +171,7 @@ REQUIRED_OFILES = \
./cp-demint.$(objext) ./crc32.$(objext) ./d-demangle.$(objext) \
./dwarfnames.$(objext) ./dyn-string.$(objext) \
./fdmatch.$(objext) ./fibheap.$(objext) \
+ ./filedescriptor.$(objext) \
./filename_cmp.$(objext) ./floatformat.$(objext) \
./fnmatch.$(objext) ./fopen_unlocked.$(objext) \
./getopt.$(objext) ./getopt1.$(objext) ./getpwd.$(objext) \
@@ -756,6 +757,17 @@ $(CONFIGURED_OFILES): stamp-picdir stamp-noasandir
else true; fi
$(COMPILE.c) $(srcdir)/fibheap.c $(OUTPUT_OPTION)
+./filedescriptor.$(objext): $(srcdir)/filedescriptor.c config.h $(INCDIR)/ansidecl.h \
+ $(INCDIR)/libiberty.h
+ if [ x"$(PICFLAG)" != x ]; then \
+ $(COMPILE.c) $(PICFLAG) $(srcdir)/filedescriptor.c -o pic/$@; \
+ else true; fi
+ if [ x"$(NOASANFLAG)" != x ]; then \
+ $(COMPILE.c) $(PICFLAG) $(NOASANFLAG) $(srcdir)/filedescriptor.c -o noasan/$@; \
+ else true; fi
+ $(COMPILE.c) $(srcdir)/filedescriptor.c $(OUTPUT_OPTION)
+
+
./filename_cmp.$(objext): $(srcdir)/filename_cmp.c config.h $(INCDIR)/ansidecl.h \
$(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
$(INCDIR)/safe-ctype.h
diff --git a/libiberty/_doprnt.c b/libiberty/_doprnt.c
index d44dc415ed..a739f4304f 100644
--- a/libiberty/_doprnt.c
+++ b/libiberty/_doprnt.c
@@ -1,5 +1,5 @@
/* Provide a version of _doprnt in terms of fprintf.
- Copyright (C) 1998-2019 Free Software Foundation, Inc.
+ Copyright (C) 1998-2020 Free Software Foundation, Inc.
Contributed by Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
This program is free software; you can redistribute it and/or modify it
diff --git a/libiberty/argv.c b/libiberty/argv.c
index 6444896f99..8c9794db6a 100644
--- a/libiberty/argv.c
+++ b/libiberty/argv.c
@@ -1,5 +1,5 @@
/* Create and destroy argument vectors (argv's)
- Copyright (C) 1992-2019 Free Software Foundation, Inc.
+ Copyright (C) 1992-2020 Free Software Foundation, Inc.
Written by Fred Fish @ Cygnus Support
This file is part of the libiberty library.
diff --git a/libiberty/asprintf.c b/libiberty/asprintf.c
index 5718682f69..6e38e2234d 100644
--- a/libiberty/asprintf.c
+++ b/libiberty/asprintf.c
@@ -1,6 +1,6 @@
/* Like sprintf but provides a pointer to malloc'd storage, which must
be freed by the caller.
- Copyright (C) 1997-2019 Free Software Foundation, Inc.
+ Copyright (C) 1997-2020 Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
This file is part of the libiberty library.
diff --git a/libiberty/choose-temp.c b/libiberty/choose-temp.c
index 72c1b710bd..49a2faaa51 100644
--- a/libiberty/choose-temp.c
+++ b/libiberty/choose-temp.c
@@ -1,5 +1,5 @@
/* Utility to pick a temporary filename prefix.
- Copyright (C) 1996-2019 Free Software Foundation, Inc.
+ Copyright (C) 1996-2020 Free Software Foundation, Inc.
This file is part of the libiberty library.
Libiberty is free software; you can redistribute it and/or
diff --git a/libiberty/clock.c b/libiberty/clock.c
index a3730714bd..0de74657d0 100644
--- a/libiberty/clock.c
+++ b/libiberty/clock.c
@@ -1,5 +1,5 @@
/* ANSI-compatible clock function.
- Copyright (C) 1994-2019 Free Software Foundation, Inc.
+ Copyright (C) 1994-2020 Free Software Foundation, Inc.
This file is part of the libiberty library. This library is free
software; you can redistribute it and/or modify it under the
diff --git
2020-01-17 15:13:22 +01:00
|
|
|
Copyright (C) 2010-2020 Free Software Foundation, Inc.
|
2010-11-02 16:20:47 +01:00
|
|
|
Written by Ian Lance Taylor, Google.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
|
|
Foundation, 51 Franklin Street - Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
#include "simple-object.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
#include <fcntl.h>
|
2010-11-02 16:20:47 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STDINT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SEEK_SET
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#endif
|
|
|
|
|
2019-04-07 13:11:49 +02:00
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2010-11-02 16:20:47 +01:00
|
|
|
#include "simple-object-common.h"
|
|
|
|
|
|
|
|
/* The known object file formats. */
|
|
|
|
|
|
|
|
static const struct simple_object_functions * const format_functions[] =
|
|
|
|
{
|
|
|
|
&simple_object_elf_functions,
|
|
|
|
&simple_object_mach_o_functions,
|
2013-01-07 21:28:44 +01:00
|
|
|
&simple_object_coff_functions,
|
|
|
|
&simple_object_xcoff_functions
|
2010-11-02 16:20:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Read data from a file using the simple_object error reporting
|
|
|
|
conventions. */
|
|
|
|
|
|
|
|
int
|
|
|
|
simple_object_internal_read (int descriptor, off_t offset,
|
|
|
|
unsigned char *buffer, size_t size,
|
|
|
|
const char **errmsg, int *err)
|
|
|
|
{
|
|
|
|
if (lseek (descriptor, offset, SEEK_SET) < 0)
|
|
|
|
{
|
|
|
|
*errmsg = "lseek";
|
|
|
|
*err = errno;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-28 15:05:49 +01:00
|
|
|
do
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
2014-03-28 15:05:49 +01:00
|
|
|
ssize_t got = read (descriptor, buffer, size);
|
|
|
|
if (got == 0)
|
|
|
|
break;
|
|
|
|
else if (got > 0)
|
|
|
|
{
|
|
|
|
buffer += got;
|
|
|
|
size -= got;
|
|
|
|
}
|
|
|
|
else if (errno != EINTR)
|
|
|
|
{
|
|
|
|
*errmsg = "read";
|
|
|
|
*err = errno;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-11-02 16:20:47 +01:00
|
|
|
}
|
2014-03-28 15:05:49 +01:00
|
|
|
while (size > 0);
|
2010-11-02 16:20:47 +01:00
|
|
|
|
2014-03-28 15:05:49 +01:00
|
|
|
if (size > 0)
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
|
|
|
*errmsg = "file too short";
|
|
|
|
*err = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write data to a file using the simple_object error reporting
|
|
|
|
conventions. */
|
|
|
|
|
|
|
|
int
|
|
|
|
simple_object_internal_write (int descriptor, off_t offset,
|
|
|
|
const unsigned char *buffer, size_t size,
|
|
|
|
const char **errmsg, int *err)
|
|
|
|
{
|
|
|
|
if (lseek (descriptor, offset, SEEK_SET) < 0)
|
|
|
|
{
|
|
|
|
*errmsg = "lseek";
|
|
|
|
*err = errno;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-01 09:45:48 +02:00
|
|
|
do
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
2014-04-01 09:45:48 +02:00
|
|
|
ssize_t wrote = write (descriptor, buffer, size);
|
|
|
|
if (wrote == 0)
|
|
|
|
break;
|
|
|
|
else if (wrote > 0)
|
|
|
|
{
|
|
|
|
buffer += wrote;
|
|
|
|
size -= wrote;
|
|
|
|
}
|
|
|
|
else if (errno != EINTR)
|
|
|
|
{
|
|
|
|
*errmsg = "write";
|
|
|
|
*err = errno;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-11-02 16:20:47 +01:00
|
|
|
}
|
2014-04-01 09:45:48 +02:00
|
|
|
while (size > 0);
|
2010-11-02 16:20:47 +01:00
|
|
|
|
2014-04-01 09:45:48 +02:00
|
|
|
if (size > 0)
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
|
|
|
*errmsg = "short write";
|
|
|
|
*err = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open for read. */
|
|
|
|
|
|
|
|
simple_object_read *
|
|
|
|
simple_object_start_read (int descriptor, off_t offset,
|
|
|
|
const char *segment_name, const char **errmsg,
|
|
|
|
int *err)
|
|
|
|
{
|
|
|
|
unsigned char header[SIMPLE_OBJECT_MATCH_HEADER_LEN];
|
|
|
|
size_t len, i;
|
|
|
|
|
|
|
|
if (!simple_object_internal_read (descriptor, offset, header,
|
|
|
|
SIMPLE_OBJECT_MATCH_HEADER_LEN,
|
|
|
|
errmsg, err))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
len = sizeof (format_functions) / sizeof (format_functions[0]);
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
data = format_functions[i]->match (header, descriptor, offset,
|
|
|
|
segment_name, errmsg, err);
|
|
|
|
if (data != NULL)
|
|
|
|
{
|
|
|
|
simple_object_read *ret;
|
|
|
|
|
|
|
|
ret = XNEW (simple_object_read);
|
|
|
|
ret->descriptor = descriptor;
|
|
|
|
ret->offset = offset;
|
|
|
|
ret->functions = format_functions[i];
|
|
|
|
ret->data = data;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*errmsg = "file not recognized";
|
|
|
|
*err = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find all sections. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
simple_object_find_sections (simple_object_read *sobj,
|
|
|
|
int (*pfn) (void *, const char *, off_t, off_t),
|
|
|
|
void *data,
|
|
|
|
int *err)
|
|
|
|
{
|
|
|
|
return sobj->functions->find_sections (sobj, pfn, data, err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Internal data passed to find_one_section. */
|
|
|
|
|
|
|
|
struct find_one_section_data
|
|
|
|
{
|
|
|
|
/* The section we are looking for. */
|
|
|
|
const char *name;
|
|
|
|
/* Where to store the section offset. */
|
|
|
|
off_t *offset;
|
|
|
|
/* Where to store the section length. */
|
|
|
|
off_t *length;
|
|
|
|
/* Set if the name is found. */
|
|
|
|
int found;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Internal function passed to find_sections. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
find_one_section (void *data, const char *name, off_t offset, off_t length)
|
|
|
|
{
|
|
|
|
struct find_one_section_data *fosd = (struct find_one_section_data *) data;
|
|
|
|
|
|
|
|
if (strcmp (name, fosd->name) != 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
*fosd->offset = offset;
|
|
|
|
*fosd->length = length;
|
|
|
|
fosd->found = 1;
|
|
|
|
|
|
|
|
/* Stop iteration. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find a section. */
|
|
|
|
|
|
|
|
int
|
|
|
|
simple_object_find_section (simple_object_read *sobj, const char *name,
|
|
|
|
off_t *offset, off_t *length,
|
|
|
|
const char **errmsg, int *err)
|
|
|
|
{
|
|
|
|
struct find_one_section_data fosd;
|
|
|
|
|
|
|
|
fosd.name = name;
|
|
|
|
fosd.offset = offset;
|
|
|
|
fosd.length = length;
|
|
|
|
fosd.found = 0;
|
|
|
|
|
|
|
|
*errmsg = simple_object_find_sections (sobj, find_one_section,
|
|
|
|
(void *) &fosd, err);
|
|
|
|
if (*errmsg != NULL)
|
|
|
|
return 0;
|
|
|
|
if (!fosd.found)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
/* Callback to identify and rename LTO debug sections by name.
|
2018-06-16 05:07:42 +02:00
|
|
|
Returns non-NULL if NAME is a LTO debug section, NULL if not.
|
|
|
|
If RENAME is true it will rename LTO debug sections to non-LTO
|
|
|
|
ones. */
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
|
2018-04-17 14:53:38 +02:00
|
|
|
static char *
|
2018-06-16 05:07:42 +02:00
|
|
|
handle_lto_debug_sections (const char *name, int rename)
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
{
|
2018-06-16 05:07:42 +02:00
|
|
|
char *newname = rename ? XCNEWVEC (char, strlen (name) + 1)
|
|
|
|
: xstrdup (name);
|
2018-04-17 14:53:38 +02:00
|
|
|
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
/* ??? So we can't use .gnu.lto_ prefixed sections as the assembler
|
|
|
|
complains about bogus section flags. Which means we need to arrange
|
|
|
|
for that to be fixed or .gnu.debuglto_ marked as SHF_EXCLUDE (to make
|
|
|
|
fat lto object tooling work for the fat part). */
|
2018-04-17 14:53:38 +02:00
|
|
|
/* Also include corresponding reloc sections. */
|
|
|
|
if (strncmp (name, ".rela", sizeof (".rela") - 1) == 0)
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
{
|
2018-06-16 05:07:42 +02:00
|
|
|
if (rename)
|
|
|
|
strncpy (newname, name, sizeof (".rela") - 1);
|
2018-04-17 14:53:38 +02:00
|
|
|
name += sizeof (".rela") - 1;
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
}
|
2018-04-17 14:53:38 +02:00
|
|
|
else if (strncmp (name, ".rel", sizeof (".rel") - 1) == 0)
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
{
|
2018-06-16 05:07:42 +02:00
|
|
|
if (rename)
|
|
|
|
strncpy (newname, name, sizeof (".rel") - 1);
|
2018-04-17 14:53:38 +02:00
|
|
|
name += sizeof (".rel") - 1;
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
}
|
2018-04-17 14:53:38 +02:00
|
|
|
/* ??? For now this handles both .gnu.lto_ and .gnu.debuglto_ prefixed
|
|
|
|
sections. */
|
|
|
|
/* Copy LTO debug sections and rename them to their non-LTO name. */
|
|
|
|
if (strncmp (name, ".gnu.debuglto_", sizeof (".gnu.debuglto_") - 1) == 0)
|
2018-06-16 05:07:42 +02:00
|
|
|
return rename ? strcat (newname, name + sizeof (".gnu.debuglto_") - 1) : newname;
|
2018-04-17 14:53:38 +02:00
|
|
|
else if (strncmp (name, ".gnu.lto_.debug_",
|
|
|
|
sizeof (".gnu.lto_.debug_") -1) == 0)
|
2018-06-16 05:07:42 +02:00
|
|
|
return rename ? strcat (newname, name + sizeof (".gnu.lto_") - 1) : newname;
|
2018-01-10 14:57:48 +01:00
|
|
|
/* Copy over .note.GNU-stack section under the same name if present. */
|
2018-04-17 14:53:38 +02:00
|
|
|
else if (strcmp (name, ".note.GNU-stack") == 0)
|
|
|
|
return strcpy (newname, name);
|
2020-03-02 12:56:36 +01:00
|
|
|
/* Copy over .note.gnu.property section under the same name if present. */
|
|
|
|
else if (strcmp (name, ".note.gnu.property") == 0)
|
|
|
|
return strcpy (newname, name);
|
2018-04-17 14:53:38 +02:00
|
|
|
/* Copy over .comment section under the same name if present. Solaris
|
|
|
|
ld uses them to relax its checking of ELF gABI access rules for
|
|
|
|
COMDAT sections in objects produced by GCC. */
|
|
|
|
else if (strcmp (name, ".comment") == 0)
|
|
|
|
return strcpy (newname, name);
|
2020-04-28 12:56:06 +02:00
|
|
|
/* Copy over .GCC.command.line section under the same name if present. */
|
|
|
|
else if (strcmp (name, ".GCC.command.line") == 0)
|
|
|
|
return strcpy (newname, name);
|
2018-06-16 05:07:42 +02:00
|
|
|
free (newname);
|
2018-04-17 14:53:38 +02:00
|
|
|
return NULL;
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
}
|
|
|
|
|
2018-06-16 05:07:42 +02:00
|
|
|
/* Wrapper for handle_lto_debug_sections. */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
handle_lto_debug_sections_rename (const char *name)
|
|
|
|
{
|
|
|
|
return handle_lto_debug_sections (name, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wrapper for handle_lto_debug_sections. */
|
|
|
|
|
|
|
|
static char *
|
|
|
|
handle_lto_debug_sections_norename (const char *name)
|
|
|
|
{
|
|
|
|
return handle_lto_debug_sections (name, 0);
|
|
|
|
}
|
|
|
|
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
/* Copy LTO debug sections. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
simple_object_copy_lto_debug_sections (simple_object_read *sobj,
|
2018-06-16 05:07:42 +02:00
|
|
|
const char *dest, int *err, int rename)
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
{
|
|
|
|
const char *errmsg;
|
|
|
|
simple_object_write *dest_sobj;
|
|
|
|
simple_object_attributes *attrs;
|
|
|
|
int outfd;
|
|
|
|
|
|
|
|
if (! sobj->functions->copy_lto_debug_sections)
|
|
|
|
{
|
|
|
|
*err = EINVAL;
|
|
|
|
return "simple_object_copy_lto_debug_sections not implemented";
|
|
|
|
}
|
|
|
|
|
|
|
|
attrs = simple_object_fetch_attributes (sobj, &errmsg, err);
|
|
|
|
if (! attrs)
|
|
|
|
return errmsg;
|
|
|
|
dest_sobj = simple_object_start_write (attrs, NULL, &errmsg, err);
|
|
|
|
simple_object_release_attributes (attrs);
|
|
|
|
if (! dest_sobj)
|
|
|
|
return errmsg;
|
|
|
|
|
2018-06-16 05:07:42 +02:00
|
|
|
errmsg = sobj->functions->copy_lto_debug_sections
|
|
|
|
(sobj, dest_sobj,
|
|
|
|
rename ? handle_lto_debug_sections_rename
|
|
|
|
: handle_lto_debug_sections_norename, err);
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
if (errmsg)
|
|
|
|
{
|
|
|
|
simple_object_release_write (dest_sobj);
|
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
|
2019-04-07 13:11:49 +02:00
|
|
|
outfd = open (dest, O_CREAT|O_WRONLY|O_TRUNC|O_BINARY, 00777);
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
if (outfd == -1)
|
|
|
|
{
|
|
|
|
*err = errno;
|
|
|
|
simple_object_release_write (dest_sobj);
|
|
|
|
return "open failed";
|
|
|
|
}
|
|
|
|
|
|
|
|
errmsg = simple_object_write_to_file (dest_sobj, outfd, err);
|
|
|
|
close (outfd);
|
|
|
|
if (errmsg)
|
|
|
|
{
|
|
|
|
simple_object_release_write (dest_sobj);
|
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
simple_object_release_write (dest_sobj);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-02 16:20:47 +01:00
|
|
|
/* Fetch attributes. */
|
|
|
|
|
|
|
|
simple_object_attributes *
|
|
|
|
simple_object_fetch_attributes (simple_object_read *sobj, const char **errmsg,
|
|
|
|
int *err)
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
simple_object_attributes *ret;
|
|
|
|
|
|
|
|
data = sobj->functions->fetch_attributes (sobj, errmsg, err);
|
|
|
|
if (data == NULL)
|
|
|
|
return NULL;
|
|
|
|
ret = XNEW (simple_object_attributes);
|
|
|
|
ret->functions = sobj->functions;
|
|
|
|
ret->data = data;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release an simple_object_read. */
|
|
|
|
|
|
|
|
void
|
|
|
|
simple_object_release_read (simple_object_read *sobj)
|
|
|
|
{
|
|
|
|
sobj->functions->release_read (sobj->data);
|
|
|
|
XDELETE (sobj);
|
|
|
|
}
|
|
|
|
|
2010-11-17 03:03:43 +01:00
|
|
|
/* Merge attributes. */
|
2010-11-02 16:20:47 +01:00
|
|
|
|
|
|
|
const char *
|
2010-11-17 03:03:43 +01:00
|
|
|
simple_object_attributes_merge (simple_object_attributes *to,
|
|
|
|
simple_object_attributes *from,
|
|
|
|
int *err)
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
2010-11-17 03:03:43 +01:00
|
|
|
if (to->functions != from->functions)
|
2010-11-02 16:20:47 +01:00
|
|
|
{
|
|
|
|
*err = 0;
|
|
|
|
return "different object file format";
|
|
|
|
}
|
2010-11-17 03:03:43 +01:00
|
|
|
return to->functions->attributes_merge (to->data, from->data, err);
|
2010-11-02 16:20:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Release an attributes structure. */
|
|
|
|
|
|
|
|
void
|
|
|
|
simple_object_release_attributes (simple_object_attributes *attrs)
|
|
|
|
{
|
|
|
|
attrs->functions->release_attributes (attrs->data);
|
|
|
|
XDELETE (attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start creating an object file. */
|
|
|
|
|
|
|
|
simple_object_write *
|
|
|
|
simple_object_start_write (simple_object_attributes *attrs,
|
|
|
|
const char *segment_name, const char **errmsg,
|
|
|
|
int *err)
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
simple_object_write *ret;
|
|
|
|
|
|
|
|
data = attrs->functions->start_write (attrs->data, errmsg, err);
|
|
|
|
if (data == NULL)
|
|
|
|
return NULL;
|
|
|
|
ret = XNEW (simple_object_write);
|
|
|
|
ret->functions = attrs->functions;
|
Import latest fixes to libiberty from GCC.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Keep names of removed global symbols.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Improve .go_export csect handling. Don't make assumptions
on containing section or number of auxiliary entries.
PR lto/81968
* simple-object-elf.c (simple_object_elf_copy_lto_debug_section):
Adjust field with for sh_type write, set SHF_EXCLUDE only for
removed sections.
PR lto/81925
* simple-object-elf.c (simple_object_elf_write_shdr): Adjust
type of sh_addralign and sh_entsize and properly write
sh_entsize as Elf_Addr.
(simple_object_elf_write_to_file): Read sh_entsize as Elf_Addr.
* simple-object-common.h (struct simple_object_functions): Add
copy_lto_debug_sections hook.
* simple-object.c: Include fcntl.h.
(handle_lto_debug_sections): New helper function.
(simple_object_copy_lto_debug_sections): New function copying
early LTO debug sections to regular debug sections in a new file.
(simple_object_start_write): Handle NULL segment_name.
* simple-object-coff.c (simple_object_coff_functions): Adjust
for not implemented copy_lto_debug_sections hook.
* simple-object-mach-o.c (simple_object_mach_o_functions): Likewise.
* simple-object-xcoff.c (simple_object_xcoff_functions): Likewise.
* simple-object-elf.c (SHT_NULL, SHT_SYMTAB, SHT_RELA, SHT_REL,
SHT_GROUP): Add various sectopn header types.
(SHF_EXCLUDE): Add flag.
(Elf32_External_Sym, Elf64_External_Sym): Add symbol struct.
(ELF_ST_BIND, ELF_ST_TYPE, ELF_ST_INFO): Add accessors.
(STT_OBJECT, STT_FUNC, STT_TLS, STT_GNU_IFUNC): Add Symbol types.
(STV_DEFAULT): Add symbol visibility.
(SHN_COMMON): Add special section index name.
(struct simple_object_elf_write): New.
(simple_object_elf_start_write): Adjust for new private data.
(simple_object_elf_write_shdr): Pass in values for all fields
we write.
(simple_object_elf_write_to_file): Adjust. Copy from recorded
section headers if requested.
(simple_object_elf_release_write): Release private data.
(simple_object_elf_copy_lto_debug_sections): Copy and rename sections
as denoted by PFN and all their dependences, symbols and relocations
to the empty destination file.
(simple_object_elf_functions): Adjust for copy_lto_debug_sections hook.
* simple-object-xcoff.c (simple_object_xcoff_find_sections):
Search symbol table for .go_export symbol and apply pfn if found.
2017-09-01 11:52:53 +02:00
|
|
|
ret->segment_name = segment_name ? xstrdup (segment_name) : NULL;
|
2010-11-02 16:20:47 +01:00
|
|
|
ret->sections = NULL;
|
|
|
|
ret->last_section = NULL;
|
|
|
|
ret->data = data;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start creating a section. */
|
|
|
|
|
|
|
|
simple_object_write_section *
|
|
|
|
simple_object_write_create_section (simple_object_write *sobj, const char *name,
|
|
|
|
unsigned int align,
|
|
|
|
const char **errmsg ATTRIBUTE_UNUSED,
|
|
|
|
int *err ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
simple_object_write_section *ret;
|
|
|
|
|
|
|
|
ret = XNEW (simple_object_write_section);
|
|
|
|
ret->next = NULL;
|
|
|
|
ret->name = xstrdup (name);
|
|
|
|
ret->align = align;
|
|
|
|
ret->buffers = NULL;
|
|
|
|
ret->last_buffer = NULL;
|
|
|
|
|
|
|
|
if (sobj->last_section == NULL)
|
|
|
|
{
|
|
|
|
sobj->sections = ret;
|
|
|
|
sobj->last_section = ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sobj->last_section->next = ret;
|
|
|
|
sobj->last_section = ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add data to a section. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
simple_object_write_add_data (simple_object_write *sobj ATTRIBUTE_UNUSED,
|
|
|
|
simple_object_write_section *section,
|
|
|
|
const void *buffer,
|
|
|
|
size_t size, int copy,
|
|
|
|
int *err ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
struct simple_object_write_section_buffer *wsb;
|
|
|
|
|
|
|
|
wsb = XNEW (struct simple_object_write_section_buffer);
|
|
|
|
wsb->next = NULL;
|
|
|
|
wsb->size = size;
|
|
|
|
|
|
|
|
if (!copy)
|
|
|
|
{
|
|
|
|
wsb->buffer = buffer;
|
|
|
|
wsb->free_buffer = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wsb->free_buffer = (void *) XNEWVEC (char, size);
|
|
|
|
memcpy (wsb->free_buffer, buffer, size);
|
|
|
|
wsb->buffer = wsb->free_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (section->last_buffer == NULL)
|
|
|
|
{
|
|
|
|
section->buffers = wsb;
|
|
|
|
section->last_buffer = wsb;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
section->last_buffer->next = wsb;
|
|
|
|
section->last_buffer = wsb;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the complete object file. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
simple_object_write_to_file (simple_object_write *sobj, int descriptor,
|
|
|
|
int *err)
|
|
|
|
{
|
|
|
|
return sobj->functions->write_to_file (sobj, descriptor, err);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Release an simple_object_write. */
|
|
|
|
|
|
|
|
void
|
|
|
|
simple_object_release_write (simple_object_write *sobj)
|
|
|
|
{
|
|
|
|
simple_object_write_section *section;
|
|
|
|
|
|
|
|
free (sobj->segment_name);
|
|
|
|
|
|
|
|
section = sobj->sections;
|
|
|
|
while (section != NULL)
|
|
|
|
{
|
|
|
|
struct simple_object_write_section_buffer *buffer;
|
|
|
|
simple_object_write_section *next_section;
|
|
|
|
|
|
|
|
buffer = section->buffers;
|
|
|
|
while (buffer != NULL)
|
|
|
|
{
|
|
|
|
struct simple_object_write_section_buffer *next_buffer;
|
|
|
|
|
|
|
|
if (buffer->free_buffer != NULL)
|
|
|
|
XDELETEVEC (buffer->free_buffer);
|
|
|
|
next_buffer = buffer->next;
|
|
|
|
XDELETE (buffer);
|
|
|
|
buffer = next_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
next_section = section->next;
|
|
|
|
free (section->name);
|
|
|
|
XDELETE (section);
|
|
|
|
section = next_section;
|
|
|
|
}
|
|
|
|
|
|
|
|
sobj->functions->release_write (sobj->data);
|
|
|
|
XDELETE (sobj);
|
|
|
|
}
|