Remove the boolean types from cranelift, and the associated instructions breduce, bextend, bconst, and bint. Standardize on using 1/0 for the return value from instructions that produce scalar boolean results, and -1/0 for boolean vector elements. Fixes #3205 Co-authored-by: Afonso Bordado <afonso360@users.noreply.github.com> Co-authored-by: Ulrich Weigand <ulrich.weigand@de.ibm.com> Co-authored-by: Chris Fallin <chris@cfallin.org>
49 lines
898 B
Plaintext
49 lines
898 B
Plaintext
; Test code generation for WebAssembly f32 comparison operators.
|
|
test compile
|
|
|
|
target aarch64
|
|
target i686 haswell
|
|
target x86_64 haswell
|
|
|
|
function %f32_eq(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp eq v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f32_ne(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp ne v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f32_lt(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp lt v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f32_gt(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp gt v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f32_le(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp le v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f32_ge(f32, f32) -> i32 {
|
|
block0(v0: f32, v1: f32):
|
|
v2 = fcmp ge v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|