[Qemu-devel] [PULL 00/15] target/xtensa: preparation for FLIX support

Max Filippov posted 15 patches 7 years, 1 month ago
Only 0 patches received!
target/xtensa/cpu.h       |   37 +-
target/xtensa/helper.c    |    6 +
target/xtensa/helper.h    |    2 +
target/xtensa/op_helper.c |   73 +-
target/xtensa/translate.c | 2673 +++++++++++++++++++++++++++++----------------
5 files changed, 1817 insertions(+), 974 deletions(-)
[Qemu-devel] [PULL 00/15] target/xtensa: preparation for FLIX support
Posted by Max Filippov 7 years, 1 month ago
Hi Peter,

please pull the following series that rearranges target/xtensa code in
preparation for FLIX support.
The following changes since commit c5e4e49258e9b89cb34c085a419dd9f862935c48:

  Merge remote-tracking branch 'remotes/xanclic/tags/pull-block-2018-09-25' into staging (2018-09-25 16:47:35 +0100)

are available in the git repository at:

  git://github.com/OSLL/qemu-xtensa.git tags/20181001-xtensa

for you to fetch changes up to d74624e59a6087ccf233843b936aedc9f8a8050a:

  target/xtensa: extract gen_check_interrupts call (2018-10-01 11:08:36 -0700)

----------------------------------------------------------------
target/xtensa: preparation for FLIX support

Separate generation of per-instruction code (such as raising exceptions
and terminating TB) from per-opcode code.

----------------------------------------------------------------
Max Filippov (15):
      target/xtensa: extract test for an illegal instruction
      target/xtensa: extract test for privileged instruction
      target/xtensa: extract test for syscall instruction
      target/xtensa: extract test for debug exception
      target/xtensa: extract test for window overflow exception
      target/xtensa: extract test for window underflow exception
      target/xtensa: extract test for alloca exception
      target/xtensa: extract test for cpdisabled exception
      target/xtensa: extract test for division by zero
      target/xtensa: extract unconditional TB termination
      target/xtensa: change SR number checks to assertions
      target/xtensa: always end TB on CCOUNT access/CCOMPARE write
      target/xtensa: extract unconditional TB termination via slot 0
      target/xtensa: make rsr/wsr helpers return void
      target/xtensa: extract gen_check_interrupts call

 target/xtensa/cpu.h       |   37 +-
 target/xtensa/helper.c    |    6 +
 target/xtensa/helper.h    |    2 +
 target/xtensa/op_helper.c |   73 +-
 target/xtensa/translate.c | 2673 +++++++++++++++++++++++++++++----------------
 5 files changed, 1817 insertions(+), 974 deletions(-)

Thanks.
-- Max

Re: [Qemu-devel] [PULL 00/15] target/xtensa: preparation for FLIX support
Posted by Peter Maydell 7 years, 1 month ago
On 1 October 2018 at 19:18, Max Filippov <jcmvbkbc@gmail.com> wrote:
> Hi Peter,
>
> please pull the following series that rearranges target/xtensa code in
> preparation for FLIX support.
> The following changes since commit c5e4e49258e9b89cb34c085a419dd9f862935c48:
>
>   Merge remote-tracking branch 'remotes/xanclic/tags/pull-block-2018-09-25' into staging (2018-09-25 16:47:35 +0100)
>
> are available in the git repository at:
>
>   git://github.com/OSLL/qemu-xtensa.git tags/20181001-xtensa
>
> for you to fetch changes up to d74624e59a6087ccf233843b936aedc9f8a8050a:
>
>   target/xtensa: extract gen_check_interrupts call (2018-10-01 11:08:36 -0700)
>
> ----------------------------------------------------------------
> target/xtensa: preparation for FLIX support
>
> Separate generation of per-instruction code (such as raising exceptions
> and terminating TB) from per-opcode code.
>

Applied, thanks.

-- PMM