Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "Strasuns, Mihails" <mihails.strasuns@intel.com>
To: "Strasuns, Mihails" <mihails.strasuns@intel.com>,
	"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: RE: [PATCH 0/7] refactor and enhance jit testing
Date: Wed, 26 Feb 2020 13:56:00 -0000	[thread overview]
Message-ID: <BN6PR11MB00362BDB067E1922C3EEB52E95EA0@BN6PR11MB0036.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200218124339.11270-1-mihails.strasuns@intel.com>

Kind ping regarding last 3 patches ;)

Best regards,
Mihails

-----Original Message-----
From: gdb-patches-owner@sourceware.org <gdb-patches-owner@sourceware.org> On Behalf Of Mihails Strasuns
Sent: Tuesday, February 18, 2020 1:44 PM
To: gdb-patches@sourceware.org
Subject: [PATCH 0/7] refactor and enhance jit testing

Replaces https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/757 with a different approach proposed by Simon.

After these patches it becomes possible to add new jit-elf tests which rely on DWARF debug info present. There is a lot of refactoring being done - I tried to split it into smallest individually compiling steps that still make sense.

3ad6f47703 [gdb/testsuite] add jit-elf-util.h and run jit function
99bee9a000 [gdb/testsuite] use -Ttext-segment for jit-elf tests
af8f23b301 [gdb/testsuite] add lib/jit-elf-helpers.exp
a0b17bef28 [gdb/testsuite] use args as lib list for jit-elf tests
513be63401 [gdb/testsuite] share jit-protocol.h by all jit tests
757c4f7100 [gdb/testsuite] structured rename of jit test files d37a2fb49b [gdb/testsuite] allow more registers in reader test

gdb/testsuite/gdb.base/jit-attach-pie.c                            |  24 +--
gdb/testsuite/gdb.base/{jit-dlmain.c => jit-elf-dlmain.c}          |   0
gdb/testsuite/gdb.base/jit-elf-main.c                              | 143 ++++++++++++++++++
gdb/testsuite/gdb.base/jit-elf-so.exp                              | 114 +++++++++++++++
gdb/testsuite/gdb.base/{jit-solib.c => jit-elf-solib.c}            |   0
gdb/testsuite/gdb.base/jit-elf-util.h                              | 145 ++++++++++++++++++
gdb/testsuite/gdb.base/{jit.exp => jit-elf.exp}                    |  80 +++-------
gdb/testsuite/gdb.base/jit-main.c                                  | 236 ------------------------------
gdb/testsuite/gdb.base/jit-protocol.h                              |   8 +-
gdb/testsuite/gdb.base/{jit-exec.c => jit-reader-exec.c}           |   2 +-
gdb/testsuite/gdb.base/{jit-exec.exp => jit-reader-exec.exp}       |   4 +-
gdb/testsuite/gdb.base/{jit-execd.c => jit-reader-execd.c}         |   0
gdb/testsuite/gdb.base/{jithost.c => jit-reader-host.c}            |   5 +-
gdb/testsuite/gdb.base/{jithost.h => jit-reader-host.h}            |   0
gdb/testsuite/gdb.base/{jit-simple-dl.c => jit-reader-simple-dl.c} |   0
gdb/testsuite/gdb.base/jit-reader-simple-jit.c                     |  27 ++++
gdb/testsuite/gdb.base/{jit-simple.c => jit-reader-simple.c}       |   2 +-
gdb/testsuite/gdb.base/{jit-simple.exp => jit-reader-simple.exp}   |   0
gdb/testsuite/gdb.base/{jitreader.c => jit-reader.c}               |   2 +-
gdb/testsuite/gdb.base/jit-reader.exp                              |   6 +-
gdb/testsuite/gdb.base/jit-simple-jit.c                            |  50 -------
gdb/testsuite/gdb.base/jit-so.exp                                  | 125 ----------------
gdb/testsuite/lib/jit-elf-helpers.exp                              |  92 ++++++++++++
23 files changed, 559 insertions(+), 506 deletions(-)


Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Gary Kershaw Chairperson of the Supervisory Board: Nicole Lau Registered Office: Munich Commercial Register: Amtsgericht Muenchen HRB 186928

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Gary Kershaw
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


  parent reply	other threads:[~2020-02-26 13:56 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-18 12:42 Mihails Strasuns
2020-02-18 12:42 ` [PATCH 4/7] [gdb/testsuite] use args as lib list for jit-elf tests Mihails Strasuns
2020-03-23  0:04   ` Simon Marchi
2020-03-23  0:35     ` Simon Marchi
2020-02-18 12:42 ` [PATCH 7/7] [gdb/testsuite] add jit-elf-util.h and run jit function Mihails Strasuns
2020-03-23  3:13   ` Simon Marchi
2020-03-23  9:23     ` Strasuns, Mihails
2020-03-23 11:14       ` Simon Marchi
2020-02-18 12:42 ` [PATCH 6/7] [gdb/testsuite] use -Ttext-segment for jit-elf tests Mihails Strasuns
2020-03-23  3:03   ` Simon Marchi
2020-02-18 12:42 ` [PATCH 2/7] [gdb/testsuite] structured rename of jit test files Mihails Strasuns
2020-02-19 21:23   ` Tom Tromey
2020-03-22  2:47     ` Simon Marchi
2020-02-18 12:42 ` [PATCH 5/7] [gdb/testsuite] add lib/jit-elf-helpers.exp Mihails Strasuns
2020-03-23  0:52   ` Simon Marchi
2020-02-18 12:42 ` [PATCH 3/7] [gdb/testsuite] share jit-protocol.h by all jit tests Mihails Strasuns
2020-02-19 21:23   ` Tom Tromey
2020-03-22 16:00   ` Simon Marchi
2020-02-18 12:42 ` [PATCH 1/7] [gdb/testsuite] allow more registers in reader test Mihails Strasuns
2020-02-19 21:22   ` Tom Tromey
2020-03-21 16:03   ` Simon Marchi
2020-03-22  2:09     ` Simon Marchi
2020-02-26 13:56 ` Strasuns, Mihails [this message]
2020-03-18 12:48   ` [PATCH 0/7] refactor and enhance jit testing Simon Marchi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BN6PR11MB00362BDB067E1922C3EEB52E95EA0@BN6PR11MB0036.namprd11.prod.outlook.com \
    --to=mihails.strasuns@intel.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox