Skip to content

Tracking Issue for _MM_SHUFFLE #111147

Open
Open
@Amanieu

Description

@Amanieu

Feature gate: #![feature(stdarch_x86_mm_shuffle)]

This is a tracking issue for the _MM_SHUFFLE function in core::arch::x86.

Public API

// core::arch::{x86, x86_64}

pub const fn _MM_SHUFFLE(z: u32, y: u32, x: u32, w: u32) -> i32 {
    ((z << 6) | (y << 4) | (x << 2) | w) as i32
}

Steps / History

  • Final comment period (FCP)1
  • Stabilization PR

Unresolved Questions

Footnotes

  1. https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html

Metadata

Metadata

Assignees

No one assigned

    Labels

    C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCO-x86_32Target: x86 processors, 32 bit (like i686-*) (IA-32)O-x86_64Target: x86-64 processors (like x86_64-*) (also known as amd64 and x64)T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions