From: Max Filippov <jcmvbkbc@gmail.com>
To: qemu-devel@nongnu.org
Cc: Max Filippov <jcmvbkbc@gmail.com>
Subject: [Qemu-devel] [PATCH 0/7] target/xtensa: group helpers by functionality
Date: Sun, 13 Jan 2019 23:48:48 -0800 [thread overview]
Message-ID: <20190114074855.16891-1-jcmvbkbc@gmail.com> (raw)
Hello,
this series moves helper functions for FPU, windowed registers, MMU, native
debug, interrupt and exception handling from op_helper.c and helper.c to
separate *_helper.c files.
There's no functional changes.
Max Filippov (7):
target/xtensa: extract FPU helpers
target/xtensa: extract windowed registers helpers
target/xtensa: extract MMU helpers
target/xtensa: extract debug helpers
target/xtensa: extract interrupt and exception helpers
target/xtensa: drop dump_state helper
target/xtensa: move non-HELPER functions to helper.c
target/xtensa/Makefile.objs | 5 +
target/xtensa/dbg_helper.c | 129 +++++++
target/xtensa/exc_helper.c | 258 +++++++++++++
target/xtensa/fpu_helper.c | 166 +++++++++
target/xtensa/helper.c | 635 ++------------------------------
target/xtensa/helper.h | 1 -
target/xtensa/mmu_helper.c | 818 +++++++++++++++++++++++++++++++++++++++++
target/xtensa/op_helper.c | 870 --------------------------------------------
target/xtensa/win_helper.c | 222 +++++++++++
9 files changed, 1636 insertions(+), 1468 deletions(-)
create mode 100644 target/xtensa/dbg_helper.c
create mode 100644 target/xtensa/exc_helper.c
create mode 100644 target/xtensa/fpu_helper.c
create mode 100644 target/xtensa/mmu_helper.c
create mode 100644 target/xtensa/win_helper.c
--
2.11.0
next reply other threads:[~2019-01-14 7:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-14 7:48 Max Filippov [this message]
2019-01-14 7:48 ` [Qemu-devel] [PATCH 1/7] target/xtensa: extract FPU helpers Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 2/7] target/xtensa: extract windowed registers helpers Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 3/7] target/xtensa: extract MMU helpers Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 4/7] target/xtensa: extract debug helpers Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 5/7] target/xtensa: extract interrupt and exception helpers Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 6/7] target/xtensa: drop dump_state helper Max Filippov
2019-01-14 7:48 ` [Qemu-devel] [PATCH 7/7] target/xtensa: move non-HELPER functions to helper.c Max Filippov
2021-05-17 5:05 ` Philippe Mathieu-Daudé
2021-05-17 11:50 ` Max Filippov
2021-05-17 12:11 ` Max Filippov
2021-05-17 13:10 ` Philippe Mathieu-Daudé
2021-05-17 13:41 ` Philippe Mathieu-Daudé
2021-05-17 15:25 ` Max Filippov
2021-05-17 15:35 ` Max Filippov
2021-05-17 16:54 ` Philippe Mathieu-Daudé
2021-05-17 16:57 ` Max Filippov
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=20190114074855.16891-1-jcmvbkbc@gmail.com \
--to=jcmvbkbc@gmail.com \
--cc=qemu-devel@nongnu.org \
/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).