Module miri::shims::x86::sse42

source ยท

Constantsยง

  • USE_SIGNED ๐Ÿ”’
    A bitmask constant for scrutinizing the immediate byte provided to the string comparison intrinsics. It distinuishes between signed integers and unsigned integers. See compare_strings for more details about the immediate byte.
  • USE_WORDS ๐Ÿ”’
    A bitmask constant for scrutinizing the immediate byte provided to the string comparison intrinsics. It distinuishes between 16-bit integers and 8-bit integers. See compare_strings for more details about the immediate byte.

Traitsยง

Functionsยง

  • compare_strings ๐Ÿ”’
    The main worker for the string comparison intrinsics, where the given strings are analyzed according to the given immediate byte.
  • deconstruct_args ๐Ÿ”’
    Obtain the arguments of the intrinsic based on its name. The result is a tuple with the following values:
  • default_len ๐Ÿ”’
  • implicit_len ๐Ÿ”’
    Calculate the c-style string length for a given string str. The string is either a length 16 array of bytes a length 8 array of two-byte words.