94084c
commit aa3a97496c82a8443039248ebee650322c9480f4
94084c
Author: Aurelien Jarno <aurelien@aurel32.net>
94084c
Date:   Thu Dec 16 00:06:28 2021 +0100
94084c
94084c
    riscv: align stack before calling _dl_init [BZ #28703]
94084c
    
94084c
    Align the stack pointer to 128 bits during the call to _dl_init() as
94084c
    specified by the RISC-V ABI [1]. This fixes the elf/tst-align2 test.
94084c
    
94084c
    Fixes bug 28703.
94084c
    
94084c
    [1] https://github.com/riscv-non-isa/riscv-elf-psabi-doc
94084c
    
94084c
    (cherry picked from commit 225da459cebef1037dcd78b56471edc0721e1c41)
94084c
94084c
diff --git a/sysdeps/riscv/dl-machine.h b/sysdeps/riscv/dl-machine.h
94084c
index aedf69fcdd8aff50..951268923da26a37 100644
94084c
--- a/sysdeps/riscv/dl-machine.h
94084c
+++ b/sysdeps/riscv/dl-machine.h
94084c
@@ -127,8 +127,14 @@ elf_machine_load_address (void)
94084c
 	sll a3, a1, " STRINGXP (PTRLOG) "\n\
94084c
 	add a3, a3, a2\n\
94084c
 	add a3, a3, " STRINGXP (SZREG) "\n\
94084c
+	# Stash the stack pointer in s1.\n\
94084c
+	mv s1, sp\n\
94084c
+	# Align stack to 128 bits for the _dl_init call.\n\
94084c
+	andi sp, sp,-16\n\
94084c
 	# Call the function to run the initializers.\n\
94084c
 	jal _dl_init\n\
94084c
+	# Restore the stack pointer for _start.\n\
94084c
+	mv sp, s1\n\
94084c
 	# Pass our finalizer function to _start.\n\
94084c
 	lla a0, _dl_fini\n\
94084c
 	# Jump to the user entry point.\n\