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

Test on ppc64le and armv7l as well #135

Merged
merged 9 commits into from
Jul 31, 2024
Merged

Test on ppc64le and armv7l as well #135

merged 9 commits into from
Jul 31, 2024

Commits on Jul 31, 2024

  1. Configuration menu
    Copy the full SHA
    cd2b598 View commit details
    Browse the repository at this point in the history
  2. Update buildkite tags

    staticfloat committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    7e19b18 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f651e3d View commit details
    Browse the repository at this point in the history
  4. Tell armv7l assembler this is a constant

    Because armv7 opcodes are only 32 bits, `mov` can only move immediates
    that are 8 bits or less.  There's some wiggle room with shifting and
    whatnot, but in full generality you need to actually perform a load from
    a memory address.  The assembler will insert the immediate into a
    literal pool, but that pool has to be <4KB away from the current `pc` at
    the time of load, so we add `.ltorg` to flush the literal pool at the
    end of every function.
    staticfloat committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    3830ee1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ff4d823 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c8a55ab View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    df07df5 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    01ff5d4 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    875e610 View commit details
    Browse the repository at this point in the history