Implemented `Iabs` to return the absolute integer value with wrapping. Copyright (c) 2021, Arm Limited
35 lines
982 B
Plaintext
35 lines
982 B
Plaintext
test interpret
|
|
test run
|
|
target aarch64
|
|
set enable_simd
|
|
target x86_64
|
|
|
|
function %iabs_i8x16(i8x16) -> i8x16 {
|
|
block0(v0: i8x16):
|
|
v1 = iabs v0
|
|
return v1
|
|
}
|
|
; run: %iabs_i8x16([0 0 0 0 127 127 127 127 -127 -127 -127 -127 -128 -128 -128 -128]) == [0 0 0 0 127 127 127 127 127 127 127 127 -128 -128 -128 -128]
|
|
|
|
function %iabs_i16x8(i16x8) -> i16x8 {
|
|
block0(v0: i16x8):
|
|
v1 = iabs v0
|
|
return v1
|
|
}
|
|
; run: %iabs_i16x8([0 0 32767 32767 -32767 -32767 -32768 -32768]) == [0 0 32767 32767 32767 32767 -32768 -32768]
|
|
|
|
function %iabs_i32x4(i32x4) -> i32x4 {
|
|
block0(v0: i32x4):
|
|
v1 = iabs v0
|
|
return v1
|
|
}
|
|
; run: %iabs_i32x4([0 2147483647 -2147483647 -2147483648]) == [0 2147483647 2147483647 -2147483648]
|
|
|
|
function %iabs_i64x2(i64x2) -> i64x2 {
|
|
block0(v0: i64x2):
|
|
v1 = iabs v0
|
|
return v1
|
|
}
|
|
; run: %iabs_i64x2([0 9223372036854775807]) == [0 9223372036854775807]
|
|
; run: %iabs_i64x2([-9223372036854775807 -9223372036854775808]) == [9223372036854775807 -9223372036854775808]
|