[Xen-devel] [PATCH] xen/arm64: head: Combine lsl and str instructions in a single one

2019-03-19 Thread Julien Grall
From: Julien Grall We can optimize a bit the assembly code by combining the 2 instructions in a single one. This likely not going to make the code faster, but likely make easier to read the assembly. Signed-off-by: Julien Grall --- xen/arch/arm/arm64/head.S | 12 1 file changed, 4

Re: [Xen-devel] [PATCH] xen/arm64: head: Combine lsl and str instructions in a single one

2019-04-16 Thread Stefano Stabellini
On Tue, 19 Mar 2019, Julien Grall wrote: > From: Julien Grall > > We can optimize a bit the assembly code by combining the 2 instructions > in a single one. This likely not going to make the code faster, but > likely make easier to read the assembly. > > Signed-off-by: Julien Grall Reviewed-by

Re: [Xen-devel] [PATCH] xen/arm64: head: Combine lsl and str instructions in a single one

2019-04-17 Thread Julien Grall
Hi, On 16/04/2019 22:07, Stefano Stabellini wrote: On Tue, 19 Mar 2019, Julien Grall wrote: From: Julien Grall We can optimize a bit the assembly code by combining the 2 instructions in a single one. This likely not going to make the code faster, but likely make easier to read the assembly.