Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface"
@ 2012-10-08 11:43 Sanjoy Das
  2012-10-08 11:43 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
                   ` (2 more replies)
  0 siblings, 3 replies; 24+ messages in thread
From: Sanjoy Das @ 2012-10-08 11:43 UTC (permalink / raw)
  To: gdb-patches; +Cc: Sanjoy Das

Hi,

Sorry for hiatus, got a little busy with university exams.  Here are
the fixed patches.

Changes from the last series:

Fix segfault when unwinding JIT frames using a custom reader.
<None>

Make jit-reader-load accept absolute paths to reader shared objects.
 * Fixed nit in IS_ABSOLUTE_PATH invocation.

Add a test case for the jit-reader interface.
 * jit_host_src and jit_host_bin use standard_testfile
 * jit_reader_bin uses standard_output_file instead of a raw ${objdir}

Thanks!
--
Sanjoy


^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface"
@ 2012-11-04 16:59 Sanjoy Das
  2012-11-04 17:00 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
  0 siblings, 1 reply; 24+ messages in thread
From: Sanjoy Das @ 2012-11-04 16:59 UTC (permalink / raw)
  To: gdb-patches; +Cc: Sanjoy Das

Changes from last series:

  Fix segfault when unwinding JIT frames using a custom reader.
    <None>

  Make jit-reader-load accept absolute paths to reader shared objects.
    Fix ${GDBN} mistake pointed out by Eli

  Add a test case for the jit-reader interface.
    Fix issues pointed out by Pedro.

 gdb/ChangeLog                         |   12 +++
 gdb/doc/ChangeLog                     |    4 +
 gdb/doc/gdb.texinfo                   |   22 +++--
 gdb/jit.c                             |   20 ++++-
 gdb/testsuite/ChangeLog               |    8 ++
 gdb/testsuite/gdb.base/jit-reader.exp |   73 +++++++++++++++
 gdb/testsuite/gdb.base/jithost.c      |   84 ++++++++++++++++++
 gdb/testsuite/gdb.base/jithost.h      |   27 ++++++
 gdb/testsuite/gdb.base/jitreader.c    |  156 +++++++++++++++++++++++++++++++++
 9 files changed, 394 insertions(+), 12 deletions(-)
 create mode 100644 gdb/testsuite/gdb.base/jit-reader.exp
 create mode 100644 gdb/testsuite/gdb.base/jithost.c
 create mode 100644 gdb/testsuite/gdb.base/jithost.h
 create mode 100644 gdb/testsuite/gdb.base/jitreader.c

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface"
@ 2012-09-24  4:48 Sanjoy Das
  2012-09-24  4:48 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
  0 siblings, 1 reply; 24+ messages in thread
From: Sanjoy Das @ 2012-09-24  4:48 UTC (permalink / raw)
  To: gdb-patches; +Cc: Sanjoy Das

Changes from last series:

  Fix http://sourceware.org/bugzilla/show_bug.cgi?id=14550
   * Fix comment grammar.

  Make jit-reader-load accept absolute paths to reader shared objects.
   * Use IS_ABSOLUTE_PATH instead of ad-hoc check.
   * Don't use "path" to mean "file name".
   * Fix nit with jit-reader-load / jit-reader-unload.

  Add a test case for the jit-reader interface.
   * Remove bad copy-paste.
   * Use gdb_run_cmd instead of gdb_test foo ".*"

 gdb/ChangeLog                         |   12 +++
 gdb/doc/ChangeLog                     |    4 +
 gdb/doc/gdb.texinfo                   |   22 +++---
 gdb/jit.c                             |   20 ++++-
 gdb/testsuite/ChangeLog               |    8 ++
 gdb/testsuite/gdb.base/jit-reader.exp |   71 +++++++++++++++++
 gdb/testsuite/gdb.base/jithost.c      |   67 ++++++++++++++++
 gdb/testsuite/gdb.base/jithost.h      |    9 +++
 gdb/testsuite/gdb.base/jitreader.c    |  136 +++++++++++++++++++++++++++++++++
 9 files changed, 337 insertions(+), 12 deletions(-)
 create mode 100644 gdb/testsuite/gdb.base/jit-reader.exp
 create mode 100644 gdb/testsuite/gdb.base/jithost.c
 create mode 100644 gdb/testsuite/gdb.base/jithost.h
 create mode 100644 gdb/testsuite/gdb.base/jitreader.c

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH 0/3] Fix recent breakage in the JIT reader interface
@ 2012-09-18  4:30 Sanjoy Das
  2012-09-18  4:30 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
  0 siblings, 1 reply; 24+ messages in thread
From: Sanjoy Das @ 2012-09-18  4:30 UTC (permalink / raw)
  To: gdb-patches; +Cc: Sanjoy Das

These three patches fix an issue with the JIT reader interface and
adds a regression test for the same.

Sanjoy Das (3):
  Fix http://sourceware.org/bugzilla/show_bug.cgi?id=14550
  Make jit-reader-load accept absolute paths to reader shared objects.
  Add a test case for the jit-reader interface.

 gdb/ChangeLog                         |   12 +++
 gdb/doc/ChangeLog                     |    4 +
 gdb/doc/gdb.texinfo                   |   22 +++---
 gdb/jit.c                             |   19 ++++-
 gdb/testsuite/ChangeLog               |    8 ++
 gdb/testsuite/gdb.base/jit-reader.exp |   78 +++++++++++++++++++
 gdb/testsuite/gdb.base/jithost.c      |   67 ++++++++++++++++
 gdb/testsuite/gdb.base/jithost.h      |    9 +++
 gdb/testsuite/gdb.base/jitreader.c    |  136 +++++++++++++++++++++++++++++++++
 9 files changed, 343 insertions(+), 12 deletions(-)
 create mode 100644 gdb/testsuite/gdb.base/jit-reader.exp
 create mode 100644 gdb/testsuite/gdb.base/jithost.c
 create mode 100644 gdb/testsuite/gdb.base/jithost.h
 create mode 100644 gdb/testsuite/gdb.base/jitreader.c

-- 
1.7.10.4


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2013-01-14  3:52 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-08 11:43 [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface" Sanjoy Das
2012-10-08 11:43 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
2012-10-16 20:16   ` Tom Tromey
2012-10-17 16:16     ` Pedro Alves
2012-10-17 16:27       ` Tom Tromey
2012-10-17 16:35         ` Pedro Alves
2012-10-17 16:29   ` Pedro Alves
2012-10-08 11:43 ` [PATCH 2/3] Make jit-reader-load accept absolute paths to reader shared objects Sanjoy Das
2012-10-08 12:34   ` Eli Zaretskii
2012-10-16 20:13   ` Tom Tromey
2012-10-08 11:43 ` [PATCH 1/3] Fix segfault when unwinding JIT frames using a custom reader Sanjoy Das
2012-10-16 20:14   ` Tom Tromey
  -- strict thread matches above, loose matches on Subject: below --
2012-11-04 16:59 [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface" Sanjoy Das
2012-11-04 17:00 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
2012-12-01 20:48   ` Jan Kratochvil
2012-12-07  9:15     ` Sanjoy Das
2012-12-10 16:38       ` Jan Kratochvil
2013-01-08 20:40         ` Sanjoy Das
2013-01-09 12:37           ` Jan Kratochvil
2013-01-13 21:58             ` Sanjoy Das
2013-01-14  3:52               ` Jan Kratochvil
2012-09-24  4:48 [PATCH 0/3] Address review, "fix recent breakage in the JIT reader interface" Sanjoy Das
2012-09-24  4:48 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
2012-09-27 21:00   ` Tom Tromey
2012-09-18  4:30 [PATCH 0/3] Fix recent breakage in the JIT reader interface Sanjoy Das
2012-09-18  4:30 ` [PATCH 3/3] Add a test case for the jit-reader interface Sanjoy Das
2012-09-18 19:36   ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox