Page MenuHomeFreeBSD

bsd.cpu.mk: Simplify armv[67] support
ClosedPublic

Authored by imp on Feb 14 2023, 3:04 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sep 24 2024, 4:55 AM
Unknown Object (File)
Sep 23 2024, 2:03 AM
Unknown Object (File)
Sep 22 2024, 7:42 PM
Unknown Object (File)
Sep 22 2024, 3:37 PM
Unknown Object (File)
Sep 19 2024, 5:38 AM
Unknown Object (File)
Sep 18 2024, 6:23 PM
Unknown Object (File)
Sep 18 2024, 3:32 AM
Unknown Object (File)
Sep 18 2024, 2:43 AM
Subscribers

Details

Summary

Drop a clause that's no longer relevant to v4/v5. Drop support for
softfloat for v[45]. Simplify soft float expression by assuming we're
always either armv6 or armv7.

Sponsored by: Netflix

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

imp requested review of this revision.Feb 14 2023, 3:04 AM
emaste added inline comments.
share/mk/bsd.cpu.mk
296

Do we still support softfp v6/v7?

This revision is now accepted and ready to land.Feb 14 2023, 4:47 PM
share/mk/bsd.cpu.mk
296

Yes. We support it as a CPU variation via CPUTYPE.

It's either a 'hardfp instructions, passed around in int registers' or 'software fp, in int registers'. We have the former in tree. I believe we also have the latter, but Juniper wanted this for a core they were exploring so we added it. I've not tested it in some time, however.

This revision was automatically updated to reflect the committed changes.