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

Implement fcvt_to_uint_sat (f32x4 -> i32x4) for x86 #1822

Closed
wants to merge 4 commits into from

Commits on Jul 1, 2020

  1. Add x86_vcvtps2udq instruction

    This allows x86 machines with the right AVX features to lower fcvt_to_uint_sat.i32x4 to a single instruction.
    abrown committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    7dad5e2 View commit details
    Browse the repository at this point in the history
  2. Add x86 legalization for fcvt_to_uint_sat.i32x4

    This converts an `f32x4` into an `i32x4` (unsigned) with some rounding either by using an AVX512VL/F instruction--VCVTPS2UDQ--or a long sequence of SSE4.1 compatible instructions.
    abrown committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    192ea42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    519e63e View commit details
    Browse the repository at this point in the history
  4. Enable more SIMD spec tests

    abrown committed Jul 1, 2020
    Configuration menu
    Copy the full SHA
    229ed9d View commit details
    Browse the repository at this point in the history