[Qemu-devel] [PULL v2 00/13] target/openrisc: Covert to decodetree.py

Richard Henderson posted 13 patches 7 years, 5 months ago
Failed in applying to current master (apply log)
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test s390x passed
target/openrisc/helper.h      |   25 +-
target/openrisc/fpu_helper.c  |  250 +----
target/openrisc/translate.c   | 1800 +++++++++++++++------------------
target/openrisc/Makefile.objs |    9 +
target/openrisc/insns.decode  |  189 ++++
5 files changed, 1086 insertions(+), 1187 deletions(-)
create mode 100644 target/openrisc/insns.decode
[Qemu-devel] [PULL v2 00/13] target/openrisc: Covert to decodetree.py
Posted by Richard Henderson 7 years, 5 months ago
Rebased on master to resolve conflicts with Emilio Cota's
TranslatorOps patch set.


r~


The following changes since commit bbd87423ea0c436c55bbc3f9c23d4f811d1f3f29:

  Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2018-05-14 11:08:16 +0100)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/tgt-openrisc-pull-request

for you to fetch changes up to c7b6f54bf8d6d0e847230998d09495c73eeac9aa:

  target/openrisc: Merge disas_openrisc_insn (2018-05-14 14:58:08 -0700)

----------------------------------------------------------------
Convert openrisc to decodetree.py

----------------------------------------------------------------

Richard Henderson (13):
  target-openrisc: Write back result before FPE exception
  target/openrisc: Start conversion to decodetree.py
  target/openrisc: Convert branch insns
  target/openrisc: Convert memory insns
  target/openrisc: Convert remainder of dec_misc insns
  target/openrisc: Convert dec_calc
  target/openrisc: Convert dec_mac
  target/openrisc: Convert dec_logic
  target/openrisc: Convert dec_M
  target/openrisc: Convert dec_comp
  target/openrisc: Convert dec_compi
  target/openrisc: Convert dec_float
  target/openrisc: Merge disas_openrisc_insn

 target/openrisc/helper.h      |   25 +-
 target/openrisc/fpu_helper.c  |  250 +----
 target/openrisc/translate.c   | 1800 +++++++++++++++------------------
 target/openrisc/Makefile.objs |    9 +
 target/openrisc/insns.decode  |  189 ++++
 5 files changed, 1086 insertions(+), 1187 deletions(-)
 create mode 100644 target/openrisc/insns.decode

-- 
2.17.0


Re: [Qemu-devel] [PULL v2 00/13] target/openrisc: Covert to decodetree.py
Posted by Peter Maydell 7 years, 5 months ago
On 14 May 2018 at 23:27, Richard Henderson <richard.henderson@linaro.org> wrote:
> Rebased on master to resolve conflicts with Emilio Cota's
> TranslatorOps patch set.
>
>
> r~
>
>
> The following changes since commit bbd87423ea0c436c55bbc3f9c23d4f811d1f3f29:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2018-05-14 11:08:16 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/rth7680/qemu.git tags/tgt-openrisc-pull-request
>
> for you to fetch changes up to c7b6f54bf8d6d0e847230998d09495c73eeac9aa:
>
>   target/openrisc: Merge disas_openrisc_insn (2018-05-14 14:58:08 -0700)
>
> ----------------------------------------------------------------
> Convert openrisc to decodetree.py
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM