Add x86 SIMD bxor

This commit is contained in:
Andrew Brown
2019-09-30 11:48:20 -07:00
parent 4cdc1e76a4
commit dbe7dd59da
2 changed files with 13 additions and 3 deletions

View File

@@ -13,3 +13,9 @@ ebb0(v0: b64x2 [%xmm6], v1: b64x2 [%xmm3]):
[-, %xmm6] v2 = band v0, v1 ; bin: 66 0f db f3
return v2
}
function %bxor_b32x4(b32x4, b32x4) -> b32x4 {
ebb0(v0: b32x4 [%xmm4], v1: b32x4 [%xmm0]):
[-, %xmm4] v2 = bxor v0, v1 ; bin: 66 0f ef e0
return v2
}