Lines Matching refs:i256
3 define <2 x i256> @test_shl(<2 x i256> %In) {
4 %Amt = insertelement <2 x i256> undef, i256 -1, i32 0
5 %Out = shl <2 x i256> %In, %Amt
6 ret <2 x i256> %Out
20 define <2 x i256> @test_srl(<2 x i256> %In) {
21 %Amt = insertelement <2 x i256> undef, i256 -1, i32 0
22 %Out = lshr <2 x i256> %In, %Amt
23 ret <2 x i256> %Out
37 define <2 x i256> @test_sra(<2 x i256> %In) {
38 %Amt = insertelement <2 x i256> undef, i256 -1, i32 0
39 %Out = ashr <2 x i256> %In, %Amt
40 ret <2 x i256> %Out