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

Make heap large chunk bit twiddling branchless #4526

Merged

Commits on Oct 9, 2024

  1. Make heap large chunk bit twiddling branchless

    We use some bit twiddling operations for setting some flags on large
    chunks in actor heaps. Before this commit, the functionality was
    implemented with a ternary operator which would result in a branch.
    
    This commit changes the logic to use bit shifts instead to avoid
    the branching.
    dipinhora committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    731f2c3 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Configuration menu
    Copy the full SHA
    6a660c9 View commit details
    Browse the repository at this point in the history