mbox series

[v2,0/4] tools/nolibc: MIPS: entrypoint cleanups and N32/N64 ABIs

Message ID 20250225-nolibc-mips-n32-v2-0-664b47d87fa0@weissschuh.net
Headers show
Series tools/nolibc: MIPS: entrypoint cleanups and N32/N64 ABIs | expand

Message

Thomas Weißschuh Feb. 25, 2025, 5:02 p.m. UTC
Introduce support for the N32 and N64 ABIs. As preparation, the
entrypoint is first simplified significantly. Thanks to Maciej for all
the valuable information.

Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
---
Changes in v2:
- Clean up entrypoint first
- Annotate #endifs
- Link to v1: https://lore.kernel.org/r/20250212-nolibc-mips-n32-v1-1-6892e58d1321@weissschuh.net

---
Thomas Weißschuh (4):
      tools/nolibc: MIPS: drop $gp setup
      tools/nolibc: MIPS: drop manual stack pointer alignment
      tools/nolibc: MIPS: drop noreorder option
      tools/nolibc: MIPS: add support for N64 and N32 ABIs

 tools/include/nolibc/arch-mips.h            | 117 +++++++++++++++++++++-------
 tools/testing/selftests/nolibc/Makefile     |  28 ++++++-
 tools/testing/selftests/nolibc/run-tests.sh |   2 +-
 3 files changed, 118 insertions(+), 29 deletions(-)
---
base-commit: 9c812b01f13d37410ea103e00bc47e5e0f6d2bad
change-id: 20231105-nolibc-mips-n32-234901bd910d

Best regards,

Comments

Sebastian Andrzej Siewior March 26, 2025, 8:54 p.m. UTC | #1
On 2025-02-25 18:02:34 [+0100], Thomas Weißschuh wrote:
> Introduce support for the N32 and N64 ABIs. As preparation, the
> entrypoint is first simplified significantly. Thanks to Maciej for all
> the valuable information.
> 
> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>

Tested-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> [ICT Loongson-3]

mips32le works as-is.
For mips64le I had to s/-march=mips64r6/-march=mips64r2 to match the
ABI. Which makes me wonder: Why do do we need to pass -march here and
can't rely on toolchain defaults?

Sebastian
Thomas Weißschuh March 26, 2025, 9:51 p.m. UTC | #2
On 2025-03-26 21:54:34+0100, Sebastian Andrzej Siewior wrote:
> On 2025-02-25 18:02:34 [+0100], Thomas Weißschuh wrote:
> > Introduce support for the N32 and N64 ABIs. As preparation, the
> > entrypoint is first simplified significantly. Thanks to Maciej for all
> > the valuable information.
> > 
> > Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
> 
> Tested-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc> [ICT Loongson-3]

Thanks!

> mips32le works as-is.
> For mips64le I had to s/-march=mips64r6/-march=mips64r2 to match the
> ABI. Which makes me wonder: Why do do we need to pass -march here and
> can't rely on toolchain defaults?

The goal here is to have an as-wide-as-possible test matrix for
nolibc-test, which will mostly be running on QEMU anyways.
Also we need to run the correct QEMU user variant; by fixing the
architecture this is easy to do.


Thomas
Sebastian Andrzej Siewior March 26, 2025, 10:04 p.m. UTC | #3
On 2025-03-26 22:51:54 [+0100], Thomas Weißschuh wrote:
> > mips32le works as-is.
> > For mips64le I had to s/-march=mips64r6/-march=mips64r2 to match the
> > ABI. Which makes me wonder: Why do do we need to pass -march here and
> > can't rely on toolchain defaults?
> 
> The goal here is to have an as-wide-as-possible test matrix for
> nolibc-test, which will mostly be running on QEMU anyways.
> Also we need to run the correct QEMU user variant; by fixing the
> architecture this is easy to do.

I would prefer to make distro users as in real hardware first class
citizen and not QEMU users. If you run qemu you can specify the ABI
anyway.

> Thomas

Sebastian
Sebastian Andrzej Siewior March 30, 2025, 7:19 p.m. UTC | #4
On 2025-03-29 10:51:47 [+0100], Thomas Weißschuh wrote:
> 
> Does the following work for you when running kust "make nolibc-test"?

I had to manually apply this on top of b4/nolibc-mips-n32. The resulting
make produced the native 64bit binary.

Sebastian