mbox

[PULL,00/15] target/xtensa: preparation for FLIX support

Message ID 20181001181858.21086-1-jcmvbkbc@gmail.com
State New
Headers show

Pull-request

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

Message

Max Filippov Oct. 1, 2018, 6:18 p.m. UTC
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

Comments

Peter Maydell Oct. 2, 2018, 8:43 a.m. UTC | #1
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