Page MenuHomeFreeBSD

Round TF_SIZE up to the stack alignment (16-bytes).
ClosedPublic

Authored by brooks on Sep 4 2020, 5:58 PM.
Tags
None
Referenced Files
F171510103: D26328.diff
Fri, Sep 11, 1:08 PM
Unknown Object (File)
Thu, Sep 10, 7:22 PM
Unknown Object (File)
Tue, Sep 8, 9:26 PM
Unknown Object (File)
Tue, Sep 8, 3:15 AM
Unknown Object (File)
Sat, Sep 5, 1:21 PM
Unknown Object (File)
Fri, Sep 4, 7:39 AM
Unknown Object (File)
Thu, Sep 3, 5:18 PM
Unknown Object (File)
Thu, Sep 3, 4:49 PM
Subscribers

Details

Summary

The kernel adjusts the stack by TF_SIZE and the RISC-V ABI requires
that it remain 16-byte aligned.

Test Plan

works on CheriBSD

Diff Detail

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

Event Timeline

brooks requested review of this revision.Sep 4 2020, 5:58 PM
brooks created this revision.
mhorne added inline comments.
sys/riscv/riscv/genassym.c
90 ↗(On Diff #76655)

It seems to me that STACKALIGNBYTES should really just be 16.

This revision is now accepted and ready to land.Sep 4 2020, 6:43 PM
sys/riscv/riscv/genassym.c
90 ↗(On Diff #76655)

I like this documents what we're doing. I didn't use STACKALIGNBYTES in the D26327 because in CheriBSD our roundup2 isn't assembly friendly (we use a type-preserving builtin).

This revision was automatically updated to reflect the committed changes.