qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Brian Cain <bcain@quicinc.com>
To: <qemu-devel@nongnu.org>
Cc: <bcain@quicinc.com>, <armbru@redhat.com>,
	<richard.henderson@linaro.org>,  <philmd@linaro.org>,
	<peter.maydell@linaro.org>, <quic_mathbern@quicinc.com>,
	<stefanha@redhat.com>, <ale@rev.ng>, <anjo@rev.ng>,
	<quic_mliebel@quicinc.com>, <ltaylorsimpson@gmail.com>
Subject: [PULL 00/15] target-hexagon queue, hexagon docker
Date: Sun, 21 Jan 2024 22:34:46 -0800	[thread overview]
Message-ID: <20240122063501.782041-1-bcain@quicinc.com> (raw)

The following changes since commit 3f2a357b95845ea0bf7463eff6661e43b97d1afc:

  Merge tag 'hw-cpus-20240119' of https://github.com/philmd/qemu into staging (2024-01-19 11:39:38 +0000)

are available in the Git repository at:

  https://github.com/quic/qemu tags/pull-hex-20240121

for you to fetch changes up to bbe4209c8b4300d722f47791f9151e1a69cb0135:

  target/hexagon: reduce scope of def_regnum, remove dead assignment (2024-01-21 22:02:48 -0800)

----------------------------------------------------------------
Coverity fix, cross toolchain update, switch to decodetree

----------------------------------------------------------------
Brian Cain (2):
      tests/docker: Hexagon toolchain update
      target/hexagon: reduce scope of def_regnum, remove dead assignment

Taylor Simpson (13):
      Hexagon (target/hexagon) Fix shadow variable when idef-parser is off
      Hexagon (target/hexagon) Clean up handling of modifier registers
      Hexagon (target/hexagon) Make generators object oriented - gen_tcg_funcs
      Hexagon (target/hexagon) Make generators object oriented - gen_helper_protos
      Hexagon (target/hexagon) Make generators object oriented - gen_helper_funcs
      Hexagon (target/hexagon) Make generators object oriented - gen_idef_parser_funcs
      Hexagon (target/hexagon) Make generators object oriented - gen_op_regs
      Hexagon (target/hexagon) Make generators object oriented - gen_analyze_funcs
      Hexagon (target/hexagon) Remove unused WRITES_PRED_REG attribute
      Hexagon (target/hexagon) Remove dead functions from hex_common.py
      Hexagon (target/hexagon) Use QEMU decodetree (32-bit instructions)
      Hexagon (target/hexagon) Use QEMU decodetree (16-bit instructions)
      Hexagon (target/hexagon) Remove old dectree.py

 target/hexagon/README                              |  14 +-
 target/hexagon/attribs_def.h.inc                   |   1 -
 target/hexagon/decode.c                            | 439 +++-------
 target/hexagon/decode.h                            |   5 +-
 target/hexagon/dectree.py                          | 403 ---------
 target/hexagon/gen_analyze_funcs.py                | 163 +---
 target/hexagon/gen_decodetree.py                   | 198 +++++
 target/hexagon/gen_dectree_import.c                |  49 --
 target/hexagon/gen_helper_funcs.py                 | 370 ++-------
 target/hexagon/gen_helper_protos.py                | 149 +---
 target/hexagon/gen_idef_parser_funcs.py            |  20 +-
 target/hexagon/gen_op_regs.py                      |   6 +-
 target/hexagon/gen_tcg.h                           |   9 +-
 target/hexagon/gen_tcg_funcs.py                    | 566 +------------
 target/hexagon/gen_trans_funcs.py                  | 124 +++
 target/hexagon/hex_common.py                       | 921 +++++++++++++++++++--
 target/hexagon/idef-parser/parser-helpers.c        |   8 +-
 target/hexagon/macros.h                            |   9 +-
 target/hexagon/meson.build                         | 147 +++-
 target/hexagon/mmvec/decode_ext_mmvec.c            |   4 +-
 target/hexagon/opcodes.c                           |  29 -
 target/hexagon/opcodes.h                           |   2 -
 target/hexagon/translate.c                         |   4 +-
 .../docker/dockerfiles/debian-hexagon-cross.docker |   4 +-
 24 files changed, 1559 insertions(+), 2085 deletions(-)
 delete mode 100755 target/hexagon/dectree.py
 create mode 100755 target/hexagon/gen_decodetree.py
 create mode 100755 target/hexagon/gen_trans_funcs.py

             reply	other threads:[~2024-01-22  6:36 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-22  6:34 Brian Cain [this message]
2024-01-22  6:34 ` [PULL 01/15] tests/docker: Hexagon toolchain update Brian Cain
2024-01-22  6:34 ` [PULL 02/15] Hexagon (target/hexagon) Fix shadow variable when idef-parser is off Brian Cain
2024-01-22  6:34 ` [PULL 03/15] Hexagon (target/hexagon) Clean up handling of modifier registers Brian Cain
2024-01-22  6:34 ` [PULL 04/15] Hexagon (target/hexagon) Make generators object oriented - gen_tcg_funcs Brian Cain
2024-01-22  6:34 ` [PULL 05/15] Hexagon (target/hexagon) Make generators object oriented - gen_helper_protos Brian Cain
2024-01-22  6:34 ` [PULL 06/15] Hexagon (target/hexagon) Make generators object oriented - gen_helper_funcs Brian Cain
2024-01-22  6:34 ` [PULL 07/15] Hexagon (target/hexagon) Make generators object oriented - gen_idef_parser_funcs Brian Cain
2024-01-22  6:34 ` [PULL 08/15] Hexagon (target/hexagon) Make generators object oriented - gen_op_regs Brian Cain
2024-01-22  6:34 ` [PULL 09/15] Hexagon (target/hexagon) Make generators object oriented - gen_analyze_funcs Brian Cain
2024-01-22  6:34 ` [PULL 10/15] Hexagon (target/hexagon) Remove unused WRITES_PRED_REG attribute Brian Cain
2024-01-22  6:34 ` [PULL 11/15] Hexagon (target/hexagon) Remove dead functions from hex_common.py Brian Cain
2024-01-22  6:34 ` [PULL 12/15] Hexagon (target/hexagon) Use QEMU decodetree (32-bit instructions) Brian Cain
2024-01-22  6:34 ` [PULL 13/15] Hexagon (target/hexagon) Use QEMU decodetree (16-bit instructions) Brian Cain
2024-01-22  6:35 ` [PULL 14/15] Hexagon (target/hexagon) Remove old dectree.py Brian Cain
2024-01-22  6:35 ` [PULL 15/15] target/hexagon: reduce scope of def_regnum, remove dead assignment Brian Cain
2024-01-23 16:37 ` [PULL 00/15] target-hexagon queue, hexagon docker Peter Maydell

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=20240122063501.782041-1-bcain@quicinc.com \
    --to=bcain@quicinc.com \
    --cc=ale@rev.ng \
    --cc=anjo@rev.ng \
    --cc=armbru@redhat.com \
    --cc=ltaylorsimpson@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quic_mathbern@quicinc.com \
    --cc=quic_mliebel@quicinc.com \
    --cc=richard.henderson@linaro.org \
    --cc=stefanha@redhat.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;
as well as URLs for NNTP newsgroup(s).