File tree 1 file changed +2
-15
lines changed
collector/benchmarks/packed-simd/src/codegen/reductions/mask/x86
1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -7,27 +7,14 @@ macro_rules! x86_m8x8_mmx_impl {
7
7
#[ inline]
8
8
#[ target_feature( enable = "mmx" ) ]
9
9
unsafe fn all( self ) -> bool {
10
- #[ cfg( target_arch = "x86" ) ]
11
- use crate :: arch:: x86:: _mm_movemask_pi8;
12
- #[ cfg( target_arch = "x86_64" ) ]
13
- use crate :: arch:: x86_64:: _mm_movemask_pi8;
14
- // _mm_movemask_pi8(a) creates an 8bit mask containing the most
15
- // significant bit of each byte of `a`. If all bits are set,
16
- // then all 8 lanes of the mask are true.
17
- _mm_movemask_pi8( crate :: mem:: transmute( self ) )
18
- == u8 :: max_value( ) as i32
10
+ unimplemented!( )
19
11
}
20
12
}
21
13
impl Any for $id {
22
14
#[ inline]
23
15
#[ target_feature( enable = "mmx" ) ]
24
16
unsafe fn any( self ) -> bool {
25
- #[ cfg( target_arch = "x86" ) ]
26
- use crate :: arch:: x86:: _mm_movemask_pi8;
27
- #[ cfg( target_arch = "x86_64" ) ]
28
- use crate :: arch:: x86_64:: _mm_movemask_pi8;
29
-
30
- _mm_movemask_pi8( crate :: mem:: transmute( self ) ) != 0
17
+ unimplemented!( )
31
18
}
32
19
}
33
20
} ;
You can’t perform that action at this time.
0 commit comments