Page MenuHomeFreeBSD

Fix makecontext() on MIPS O32.
ClosedPublic

Authored by jhb on Feb 2 2018, 10:51 PM.
Tags
None
Referenced Files
Unknown Object (File)
May 17 2024, 12:24 PM
Unknown Object (File)
May 17 2024, 7:25 AM
Unknown Object (File)
May 9 2024, 1:43 AM
Unknown Object (File)
May 2 2024, 7:28 PM
Unknown Object (File)
May 2 2024, 12:10 PM
Unknown Object (File)
May 2 2024, 9:30 AM
Unknown Object (File)
Apr 29 2024, 1:33 AM
Unknown Object (File)
Apr 17 2024, 10:25 AM
Subscribers

Details

Summary

The GP register can be clobbered by the callback, so save it in S1 while
invoking the callback function.

Test Plan
  • the various makecontext tests now pass on o32 instead of core dumping when trying to call ctx_done due to a trashed GP.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 14751
Build 14872: arc lint + arc unit

Event Timeline

I take full blame, and acknowledge spending too much time in code with -G0, and thus being somewhat lazy about gp's treatment.

I'd say that because there are a bunch of different ABI semantics here, the comment could be modified to be more explicit about s1 being callee-saved in o32, while gp is callee-saved in n32 and n64, or something.

Thank you! It's good as-is, or with a comment which is more explicit about register saving responsibility.

This revision is now accepted and ready to land.Feb 3 2018, 1:11 AM
This revision was automatically updated to reflect the committed changes.