lkml.org 
[lkml]   [2018]   [Jan]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v2 15/16] arm/arm64: smccc: Implement SMCCC v1.1 inline primitive
From
Date
On 29/01/18 19:07, Robin Murphy wrote:
> On 29/01/18 17:45, Marc Zyngier wrote:
>> One of the major improvement of SMCCC v1.1 is that it only clobbers
>> the first 4 registers, both on 32 and 64bit. This means that it
>> becomes very easy to provide an inline version of the SMC call
>> primitive, and avoid performing a function call to stash the
>> registers that would otherwise be clobbered by SMCCC v1.0.
>
> This is disgusting... I love it :D

I expected nothing less from you! ;-)

>
>> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
>> ---
>> include/linux/arm-smccc.h | 157 ++++++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 157 insertions(+)
>>
>> diff --git a/include/linux/arm-smccc.h b/include/linux/arm-smccc.h
>> index dd44d8458c04..bc5843728909 100644
>> --- a/include/linux/arm-smccc.h
>> +++ b/include/linux/arm-smccc.h
>> @@ -150,5 +150,162 @@ asmlinkage void __arm_smccc_hvc(unsigned long a0, unsigned long a1,
>>
>> #define arm_smccc_hvc_quirk(...) __arm_smccc_hvc(__VA_ARGS__)
>>
>> +/* SMCCC v1.1 implementation madness follows */
>> +#ifdef CONFIG_ARM64
>> +
>> +#define SMCCC_SMC_INST "smc #0"
>> +#define SMCCC_HVC_INST "hvc #0"
>> +
>> +#define __arm_smccc_1_1_prologue(inst) \
>> + inst "\n" \
>> + "cbz %[ptr], 1f\n" \
>> + "stp %x[r0], %x[r1], %[ra0]\n" \
>> + "stp %x[r2], %x[r3], %[ra2]\n" \
>> + "1:\n" \
>> + : [ra0] "=Ump" (*(&___res->a0)), \
>> + [ra2] "=Ump" (*(&___res->a2)),
>
> Rather than embedding a guaranteed spill to memory, I wonder if there's
> money in just always declaring r0-r3 as in-out operands, and propagating
> them by value afterwards, i.e.:
>
> asm(...);
> if (___res)
> *___res = (struct arm_smccc_res){ r0, r1, r2, r3 };
>
> In theory, for sufficiently simple callers that might allow res to stay
> in registers for its entire lifetime and give nicer codegen. It *might*
> also simplify some of this macro machinery too, although at this point
> in the evening I can't really tell...

I just implemented it, and this is indeed much better. In most cases,
the store gets optimized away, mostly because we either pass NULL (and
the condition is dropped) or the store doesn't need to take place as we
evaluate a condition and discard the structure, like in
check_smccc_arch_workaround_1.

In all cases, this allows for slightly reduced levels of cpp madness,
and better codegen. I also suspect it will solve Ard's register
allocation issue.

Thanks,

M.
--
Jazz is not dead. It just smells funny...

\
 
 \ /
  Last update: 2018-01-30 09:54    [W:0.079 / U:0.072 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site