okaneco · GitHub

Feature gate: #![feature(uint_gather_scatter_bits)]

This is a tracking issue for two functions that operate on masked bits: extract_bits consolidates masked bits into the least significant bits of an integer, and deposit_bits distributes bits from the least significant bits of an integer to the bits specified by a mask.

The functions are implemented on unsigned integers and correspond to the hardware instructions known on some platforms as "bit extract" and "bit deposit" (PEXT/PDEP).

Public API

impl uint {
    pub const fn extract_bits(self, mask: Self) -> Self;
    pub const fn deposit_bits(self, mask: Self) -> Self;
}

Steps / History

Unresolved Questions

  1. No stabilization before the existence of explicit LLVM support: As of November 2025, there is currently no LLVM intrinsic to guarantee that the code generated is optimal for the target or generates the target architecture instruction if present and the target feature is specified. This is a roadblock for stabilization. Update(2026-June): LLVM intrinsics are implemented, waiting for next LLVM bump before we can use them.
  2. Naming: The libs team prefers gather/scatter_bits while that is at odds with how SIMD instructions use the terms gather/scatter. ACP: Add functions for "compress bits" and "expand bits" to unsigned integers libs-team#695 (comment):
    ...by analogy to SIMD, SIMD gather/scatter allows you to arbitrarily reorder elements (it is a fully-general load/store to independently-determined addresses for each element), whereas SIMD compress/expand does not allow reordering the loaded/stored elements, just inserting/removing elements.
    The functions have been renamed according to the libs decision in Tracking Issue for uint_gather_scatter_bits #149069 (comment)

Footnotes

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

Read the original on github.com ↗