qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/13] target/xtensa: add FLIX support
@ 2019-02-14 22:59 Max Filippov
  2019-02-14 22:59 ` [Qemu-devel] [PATCH 01/13] target/xtensa: move xtensa_finalize_config to xtensa_core_class_init Max Filippov
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Max Filippov @ 2019-02-14 22:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson, Max Filippov

Hello,

this series adds limited support for FLIX instructions.
FLIX (flexible length instruction extensions) allows bundling multiple
opcodes in a single instruction. Each opcode is executed as if it was
the only opcode in the instruction. Opcodes may not simultaneously
modify same resource (register or state). Multiple branches, even
non-taken, are also not allowed in one instruction.

Instructions with opcodes that have circular dependencies between used
resources other than registers (e.g. opcode A uses resource U and modifies
resource M, while opcode B uses resource M and modifies resource U) are not
supported in this series.

Max Filippov (13):
  target/xtensa: move xtensa_finalize_config to xtensa_core_class_init
  target/xtensa: don't require opcode table sorting
  target/xtensa: allow multiple names for single opcode
  target/xtensa: implement wide branches and loops
  target/xtensa: sort FLIX instruction opcodes
  target/xtensa: add generic instruction post-processing
  target/xtensa: move WINDOW_BASE SR update to postprocessing
  target/xtensa: only rotate window in the retw helper
  target/xtensa: reorganize register handling in translators
  target/xtensa: reorganize access to MAC16 registers
  target/xtensa: reorganize access to boolean registers
  target/xtensa: break circular register dependencies
  target/xtensa: prioritize load/store in FLIX bundles

 target/xtensa/cpu.h          |   37 +-
 target/xtensa/helper.c       |   93 ++-
 target/xtensa/helper.h       |    5 +-
 target/xtensa/overlay_tool.h |    1 -
 target/xtensa/translate.c    | 1595 +++++++++++++++++++++++++++---------------
 target/xtensa/win_helper.c   |   22 +-
 6 files changed, 1162 insertions(+), 591 deletions(-)

-- 
2.11.0

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2019-02-14 23:10 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-14 22:59 [Qemu-devel] [PATCH 00/13] target/xtensa: add FLIX support Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 01/13] target/xtensa: move xtensa_finalize_config to xtensa_core_class_init Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 02/13] target/xtensa: don't require opcode table sorting Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 03/13] target/xtensa: allow multiple names for single opcode Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 04/13] target/xtensa: implement wide branches and loops Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 05/13] target/xtensa: sort FLIX instruction opcodes Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 06/13] target/xtensa: add generic instruction post-processing Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 07/13] target/xtensa: move WINDOW_BASE SR update to postprocessing Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 08/13] target/xtensa: only rotate window in the retw helper Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 09/13] target/xtensa: reorganize register handling in translators Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 10/13] target/xtensa: reorganize access to MAC16 registers Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 11/13] target/xtensa: reorganize access to boolean registers Max Filippov
2019-02-14 22:59 ` [Qemu-devel] [PATCH 12/13] target/xtensa: break circular register dependencies Max Filippov
2019-02-14 23:00 ` [Qemu-devel] [PATCH 13/13] target/xtensa: prioritize load/store in FLIX bundles Max Filippov

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).