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

Use word instead of int. #2266

Merged
merged 2 commits into from
May 1, 2024
Merged

Use word instead of int. #2266

merged 2 commits into from
May 1, 2024

Commits on Apr 29, 2024

  1. Use word instead of int.

    Anything that relates to the size of an array, an offset
    to a pointer, or the size of memory should be a word, not
    an int.  This avoids 64+32 add operations.
    
    Anything extracted from a Smi should be word because int
    will silently overflow.
    
    Many primitives changed from int (the smaller of int and Smi)
    to word (which actually means the argument must be Smi).
    erikcorry committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    60d322a View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

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