Implemented for the Cranelift interpreter: - `Bitrev` to reverse the order of the bits in an integer. - `Cls` to count the leading bits which are the same as the sign bit in an integer, yielding one less than the size of the integer for 0 and -1. - `Clz` to count the number of leading zeros in the bitwise representation of the integer. - `Ctz` to count the number of trailing zeros in the bitwise representation of the integer. - `Popcnt` to count the number of ones in the bitwise representation of the integer. Copyright (c) 2021, Arm Limited
51 lines
1.0 KiB
Plaintext
51 lines
1.0 KiB
Plaintext
test interpret
|
|
test run
|
|
target aarch64
|
|
|
|
function %popcnt_i8(i8) -> i8 {
|
|
block0(v0: i8):
|
|
v1 = popcnt v0
|
|
return v1
|
|
}
|
|
; run: %popcnt_i8(1) == 1
|
|
; run: %popcnt_i8(0x40) == 1
|
|
; run: %popcnt_i8(-1) == 8
|
|
; run: %popcnt_i8(0) == 0
|
|
|
|
function %popcnt_i16(i16) -> i16 {
|
|
block0(v0: i16):
|
|
v1 = popcnt v0
|
|
return v1
|
|
}
|
|
; run: %popcnt_i16(1) == 1
|
|
; run: %popcnt_i16(0x4000) == 1
|
|
; run: %popcnt_i16(-1) == 16
|
|
; run: %popcnt_i16(0) == 0
|
|
|
|
function %popcnt_i32(i32) -> i32 {
|
|
block0(v0: i32):
|
|
v1 = popcnt v0
|
|
return v1
|
|
}
|
|
; run: %popcnt_i32(1) == 1
|
|
; run: %popcnt_i32(0x40000000) == 1
|
|
; run: %popcnt_i32(-1) == 32
|
|
; run: %popcnt_i32(0) == 0
|
|
|
|
function %popcnt_i64(i64) -> i64 {
|
|
block0(v0: i64):
|
|
v1 = popcnt v0
|
|
return v1
|
|
}
|
|
; run: %popcnt_i64(1) == 1
|
|
; run: %popcnt_i64(0x4000000000000000) == 1
|
|
; run: %popcnt_i64(-1) == 64
|
|
; run: %popcnt_i64(0) == 0
|
|
|
|
function %popcnt_i8x16(i8x16) -> i8x16 {
|
|
block0(v0: i8x16):
|
|
v1 = popcnt v0
|
|
return v1
|
|
}
|
|
; run: %popcnt_i8x16([1 1 1 1 0x40 0x40 0x40 0x40 0xff 0xff 0xff 0xff 0 0 0 0]) == [1 1 1 1 1 1 1 1 8 8 8 8 0 0 0 0]
|