The tests for the SIMD floating-point maximum and minimum operations require particular care because the handling of the NaN values is non-deterministic and may vary between platforms. There is no way to match several NaN values in a test, so the solution is to extract the non-deterministic test cases into a separate file that is subsequently replicated for every backend under test, with adjustments made to the expected results. Copyright (c) 2021, Arm Limited.
27 lines
655 B
Plaintext
27 lines
655 B
Plaintext
test simple-gvn
|
|
|
|
target aarch64
|
|
target x86_64
|
|
|
|
function %eliminate_redundant_global_loads(i32, i64 vmctx) {
|
|
gv0 = vmctx
|
|
gv1 = load.i64 notrap aligned readonly gv0
|
|
heap0 = static gv1, min 0x1_0000, bound 0x1_0000_0000, offset_guard 0x8000_0000, index_type i32
|
|
|
|
block0(v0: i32, v1: i64):
|
|
v2 = heap_addr.i64 heap0, v0, 1
|
|
v3 = heap_addr.i64 heap0, v0, 1
|
|
|
|
v4 = iconst.i32 0
|
|
store.i32 notrap aligned v4, v2
|
|
store.i32 notrap aligned v4, v3
|
|
|
|
return
|
|
}
|
|
; check: v2 = heap_addr.i64 heap0, v0, 1
|
|
; check: v3 -> v2
|
|
; check: v4 = iconst.i32 0
|
|
; check: store notrap aligned v4, v2
|
|
; check: store notrap aligned v4, v2
|
|
; check: return
|