qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/2] Provide sextract32() and sextract64()
@ 2013-06-28 11:40 Peter Maydell
  2013-06-28 11:40 ` [Qemu-devel] [PATCH 1/2] bitops: " Peter Maydell
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Peter Maydell @ 2013-06-28 11:40 UTC (permalink / raw)
  To: qemu-devel; +Cc: Richard Henderson, Markus Armbruster, patches

A common operation in instruction decoding is to take a field
from an instruction that represents a signed integer in some
arbitrary number of bits, and sign extend it into a C signed
integer type for manipulation. Provide new functions sextract32()
and sextract64() which perform this operation; they are like
the existing extract32() and extract64() except that the field
is sign-extended into the returned result.

I agree with Markus that sign-extending versions of our
extract functions are more flexible than the simple sext()
I proposed in an earlier RFC, hence the switch in this patch.
The other change is patch 2, which provides some simple test
cases. (Will be handy if we ever decide to revamp to avoid
the dependency on shift-left-signed behaviour.)

Peter Maydell (2):
  bitops: Provide sextract32() and sextract64()
  tests: Add test-bitops.c with some sextract tests

 include/qemu/bitops.h |   50 +++++++++++++++++++++++++++++++++
 tests/Makefile        |    2 ++
 tests/test-bitops.c   |   75 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 127 insertions(+)
 create mode 100644 tests/test-bitops.c

-- 
1.7.9.5

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

end of thread, other threads:[~2013-07-23 19:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-28 11:40 [Qemu-devel] [PATCH 0/2] Provide sextract32() and sextract64() Peter Maydell
2013-06-28 11:40 ` [Qemu-devel] [PATCH 1/2] bitops: " Peter Maydell
2013-06-28 11:40 ` [Qemu-devel] [PATCH 2/2] tests: Add test-bitops.c with some sextract tests Peter Maydell
2013-06-28 17:44 ` [Qemu-devel] [PATCH 0/2] Provide sextract32() and sextract64() Richard Henderson
2013-07-12 15:05 ` Peter Maydell
2013-07-19 11:02   ` Peter Maydell
2013-07-23 19:04 ` Anthony Liguori

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