Skip to main content

miri/intrinsics/x86/
sse42.rs

1use rustc_abi::Size;
2use rustc_middle::mir;
3use rustc_middle::ty::Ty;
4use rustc_span::Symbol;
5use rustc_target::spec::Arch;
6
7use crate::intrinsics::math::compute_crc32;
8use crate::*;
9
10/// A bitmask constant for scrutinizing the immediate byte provided
11/// to the string comparison intrinsics. It distinuishes between
12/// 16-bit integers and 8-bit integers. See [`compare_strings`]
13/// for more details about the immediate byte.
14const USE_WORDS: u8 = 1;
15
16/// A bitmask constant for scrutinizing the immediate byte provided
17/// to the string comparison intrinsics. It distinuishes between
18/// signed integers and unsigned integers. See [`compare_strings`]
19/// for more details about the immediate byte.
20const USE_SIGNED: u8 = 2;
21
22/// The main worker for the string comparison intrinsics, where the given
23/// strings are analyzed according to the given immediate byte.
24///
25/// # Arguments
26///
27/// * `str1` - The first string argument. It is always a length 16 array of bytes
28///   or a length 8 array of two-byte words.
29/// * `str2` - The second string argument. It is always a length 16 array of bytes
30///   or a length 8 array of two-byte words.
31/// * `len` is the length values of the supplied strings. It is distinct from the operand length
32///   in that it describes how much of `str1` and `str2` will be used for the calculation and may
33///   be smaller than the array length of `str1` and `str2`. The string length is counted in bytes
34///   if using byte operands and in two-byte words when using two-byte word operands.
35///   If the value is `None`, the length of a string is determined by the first
36///   null value inside the string.
37/// * `imm` is the immediate byte argument supplied to the intrinsic. The byte influences
38///   the operation as follows:
39///
40///   ```text
41///   0babccddef
42///     || | |||- Use of bytes vs use of two-byte words inside the operation.
43///     || | ||
44///     || | ||- Use of signed values versus use of unsigned values.
45///     || | |
46///     || | |- The comparison operation performed. A total of four operations are available.
47///     || |    * Equal any: Checks which characters of `str2` are inside `str1`.
48///     || |    * String ranges: Check if characters in `str2` are inside the provided character ranges.
49///     || |      Adjacent characters in `str1` constitute one range.
50///     || |    * String comparison: Mark positions where `str1` and `str2` have the same character.
51///     || |    * Substring search: Mark positions where `str1` is a substring in `str2`.
52///     || |
53///     || |- Result Polarity. The result bits may be subjected to a bitwise complement
54///     ||    if these bits are set.
55///     ||
56///     ||- Output selection. This bit has two meanings depending on the instruction.
57///     |   If the instruction is generating a mask, it distinguishes between a bit mask
58///     |   and a byte mask. Otherwise it distinguishes between the most significand bit
59///     |   and the least significand bit when generating an index.
60///     |
61///     |- This bit is ignored. It is expected that this bit is set to zero, but it is
62///        not a requirement.
63///   ```
64///
65/// # Returns
66///
67/// A result mask. The bit at index `i` inside the mask is set if 'str2' starting at `i`
68/// fulfills the test as defined inside the immediate byte.
69/// The mask may be negated if negation flags inside the immediate byte are set.
70///
71/// For more information, see the Intel Software Developer's Manual, Vol. 2b, Chapter 4.1.
72#[expect(clippy::arithmetic_side_effects)]
73fn compare_strings<'tcx>(
74    ecx: &mut MiriInterpCx<'tcx>,
75    str1: &OpTy<'tcx>,
76    str2: &OpTy<'tcx>,
77    len: Option<(u64, u64)>,
78    imm: u8,
79) -> InterpResult<'tcx, i32> {
80    let default_len = default_len::<u64>(imm);
81    let (len1, len2) = if let Some(t) = len {
82        t
83    } else {
84        let len1 = implicit_len(ecx, str1, imm)?.unwrap_or(default_len);
85        let len2 = implicit_len(ecx, str2, imm)?.unwrap_or(default_len);
86        (len1, len2)
87    };
88
89    let mut result = 0;
90    match (imm >> 2) & 3 {
91        0 => {
92            // Equal any: Checks which characters of `str2` are inside `str1`.
93            for i in 0..len2 {
94                let ch2 = ecx.read_immediate(&ecx.project_index(str2, i)?)?;
95
96                for j in 0..len1 {
97                    let ch1 = ecx.read_immediate(&ecx.project_index(str1, j)?)?;
98
99                    let eq = ecx.binary_op(mir::BinOp::Eq, &ch1, &ch2)?;
100                    if eq.to_scalar().to_bool()? {
101                        result |= 1 << i;
102                        break;
103                    }
104                }
105            }
106        }
107        1 => {
108            // String ranges: Check if characters in `str2` are inside the provided character ranges.
109            // Adjacent characters in `str1` constitute one range.
110            let len1 = len1 - (len1 & 1);
111            let get_ch = |ch: Scalar| -> InterpResult<'tcx, i32> {
112                let result = match (imm & USE_WORDS != 0, imm & USE_SIGNED != 0) {
113                    (true, true) => i32::from(ch.to_i16()?),
114                    (true, false) => i32::from(ch.to_u16()?),
115                    (false, true) => i32::from(ch.to_i8()?),
116                    (false, false) => i32::from(ch.to_u8()?),
117                };
118                interp_ok(result)
119            };
120
121            for i in 0..len2 {
122                for j in (0..len1).step_by(2) {
123                    let ch2 = get_ch(ecx.read_scalar(&ecx.project_index(str2, i)?)?)?;
124                    let ch1_1 = get_ch(ecx.read_scalar(&ecx.project_index(str1, j)?)?)?;
125                    let ch1_2 = get_ch(ecx.read_scalar(&ecx.project_index(str1, j + 1)?)?)?;
126
127                    if ch1_1 <= ch2 && ch2 <= ch1_2 {
128                        result |= 1 << i;
129                    }
130                }
131            }
132        }
133        2 => {
134            // String comparison: Mark positions where `str1` and `str2` have the same character.
135            result = (1 << default_len) - 1;
136            result ^= (1 << len1.max(len2)) - 1;
137
138            for i in 0..len1.min(len2) {
139                let ch1 = ecx.read_immediate(&ecx.project_index(str1, i)?)?;
140                let ch2 = ecx.read_immediate(&ecx.project_index(str2, i)?)?;
141                let eq = ecx.binary_op(mir::BinOp::Eq, &ch1, &ch2)?;
142                result |= i32::from(eq.to_scalar().to_bool()?) << i;
143            }
144        }
145        3 => {
146            // Substring search: Mark positions where `str1` is a substring in `str2`.
147            if len1 == 0 {
148                result = (1 << default_len) - 1;
149            } else if len1 <= len2 {
150                for i in 0..len2 {
151                    if len1 > len2 - i {
152                        break;
153                    }
154
155                    result |= 1 << i;
156
157                    for j in 0..len1 {
158                        let k = i + j;
159
160                        if k >= default_len {
161                            break;
162                        } else {
163                            let ch1 = ecx.read_immediate(&ecx.project_index(str1, j)?)?;
164                            let ch2 = ecx.read_immediate(&ecx.project_index(str2, k)?)?;
165                            let ne = ecx.binary_op(mir::BinOp::Ne, &ch1, &ch2)?;
166
167                            if ne.to_scalar().to_bool()? {
168                                result &= !(1 << i);
169                                break;
170                            }
171                        }
172                    }
173                }
174            }
175        }
176        _ => unreachable!(),
177    }
178
179    // Polarity: Possibly perform a bitwise complement on the result.
180    match (imm >> 4) & 3 {
181        3 => result ^= (1 << len1) - 1,
182        1 => result ^= (1 << default_len) - 1,
183        _ => (),
184    }
185
186    interp_ok(result)
187}
188
189/// Obtain the arguments of the intrinsic based on its name.
190/// The result is a tuple with the following values:
191/// * The first string argument.
192/// * The second string argument.
193/// * The string length values, if the intrinsic requires them.
194/// * The immediate instruction byte.
195///
196/// The string arguments will be transmuted into arrays of bytes
197/// or two-byte words, depending on the value of the immediate byte.
198/// Originally, they are [__m128i](https://doc.rust-lang.org/stable/core/arch/x86_64/struct.__m128i.html) values
199/// corresponding to the x86 128-bit integer SIMD type.
200fn deconstruct_args<'tcx>(
201    unprefixed_name: &str,
202    ecx: &mut MiriInterpCx<'tcx>,
203    link_name: Symbol,
204    args: &[OpTy<'tcx>],
205) -> InterpResult<'tcx, (OpTy<'tcx>, OpTy<'tcx>, Option<(u64, u64)>, u8)> {
206    let array_layout_fn = |ecx: &mut MiriInterpCx<'tcx>, imm: u8| {
207        if imm & USE_WORDS != 0 {
208            ecx.layout_of(Ty::new_array(ecx.tcx.tcx, ecx.tcx.types.u16, 8))
209        } else {
210            ecx.layout_of(Ty::new_array(ecx.tcx.tcx, ecx.tcx.types.u8, 16))
211        }
212    };
213
214    // The fourth letter of each string comparison intrinsic is either 'e' for "explicit" or 'i' for "implicit".
215    // The distinction will correspond to the intrinsics type signature. In this context, "explicit" and "implicit"
216    // refer to the way the string length is determined. The length is either passed explicitly in the "explicit"
217    // case or determined by a null terminator in the "implicit" case.
218    let is_explicit = match unprefixed_name.as_bytes().get(4) {
219        Some(&b'e') => true,
220        Some(&b'i') => false,
221        _ => unreachable!(),
222    };
223
224    if is_explicit {
225        let [str1, len1, str2, len2, imm] = ecx.check_shim_sig_unadjusted(link_name, args)?;
226        let imm = ecx.read_scalar(imm)?.to_u8()?;
227
228        let default_len = default_len::<u32>(imm);
229        let len1 = u64::from(ecx.read_scalar(len1)?.to_u32()?.min(default_len));
230        let len2 = u64::from(ecx.read_scalar(len2)?.to_u32()?.min(default_len));
231
232        let array_layout = array_layout_fn(ecx, imm)?;
233        let str1 = str1.transmute(array_layout, ecx)?;
234        let str2 = str2.transmute(array_layout, ecx)?;
235
236        interp_ok((str1, str2, Some((len1, len2)), imm))
237    } else {
238        let [str1, str2, imm] = ecx.check_shim_sig_unadjusted(link_name, args)?;
239        let imm = ecx.read_scalar(imm)?.to_u8()?;
240
241        let array_layout = array_layout_fn(ecx, imm)?;
242        let str1 = str1.transmute(array_layout, ecx)?;
243        let str2 = str2.transmute(array_layout, ecx)?;
244
245        interp_ok((str1, str2, None, imm))
246    }
247}
248
249/// Calculate the c-style string length for a given string `str`.
250/// The string is either a length 16 array of bytes a length 8 array of two-byte words.
251fn implicit_len<'tcx>(
252    ecx: &mut MiriInterpCx<'tcx>,
253    str: &OpTy<'tcx>,
254    imm: u8,
255) -> InterpResult<'tcx, Option<u64>> {
256    let mut result = None;
257    let zero = ImmTy::from_int(0, str.layout.field(ecx, 0));
258
259    for i in 0..default_len::<u64>(imm) {
260        let ch = ecx.read_immediate(&ecx.project_index(str, i)?)?;
261        let is_zero = ecx.binary_op(mir::BinOp::Eq, &ch, &zero)?;
262        if is_zero.to_scalar().to_bool()? {
263            result = Some(i);
264            break;
265        }
266    }
267    interp_ok(result)
268}
269
270#[inline]
271fn default_len<T: From<u8>>(imm: u8) -> T {
272    if imm & USE_WORDS != 0 { T::from(8u8) } else { T::from(16u8) }
273}
274
275impl<'tcx> EvalContextExt<'tcx> for crate::MiriInterpCx<'tcx> {}
276pub(super) trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
277    fn emulate_x86_sse42_intrinsic(
278        &mut self,
279        link_name: Symbol,
280        args: &[OpTy<'tcx>],
281        dest: &MPlaceTy<'tcx>,
282    ) -> InterpResult<'tcx, EmulateItemResult> {
283        let this = self.eval_context_mut();
284        this.expect_target_feature_for_intrinsic(link_name, "sse4.2")?;
285        // Prefix should have already been checked.
286        let unprefixed_name = link_name.as_str().strip_prefix("llvm.x86.sse42.").unwrap();
287
288        match unprefixed_name {
289            // Used to implement the `_mm_cmpestrm` and the `_mm_cmpistrm` functions.
290            // These functions compare the input strings and return the resulting mask.
291            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=1044,922
292            "pcmpistrm128" | "pcmpestrm128" => {
293                let (str1, str2, len, imm) =
294                    deconstruct_args(unprefixed_name, this, link_name, args)?;
295                let mask = compare_strings(this, &str1, &str2, len, imm)?;
296
297                // The sixth bit inside the immediate byte distinguishes
298                // between a bit mask or a byte mask when generating a mask.
299                if imm & 0b100_0000 != 0 {
300                    let (array_layout, size) = if imm & USE_WORDS != 0 {
301                        (this.layout_of(Ty::new_array(this.tcx.tcx, this.tcx.types.u16, 8))?, 2)
302                    } else {
303                        (this.layout_of(Ty::new_array(this.tcx.tcx, this.tcx.types.u8, 16))?, 1)
304                    };
305                    let size = Size::from_bytes(size);
306                    let dest = dest.transmute(array_layout, this)?;
307
308                    for i in 0..default_len::<u64>(imm) {
309                        let result = helpers::bool_to_simd_element(mask & (1 << i) != 0, size);
310                        this.write_scalar(result, &this.project_index(&dest, i)?)?;
311                    }
312                } else {
313                    let layout = this.layout_of(this.tcx.types.i128)?;
314                    let dest = dest.transmute(layout, this)?;
315                    this.write_scalar(Scalar::from_i128(i128::from(mask)), &dest)?;
316                }
317            }
318
319            // Used to implement the `_mm_cmpestra` and the `_mm_cmpistra` functions.
320            // These functions compare the input strings and return `1` if the end of the second
321            // input string is not reached and the resulting mask is zero, and `0` otherwise.
322            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=919,1041
323            "pcmpistria128" | "pcmpestria128" => {
324                let (str1, str2, len, imm) =
325                    deconstruct_args(unprefixed_name, this, link_name, args)?;
326                let result = if compare_strings(this, &str1, &str2, len, imm)? != 0 {
327                    false
328                } else if let Some((_, len)) = len {
329                    len >= default_len::<u64>(imm)
330                } else {
331                    implicit_len(this, &str1, imm)?.is_some()
332                };
333
334                this.write_scalar(Scalar::from_i32(i32::from(result)), dest)?;
335            }
336
337            // Used to implement the `_mm_cmpestri` and the `_mm_cmpistri` functions.
338            // These functions compare the input strings and return the bit index
339            // for most significant or least significant bit of the resulting mask.
340            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=921,1043
341            "pcmpistri128" | "pcmpestri128" => {
342                let (str1, str2, len, imm) =
343                    deconstruct_args(unprefixed_name, this, link_name, args)?;
344                let mask = compare_strings(this, &str1, &str2, len, imm)?;
345
346                let len = default_len::<u32>(imm);
347                // The sixth bit inside the immediate byte distinguishes between the least
348                // significant bit and the most significant bit when generating an index.
349                let result = if imm & 0b100_0000 != 0 {
350                    // most significant bit
351                    31u32.wrapping_sub(mask.leading_zeros()).min(len)
352                } else {
353                    // least significant bit
354                    mask.trailing_zeros().min(len)
355                };
356                this.write_scalar(Scalar::from_i32(i32::try_from(result).unwrap()), dest)?;
357            }
358
359            // Used to implement the `_mm_cmpestro` and the `_mm_cmpistro` functions.
360            // These functions compare the input strings and return the lowest bit of the
361            // resulting mask.
362            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=923,1045
363            "pcmpistrio128" | "pcmpestrio128" => {
364                let (str1, str2, len, imm) =
365                    deconstruct_args(unprefixed_name, this, link_name, args)?;
366                let mask = compare_strings(this, &str1, &str2, len, imm)?;
367                this.write_scalar(Scalar::from_i32(mask & 1), dest)?;
368            }
369
370            // Used to implement the `_mm_cmpestrc` and the `_mm_cmpistrc` functions.
371            // These functions compare the input strings and return `1` if the resulting
372            // mask was non-zero, and `0` otherwise.
373            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=920,1042
374            "pcmpistric128" | "pcmpestric128" => {
375                let (str1, str2, len, imm) =
376                    deconstruct_args(unprefixed_name, this, link_name, args)?;
377                let mask = compare_strings(this, &str1, &str2, len, imm)?;
378                this.write_scalar(Scalar::from_i32(i32::from(mask != 0)), dest)?;
379            }
380
381            // Used to implement the `_mm_cmpistrz` and the `_mm_cmpistrs` functions.
382            // These functions return `1` if the string end has been reached and `0` otherwise.
383            // Since these functions define the string length implicitly, it is equal to a
384            // search for a null terminator (see `deconstruct_args` for more details).
385            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=924,925
386            "pcmpistriz128" | "pcmpistris128" => {
387                let [str1, str2, imm] = this.check_shim_sig_unadjusted(link_name, args)?;
388                let imm = this.read_scalar(imm)?.to_u8()?;
389
390                let str = if unprefixed_name == "pcmpistris128" { str1 } else { str2 };
391                let array_layout = if imm & USE_WORDS != 0 {
392                    this.layout_of(Ty::new_array(this.tcx.tcx, this.tcx.types.u16, 8))?
393                } else {
394                    this.layout_of(Ty::new_array(this.tcx.tcx, this.tcx.types.u8, 16))?
395                };
396                let str = str.transmute(array_layout, this)?;
397                let result = implicit_len(this, &str, imm)?.is_some();
398
399                this.write_scalar(Scalar::from_i32(i32::from(result)), dest)?;
400            }
401
402            // Used to implement the `_mm_cmpestrz` and the `_mm_cmpestrs` functions.
403            // These functions return 1 if the explicitly passed string length is smaller
404            // than 16 for byte-sized operands or 8 for word-sized operands.
405            // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#ig_expand=1046,1047
406            "pcmpestriz128" | "pcmpestris128" => {
407                let [_, len1, _, len2, imm] = this.check_shim_sig_unadjusted(link_name, args)?;
408                let len = if unprefixed_name == "pcmpestris128" { len1 } else { len2 };
409                let len = this.read_scalar(len)?.to_i32()?;
410                let imm = this.read_scalar(imm)?.to_u8()?;
411                this.write_scalar(
412                    Scalar::from_i32(i32::from(len < default_len::<i32>(imm))),
413                    dest,
414                )?;
415            }
416
417            // Used to implement the `_mm_crc32_u{8, 16, 32, 64}` functions.
418            // These functions calculate a 32-bit CRC using `0x11EDC6F41`
419            // as the polynomial, also known as CRC32C.
420            // https://datatracker.ietf.org/doc/html/rfc3720#section-12.1
421            "crc32.32.8" | "crc32.32.16" | "crc32.32.32" | "crc32.64.64" => {
422                let bit_size = match unprefixed_name {
423                    "crc32.32.8" => 8,
424                    "crc32.32.16" => 16,
425                    "crc32.32.32" => 32,
426                    "crc32.64.64" => 64,
427                    _ => unreachable!(),
428                };
429
430                if bit_size == 64 && this.tcx.sess.target.arch != Arch::X86_64 {
431                    return interp_ok(EmulateItemResult::NotSupported);
432                }
433
434                let [left, right] = this.check_shim_sig_unadjusted(link_name, args)?;
435                let left = this.read_scalar(left)?;
436                let right = this.read_scalar(right)?;
437
438                let crc = if bit_size == 64 {
439                    // The 64-bit version will only consider the lower 32 bits,
440                    // while the upper 32 bits get discarded.
441                    #[expect(clippy::as_conversions)]
442                    (left.to_u64()? as u32)
443                } else {
444                    left.to_u32()?
445                };
446                let data = match bit_size {
447                    8 => u64::from(right.to_u8()?),
448                    16 => u64::from(right.to_u16()?),
449                    32 => u64::from(right.to_u32()?),
450                    64 => right.to_u64()?,
451                    _ => unreachable!(),
452                };
453
454                let result = compute_crc32(crc, data, bit_size, 0x11EDC6F41);
455                let result = if bit_size == 64 {
456                    Scalar::from_u64(u64::from(result))
457                } else {
458                    Scalar::from_u32(result)
459                };
460
461                this.write_scalar(result, dest)?;
462            }
463            _ => return interp_ok(EmulateItemResult::NotSupported),
464        }
465        interp_ok(EmulateItemResult::NeedsReturn)
466    }
467}