Displaying 1 result from an estimated 1 matches for "row1i".
Did you mean:
row1
2014 Sep 26
2
[LLVMdev] Canonicalizing vector masking.
...was wondering if there was maybe an opportunity to
canonicalize a particular code pattern:
%inputi = bitcast <4 x float> %input to <4 x i32>
%row0i = and <4 x i32> %inputi, <i32 -1, i32 0, i32 0, i32 0>
%row0 = bitcast <4 x i32> %row0i to <4 x float>
%row1i = and <4 x i32> %inputi, <i32 0, i32 -1, i32 0, i32 0>
%row1 = bitcast <4 x i32> %row1i to <4 x float>
%row2i = and <4 x i32> %inputi, <i32 0, i32 0, i32 -1, i32 0>
%row2 = bitcast <4 x i32> %row2i to <4 x float>
%row3i = and <4 x i32>...