[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/22] configure: fix performance regression due to PIC objects
From: |
Alex Bennée |
Subject: |
[PULL 01/22] configure: fix performance regression due to PIC objects |
Date: |
Fri, 9 Oct 2020 17:31:26 +0100 |
From: Paolo Bonzini <pbonzini@redhat.com>
Because most files in QEMU are grouped into static libraries, Meson
conservatively
compiles them with -fPIC. This is overkill and produces slowdowns up to 20% on
some TCG tests.
As a stopgap measure, use the b_staticpic option to limit the slowdown to
--enable-pie. https://github.com/mesonbuild/meson/pull/7760 will allow
us to use b_staticpic=false and let Meson do the right thing.
Reported-by: Ahmed Karaman <ahmedkrmn@outlook.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20200924092314.1722645-57-pbonzini@redhat.com>
Message-Id: <20201007160038.26953-2-alex.bennee@linaro.org>
diff --git a/configure b/configure
index 28df227db5..b553288c5e 100755
--- a/configure
+++ b/configure
@@ -7209,6 +7209,7 @@ NINJA=${ninja:-$PWD/ninjatool} $meson setup \
-Dwerror=$(if test "$werror" = yes; then echo true; else echo false;
fi) \
-Dstrip=$(if test "$strip_opt" = yes; then echo true; else echo false;
fi) \
-Db_pie=$(if test "$pie" = yes; then echo true; else echo false; fi) \
+ -Db_staticpic=$(if test "$pie" = yes; then echo true; else echo false;
fi) \
-Db_coverage=$(if test "$gcov" = yes; then echo true; else echo false;
fi) \
-Dmalloc=$malloc -Dmalloc_trim=$malloc_trim -Dsparse=$sparse \
-Dkvm=$kvm -Dhax=$hax -Dwhpx=$whpx -Dhvf=$hvf \
--
2.20.1
- [PULL 00/22] acceptance regressions, testing, gitdm, plugins, Alex Bennée, 2020/10/09
- [PULL 02/22] hw/misc/mips_cpc: Start vCPU when powered on, Alex Bennée, 2020/10/09
- [PULL 03/22] hw/ide: restore replay support of IDE, Alex Bennée, 2020/10/09
- [PULL 01/22] configure: fix performance regression due to PIC objects,
Alex Bennée <=
- [PULL 05/22] cirrus: msys2/mingw speed is up, add excluded target back, Alex Bennée, 2020/10/09
- [PULL 07/22] contrib/gitdm: Add more academic domains, Alex Bennée, 2020/10/09
- [PULL 06/22] tests/docker: Add genisoimage to the docker file, Alex Bennée, 2020/10/09
- [PULL 04/22] cirrus: Fixing and speedup the msys2/mingw CI, Alex Bennée, 2020/10/09
- [PULL 08/22] contrib/gitdm: Add more individual contributors, Alex Bennée, 2020/10/09
- [PULL 10/22] contrib/gitdm: Add ByteDance to the domain map, Alex Bennée, 2020/10/09
- [PULL 09/22] contrib/gitdm: Add Baidu to the domain map, Alex Bennée, 2020/10/09
- [PULL 14/22] contrib/gitdm: Add Nir Soffer to Red Hat domain, Alex Bennée, 2020/10/09
- [PULL 12/22] contrib/gitdm: Add Nuvia to the domain map, Alex Bennée, 2020/10/09
- [PULL 22/22] tests/acceptance: disable machine_rx_gdbsim on GitLab, Alex Bennée, 2020/10/09