2016-09-10 07:59:09 -07:00
|
|
|
# Makefile.am -- Backtrace Makefile.
|
2024-07-11 18:14:01 -07:00
|
|
|
# Copyright (C) 2012-2024 Free Software Foundation, Inc.
|
2016-09-10 07:59:09 -07:00
|
|
|
|
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
|
# met:
|
|
|
|
|
|
|
|
|
|
# (1) Redistributions of source code must retain the above copyright
|
2016-09-11 06:45:37 -07:00
|
|
|
# notice, this list of conditions and the following disclaimer.
|
2016-09-10 07:59:09 -07:00
|
|
|
|
|
|
|
|
# (2) Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
|
# the documentation and/or other materials provided with the
|
2016-09-11 06:45:37 -07:00
|
|
|
# distribution.
|
2016-09-10 07:59:09 -07:00
|
|
|
|
|
|
|
|
# (3) The name of the author may not be used to
|
|
|
|
|
# endorse or promote products derived from this software without
|
|
|
|
|
# specific prior written permission.
|
|
|
|
|
|
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
|
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
|
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
|
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
|
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
2018-01-16 17:42:38 -08:00
|
|
|
ACLOCAL_AMFLAGS = -I config
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
AM_CPPFLAGS =
|
|
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
AM_CFLAGS = $(EXTRA_FLAGS) $(WARN_FLAGS) $(PIC_FLAG)
|
|
|
|
|
|
|
|
|
|
include_HEADERS = backtrace.h backtrace-supported.h
|
|
|
|
|
|
2018-01-15 15:06:55 -05:00
|
|
|
lib_LTLIBRARIES = libbacktrace.la
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
libbacktrace_la_SOURCES = \
|
|
|
|
|
backtrace.h \
|
|
|
|
|
atomic.c \
|
|
|
|
|
dwarf.c \
|
|
|
|
|
fileline.c \
|
|
|
|
|
internal.h \
|
|
|
|
|
posix.c \
|
|
|
|
|
print.c \
|
|
|
|
|
sort.c \
|
|
|
|
|
state.c
|
|
|
|
|
|
|
|
|
|
BACKTRACE_FILES = \
|
|
|
|
|
backtrace.c \
|
|
|
|
|
simple.c \
|
|
|
|
|
nounwind.c
|
|
|
|
|
|
|
|
|
|
FORMAT_FILES = \
|
|
|
|
|
elf.c \
|
2020-02-18 18:57:14 -08:00
|
|
|
macho.c \
|
2016-09-10 07:59:09 -07:00
|
|
|
pecoff.c \
|
2018-01-12 13:26:02 -05:00
|
|
|
unknown.c \
|
|
|
|
|
xcoff.c
|
2016-09-10 07:59:09 -07:00
|
|
|
|
|
|
|
|
VIEW_FILES = \
|
|
|
|
|
read.c \
|
|
|
|
|
mmapio.c
|
|
|
|
|
|
|
|
|
|
ALLOC_FILES = \
|
|
|
|
|
alloc.c \
|
|
|
|
|
mmap.c
|
|
|
|
|
|
|
|
|
|
EXTRA_libbacktrace_la_SOURCES = \
|
|
|
|
|
$(BACKTRACE_FILES) \
|
|
|
|
|
$(FORMAT_FILES) \
|
|
|
|
|
$(VIEW_FILES) \
|
|
|
|
|
$(ALLOC_FILES)
|
|
|
|
|
|
|
|
|
|
libbacktrace_la_LIBADD = \
|
|
|
|
|
$(BACKTRACE_FILE) \
|
|
|
|
|
$(FORMAT_FILE) \
|
|
|
|
|
$(VIEW_FILE) \
|
|
|
|
|
$(ALLOC_FILE)
|
|
|
|
|
|
|
|
|
|
libbacktrace_la_DEPENDENCIES = $(libbacktrace_la_LIBADD)
|
|
|
|
|
|
|
|
|
|
# Testsuite.
|
|
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
# Add a test to this variable if you want it to be built as a program,
|
|
|
|
|
# with SOURCES, etc.
|
2016-09-10 07:59:09 -07:00
|
|
|
check_PROGRAMS =
|
|
|
|
|
|
2020-02-18 18:57:14 -08:00
|
|
|
# Add a test to this variable if you want it to be run.
|
2019-12-23 18:55:51 -08:00
|
|
|
TESTS =
|
|
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
# Add a test to this variable if you want it to be built as a Makefile
|
|
|
|
|
# target and run.
|
|
|
|
|
MAKETESTS =
|
|
|
|
|
|
|
|
|
|
# Add a test to this variable if you want it to be built as a program,
|
|
|
|
|
# with SOURCES, etc., and run.
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS =
|
2016-09-10 07:59:09 -07:00
|
|
|
|
2020-02-18 18:57:14 -08:00
|
|
|
# Add a file to this variable if you want it to be built for testing.
|
|
|
|
|
check_DATA =
|
|
|
|
|
|
2020-02-18 18:49:42 -08:00
|
|
|
# Flags to use when compiling test programs.
|
|
|
|
|
libbacktrace_TEST_CFLAGS = $(EXTRA_FLAGS) $(WARN_FLAGS) -g
|
|
|
|
|
|
2024-03-02 13:11:07 -08:00
|
|
|
# Flags to use when linking test programs.
|
|
|
|
|
# This avoids generating a shell script when configured with --enable-shared.
|
|
|
|
|
libbacktrace_testing_ldflags = -no-install
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
|
|
|
|
%.dSYM: %
|
|
|
|
|
$(DSYMUTIL) $<
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
if NATIVE
|
2019-12-23 18:55:51 -08:00
|
|
|
check_LTLIBRARIES = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
libbacktrace_alloc_la_SOURCES = $(libbacktrace_la_SOURCES)
|
|
|
|
|
libbacktrace_alloc_la_LIBADD = $(BACKTRACE_FILE) $(FORMAT_FILE) read.lo alloc.lo
|
|
|
|
|
|
|
|
|
|
libbacktrace_alloc_la_DEPENDENCIES = $(libbacktrace_alloc_la_LIBADD)
|
|
|
|
|
|
|
|
|
|
check_LTLIBRARIES += libbacktrace_noformat.la
|
|
|
|
|
|
|
|
|
|
libbacktrace_noformat_la_SOURCES = $(libbacktrace_la_SOURCES)
|
|
|
|
|
libbacktrace_noformat_la_LIBADD = $(BACKTRACE_FILE) $(VIEW_FILE) $(ALLOC_FILE)
|
|
|
|
|
|
|
|
|
|
libbacktrace_noformat_la_DEPENDENCIES = $(libbacktrace_noformat_la_LIBADD)
|
|
|
|
|
|
|
|
|
|
if HAVE_ELF
|
|
|
|
|
if HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
|
|
|
|
TEST_BUILD_ID_DIR=$(abs_builddir)/usr/lib/debug/.build-id/
|
|
|
|
|
|
|
|
|
|
check_LTLIBRARIES += libbacktrace_elf_for_test.la
|
|
|
|
|
|
|
|
|
|
libbacktrace_elf_for_test_la_SOURCES = $(libbacktrace_la_SOURCES)
|
|
|
|
|
libbacktrace_elf_for_test_la_LIBADD = $(BACKTRACE_FILE) elf_for_test.lo \
|
|
|
|
|
$(VIEW_FILE) $(ALLOC_FILE)
|
|
|
|
|
|
|
|
|
|
elf_for_test.c: elf.c
|
|
|
|
|
SEARCH='^#define SYSTEM_BUILD_ID_DIR.*$$'; \
|
|
|
|
|
REPLACE="#define SYSTEM_BUILD_ID_DIR \"$(TEST_BUILD_ID_DIR)\""; \
|
|
|
|
|
$(SED) "s%$$SEARCH%$$REPLACE%" \
|
|
|
|
|
$< \
|
|
|
|
|
> $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
|
|
endif HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
endif HAVE_ELF
|
|
|
|
|
|
|
|
|
|
elf_%.c: elf.c
|
2021-12-28 23:28:49 +01:00
|
|
|
nlinit=`echo 'nl="'; echo '"'`; eval "$$nlinit"; \
|
2019-12-23 18:55:51 -08:00
|
|
|
SEARCH='#error "Unknown BACKTRACE_ELF_SIZE"'; \
|
2021-12-28 23:28:49 +01:00
|
|
|
REPLACE="#undef BACKTRACE_ELF_SIZE\\$${nl}#define BACKTRACE_ELF_SIZE"; \
|
2019-12-23 18:55:51 -08:00
|
|
|
$(SED) "s/^$$SEARCH\$$/$$REPLACE $*/" \
|
|
|
|
|
$< \
|
|
|
|
|
> $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
|
|
xcoff_%.c: xcoff.c
|
2021-12-28 23:28:49 +01:00
|
|
|
nlinit=`echo 'nl="'; echo '"'`; eval "$$nlinit"; \
|
2019-12-23 18:55:51 -08:00
|
|
|
SEARCH='#error "Unknown BACKTRACE_XCOFF_SIZE"'; \
|
2021-12-28 23:28:49 +01:00
|
|
|
REPLACE="#undef BACKTRACE_XCOFF_SIZE\\$${nl}#define BACKTRACE_XCOFF_SIZE"; \
|
2019-12-23 18:55:51 -08:00
|
|
|
$(SED) "s/^$$SEARCH\$$/$$REPLACE $*/" \
|
|
|
|
|
$< \
|
|
|
|
|
> $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
|
|
test_elf_32_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_elf_32_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_elf_32_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_elf_32_LDADD = libbacktrace_noformat.la elf_32.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_elf_32
|
|
|
|
|
|
|
|
|
|
test_elf_64_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_elf_64_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_elf_64_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_elf_64_LDADD = libbacktrace_noformat.la elf_64.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_elf_64
|
|
|
|
|
|
2020-02-18 18:57:14 -08:00
|
|
|
test_macho_SOURCES = test_format.c testlib.c
|
|
|
|
|
test_macho_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_macho_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2020-02-18 18:57:14 -08:00
|
|
|
test_macho_LDADD = libbacktrace_noformat.la macho.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_macho
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
test_xcoff_32_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_xcoff_32_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_xcoff_32_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_xcoff_32_LDADD = libbacktrace_noformat.la xcoff_32.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_xcoff_32
|
|
|
|
|
|
|
|
|
|
test_xcoff_64_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_xcoff_64_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_xcoff_64_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_xcoff_64_LDADD = libbacktrace_noformat.la xcoff_64.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_xcoff_64
|
|
|
|
|
|
|
|
|
|
test_pecoff_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_pecoff_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_pecoff_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_pecoff_LDADD = libbacktrace_noformat.la pecoff.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_pecoff
|
|
|
|
|
|
|
|
|
|
test_unknown_SOURCES = test_format.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
test_unknown_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
test_unknown_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
test_unknown_LDADD = libbacktrace_noformat.la unknown.lo
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += test_unknown
|
|
|
|
|
|
|
|
|
|
unittest_SOURCES = unittest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
unittest_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
unittest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
unittest_LDADD = libbacktrace.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += unittest
|
|
|
|
|
|
|
|
|
|
unittest_alloc_SOURCES = $(unittest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
unittest_alloc_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
unittest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
unittest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += unittest_alloc
|
|
|
|
|
|
|
|
|
|
check_LTLIBRARIES += libbacktrace_instrumented_alloc.la
|
|
|
|
|
|
|
|
|
|
libbacktrace_instrumented_alloc_la_SOURCES = $(libbacktrace_la_SOURCES)
|
|
|
|
|
libbacktrace_instrumented_alloc_la_LIBADD = $(BACKTRACE_FILE) $(FORMAT_FILE) \
|
|
|
|
|
read.lo instrumented_alloc.lo
|
|
|
|
|
|
|
|
|
|
libbacktrace_instrumented_alloc_la_DEPENDENCIES = \
|
|
|
|
|
$(libbacktrace_instrumented_alloc_la_LIBADD)
|
|
|
|
|
|
|
|
|
|
instrumented_alloc.lo: alloc.c
|
|
|
|
|
|
|
|
|
|
allocfail_SOURCES = allocfail.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
allocfail_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2019-12-23 18:55:51 -08:00
|
|
|
allocfail_LDADD = libbacktrace_instrumented_alloc.la
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS += allocfail
|
|
|
|
|
|
|
|
|
|
allocfail.sh: allocfail
|
|
|
|
|
|
|
|
|
|
TESTS += allocfail.sh
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += allocfail.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
if HAVE_ELF
|
2023-01-06 09:46:08 -08:00
|
|
|
if HAVE_BUILDID
|
2019-12-23 18:55:51 -08:00
|
|
|
if HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
|
|
|
|
b2test_SOURCES = $(btest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
b2test_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
b2test_LDFLAGS = -Wl,--build-id $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
b2test_LDADD = libbacktrace_elf_for_test.la
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS += b2test
|
2024-02-29 19:44:19 -08:00
|
|
|
MAKETESTS += b2test_buildid b2test_buildidfull
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
if HAVE_DWZ
|
|
|
|
|
|
|
|
|
|
b3test_SOURCES = $(btest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
b3test_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
b3test_LDFLAGS = -Wl,--build-id $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
b3test_LDADD = libbacktrace_elf_for_test.la
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS += b3test
|
2024-02-29 19:44:19 -08:00
|
|
|
MAKETESTS += b3test_dwz_buildid b3test_dwz_buildidfull
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
endif HAVE_DWZ
|
|
|
|
|
|
|
|
|
|
endif HAVE_OBJCOPY_DEBUGLINK
|
2023-01-06 09:46:08 -08:00
|
|
|
endif HAVE_BUILDID
|
2019-12-23 18:55:51 -08:00
|
|
|
endif HAVE_ELF
|
2016-09-10 07:59:09 -07:00
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
btest_SOURCES = btest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
btest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -O
|
2024-03-02 13:11:07 -08:00
|
|
|
btest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2016-09-10 07:59:09 -07:00
|
|
|
btest_LDADD = libbacktrace.la
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += btest
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += btest.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
if HAVE_ELF
|
|
|
|
|
|
|
|
|
|
btest_lto_SOURCES = btest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
btest_lto_CFLAGS = $(libbacktrace_TEST_CFLAGS) -O -flto
|
2024-03-02 13:11:07 -08:00
|
|
|
btest_lto_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
btest_lto_LDADD = libbacktrace.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += btest_lto
|
|
|
|
|
|
|
|
|
|
endif HAVE_ELF
|
|
|
|
|
|
|
|
|
|
btest_alloc_SOURCES = $(btest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
btest_alloc_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
btest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
btest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += btest_alloc
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += btest_alloc.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
if HAVE_DWZ
|
2016-09-10 07:59:09 -07:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
%_dwz: %
|
|
|
|
|
rm -f $@ $@_common.debug
|
|
|
|
|
cp $< $@_1
|
|
|
|
|
cp $< $@_2
|
2021-01-18 14:58:41 -08:00
|
|
|
if $(DWZ) -m $@_common.debug $@_1 $@_2; then \
|
|
|
|
|
rm -f $@_2; \
|
|
|
|
|
mv $@_1 $@; \
|
|
|
|
|
else \
|
|
|
|
|
echo "Ignoring dwz errors, assuming that test passes"; \
|
|
|
|
|
cp $< $@; \
|
|
|
|
|
fi
|
2018-01-16 17:42:38 -08:00
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
MAKETESTS += btest_dwz
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
if HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
MAKETESTS += btest_dwz_gnudebuglink
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
endif HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
|
|
|
|
endif HAVE_DWZ
|
2018-01-16 17:42:38 -08:00
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
stest_SOURCES = stest.c
|
2020-02-18 18:49:42 -08:00
|
|
|
stest_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
stest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2016-09-10 07:59:09 -07:00
|
|
|
stest_LDADD = libbacktrace.la
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += stest
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += stest.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
stest_alloc_SOURCES = $(stest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
stest_alloc_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
stest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
stest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += stest_alloc
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += stest_alloc.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
if HAVE_ELF
|
2016-09-10 07:59:09 -07:00
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
ztest_SOURCES = ztest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
ztest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -DSRCDIR=\"$(srcdir)\"
|
2024-03-02 13:11:07 -08:00
|
|
|
ztest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
ztest_LDADD = libbacktrace.la
|
2019-12-23 18:55:51 -08:00
|
|
|
ztest_alloc_LDADD = libbacktrace_alloc.la
|
2018-01-12 13:26:02 -05:00
|
|
|
|
|
|
|
|
if HAVE_ZLIB
|
|
|
|
|
ztest_LDADD += -lz
|
2019-12-23 18:55:51 -08:00
|
|
|
ztest_alloc_LDADD += -lz
|
2018-01-12 13:26:02 -05:00
|
|
|
endif
|
|
|
|
|
ztest_LDADD += $(CLOCK_GETTIME_LINK)
|
2019-12-23 18:55:51 -08:00
|
|
|
ztest_alloc_LDADD += $(CLOCK_GETTIME_LINK)
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += ztest
|
|
|
|
|
|
|
|
|
|
ztest_alloc_SOURCES = $(ztest_SOURCES)
|
|
|
|
|
ztest_alloc_CFLAGS = $(ztest_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
ztest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += ztest_alloc
|
|
|
|
|
|
libbacktrace: support zstd decompression
Support decompressing --compress-debug-sections=zstd.
* configure.ac: Check for zstd library and
--compress-debug-sections=zstd linker option.
* Makefile.am (zstdtest_*): New targets.
(zstdtest_alloc_*, ctestzstd_*): New targets.
(BUILDTESTS): Add zstdtest, zstdtest_alloc, ctestzstd as
appropriate.
* elf.c (ELFCOMPRESS_ZSTD): Define.
(elf_fetch_bits): Rename from elf_zlib_fetch. Update uses.
(elf_fetch_bits_backward): New static function.
(ZLIB_HUFFMAN_*): Rename from HUFFMAN_*. Update uses.
(ZLIB_TABLE_*): Rename from ZDEBUG_TABLE_*. Update uses.
(ZSTD_TABLE_*): Define.
(struct elf_zstd_fse_entry): Define.
(elf_zstd_read_fse): New static function.
(elf_zstd_build_fse): Likewise.
(lit): Define if BACKTRACE_GENERATE_ZSTD_FSE_TABLES.
(match, offset, next, print_table, main): Likewise.
(elf_zstd_lit_table): New static const array.
(elf_zstd_match_table, elf_zstd_offset_table): Likewise.
(elf_zstd_read_huff): New static function.
(struct elf_zstd_seq_decode): Define.
(elf_zstd_unpack_seq_decode): New static function.
(ZSTD_LIT_*): Define.
(struct elf_zstd_literals): Define.
(elf_zstd_literal_output): New static function.
(ZSTD_LITERAL_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_literal_length_baseline): New static const array.
(elf_zstd_literal_length_bits): Likewise.
(ZSTD_MATCH_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_match_length_baseline): New static const array.
(elf_zstd_match_length_bits): Likewise.
(elf_zstd_decompress): New static function.
(ZDEBUG_TABLE_SIZE): New definition.
(elf_uncompress_chdr): Support ELF_COMPRESS_ZSTD.
(backtrace_uncompress_zstd): New function.
(elf_add): Use ZLIB_TABLE_SIZE for zlib-gnu sections.
* internal.h (backtrace_uncompress_zstd): Declare.
* zstdtest.c: New file.
* configure, config.h.in, Makefile.in: Regenerate.
2022-12-07 16:21:26 -08:00
|
|
|
zstdtest_SOURCES = zstdtest.c testlib.c
|
|
|
|
|
zstdtest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -DSRCDIR=\"$(srcdir)\"
|
2024-03-02 13:11:07 -08:00
|
|
|
zstdtest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
libbacktrace: support zstd decompression
Support decompressing --compress-debug-sections=zstd.
* configure.ac: Check for zstd library and
--compress-debug-sections=zstd linker option.
* Makefile.am (zstdtest_*): New targets.
(zstdtest_alloc_*, ctestzstd_*): New targets.
(BUILDTESTS): Add zstdtest, zstdtest_alloc, ctestzstd as
appropriate.
* elf.c (ELFCOMPRESS_ZSTD): Define.
(elf_fetch_bits): Rename from elf_zlib_fetch. Update uses.
(elf_fetch_bits_backward): New static function.
(ZLIB_HUFFMAN_*): Rename from HUFFMAN_*. Update uses.
(ZLIB_TABLE_*): Rename from ZDEBUG_TABLE_*. Update uses.
(ZSTD_TABLE_*): Define.
(struct elf_zstd_fse_entry): Define.
(elf_zstd_read_fse): New static function.
(elf_zstd_build_fse): Likewise.
(lit): Define if BACKTRACE_GENERATE_ZSTD_FSE_TABLES.
(match, offset, next, print_table, main): Likewise.
(elf_zstd_lit_table): New static const array.
(elf_zstd_match_table, elf_zstd_offset_table): Likewise.
(elf_zstd_read_huff): New static function.
(struct elf_zstd_seq_decode): Define.
(elf_zstd_unpack_seq_decode): New static function.
(ZSTD_LIT_*): Define.
(struct elf_zstd_literals): Define.
(elf_zstd_literal_output): New static function.
(ZSTD_LITERAL_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_literal_length_baseline): New static const array.
(elf_zstd_literal_length_bits): Likewise.
(ZSTD_MATCH_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_match_length_baseline): New static const array.
(elf_zstd_match_length_bits): Likewise.
(elf_zstd_decompress): New static function.
(ZDEBUG_TABLE_SIZE): New definition.
(elf_uncompress_chdr): Support ELF_COMPRESS_ZSTD.
(backtrace_uncompress_zstd): New function.
(elf_add): Use ZLIB_TABLE_SIZE for zlib-gnu sections.
* internal.h (backtrace_uncompress_zstd): Declare.
* zstdtest.c: New file.
* configure, config.h.in, Makefile.in: Regenerate.
2022-12-07 16:21:26 -08:00
|
|
|
zstdtest_LDADD = libbacktrace.la
|
|
|
|
|
zstdtest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
if HAVE_ZSTD
|
|
|
|
|
zstdtest_LDADD += -lzstd
|
|
|
|
|
zstdtest_alloc_LDADD += -lzstd
|
|
|
|
|
endif
|
|
|
|
|
zstdtest_LDADD += $(CLOCK_GETTIME_LINK)
|
|
|
|
|
zstdtest_alloc_LDADD += $(CLOCK_GETTIME_LINK)
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += zstdtest
|
|
|
|
|
|
|
|
|
|
zstdtest_alloc_SOURCES = $(zstdtest_SOURCES)
|
|
|
|
|
zstdtest_alloc_CFLAGS = $(zstdtest_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
zstdtest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
libbacktrace: support zstd decompression
Support decompressing --compress-debug-sections=zstd.
* configure.ac: Check for zstd library and
--compress-debug-sections=zstd linker option.
* Makefile.am (zstdtest_*): New targets.
(zstdtest_alloc_*, ctestzstd_*): New targets.
(BUILDTESTS): Add zstdtest, zstdtest_alloc, ctestzstd as
appropriate.
* elf.c (ELFCOMPRESS_ZSTD): Define.
(elf_fetch_bits): Rename from elf_zlib_fetch. Update uses.
(elf_fetch_bits_backward): New static function.
(ZLIB_HUFFMAN_*): Rename from HUFFMAN_*. Update uses.
(ZLIB_TABLE_*): Rename from ZDEBUG_TABLE_*. Update uses.
(ZSTD_TABLE_*): Define.
(struct elf_zstd_fse_entry): Define.
(elf_zstd_read_fse): New static function.
(elf_zstd_build_fse): Likewise.
(lit): Define if BACKTRACE_GENERATE_ZSTD_FSE_TABLES.
(match, offset, next, print_table, main): Likewise.
(elf_zstd_lit_table): New static const array.
(elf_zstd_match_table, elf_zstd_offset_table): Likewise.
(elf_zstd_read_huff): New static function.
(struct elf_zstd_seq_decode): Define.
(elf_zstd_unpack_seq_decode): New static function.
(ZSTD_LIT_*): Define.
(struct elf_zstd_literals): Define.
(elf_zstd_literal_output): New static function.
(ZSTD_LITERAL_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_literal_length_baseline): New static const array.
(elf_zstd_literal_length_bits): Likewise.
(ZSTD_MATCH_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_match_length_baseline): New static const array.
(elf_zstd_match_length_bits): Likewise.
(elf_zstd_decompress): New static function.
(ZDEBUG_TABLE_SIZE): New definition.
(elf_uncompress_chdr): Support ELF_COMPRESS_ZSTD.
(backtrace_uncompress_zstd): New function.
(elf_add): Use ZLIB_TABLE_SIZE for zlib-gnu sections.
* internal.h (backtrace_uncompress_zstd): Declare.
* zstdtest.c: New file.
* configure, config.h.in, Makefile.in: Regenerate.
2022-12-07 16:21:26 -08:00
|
|
|
|
|
|
|
|
BUILDTESTS += zstdtest_alloc
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
endif HAVE_ELF
|
2018-01-12 13:26:02 -05:00
|
|
|
|
|
|
|
|
edtest_SOURCES = edtest.c edtest2_build.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
edtest_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
edtest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
edtest_LDADD = libbacktrace.la
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += edtest
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += edtest.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
edtest_alloc_SOURCES = $(edtest_SOURCES)
|
2020-02-18 18:49:42 -08:00
|
|
|
edtest_alloc_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
edtest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
edtest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += edtest_alloc.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += edtest_alloc
|
2018-01-12 13:26:02 -05:00
|
|
|
|
|
|
|
|
edtest2_build.c: gen_edtest2_build; @true
|
|
|
|
|
gen_edtest2_build: $(srcdir)/edtest2.c
|
|
|
|
|
cat $(srcdir)/edtest2.c > tmp-edtest2_build.c
|
|
|
|
|
$(SHELL) $(srcdir)/move-if-change tmp-edtest2_build.c edtest2_build.c
|
|
|
|
|
echo timestamp > $@
|
|
|
|
|
|
|
|
|
|
if HAVE_PTHREAD
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += ttest
|
2018-01-12 13:26:02 -05:00
|
|
|
|
|
|
|
|
ttest_SOURCES = ttest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
ttest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -pthread
|
2024-03-02 13:11:07 -08:00
|
|
|
ttest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
ttest_LDADD = libbacktrace.la
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += ttest.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
BUILDTESTS += ttest_alloc
|
|
|
|
|
|
|
|
|
|
ttest_alloc_SOURCES = $(ttest_SOURCES)
|
|
|
|
|
ttest_alloc_CFLAGS = $(ttest_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
ttest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
ttest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += ttest_alloc.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
endif HAVE_PTHREAD
|
|
|
|
|
|
|
|
|
|
if HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
2024-02-29 19:44:19 -08:00
|
|
|
MAKETESTS += btest_gnudebuglink btest_gnudebuglinkfull
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
%_gnudebuglink: %
|
|
|
|
|
$(OBJCOPY) --only-keep-debug $< $@.debug
|
|
|
|
|
$(OBJCOPY) --strip-debug --add-gnu-debuglink=$@.debug $< $@
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2024-02-29 19:44:19 -08:00
|
|
|
%_gnudebuglinkfull: %
|
|
|
|
|
$(OBJCOPY) --only-keep-debug $< $@.debug
|
|
|
|
|
$(OBJCOPY) --strip-all --add-gnu-debuglink=$@.debug $< $@
|
|
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
endif HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
%_buildid: %
|
|
|
|
|
./install-debuginfo-for-buildid.sh \
|
|
|
|
|
"$(TEST_BUILD_ID_DIR)" \
|
|
|
|
|
$<
|
|
|
|
|
$(OBJCOPY) --strip-debug $< $@
|
|
|
|
|
|
2024-02-29 19:44:19 -08:00
|
|
|
%_buildidfull: %
|
|
|
|
|
./install-debuginfo-for-buildid.sh \
|
|
|
|
|
"$(TEST_BUILD_ID_DIR)" \
|
|
|
|
|
$<
|
|
|
|
|
$(OBJCOPY) --strip-all $< $@
|
|
|
|
|
|
2024-04-23 10:17:03 -07:00
|
|
|
if HAVE_COMPRESSED_DEBUG_ZLIB_GNU
|
2018-01-12 13:26:02 -05:00
|
|
|
|
|
|
|
|
ctestg_SOURCES = btest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
ctestg_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
ctestg_LDFLAGS = -Wl,--compress-debug-sections=zlib-gnu $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
ctestg_LDADD = libbacktrace.la
|
|
|
|
|
|
2024-04-23 10:17:03 -07:00
|
|
|
ctestg_alloc_SOURCES = $(ctestg_SOURCES)
|
|
|
|
|
ctestg_alloc_CFLAGS = $(ctestg_CFLAGS)
|
|
|
|
|
ctestg_alloc_LDFLAGS = $(ctestg_LDFLAGS) $(libbacktrace_testing_ldflags)
|
|
|
|
|
ctestg_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += ctestg ctestg_alloc
|
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_COMPRESSED_DEBUG_ZLIB_GABI
|
|
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
ctesta_SOURCES = btest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
ctesta_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
ctesta_LDFLAGS = -Wl,--compress-debug-sections=zlib-gabi $(libbacktrace_testing_ldflags)
|
2018-01-12 13:26:02 -05:00
|
|
|
ctesta_LDADD = libbacktrace.la
|
|
|
|
|
|
2024-04-23 10:17:03 -07:00
|
|
|
ctesta_alloc_SOURCES = $(ctesta_SOURCES)
|
|
|
|
|
ctesta_alloc_CFLAGS = $(ctesta_CFLAGS)
|
|
|
|
|
ctesta_alloc_LDFLAGS = $(ctesta_LDFLAGS) $(libbacktrace_testing_ldflags)
|
|
|
|
|
ctesta_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += ctesta ctesta_alloc
|
|
|
|
|
|
|
|
|
|
endif
|
2019-12-23 18:55:51 -08:00
|
|
|
|
libbacktrace: support zstd decompression
Support decompressing --compress-debug-sections=zstd.
* configure.ac: Check for zstd library and
--compress-debug-sections=zstd linker option.
* Makefile.am (zstdtest_*): New targets.
(zstdtest_alloc_*, ctestzstd_*): New targets.
(BUILDTESTS): Add zstdtest, zstdtest_alloc, ctestzstd as
appropriate.
* elf.c (ELFCOMPRESS_ZSTD): Define.
(elf_fetch_bits): Rename from elf_zlib_fetch. Update uses.
(elf_fetch_bits_backward): New static function.
(ZLIB_HUFFMAN_*): Rename from HUFFMAN_*. Update uses.
(ZLIB_TABLE_*): Rename from ZDEBUG_TABLE_*. Update uses.
(ZSTD_TABLE_*): Define.
(struct elf_zstd_fse_entry): Define.
(elf_zstd_read_fse): New static function.
(elf_zstd_build_fse): Likewise.
(lit): Define if BACKTRACE_GENERATE_ZSTD_FSE_TABLES.
(match, offset, next, print_table, main): Likewise.
(elf_zstd_lit_table): New static const array.
(elf_zstd_match_table, elf_zstd_offset_table): Likewise.
(elf_zstd_read_huff): New static function.
(struct elf_zstd_seq_decode): Define.
(elf_zstd_unpack_seq_decode): New static function.
(ZSTD_LIT_*): Define.
(struct elf_zstd_literals): Define.
(elf_zstd_literal_output): New static function.
(ZSTD_LITERAL_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_literal_length_baseline): New static const array.
(elf_zstd_literal_length_bits): Likewise.
(ZSTD_MATCH_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_match_length_baseline): New static const array.
(elf_zstd_match_length_bits): Likewise.
(elf_zstd_decompress): New static function.
(ZDEBUG_TABLE_SIZE): New definition.
(elf_uncompress_chdr): Support ELF_COMPRESS_ZSTD.
(backtrace_uncompress_zstd): New function.
(elf_add): Use ZLIB_TABLE_SIZE for zlib-gnu sections.
* internal.h (backtrace_uncompress_zstd): Declare.
* zstdtest.c: New file.
* configure, config.h.in, Makefile.in: Regenerate.
2022-12-07 16:21:26 -08:00
|
|
|
if HAVE_COMPRESSED_DEBUG_ZSTD
|
|
|
|
|
|
|
|
|
|
ctestzstd_SOURCES = btest.c testlib.c
|
|
|
|
|
ctestzstd_CFLAGS = $(libbacktrace_TEST_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
ctestzstd_LDFLAGS = -Wl,--compress-debug-sections=zstd $(libbacktrace_testing_ldflags)
|
libbacktrace: support zstd decompression
Support decompressing --compress-debug-sections=zstd.
* configure.ac: Check for zstd library and
--compress-debug-sections=zstd linker option.
* Makefile.am (zstdtest_*): New targets.
(zstdtest_alloc_*, ctestzstd_*): New targets.
(BUILDTESTS): Add zstdtest, zstdtest_alloc, ctestzstd as
appropriate.
* elf.c (ELFCOMPRESS_ZSTD): Define.
(elf_fetch_bits): Rename from elf_zlib_fetch. Update uses.
(elf_fetch_bits_backward): New static function.
(ZLIB_HUFFMAN_*): Rename from HUFFMAN_*. Update uses.
(ZLIB_TABLE_*): Rename from ZDEBUG_TABLE_*. Update uses.
(ZSTD_TABLE_*): Define.
(struct elf_zstd_fse_entry): Define.
(elf_zstd_read_fse): New static function.
(elf_zstd_build_fse): Likewise.
(lit): Define if BACKTRACE_GENERATE_ZSTD_FSE_TABLES.
(match, offset, next, print_table, main): Likewise.
(elf_zstd_lit_table): New static const array.
(elf_zstd_match_table, elf_zstd_offset_table): Likewise.
(elf_zstd_read_huff): New static function.
(struct elf_zstd_seq_decode): Define.
(elf_zstd_unpack_seq_decode): New static function.
(ZSTD_LIT_*): Define.
(struct elf_zstd_literals): Define.
(elf_zstd_literal_output): New static function.
(ZSTD_LITERAL_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_literal_length_baseline): New static const array.
(elf_zstd_literal_length_bits): Likewise.
(ZSTD_MATCH_LENGTH_BASELINE_OFFSET): Define.
(elf_zstd_match_length_baseline): New static const array.
(elf_zstd_match_length_bits): Likewise.
(elf_zstd_decompress): New static function.
(ZDEBUG_TABLE_SIZE): New definition.
(elf_uncompress_chdr): Support ELF_COMPRESS_ZSTD.
(backtrace_uncompress_zstd): New function.
(elf_add): Use ZLIB_TABLE_SIZE for zlib-gnu sections.
* internal.h (backtrace_uncompress_zstd): Declare.
* zstdtest.c: New file.
* configure, config.h.in, Makefile.in: Regenerate.
2022-12-07 16:21:26 -08:00
|
|
|
ctestzstd_LDADD = libbacktrace.la
|
|
|
|
|
|
2024-04-23 10:17:03 -07:00
|
|
|
ctestzstd_alloc_SOURCES = $(ctestzstd_SOURCES)
|
|
|
|
|
ctestzstd_alloc_CFLAGS = $(ctestzstd_CFLAGS)
|
|
|
|
|
ctestzstd_alloc_LDFLAGS = $(ctestzstd_LDFLAGS) $(libbacktrace_testing_ldflags)
|
|
|
|
|
ctestzstd_alloc_LDADD = libbacktrace_alloc.la
|
2019-12-23 18:55:51 -08:00
|
|
|
|
2024-04-23 10:17:03 -07:00
|
|
|
BUILDTESTS += ctestzstd ctestzstd_alloc
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
if HAVE_DWARF5
|
|
|
|
|
|
|
|
|
|
dwarf5_SOURCES = btest.c testlib.c
|
2020-02-18 18:49:42 -08:00
|
|
|
dwarf5_CFLAGS = $(libbacktrace_TEST_CFLAGS) -gdwarf-5
|
2024-03-02 13:11:07 -08:00
|
|
|
dwarf5_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
dwarf5_LDADD = libbacktrace.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += dwarf5
|
|
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += dwarf5.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
dwarf5_alloc_SOURCES = $(dwarf5_SOURCES)
|
|
|
|
|
dwarf5_alloc_CFLAGS = $(dwarf5_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
dwarf5_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
2019-12-23 18:55:51 -08:00
|
|
|
dwarf5_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += dwarf5_alloc
|
2018-01-12 13:26:02 -05:00
|
|
|
|
2020-09-28 13:47:25 -07:00
|
|
|
if USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
check_DATA += dwarf5_alloc.dSYM
|
2020-09-28 13:47:25 -07:00
|
|
|
endif USE_DSYMUTIL
|
2020-02-18 18:57:14 -08:00
|
|
|
|
2018-01-12 13:26:02 -05:00
|
|
|
endif
|
|
|
|
|
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
mtest_SOURCES = mtest.c testlib.c
|
|
|
|
|
mtest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -O
|
2024-03-02 13:11:07 -08:00
|
|
|
mtest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
mtest_LDADD = libbacktrace.la
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += mtest
|
|
|
|
|
|
2020-09-28 13:57:18 -07:00
|
|
|
if USE_DSYMUTIL
|
|
|
|
|
check_DATA += mtest.dSYM
|
|
|
|
|
endif USE_DSYMUTIL
|
|
|
|
|
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
if HAVE_MINIDEBUG
|
|
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
MAKETESTS += mtest_minidebug
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
|
|
|
|
|
%_minidebug: %
|
|
|
|
|
$(NM) -D $< -P --defined-only | $(AWK) '{ print $$1 }' | sort > $<.dsyms
|
|
|
|
|
$(NM) $< -P --defined-only | $(AWK) '{ if ($$2 == "T" || $$2 == "t" || $$2 == "D") print $$1 }' | sort > $<.fsyms
|
|
|
|
|
$(COMM) -13 $<.dsyms $<.fsyms > $<.keepsyms
|
|
|
|
|
$(OBJCOPY) --only-keep-debug $< $<.dbg
|
|
|
|
|
$(OBJCOPY) -S --remove-section .gdb_index --remove-section .comment --keep-symbols=$<.keepsyms $<.dbg $<.mdbg
|
|
|
|
|
$(OBJCOPY) --strip-all --remove-section ..comment $< $<.strip
|
|
|
|
|
rm -f $<.mdbg.xz
|
|
|
|
|
$(XZ) $<.mdbg
|
|
|
|
|
$(OBJCOPY) --add-section .gnu_debugdata=$<.mdbg.xz $<.strip
|
|
|
|
|
mv $<.strip $@
|
|
|
|
|
|
2024-07-11 19:36:00 -07:00
|
|
|
if HAVE_ELF
|
|
|
|
|
if HAVE_BUILDID
|
|
|
|
|
if HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
|
|
|
|
|
m2test_SOURCES = $(mtest_SOURCES)
|
|
|
|
|
m2test_CFLAGS = $(libbacktrace_TEST_CFLAGS) -O
|
|
|
|
|
m2test_LDFLAGS = -Wl,--build-id $(libbacktrace_testing_ldflags)
|
|
|
|
|
m2test_LDADD = libbacktrace_elf_for_test.la
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS += m2test
|
|
|
|
|
MAKETESTS += m2test_minidebug2
|
|
|
|
|
|
|
|
|
|
# minidebug2 is like minidebug but also adds the gnu_debugdata section
|
|
|
|
|
# to the debug file, and uses a build ID file. There is no reason to do
|
|
|
|
|
# this but it was causing an infinite recursion.
|
|
|
|
|
%_minidebug2: %
|
|
|
|
|
$(NM) -D $< -P --defined-only | $(AWK) '{ print $$1 }' | sort > $<.dsyms2
|
|
|
|
|
$(NM) $< -P --defined-only | $(AWK) '{ if ($$2 == "T" || $$2 == "t" || $$2 == "D") print $$1 }' | sort > $<.fsyms2
|
|
|
|
|
$(COMM) -13 $<.dsyms2 $<.fsyms2 > $<.keepsyms2
|
|
|
|
|
$(OBJCOPY) --only-keep-debug $< $<.dbg2
|
|
|
|
|
$(OBJCOPY) -S --remove-section .gdb_index --remove-section .comment --keep-symbols=$<.keepsyms2 $<.dbg2 $<.mdbg2
|
|
|
|
|
$(OBJCOPY) --strip-all --remove-section ..comment $< $<.strip2
|
|
|
|
|
rm -f $<.mdbg2.xz
|
|
|
|
|
$(XZ) $<.mdbg2
|
|
|
|
|
$(OBJCOPY) --add-section .gnu_debugdata=$<.mdbg2.xz $<.dbg2
|
|
|
|
|
$(OBJCOPY) --add-section .gnu_debugdata=$<.mdbg2.xz $<.strip2
|
|
|
|
|
$(SHELL) ./install-debuginfo-for-buildid.sh $(TEST_BUILD_ID_DIR) $<.dbg2
|
|
|
|
|
mv $<.strip2 $@
|
|
|
|
|
|
|
|
|
|
endif HAVE_OBJCOPY_DEBUGLINK
|
|
|
|
|
endif HAVE_BUILDID
|
|
|
|
|
endif HAVE_ELF
|
|
|
|
|
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
endif HAVE_MINIDEBUG
|
|
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
endif NATIVE
|
|
|
|
|
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
if HAVE_ELF
|
|
|
|
|
|
|
|
|
|
xztest_SOURCES = xztest.c testlib.c
|
|
|
|
|
xztest_CFLAGS = $(libbacktrace_TEST_CFLAGS) -DSRCDIR=\"$(srcdir)\"
|
2024-03-02 13:11:07 -08:00
|
|
|
xztest_LDFLAGS = $(libbacktrace_testing_ldflags)
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
xztest_LDADD = libbacktrace.la
|
|
|
|
|
|
|
|
|
|
xztest_alloc_SOURCES = $(xztest_SOURCES)
|
|
|
|
|
xztest_alloc_CFLAGS = $(xztest_CFLAGS)
|
2024-03-02 13:11:07 -08:00
|
|
|
xztest_alloc_LDFLAGS = $(libbacktrace_testing_ldflags)
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
xztest_alloc_LDADD = libbacktrace_alloc.la
|
|
|
|
|
|
|
|
|
|
if HAVE_LIBLZMA
|
|
|
|
|
xztest_LDADD += -llzma
|
|
|
|
|
xztest_alloc_LDADD += -llzma
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
xztest_LDADD += $(CLOCK_GETTIME_LINK)
|
|
|
|
|
xztest_alloc_LDADD += $(CLOCK_GETTIME_LINK)
|
|
|
|
|
|
|
|
|
|
BUILDTESTS += xztest xztest_alloc
|
|
|
|
|
|
|
|
|
|
endif HAVE_ELF
|
|
|
|
|
|
2019-12-23 18:55:51 -08:00
|
|
|
check_PROGRAMS += $(BUILDTESTS)
|
|
|
|
|
|
2022-07-07 16:13:57 -07:00
|
|
|
TESTS += $(MAKETESTS) $(BUILDTESTS)
|
2019-12-23 18:55:51 -08:00
|
|
|
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
CLEANFILES = \
|
2022-07-07 16:13:57 -07:00
|
|
|
$(MAKETESTS) $(BUILDTESTS) *.debug elf_for_test.c edtest2_build.c \
|
|
|
|
|
gen_edtest2_build \
|
2024-07-11 19:36:00 -07:00
|
|
|
*.dsyms *.fsyms *.keepsyms *.dbg *.mdbg *.mdbg.xz *.strip \
|
|
|
|
|
*.dsyms2 *.fsyms2 *.keepsyms2 *.dbg2 *.mdbg2 *.mdbg2.xz *.strip2
|
2019-12-23 18:55:51 -08:00
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
|
-rm -rf usr
|
|
|
|
|
|
2016-09-10 07:59:09 -07:00
|
|
|
# We can't use automake's automatic dependency tracking, because it
|
|
|
|
|
# breaks when using bootstrap-lean. Automatic dependency tracking
|
|
|
|
|
# with GCC bootstrap will cause some of the objects to depend on
|
|
|
|
|
# header files in prev-gcc/include, e.g., stddef.h and stdarg.h. When
|
|
|
|
|
# using bootstrap-lean, prev-gcc is removed after each stage. When
|
|
|
|
|
# running "make install", those header files will be gone, causing the
|
|
|
|
|
# library to be rebuilt at install time. That may not succeed.
|
|
|
|
|
|
|
|
|
|
# These manual dependencies do not include dependencies on unwind.h,
|
|
|
|
|
# even though that is part of GCC, because where to find it depends on
|
|
|
|
|
# whether we are being built as a host library or a target library.
|
|
|
|
|
|
|
|
|
|
alloc.lo: config.h backtrace.h internal.h
|
|
|
|
|
backtrace.lo: config.h backtrace.h internal.h
|
2019-12-23 18:55:51 -08:00
|
|
|
btest.lo: filenames.h backtrace.h backtrace-supported.h
|
2018-01-12 13:26:02 -05:00
|
|
|
dwarf.lo: config.h filenames.h backtrace.h internal.h
|
2016-09-10 07:59:09 -07:00
|
|
|
elf.lo: config.h backtrace.h internal.h
|
|
|
|
|
fileline.lo: config.h backtrace.h internal.h
|
2020-02-18 18:57:14 -08:00
|
|
|
macho.lo: config.h backtrace.h internal.h
|
2016-09-10 07:59:09 -07:00
|
|
|
mmap.lo: config.h backtrace.h internal.h
|
|
|
|
|
mmapio.lo: config.h backtrace.h internal.h
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
mtest.lo: backtrace.h backtrace-supported.h
|
2016-09-10 07:59:09 -07:00
|
|
|
nounwind.lo: config.h internal.h
|
|
|
|
|
pecoff.lo: config.h backtrace.h internal.h
|
|
|
|
|
posix.lo: config.h backtrace.h internal.h
|
|
|
|
|
print.lo: config.h backtrace.h internal.h
|
|
|
|
|
read.lo: config.h backtrace.h internal.h
|
|
|
|
|
simple.lo: config.h backtrace.h internal.h
|
|
|
|
|
sort.lo: config.h backtrace.h internal.h
|
|
|
|
|
stest.lo: config.h backtrace.h internal.h
|
|
|
|
|
state.lo: config.h backtrace.h backtrace-supported.h internal.h
|
|
|
|
|
unknown.lo: config.h backtrace.h internal.h
|
2024-07-16 21:27:05 -07:00
|
|
|
xcoff_32.lo: config.h backtrace.h internal.h
|
|
|
|
|
xcoff_64.lo: config.h backtrace.h internal.h
|
libbacktrace: support MiniDebugInfo
libbacktrace/ChangeLog:
PR libbacktrace/93608
Add support for MiniDebugInfo.
* elf.c (struct elf_view): Define. Replace most uses of
backtrace_view with elf_view.
(elf_get_view): New static functions. Replace most calls of
backtrace_get_view with elf_get_view.
(elf_release_view): New static functions. Replace most calls of
backtrace_release_view with elf_release_view.
(elf_uncompress_failed): Rename from elf_zlib_failed. Change all
callers.
(LZMA_STATES, LZMA_POS_STATES, LZMA_DIST_STATES): Define.
(LZMA_DIST_SLOTS, LZMA_DIST_MODEL_START): Define.
(LZMA_DIST_MODEL_END, LZMA_FULL_DISTANCES): Define.
(LZMA_ALIGN_SIZE, LZMA_LEN_LOW_SYMBOLS): Define.
(LZMA_LEN_MID_SYMBOLS, LZMA_LEN_HIGH_SYMBOLS): Define.
(LZMA_LITERAL_CODERS_MAX, LZMA_LITERAL_CODER_SIZE): Define.
(LZMA_PROB_IS_MATCH_LEN, LZMA_PROB_IS_REP_LEN): Define.
(LZMA_PROB_IS_REP0_LEN, LZMA_PROB_IS_REP1_LEN): Define.
(LZMA_PROB_IS_REP2_LEN, LZMA_PROB_IS_REP0_LONG_LEN): Define.
(LZMA_PROB_DIST_SLOT_LEN, LZMA_PROB_DIST_SPECIAL_LEN): Define.
(LZMA_PROB_DIST_ALIGN_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_LEN): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_MATCH_LEN_LOW_LEN): Define.
(LZMA_PROB_MATCH_LEN_MID_LEN): Define.
(LZMA_PROB_MATCH_LEN_HIGH_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE_LEN): Define.
(LZMA_PROB_REP_LEN_CHOICE2_LEN): Define.
(LZMA_PROB_REP_LEN_LOW_LEN): Define.
(LZMA_PROB_REP_LEN_MID_LEN): Define.
(LZMA_PROB_REP_LEN_HIGH_LEN): Define.
(LZMA_PROB_LITERAL_LEN): Define.
(LZMA_PROB_IS_MATCH_OFFSET, LZMA_PROB_IS_REP_OFFSET): Define.
(LZMA_PROB_IS_REP0_OFFSET, LZMA_PROB_IS_REP1_OFFSET): Define.
(LZMA_PROB_IS_REP2_OFFSET): Define.
(LZMA_PROB_IS_REP0_LONG_OFFSET): Define.
(LZMA_PROB_DIST_SLOT_OFFSET): Define.
(LZMA_PROB_DIST_SPECIAL_OFFSET): Define.
(LZMA_PROB_DIST_ALIGN_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_LOW_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_MID_OFFSET): Define.
(LZMA_PROB_MATCH_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE_OFFSET): Define.
(LZMA_PROB_REP_LEN_CHOICE2_OFFSET): Define.
(LZMA_PROB_REP_LEN_LOW_OFFSET): Define.
(LZMA_PROB_REP_LEN_MID_OFFSET): Define.
(LZMA_PROB_REP_LEN_HIGH_OFFSET): Define.
(LZMA_PROB_LITERAL_OFFSET): Define.
(LZMA_PROB_TOTAL_COUNT): Define.
(LZMA_IS_MATCH, LZMA_IS_REP, LZMA_IS_REP0): Define.
(LZMA_IS_REP1, LZMA_IS_REP2, LZMA_IS_REP0_LONG): Define.
(LZMA_DIST_SLOT, LZMA_DIST_SPECIAL, LZMA_DIST_ALIGN): Define.
(LZMA_MATCH_LEN_CHOICE, LZMA_MATCH_LEN_CHOICE2): Define.
(LZMA_MATCH_LEN_LOW, LZMA_MATCH_LEN_MID): Define.
(LZMA_MATCH_LEN_HIGH, LZMA_REP_LEN_CHOICE): Define.
(LZMA_REP_LEN_CHOICE2, LZMA_REP_LEN_LOW): Define.
(LZMA_REP_LEN_MID, LZMA_REP_LEN_HIGH, LZMA_LITERAL): Define.
(elf_lzma_varint): New static function.
(elf_lzma_range_normalize): New static function.
(elf_lzma_bit, elf_lzma_integer): New static functions.
(elf_lzma_reverse_integer): New static function.
(elf_lzma_len, elf_uncompress_lzma_block): New static functions.
(elf_uncompress_lzma): New static function.
(backtrace_uncompress_lzma): New function.
(elf_add): Add memory and memory_size parameters. Change all
callers. Look for .gnu_debugdata section, and, if found,
decompress it and use it for symbols and debug info. Permit the
descriptor parameter to be -1.
* internal.h (backtrace_uncompress_lzma): Declare.
* mtest.c: New file.
* xztest.c: New file.
* configure.ac: Check for nm, xz, and comm programs. Check for
liblzma library.
(HAVE_MINIDEBUG): Define.
* Makefile.am (mtest_SOURCES): Define.
(mtest_CFLAGS, mtest_LDADD): Define.
(TESTS): Add mtest_minidebug if HAVE_MINIDEBUG.
(%_minidebug): New pattern rule, if HAVE_MINIDEBUG.
(xztest_SOURCES, xztest_CFLAGS, xztest_LDADD): Define.
(xztest_alloc_SOURCES, xztest_alloc_CFLAGS): Define
(xztest_alloc_LDADD): Define.
(BUILDTESTS): Add mtest, xztest, xztest_alloc.
(CLEANFILES): Add files created by minidebug pattern.
(btest.lo): Correct INCDIR reference.
(mtest.lo, xztest.lo, ztest.lo): New targets.
* configure: Regenerate.
* config.h.in: Regenerate.
* Makefile.in: Regenerate.
Close #38
2020-09-14 14:01:56 -07:00
|
|
|
xztest.lo: config.h backtrace.h backtrace-supported.h internal.h testlib.h
|
|
|
|
|
ztest.lo: config.h backtrace.h backtrace-supported.h internal.h testlib.h
|
2018-01-12 13:26:02 -05:00
|
|
|
|