- Fix SLE-11 build. Gdb 9.1 requires make 3.82, but SLE-11 has make 3.81: * gdbserver-fix-build-with-make-3.81.patch - Fix patch context: * gdb-fix-the-thread-pool.c-compilation.patch - Fix build error due to missing DIAGNOSTIC_IGNORE_UNUSED_FUNCTION. * gdb-fix-the-thread-pool.c-compilation.patch - Drop ChangeLog part of patch: * gdb-fix-unused-function-error.patch - Fix Werror=unused-function with gcc 4.8 (for Leap 42.3). * gdb-fix-unused-function-error.patch - Require %{suse_version} >= 1500 for --with-system-readline. - Rebase to 9.1 release (as in fedora 32 @ 1735910). * Breakpoints on nested functions and subroutines in Fortran. * Multithreaded symbol loading, disabled by default. Enable using 'maint set worker-threads unlimited'. * Multi-target debugging support. * New command pipe. * New command set logging debugredirect [on|off]. * New fortran commands info modules, info module functions, info module variables. - Fedora-specific patches dropped: * gdb-libexec-add-index.patch * gdb-6.3-rh-testversion-20041202.patch * gdb-6.6-buildid-locate-misleading-warning-missing-debuginfo-rhbz981154.patch - Obsoleted fedora patches dropped: * gdb-6.5-bz216711-clone-is-outermost.patch * gdb-6.6-scheduler_locking-step-is-default.patch * gdb-6.8-bz436037-reg-no-longer-active.patch * gdb-bz541866-rwatch-before-run.patch * gdb-bz568248-oom-is-error.patch * gdb-follow-child-stale-parent.patch * gdb-readline62-ask-more-rh.patch * gdb-rhbz1371380-gcore-elf-headers.patch * gdb-rhbz1553086-binutils-warning-loadable-section-outside-elf.patch * gdb-rhbz1704406-disable-style-log-output-1of3.patch * gdb-rhbz1704406-disable-style-log-output-2of3.patch * gdb-rhbz1704406-disable-style-log-output-3of3.patch * gdb-rhbz1708192-parse_macro_definition-crash.patch * gdb-rhbz1723564-gdb-crash-PYTHONMALLOC-debug.patch * gdb-rhbz795424-bitpos-20of25.patch * gdb-rhbz795424-bitpos-21of25.patch * gdb-rhbz795424-bitpos-22of25.patch * gdb-rhbz795424-bitpos-23of25.patch * gdb-rhbz795424-bitpos-25of25-test.patch * gdb-rhbz795424-bitpos-25of25.patch * gdb-rhbz795424-bitpos-arrayview.patch * gdb-rhbz795424-bitpos-lazyvalue.patch * gdb-testsuite-readline63-sigint.patch - Fedora patches added: * gdb-rhbz1818011-bfd-gcc10-error.patch - Obsoleted patched dropped: * gdb-fix-s390-build.diff * gdb-fix-riscv-tdep.patch * gdb-testsuite-add-missing-initial-prompt-read-in-multidictionary.exp.patch * gdb-testsuite-pie-no-pie.patch * gdb-testsuite-read1-fixes.patch * gdb-testsuite-i386-pkru-exp.patch * gdb-s390-handle-arch13.diff * gdb-fix-heap-use-after-free-in-typename-concat.patch * gdb-dwarf-reader-reject-sections-with-invalid-sizes.patch * gdb-0001-remove-alloca-0-calls.patch * gdb-arch13-1.diff * gdb-arch13-2.diff * gdb-arch13-3.diff * bfd-change-num_group-to-unsigned-int.patch * gdb-fix-incorrect-use-of-is-operator-for-comparison-in-python-lib-gdb-command-prompt.py.patch * gdb-symtab-prefer-var-def-over-decl.patch * gdb-only-force-interp_console-ui_out-for-breakpoint-commands-in-mi-mode.patch * gdb-testsuite-8.3-kfail-xfail-unsupported.patch - Backport from master: * gdb-fix-debug-agent-odr-bool-int.patch * gdb-fix-python3.9-related-runtime-problems.patch OBS-URL: https://build.opensuse.org/request/show/822281 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=251
133 lines
4.1 KiB
Diff
133 lines
4.1 KiB
Diff
[gdb] Fix range loop index in find_method
|
|
|
|
With target board debug-types, we have:
|
|
...
|
|
FAIL: gdb.cp/cpexprs.exp: list policy1::function
|
|
...
|
|
|
|
This is a regression triggered by commit 770479f223e "gdb: Fix toplevel types
|
|
with -fdebug-types-section".
|
|
|
|
However, the FAIL is caused by commit 4dedf84da98 "Change
|
|
decode_compound_collector to use std::vector" which changes a VEC_iterate loop
|
|
into a range loop:
|
|
...
|
|
- for (ix = 0; VEC_iterate (symbolp, sym_classes, ix, sym); ++ix)
|
|
+ unsigned int ix = 0;
|
|
+ for (const auto &sym : *sym_classes)
|
|
...
|
|
but fails to ensure that the increment of ix happens every iteration.
|
|
|
|
Fix this by calculating the index variable at the start of the loop body:
|
|
...
|
|
for (const auto &elt : *sym_classes)
|
|
{
|
|
unsigned int ix = &elt - &*sym_classes->begin ();
|
|
...
|
|
|
|
Tested on x86_64-linux, with native and target board debug-types.
|
|
|
|
gdb/ChangeLog:
|
|
|
|
2020-04-29 Tom de Vries <tdevries@suse.de>
|
|
|
|
PR symtab/25889
|
|
* linespec.c (find_method): Fix ix calculation.
|
|
|
|
gdb/testsuite/ChangeLog:
|
|
|
|
2020-04-29 Tom de Vries <tdevries@suse.de>
|
|
|
|
PR symtab/25889
|
|
* gdb.cp/cpexprs.exp: Adapt for inclusion.
|
|
* gdb.cp/cpexprs-debug-types.exp: New file. Set -fdebug-types-section
|
|
and include cpexprs.exp.
|
|
|
|
---
|
|
gdb/linespec.c | 3 +--
|
|
gdb/testsuite/gdb.cp/cpexprs-debug-types.exp | 20 ++++++++++++++++++++
|
|
gdb/testsuite/gdb.cp/cpexprs.exp | 14 ++++++++++++--
|
|
5 files changed, 45 insertions(+), 4 deletions(-)
|
|
|
|
Index: gdb-9.1/gdb/linespec.c
|
|
===================================================================
|
|
--- gdb-9.1.orig/gdb/linespec.c
|
|
+++ gdb-9.1/gdb/linespec.c
|
|
@@ -3670,12 +3670,12 @@ find_method (struct linespec_state *self
|
|
because we collect data across the program space before deciding
|
|
what to do. */
|
|
last_result_len = 0;
|
|
- unsigned int ix = 0;
|
|
for (const auto &elt : *sym_classes)
|
|
{
|
|
struct type *t;
|
|
struct program_space *pspace;
|
|
struct symbol *sym = elt.symbol;
|
|
+ unsigned int ix = &elt - &*sym_classes->begin ();
|
|
|
|
/* Program spaces that are executing startup should have
|
|
been filtered out earlier. */
|
|
@@ -3706,7 +3706,6 @@ find_method (struct linespec_state *self
|
|
|
|
superclass_vec.clear ();
|
|
last_result_len = result_names.size ();
|
|
- ++ix;
|
|
}
|
|
}
|
|
|
|
Index: gdb-9.1/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ gdb-9.1/gdb/testsuite/gdb.cp/cpexprs-debug-types.exp
|
|
@@ -0,0 +1,20 @@
|
|
+# Copyright 2020 Free Software Foundation, Inc.
|
|
+#
|
|
+# 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
|
|
+
|
|
+# This file is part of the gdb testsuite.
|
|
+
|
|
+# Run cpexprs.exp with -fdebug-types-section.
|
|
+set flags {additional_flags=-fdebug-types-section}
|
|
+source $srcdir/$subdir/cpexprs.exp
|
|
Index: gdb-9.1/gdb/testsuite/gdb.cp/cpexprs.exp
|
|
===================================================================
|
|
--- gdb-9.1.orig/gdb/testsuite/gdb.cp/cpexprs.exp
|
|
+++ gdb-9.1/gdb/testsuite/gdb.cp/cpexprs.exp
|
|
@@ -685,13 +685,23 @@ if {[skip_cplus_tests]} { continue }
|
|
# test running programs
|
|
#
|
|
|
|
-standard_testfile .cc
|
|
+standard_testfile cpexprs.cc
|
|
|
|
if {[get_compiler_info "c++"]} {
|
|
return -1
|
|
}
|
|
|
|
-if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug c++}]} {
|
|
+if { [info exists flags] } {
|
|
+ # Already set externally.
|
|
+} else {
|
|
+ # Initialize to empty.
|
|
+ set flags {}
|
|
+}
|
|
+
|
|
+# Include required flags.
|
|
+set flags "$flags debug c++"
|
|
+
|
|
+if {[prepare_for_testing "failed to prepare" $testfile $srcfile "$flags"]} {
|
|
return -1
|
|
}
|
|
|