From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Wei Yang <richardw.yang@linux.intel.com>
Cc: qemu-devel@nongnu.org, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] migration/xbzrle: make xbzrle_encode_buffer little easier to read
Date: Tue, 11 Jun 2019 18:59:26 +0100 [thread overview]
Message-ID: <20190611175926.GJ2777@work-vm> (raw)
In-Reply-To: <20190610030852.16039-3-richardw.yang@linux.intel.com>
* Wei Yang (richardw.yang@linux.intel.com) wrote:
> The encoding process could be described below:
>
> for [content]
> get length of a run
> encode this run
>
> By refactoring the code with this logic, it maybe a little easier to
> understand.
>
> Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
> ---
> migration/xbzrle.c | 153 +++++++++++++++++++++------------------------
> 1 file changed, 73 insertions(+), 80 deletions(-)
>
> diff --git a/migration/xbzrle.c b/migration/xbzrle.c
> index 1ba482ded9..25c69708ec 100644
> --- a/migration/xbzrle.c
> +++ b/migration/xbzrle.c
> @@ -14,6 +14,59 @@
> #include "qemu/cutils.h"
> #include "xbzrle.h"
>
> +static int next_run(uint8_t *old_buf, uint8_t *new_buf, int off, int slen,
> + bool zrun)
> +{
> + uint32_t len = 0;
> + long res;
> +
> + res = (slen - off) % sizeof(long);
> +
> + /* first unaligned bytes */
> + while (res) {
> + uint8_t xor = old_buf[off + len] ^ new_buf[off + len];
> +
> + if (!(zrun ^ !!xor)) {
> + break;
> + }
> + len++;
> + res--;
> + }
> +
> + if (res) {
> + return len;
> + }
> +
> + /* word at a time for speed, use of 32-bit long okay */
> + while (off + len < slen) {
> + /* truncation to 32-bit long okay */
> + unsigned long mask = (unsigned long)0x0101010101010101ULL;
> + long xor = (*(long *)(old_buf + off + len)) ^
> + (*(long *)(new_buf + off + len));
> +
> + if (zrun && !(zrun ^ !!xor)) {
Are lines like this really making it easier to read?
Juan: Opinion?
Dave
> + break;
> + } else if (!zrun && ((xor - mask) & ~xor & (mask << 7))) {
> + break;
> + }
> +
> + len += sizeof(long);
> + }
> +
> + /* go over the rest */
> + while (off + len < slen) {
> + uint8_t xor = old_buf[off + len] ^ new_buf[off + len];
> +
> + if (!(zrun ^ !!xor)) {
> + break;
> + }
> +
> + len++;
> + }
> +
> + return len;
> +}
> +
> /*
> page = zrun nzrun
> | zrun nzrun page
> @@ -27,103 +80,43 @@
> int xbzrle_encode_buffer(uint8_t *old_buf, uint8_t *new_buf, int slen,
> uint8_t *dst, int dlen)
> {
> - uint32_t zrun_len = 0, nzrun_len = 0;
> - int d = 0, i = 0;
> - long res;
> - uint8_t *nzrun_start = NULL;
> + bool zrun = true;
> + int len, src_off = 0, dst_off = 0;
>
> g_assert(!(((uintptr_t)old_buf | (uintptr_t)new_buf | slen) %
> sizeof(long)));
>
> - while (i < slen) {
> + for (; src_off < slen; src_off += len, zrun = !zrun) {
> /* overflow */
> - if (d + 2 > dlen) {
> + if (dst_off + 2 > dlen) {
> return -1;
> }
>
> - /* not aligned to sizeof(long) */
> - res = (slen - i) % sizeof(long);
> - while (res && old_buf[i] == new_buf[i]) {
> - zrun_len++;
> - i++;
> - res--;
> - }
> + len = next_run(old_buf, new_buf, src_off, slen, zrun);
>
> - /* word at a time for speed */
> - if (!res) {
> - while (i < slen &&
> - (*(long *)(old_buf + i)) == (*(long *)(new_buf + i))) {
> - i += sizeof(long);
> - zrun_len += sizeof(long);
> + if (zrun) {
> + /* buffer unchanged */
> + if (len == slen) {
> + return 0;
> }
> -
> - /* go over the rest */
> - while (i < slen && old_buf[i] == new_buf[i]) {
> - zrun_len++;
> - i++;
> + /* skip last zero run */
> + if (src_off + len == slen) {
> + return dst_off;
> }
> }
>
> - /* buffer unchanged */
> - if (zrun_len == slen) {
> - return 0;
> - }
> -
> - /* skip last zero run */
> - if (i == slen) {
> - return d;
> - }
> -
> - d += uleb128_encode_small(dst + d, zrun_len);
> -
> - zrun_len = 0;
> - nzrun_start = new_buf + i;
> -
> - /* overflow */
> - if (d + 2 > dlen) {
> - return -1;
> - }
> - /* not aligned to sizeof(long) */
> - res = (slen - i) % sizeof(long);
> - while (res && old_buf[i] != new_buf[i]) {
> - i++;
> - nzrun_len++;
> - res--;
> - }
> -
> - /* word at a time for speed, use of 32-bit long okay */
> - if (!res) {
> - /* truncation to 32-bit long okay */
> - unsigned long mask = (unsigned long)0x0101010101010101ULL;
> - while (i < slen) {
> - unsigned long xor;
> - xor = *(unsigned long *)(old_buf + i)
> - ^ *(unsigned long *)(new_buf + i);
> - if ((xor - mask) & ~xor & (mask << 7)) {
> - /* found the end of an nzrun within the current long */
> - while (old_buf[i] != new_buf[i]) {
> - nzrun_len++;
> - i++;
> - }
> - break;
> - } else {
> - i += sizeof(long);
> - nzrun_len += sizeof(long);
> - }
> + dst_off += uleb128_encode_small(dst + dst_off, len);
> + if (!zrun) {
> + /* overflow */
> + if (dst_off + len > dlen) {
> + return -1;
> }
> + memcpy(dst + dst_off, new_buf + src_off, len);
> + dst_off += len;
> }
> -
> - d += uleb128_encode_small(dst + d, nzrun_len);
> - /* overflow */
> - if (d + nzrun_len > dlen) {
> - return -1;
> - }
> - memcpy(dst + d, nzrun_start, nzrun_len);
> - d += nzrun_len;
> - nzrun_len = 0;
> }
>
> - return d;
> + return dst_off;
> }
>
> int xbzrle_decode_buffer(uint8_t *src, int slen, uint8_t *dst, int dlen)
> --
> 2.19.1
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2019-06-11 18:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-10 3:08 [Qemu-devel] [PATCH 0/2] migration/xbzrle: make xbzrle_encode_buffer little easier Wei Yang
2019-06-10 3:08 ` [Qemu-devel] [PATCH 1/2] cutils: remove one unnecessary pointer operation Wei Yang
2019-06-11 17:49 ` Dr. David Alan Gilbert
2019-06-11 22:10 ` Wei Yang
2019-06-12 10:17 ` Juan Quintela
2019-06-10 3:08 ` [Qemu-devel] [PATCH 2/2] migration/xbzrle: make xbzrle_encode_buffer little easier to read Wei Yang
2019-06-11 17:59 ` Dr. David Alan Gilbert [this message]
2019-06-12 0:33 ` Wei Yang
2019-06-12 1:30 ` Wei Yang
2019-06-12 10:29 ` Juan Quintela
2019-06-12 15:02 ` Wei Yang
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=20190611175926.GJ2777@work-vm \
--to=dgilbert@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=richardw.yang@linux.intel.com \
/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).