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)
Dec 20 2023, 7:26 AM
Unknown Object (File)
Aug 15 2023, 1:18 PM
Unknown Object (File)
Aug 15 2023, 9:28 AM
Unknown Object (File)
Jul 19 2023, 12:08 AM
Unknown Object (File)
Jun 26 2023, 3:32 PM
Unknown Object (File)
Jun 26 2023, 3:31 PM
Unknown Object (File)
Jun 26 2023, 3:02 PM
Unknown Object (File)
Jun 26 2023, 2:51 PM
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.