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, Sep 4, 11:18 PM
Unknown Object (File)
Fri, Sep 4, 7:28 PM
Unknown Object (File)
Fri, Sep 4, 5:42 PM
Unknown Object (File)
Fri, Sep 4, 4:58 PM
Unknown Object (File)
Thu, Sep 3, 1:02 PM
Unknown Object (File)
Thu, Sep 3, 9:33 AM
Unknown Object (File)
Thu, Sep 3, 4:40 AM
Unknown Object (File)
Wed, Sep 2, 11:08 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.