Page MenuHomeFreeBSD

Optimize set_syscall_retval for riscv
ClosedPublic

Authored by trasz on Oct 28 2020, 7:43 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Nov 14, 2:21 AM
Unknown Object (File)
Sat, Nov 8, 3:13 AM
Unknown Object (File)
Thu, Nov 6, 1:51 AM
Unknown Object (File)
Sat, Nov 1, 8:35 AM
Unknown Object (File)
Sat, Nov 1, 5:09 AM
Unknown Object (File)
Tue, Oct 28, 5:27 PM
Unknown Object (File)
Oct 12 2025, 5:19 AM
Unknown Object (File)
Oct 12 2025, 5:19 AM
Subscribers

Details

Summary

Optimize set_syscall_retval for riscv by predicting the return
value to be zero.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

trasz requested review of this revision.Oct 28 2020, 7:43 PM
This revision is now accepted and ready to land.Oct 28 2020, 8:48 PM
kp added a subscriber: kp.

Do we see measurable performance improvements with this?

(Looking at the generated code it does seem to be better, but measurements would make me feel better.)

I wouldn’t expect any visible results. The syscall path overhead is still huge, and there’s not a single reason for it - it’s a “death by thousand cuts” situation, which needs to be resolved in small chunks, like this one.