From: Eli Zaretskii <eliz@gnu.org>
To: Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
Cc: gdb-patches@sourceware.org, uweigand@de.ibm.com, edjunior@gmail.com
Subject: Re: [PATCH v2 12/12] [PowerPC] Add support for HTM registers
Date: Fri, 10 Aug 2018 07:34:00 -0000 [thread overview]
Message-ID: <83d0uqoetq.fsf@gnu.org> (raw)
In-Reply-To: <20180810025210.6942-13-pedromfc@linux.ibm.com> (message from Pedro Franco de Carvalho on Thu, 9 Aug 2018 23:52:10 -0300)
> From: Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
> Cc: uweigand@de.ibm.com, edjunior@gmail.com
> Date: Thu, 9 Aug 2018 23:52:10 -0300
>
> gdb/gdbserver/ChangeLog:
> YYYY-MM-DD Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
>
> * configure.srv (ipa_ppc_linux_regobj): Add
> powerpc-isa207-htm-vsx32l-ipa.o and
> powerpc-isa207-htm-vsx64l-ipa.o.
> (powerpc*-*-linux*): Add powerpc-isa207-htm-vsx32l.o and
> powerpc-isa207-htm-vsx64l.o to srv_regobj. Add
> rs6000/power-htm-spr.xml, rs6000/power-htm-core.xml,
> rs6000/power64-htm-core.xml, rs6000/power-htm-fpu.xml,
> rs6000/power-htm-altivec.xml, rs6000/power-htm-vsx.xml,
> rs6000/power-htm-ppr.xml, rs6000/power-htm-dscr.xml,
> rs6000/power-htm-tar.xml, rs6000/powerpc-isa207-htm-vsx32l.xml,
> and rs6000/powerpc-isa207-htm-vsx64l.xml to srv_xmlfiles.
> * linux-ppc-tdesc-init.h (enum ppc_linux_tdesc)
> <PPC_TDESC_ISA207_HTM_VSX>: New enum value.
> (init_registers_powerpc_isa207_htm_vsx32l)
> (init_registers_powerpc_isa207_htm_vsx64l): Declare.
> * linux-ppc-low.c (ppc_fill_tm_sprregset, ppc_store_tm_sprregset)
> (ppc_store_tm_cgprregset, ppc_store_tm_cfprregset)
> (ppc_store_tm_cvrregset, ppc_store_tm_cvsxregset)
> (ppc_store_tm_cpprregset, ppc_store_tm_cdscrregset)
> (ppc_store_tm_ctarregset): New functions.
> (ppc_regsets): Add entries for HTM regsets.
> (ppc_arch_setup): Set htm in features struct when needed. Set
> sizes for the HTM regsets.
> (ppc_get_ipa_tdesc_idx): Return PPC_TDESC_ISA207_HTM_VSX.
> (initialize_low_arch): Call
> init_registers_powerpc_isa207_htm_vsx32l and
> init_registers_powerpc_isa207_htm_vsx64l.
> * linux-ppc-ipa.c (get_ipa_tdesc): Handle
> PPC_TDESC_ISA207_HTM_VSX.
> (initialize_low_tracepoint): Call
> init_registers_powerpc_isa207_htm_vsx32l and
> init_registers_powerpc_isa207_htm_vsx64l.
>
> gdb/testsuite/ChangeLog:
> YYYY-MM-DD Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
>
> * gdb.arch/powerpc-htm-regs.c: New file.
> * gdb.arch/powerpc-htm-regs.exp: New file.
>
> gdb/doc/ChangeLog:
> YYYY-MM-DD Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
>
> * gdb.texinfo (PowerPC Features): Describe new features
> "org.gnu.gdb.power.htm.spr", "org.gnu.gdb.power.htm.core",
> "org.gnu.gdb.power.htm.fpu", "org.gnu.gdb.power.htm.altivec",
> "org.gnu.gdb.power.htm.vsx", "org.gnu.gdb.power.htm.ppr",
> "org.gnu.gdb.power.htm.dscr", "org.gnu.gdb.power.htm.tar".
OK for the gdb.texinfo part.
Thanks.
next prev parent reply other threads:[~2018-08-10 7:34 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-10 2:52 [PATCH v2 00/12] GDB support for more powerpc registers on linux Pedro Franco de Carvalho
2018-08-10 2:52 ` [PATCH v2 06/12] [PowerPC] Fix indentation in arch/ppc-linux-common.c Pedro Franco de Carvalho
2018-08-10 14:34 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 11/12] [PowerPC] Reject tdescs with VSX and no FPU or Altivec Pedro Franco de Carvalho
2018-08-10 14:44 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 07/12] [PowerPC] Refactor have_ initializers in rs6000-tdep.c Pedro Franco de Carvalho
2018-08-10 14:34 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 02/12] [PowerPC] Don't zero-initialize vector register buffers Pedro Franco de Carvalho
2018-08-10 14:30 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 12/12] [PowerPC] Add support for HTM registers Pedro Franco de Carvalho
2018-08-10 7:34 ` Eli Zaretskii [this message]
2018-08-10 14:54 ` Ulrich Weigand
2018-08-10 15:12 ` [PATCH v2] " Pedro Franco de Carvalho
2018-08-10 2:52 ` [PATCH v2 09/12] [PowerPC] Add support for TAR Pedro Franco de Carvalho
2018-08-10 7:32 ` Eli Zaretskii
2018-08-10 18:12 ` Pedro Franco de Carvalho
2018-08-10 14:41 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 03/12] Add decfloat registers to float reggroup Pedro Franco de Carvalho
2018-08-10 14:35 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 05/12] [PowerPC] Fix two if statements in gdb/ppc-linux-nat.c Pedro Franco de Carvalho
2018-08-10 14:33 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 04/12] [PowerPC] Remove rs6000_pseudo_register_reggroup_p Pedro Franco de Carvalho
2018-08-10 14:33 ` Ulrich Weigand
2018-08-10 2:52 ` [PATCH v2 08/12] [PowerPC] Add support for PPR and DSCR Pedro Franco de Carvalho
2018-08-10 14:39 ` Ulrich Weigand
2018-08-10 19:38 ` Pedro Alves
2018-08-10 20:09 ` Pedro Franco de Carvalho
2018-08-13 16:30 ` Pedro Alves
2018-08-14 20:15 ` Pedro Franco de Carvalho
2018-08-10 2:52 ` [PATCH v2 01/12] Zero-initialize linux note sections Pedro Franco de Carvalho
2018-08-10 14:27 ` Ulrich Weigand
2018-08-10 16:13 ` Tom Tromey
2018-08-10 18:11 ` Pedro Franco de Carvalho
2018-08-10 20:50 ` Tom Tromey
2018-08-10 3:19 ` [PATCH v2 10/12] [PowerPC] Add support for EBB and PMU registers Pedro Franco de Carvalho
2018-08-10 7:35 ` Eli Zaretskii
2018-08-10 14:44 ` Ulrich Weigand
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=83d0uqoetq.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=edjunior@gmail.com \
--cc=gdb-patches@sourceware.org \
--cc=pedromfc@linux.ibm.com \
--cc=uweigand@de.ibm.com \
/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