public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
[PATCHv3 00/13] Infcalls from B/P conditions in multi-threaded inferiors
 2023-02-28 16:42 UTC  (9+ messages)
` [PATCHv4 00/12] "
  ` [PATCHv4 01/12] gdb/doc: extended documentation for inferior function calls
  ` [PATCHv4 02/12] gdb: include breakpoint number in testing condition error message
  ` [PATCHv4 03/12] gdbserver: allows agent_mem_read to return an error code
  ` [PATCHv4 04/12] gdbserver: allow agent expressions to fail with invalid memory access
  ` [PATCHv4 05/12] gdb: avoid repeated signal reporting during failed conditional breakpoint
  ` [PATCHv4 06/12] gdb: don't always print breakpoint location after failed condition check
  ` [PATCHv4 07/12] Revert "gdb: remove unnecessary parameter wait_ptid from do_target_wait"

[PATCH 1/2] fix for gdb.reverse/finish-precsave.exp and gdb.reverse/finish-reverse.exp
 2023-02-28 16:19 UTC  (23+ messages)
              ` [PATCH 2/2 version 2] "
                                        ` [PATCH ] PowerPC: "
                                              ` [PING] "

[PATCH] gdb: add HtabPrinter to gdb-gdb.py.in
 2023-02-28 16:08 UTC  (5+ messages)

[PATCH] Remove OBJF_REORDERED
 2023-02-28 15:28 UTC  (3+ messages)

[pushed] [gdb/testsuite] Fix gdb.python/py-breakpoint.exp timeouts
 2023-02-28 14:50 UTC 

[PATCH] gdb: error out if architecture does not implement any "return_value" hook
 2023-02-28 14:50 UTC  (2+ messages)

[pushed] Remove value_in
 2023-02-28 14:24 UTC 

[pushed] [gdb/testsuite] Fix gdb.rust/watch.exp on ppc64le
 2023-02-28 12:32 UTC 

[PATCH 00/26] gdbserver: refactor regcache and allow gradually populating
 2023-02-28 11:28 UTC  (27+ messages)
` [PATCH 01/26] gdbserver: convert init_register_cache into regcache::initialize
` [PATCH 02/26] gdbserver: convert new_register_cache into a regcache constructor
` [PATCH 03/26] gdbserver: by-pass regcache to access tdesc only
` [PATCH 04/26] gdbserver: boolify and defaultize the 'fetch' parameter of get_thread_regcache
` [PATCH 05/26] gdbserver: add a pointer to the owner thread in regcache
` [PATCH 06/26] gdbserver: turn part of get_thread_regcache into regcache::fetch
` [PATCH 07/26] gdbserver: convert regcache_cpy into regcache::copy_from
` [PATCH 08/26] gdbserver: convert free_register_cache into a destructor of regcache
` [PATCH 09/26] gdbserver: extract out regcache::invalidate and regcache::discard
` [PATCH 10/26] gdbserver: convert registers_to_string into regcache::registers_to_string
` [PATCH 11/26] gdbserver: convert registers_from_string into regcache::registers_from_string
` [PATCH 12/26] gdbserver: convert supply_regblock to regcache::supply_regblock
` [PATCH 13/26] gdbserver: convert register_data into regcache::register_data
` [PATCH 14/26] gdbserver: introduce and use regcache::set_register_status
` [PATCH 15/26] gdbserver: check for nullptr condition in regcache::get_register_status
` [PATCH 16/26] gdbserver: boolify regcache fields
` [PATCH 17/26] gdbserver: rename regcache's registers_valid to registers_fetched
` [PATCH 18/26] gdbsupport: fix a typo in a comment in common-regcache.h
` [PATCH 19/26] gdbserver: fix the declared type of register_status in regcache
` [PATCH 20/26] gdbserver: make some regcache fields private
` [PATCH 21/26] gdbserver: use REG_UNKNOWN for a regcache's register statuses
` [PATCH 22/26] gdbserver: zero-out register values in regcache-discard
` [PATCH 23/26] gdbserver: set register statuses in registers_from_string
` [PATCH 24/26] gdbserver: return tracked register status in regcache_raw_read_unsigned
` [PATCH 25/26] gdbserver: refuse null argument in regcache::supply_regblock
` [PATCH 26/26] gdbserver: allow gradually populating and selectively storing a regcache

[PATCH 1/7] gdb/debuginfod: Add debuginfod_section_query
 2023-02-28 11:11 UTC  (9+ messages)
` [PATCH 2/7] gdb: add 'lazy' setting for command 'set debuginfod enabled'
` [PATCH 3/7] gdb/debuginfod: disable pagination during downloads
` [PATCH 4/7] gdb/ui-file: Add newline tracking
` [PATCH 5/7] gdb/debuginfod: Support on-demand debuginfo downloading
` [PATCH 6/7] gdb/testsuite/gdb.debuginfod: Add lazy downloading tests
` [PATCH 7/7] gdb/debuginfod: Add .debug_line downloading

[PATCH 0/8] Fix missing MI =breakpoint-deleted notifications
 2023-02-28 11:09 UTC  (7+ messages)
` [PATCH 6/8] gdb/testsuite: introduce is_target_non_stop helper proc

[PATCH 1/1] gdb, fortran: Fix quad floating-point type for ifort compiler
 2023-02-28 10:21 UTC  (7+ messages)

[PATCH 00/13] Remove a bunch of alloca uses
 2023-02-28  2:47 UTC  (15+ messages)
` [PATCH 01/13] gdb: remove uses of alloca from arch-utils.c
` [PATCH 02/13] gdb: remove use of alloca from auxv.c
` [PATCH 03/13] gdb: remove use of alloca from c-lang.c
` [PATCH 04/13] gdb: remove use of alloca from corefile.c
` [PATCH 05/13] gdb: remove uses of alloca from dwarf2/expr.c
` [PATCH 06/13] gdb: remove a use of alloca from elfread.c
` [PATCH 07/13] gdb: remove use of alloca from findvar.c
` [PATCH 08/13] gdb: remove use of alloca from linux-nat-trad.c
` [PATCH 09/13] gdb: remove use of alloca from mem-break.c
` [PATCH 10/13] gdb: remove some uses of alloca from printcmd.c
` [PATCH 11/13] gdb: remove some uses of alloca from remote.c
` [PATCH 12/13] gdb: remove uses of alloca from valprint.c
` [PATCH 13/13] gdb: remove a use of alloca from symfile.c

[PATCH v5 0/8] Fix gdb.base/gdb-sigterm.exp failure/error
 2023-02-27 23:22 UTC  (3+ messages)

[PATCH] Fix value chain use-after-free
 2023-02-27 22:45 UTC  (2+ messages)

[PATCH 0/3] Avoid printing global thread-id in CLI command output
 2023-02-27 19:45 UTC  (6+ messages)
` [PATCH 3/3] gdb: don't use the global thread-id in the saved breakpoints file

[PATCH 0/6] Eliminate infrun_thread_thread_exit observer
 2023-02-27 19:12 UTC  (2+ messages)

[PATCH v3 00/10] Add typing annotations to gdbarch*.py and make-target-delegates.py
 2023-02-27 18:27 UTC  (13+ messages)
` [PATCH v3 01/10] gdb: remove invalid / dead code from gdbarch.py
` [PATCH v3 02/10] gdb: reformat Python files with black 23.1.0
` [PATCH v3 03/10] gdb: gdbarch.py: spell out parameters of _Component.__init__
` [PATCH v3 04/10] gdb: gdbarch.py: remove Info.__init__
` [PATCH v3 05/10] gdb: pyproject.toml: set pyright typeCheckingMode = "strict"
` [PATCH v3 06/10] gdb: split gdbarch component types to gdbarch_types.py
` [PATCH v3 07/10] gdb: gdbarch*.py, copyright.py: add type annotations
` [PATCH v3 08/10] gdb: make-target-delegates.py: make one string raw
` [PATCH v3 09/10] gdb: make-target-delegates.py: add Entry type
` [PATCH v3 10/10] gdb: make-target-delegates.py: add type annotations

