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 f64 comparison operators.
|
|
test compile
|
|
|
|
target aarch64
|
|
target i686 haswell
|
|
target x86_64 haswell
|
|
|
|
function %f64_eq(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp eq v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f64_ne(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp ne v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f64_lt(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp lt v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f64_gt(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp gt v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f64_le(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp le v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|
|
|
|
function %f64_ge(f64, f64) -> i32 {
|
|
block0(v0: f64, v1: f64):
|
|
v2 = fcmp ge v0, v1
|
|
v3 = uextend.i32 v2
|
|
return v3
|
|
}
|