From: Liang Li <liang.z.li@intel.com>
To: qemu-devel@nongnu.org
Cc: quintela@redhat.com, Liang Li <liang.z.li@intel.com>,
mst@redhat.com, amit.shah@redhat.com, pbonzini@redhat.com
Subject: [Qemu-devel] [v2 RESEND 0/2] add avx2 instruction optimization
Date: Tue, 10 Nov 2015 11:31:35 +0800 [thread overview]
Message-ID: <1447126297-27239-1-git-send-email-liang.z.li@intel.com> (raw)
buffer_find_nonzero_offset() is a hot function during live migration.
Now it use SSE2 intructions for optimization. For platform supports
AVX2 instructions, use the AVX2 instructions for optimization can help
to improve the performance about 30% comparing to SSE2.
Zero page check can be faster with this optimization, the test result
shows that for an 8GB RAM idle guest, this patch can help to shorten
the total live migration time about 6%.
This patch use the ifunc mechanism to select the proper function when
running, for platform supports AVX2, excute the AVX2 instructions,
else, excute the original code.
With patch, if build QEMU binary with AVX2 enabled, the binary can run
on both platforms support AVX2 or not.
If build QEMU binary with AVX2 diabled, or if compiler can not support
AVX2, the binary will not contain the AVX2 instruction, and it can run
on both platforms support AVX2 or not.
Liang Li (2):
cutils: add avx2 instruction optimization
configure: add options to config avx2
configure | 29 ++++++++++++++++++++++
include/qemu-common.h | 28 +++++++++++++++------
util/Makefile.objs | 2 ++
util/avx2.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++
util/cutils.c | 47 +++++++++++++++++++++++++++++++++--
5 files changed, 165 insertions(+), 9 deletions(-)
create mode 100644 util/avx2.c
--
1.9.1
next reply other threads:[~2015-11-10 3:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-10 3:31 Liang Li [this message]
2015-11-10 3:31 ` [Qemu-devel] [v2 RESEND 1/2] cutils: add avx2 instruction optimization Liang Li
2015-11-10 3:31 ` [Qemu-devel] [v2 RESEND 2/2] configure: add options to config avx2 Liang Li
2015-11-10 9:01 ` Juan Quintela
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=1447126297-27239-1-git-send-email-liang.z.li@intel.com \
--to=liang.z.li@intel.com \
--cc=amit.shah@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.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).