This switches from a custom list of architectures to use the target-lexicon crate. - "set is_64bit=1; isa x86" is replaced with "target x86_64", and similar for other architectures, and the `is_64bit` flag is removed entirely. - The `is_compressed` flag is removed too; it's no longer being used to control REX prefixes on x86-64, ARM and Thumb are separate architectures in target-lexicon, and we can figure out how to select RISC-V compressed encodings when we're ready.
31 lines
614 B
Plaintext
31 lines
614 B
Plaintext
; Test basic code generation for the select WebAssembly instruction.
|
|
test compile
|
|
|
|
target i686 haswell
|
|
|
|
target x86_64 haswell
|
|
|
|
function %select_i32(i32, i32, i32) -> i32 {
|
|
ebb0(v0: i32, v1: i32, v2: i32):
|
|
v3 = select v2, v0, v1
|
|
return v3
|
|
}
|
|
|
|
function %select_i64(i64, i64, i32) -> i64 {
|
|
ebb0(v0: i64, v1: i64, v2: i32):
|
|
v3 = select v2, v0, v1
|
|
return v3
|
|
}
|
|
|
|
function %select_f32(f32, f32, i32) -> f32 {
|
|
ebb0(v0: f32, v1: f32, v2: i32):
|
|
v3 = select v2, v0, v1
|
|
return v3
|
|
}
|
|
|
|
function %select_f64(f64, f64, i32) -> f64 {
|
|
ebb0(v0: f64, v1: f64, v2: i32):
|
|
v3 = select v2, v0, v1
|
|
return v3
|
|
}
|