]> git.sur5r.net Git - u-boot/commit
armv8: shrink exception table code
authorAndre Przywara <andre.przywara@arm.com>
Mon, 27 Nov 2017 00:47:09 +0000 (00:47 +0000)
committerTom Rini <trini@konsulko.com>
Mon, 4 Dec 2017 14:59:02 +0000 (09:59 -0500)
commit78ad457b2dbd0fe6cdc7ea42a69774a72ed007b9
tree01f9799164ebc662da9d956fdc643219e6306c00
parent8993056fb3d4af4f0cd078df20130d4e7c35c2f7
armv8: shrink exception table code

In the moment our exception entry code needs 34 instructions, so we
can't use put it directly into the table entry, which offers "only"
32 instructions there. Right now we just put an unconditional branch
there, then use a macro to place the 34 instructions *per entry* after
that. That effectivly doubles the size of our exception table, which
is quite a waste, given that we use it mostly for debugging purposes.

Since the register saving part is actually identical, let's just convert
that macro into a function, and "bl" into it directly from the exception
slot, of course after having saved at least the original LR.
This saves us about 950 bytes of code, which is quite a relief for some
tight SPLs, in particular the 64-bit Allwinner ones.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
arch/arm/cpu/armv8/exceptions.S