Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialize harts with zero properly #77

Merged
merged 1 commit into from
Apr 1, 2025
Merged

Conversation

EricccTaiwan
Copy link
Contributor

@EricccTaiwan EricccTaiwan commented Mar 31, 2025

Uninitialized hart_t fields may lead to undefined behavior or startup exceptions. This change replaces malloc with calloc to ensure that all fields are zeroed upon allocation, providing a safer and more consistent initialization.

Closed : #69

Summary by Bito

This pull request enhances the safety of hart_t instance initialization by replacing malloc with calloc, ensuring all fields are zero-initialized upon allocation. This change addresses potential undefined behavior and improves consistency.

Unit tests added: False

Estimated effort to review (1-5, lower is better): 2 - The changes are straightforward and primarily focus on memory allocation safety, making the review process relatively simple.

@sysprog21 sysprog21 deleted a comment from EricccTaiwan Apr 1, 2025
@sysprog21 sysprog21 deleted a comment from bito-code-review bot Apr 1, 2025
Copy link
Collaborator

@jserv jserv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rebase the latest master branch for clang-format-18 awareness.

Uninitialized hart_t fields may lead to undefined behavior or startup
exceptions. This change replaces malloc with calloc to ensure that
all fields are zeroed upon allocation, providing a safer and more
consistent initialization.

Co-authored-by: Po-Ying Chiu <[email protected]>
Reported-by: @testriscv
@jserv jserv changed the title Zero-initialize hart_t using calloc initialize harts with zero properly Apr 1, 2025
@jserv jserv changed the title initialize harts with zero properly Initialize harts with zero properly Apr 1, 2025
@jserv jserv merged commit 16ee11a into sysprog21:master Apr 1, 2025
3 checks passed
@jserv
Copy link
Collaborator

jserv commented Apr 1, 2025

Thank @EricccTaiwan for contributing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

newhart must be zeroed
2 participants