[PATCH] Fix crash with "finish" in Rust
 2023-02-27 18:05 UTC  (2+ messages)

[PATCH] Remove old GNU indent directives
 2023-02-27 18:04 UTC  (2+ messages)

[PATCH 0/2] Autogenerate gdb/syscalls/linux-defaults.xml.in (syscall groups) from strace sources
 2023-02-27 15:04 UTC  (7+ messages)
` [PATCH 1/2] Autogenerate gdb/syscalls/linux-defaults.xml.in (groups) "
` [PATCH 2/2] Regenerate Linux syscall group info

[PATCH 0/2] Add some agent expression support for Ada
 2023-02-27 15:03 UTC  (2+ messages)

[PATCH] gdb: don't treat empty enums as flag enums
 2023-02-27 14:15 UTC  (3+ messages)

[PATCH 1/1] bfd, gdb: fix missing "Core was generated by" when loading a x32 corefile
 2023-02-27 13:05 UTC  (3+ messages)
` [PING] "

[PATCH v2] gdb/testsuite: add regression test for per-objfile typeprinters
 2023-02-27 11:12 UTC 

[PATCH] gdb/testsuite: Improve testing of GDB's completion functions
 2023-02-27 10:03 UTC  (3+ messages)

[PATCH v2] gdb, python: selectively omit enabling stdin in gdb.execute exception
 2023-02-27  9:56 UTC 

[PATCH 1/2] gdb, python: do minor modernization in execute_gdb_command
 2023-02-27  9:53 UTC  (7+ messages)
` [PATCH 2/2] gdb, python: selectively omit enabling stdin in gdb.execute exception

[PATCH v2 00/10] Add typing annotations to gdbarch*.py and make-target-delegates.py
 2023-02-27  1:11 UTC  (13+ messages)
` [PATCH v2 01/10] gdb: remove invalid / dead code from gdbarch.py
` [PATCH v2 02/10] gdb: reformat Python files with black 23.1.0
` [PATCH v2 03/10] gdb: gdbarch.py: spell out parameters of _Component.__init__
` [PATCH v2 04/10] gdb: gdbarch.py: remove Info.__init__
` [PATCH v2 05/10] gdb: pyproject.toml: set pyright typeCheckingMode = "strict"
` [PATCH v2 06/10] gdb: split gdbarch component types to gdbarch_types.py
` [PATCH v2 07/10] gdb: gdbarch*.py, copyright.py: add type annotations
` [PATCH v2 08/10] gdb: make-target-delegates.py: make one string raw
` [PATCH v2 09/10] gdb: make-target-delegates.py: add Entry type
` [PATCH v2 10/10] gdb: make-target-delegates.py: add type annotations

[pushed] Remove expand_symtab_containing_pc
 2023-02-26 17:52 UTC 

[PATCH] Use styled_string when defering warnings when loading separate debug files
 2023-02-26 17:36 UTC  (4+ messages)
` [PATCH v2] "

[PATCH] [gdb/symtab] Add set/show always-read-ctf on/off
 2023-02-26  8:25 UTC  (5+ messages)

[PATCH v2] [PR python/29603] Disable out-of-scope watchpoints
 2023-02-26  6:16 UTC  (6+ messages)
` [PATCH v3] "
      ` [PING] "
        ` [RFC] "

[PATCH] gdb/arm: Fix backtrace for pthread_cond_timedwait
 2023-02-25 10:04 UTC  (12+ messages)
` [PING] "
            ` [PATCH v3] "
                ` [PATCH v4] "

[PATCH 0/9] Add typing annotations to gdbarch*.py and make-target-delegates.py
 2023-02-24 22:07 UTC  (14+ messages)
` [PATCH 1/9] gdb: remove invalid / dead code from gdbarch.py
` [PATCH 2/9] gdb: reformat Python files with black 23.1.0
` [PATCH 3/9] gdb: gdbarch.py: spell out parameters of _Component.__init__
` [PATCH 4/9] gdb: pyproject.toml: set pyright typeCheckingMode = "strict"
` [PATCH 5/9] gdb: split gdbarch component types to gdbarch_types.py
` [PATCH 6/9] gdb: gdbarch*.py, copyright.py: add type annotations
` [PATCH 7/9] gdb: make-target-delegates.py: make one string raw
` [PATCH 8/9] gdb: make-target-delegates.py: add Entry type
` [PATCH 9/9] gdb: make-target-delegates.py: add type annotations

