[PATCH v4 10/40] KVM: arm64: Slightly improve debug save/restore functions
From: Andrew Jones <hidden>
Date: 2018-02-21 17:39:03
Also in:
kvm, kvmarm
From: Andrew Jones <hidden>
Date: 2018-02-21 17:39:03
Also in:
kvm, kvmarm
On Thu, Feb 15, 2018 at 10:03:02PM +0100, Christoffer Dall wrote:
The debug save/restore functions can be improved by using the has_vhe()
static key instead of the instruction alternative. Using the static key
uses the same paradigm as we're going to use elsewhere, it makes the
code more readable, and it generates slightly better code (no
stack setups and function calls unless necessary).
We also use a static key on the restore path, because it will be
marginally faster than loading a value from memory.
Finally, we don't have to conditionally clear the debug dirty flag if
it's set, we can just clear it.
Reviewed-by: Marc Zyngier <redacted>
Signed-off-by: Christoffer Dall <redacted>
---
Notes:
Changes since v1:
- Change dot to comma in comment
- Rename __debug_restore_spe to __debug_restore_spe_nvhe
arch/arm64/kvm/hyp/debug-sr.c | 26 ++++++++++++--------------
1 file changed, 12 insertions(+), 14 deletions(-)Maybe after this series is merged, if there are any hyp_alternate_select's left, we can replace all the remaining ones with has_vhe() and then just completely remove hyp_alternate_select. Reviewed-by: Andrew Jones <redacted>