rust/tests/ui/simd/intrinsic/generic-arithmetic-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

116 lines
3.4 KiB
Rust
Raw Normal View History

//@ build-fail
#![feature(repr_simd, core_intrinsics)]
#![allow(non_camel_case_types)]
use std::intrinsics::simd::*;
#[repr(simd)]
#[derive(Copy, Clone)]
2024-08-22 08:28:20 +00:00
pub struct i32x4(pub [i32; 4]);
#[repr(simd)]
#[derive(Copy, Clone)]
2024-08-22 08:28:20 +00:00
pub struct u32x4(pub [u32; 4]);
#[repr(simd)]
#[derive(Copy, Clone)]
2024-08-22 08:28:20 +00:00
pub struct f32x4(pub [f32; 4]);
fn main() {
2024-08-22 08:28:20 +00:00
let x = i32x4([0, 0, 0, 0]);
let y = u32x4([0, 0, 0, 0]);
let z = f32x4([0.0, 0.0, 0.0, 0.0]);
unsafe {
simd_add(x, x);
simd_add(y, y);
simd_add(z, z);
simd_sub(x, x);
simd_sub(y, y);
simd_sub(z, z);
simd_mul(x, x);
simd_mul(y, y);
simd_mul(z, z);
simd_div(x, x);
simd_div(y, y);
simd_div(z, z);
simd_rem(x, x);
simd_rem(y, y);
simd_rem(z, z);
simd_shl(x, x);
simd_shl(y, y);
simd_shr(x, x);
simd_shr(y, y);
simd_and(x, x);
simd_and(y, y);
simd_or(x, x);
simd_or(y, y);
simd_xor(x, x);
simd_xor(y, y);
2021-03-18 18:16:21 +00:00
simd_neg(x);
simd_neg(z);
2023-07-28 03:04:14 +00:00
simd_bswap(x);
simd_bswap(y);
simd_bitreverse(x);
simd_bitreverse(y);
simd_ctlz(x);
simd_ctlz(y);
simd_cttz(x);
simd_cttz(y);
2021-03-18 18:16:21 +00:00
simd_add(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_sub(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_mul(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_div(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_shl(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_shr(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_and(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_or(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_xor(0, 0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
2021-03-18 18:16:21 +00:00
simd_neg(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
2023-07-28 03:04:14 +00:00
simd_bswap(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_bitreverse(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_ctlz(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
simd_cttz(0);
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
2021-03-18 18:16:21 +00:00
simd_shl(z, z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_shr(z, z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_and(z, z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_or(z, z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_xor(z, z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
2023-07-28 03:04:14 +00:00
simd_bswap(z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_bitreverse(z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_ctlz(z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_ctpop(z);
//~^ ERROR unsupported operation on `f32x4` with element `f32`
simd_cttz(z);
2024-05-19 00:56:49 +00:00
//~^ ERROR unsupported operation on `f32x4` with element `f32`
}
}