[PATCH v3 0/2] Write DWARF index cache files in background
 2023-02-24 21:44 UTC  (3+ messages)

[PATCH] Move allocate_stub_method to stabsread.c
 2023-02-24 20:56 UTC 

[PATCH 0/4] More uses of require
 2023-02-24 20:28 UTC  (5+ messages)
` [PATCH 1/4] Use require with target_info
` [PATCH 2/4] Use require with gdb_skip_stdio_test
` [PATCH 3/4] More uses of require with istarget
` [PATCH 4/4] Use require with test_compiler_info

[PATCH v2] gdb: xtensa: don't supply registers if they are not present
 2023-02-24 19:55 UTC  (2+ messages)

[PATCH] [gdb/doc] arm: Expand documentation of XML features
 2023-02-24 19:26 UTC  (3+ messages)
` [PATCH, v2] "

[PATCH] [gdb/doc] aarch64: Expand documentation of XML features
 2023-02-24 19:25 UTC  (3+ messages)
` [PATCH, v2] "

[PATCH] gdb: LoongArch: Added support for static data member in struct
 2023-02-24 19:14 UTC  (2+ messages)

[PATCH] gdb/amd64: replace xmalloc/alloca with gdb::byte_vector
 2023-02-24 19:12 UTC  (2+ messages)

[PATCH] gdbserver/linux-low.cc: Fix a typo in ternary operator
 2023-02-24 19:09 UTC  (2+ messages)

[PATCH 0/7] Remove struct buffer
 2023-02-24 19:04 UTC  (2+ messages)

[PATCH] Fix crash in inside_main_func
 2023-02-24 17:51 UTC 

[pushed] gdb: fix parenthesis position in comment
 2023-02-24 17:32 UTC 

[PATCH] Handle half-float in 'x' command
 2023-02-24 16:38 UTC 

[PATCH] Modify altivec-regs.exp testcase for AIX
 2023-02-24 15:37 UTC  (7+ messages)

[PATCH] Enable vector instruction debugging for AIX
 2023-02-24 15:26 UTC  (8+ messages)

[pushed] [gdb/testsuite] Require syscall time in gdb.reverse/time-reverse.exp
 2023-02-24 12:53 UTC  (3+ messages)

[PATCH 1/3] [gdb/symtab] Factor out elf_symfile_read_dwarf2
 2023-02-24 12:42 UTC  (4+ messages)
` [PATCH 2/3] [RFC][gdb/symtab] Add maint set symbol-read-order

[PATCH] GDB: Fix out of bounds accesses with limited-length values
 2023-02-24 12:39 UTC  (3+ messages)

[PATCH] gdb/python: Fix --disable-tui build
 2023-02-24 12:06 UTC 

[PATCH] gdb/doc: The RISC-V vector registers didn't change
 2023-02-23 21:52 UTC  (2+ messages)

[PATCH v2] gdb: remove --disable-gdbmi configure option
 2023-02-23 21:40 UTC  (4+ messages)

[PATCH v4 0/6] gdb: introduce limited array lengths while printing values
 2023-02-23 21:16 UTC  (5+ messages)
` [PATCH v4 6/6] GDB: Introduce "

[PATCH] Implement DAP variables, scopes, and evaluate requests
 2023-02-23 20:21 UTC  (2+ messages)

[PATCH] gdb/testsuite: add regression test for per-objfile typeprinters
 2023-02-23 19:50 UTC  (2+ messages)

[PATCH 0/6] Make GMP data members private
 2023-02-23 19:48 UTC  (5+ messages)
` [PATCH 3/6] Rename gdb_mpz::val and make contents private
` [PATCH 4/6] Add operators and methods to gdb_mpq
` [PATCH 5/6] Rename gdb_mpq::val and make contents private
` [PATCH 6/6] Hide the implementation of gdb_mpf

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).