chacha/asm/chacha-armv8.pl: preserve FP registers d8 and d9 correctly
authorArd Biesheuvel <ard.biesheuvel@arm.com>
Thu, 21 Nov 2019 17:13:41 +0000 (18:13 +0100)
committerTomas Mraz <tmraz@fedoraproject.org>
Thu, 28 Nov 2019 15:40:43 +0000 (16:40 +0100)
commit07a470729c4ace678fba6aeeeaf506436aa856e2
tree3b17d2eb55f1488b01ffa59fa40a7878a4aec831
parentd86925e6bdaf3544615860e932d66207662d335e
chacha/asm/chacha-armv8.pl: preserve FP registers d8 and d9 correctly

Depending on the size of the input, we may take different paths through
the accelerated arm64 ChaCha20 routines, each of which use a different
subset of the FP registers, some of which need to be preserved and
restored, as required by the AArch64 calling convention (AAPCS64)

In some cases, (e.g., when the input size is 640 bytes), we call the 512
byte NEON path followed directly by the scalar path, and in this case,
we preserve and restore d8 and d9, only to clobber them again
immediately before handing over to the scalar path which does not touch
the FP registers at all, and hence does not restore them either.

Fix this by moving the restoration of d8 and d9 to a later stage in the
512 byte routine, either before calling the scalar path, or when exiting
the function.

Fixes #10470
CLA: trivial

Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10497)
crypto/chacha/asm/chacha-armv8.pl