mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-12 13:55:57 +03:00

This also fixes a pessimization where the `memcmp` call would become an `invoke` if the user provides his own `memcmp` prototype in the code (the prototype would not carry the `nounwind` function attribute).
44 lines
1.6 KiB
D
44 lines
1.6 KiB
D
// Tests that dynamic array (in)equality is optimized to a memcmp call when valid.
|
|
|
|
// RUN: %ldc -c -output-ll -of=%t.ll %s && FileCheck %s --check-prefix=LLVM < %t.ll
|
|
// RUN: %ldc -c -output-s -O3 -of=%t.s %s && FileCheck %s --check-prefix=ASM < %t.s
|
|
// RUN: %ldc -O0 -run %s
|
|
// RUN: %ldc -O3 -run %s
|
|
|
|
module mod;
|
|
|
|
// LLVM-LABEL: define{{.*}} @{{.*}}static_dynamic
|
|
// ASM-LABEL: static_dynamic{{.*}}:
|
|
bool static_dynamic(bool[4] a, bool[] b)
|
|
{
|
|
// LLVM: call i32 @memcmp(
|
|
|
|
// Also test that LLVM recognizes and optimizes-out the call to memcmp for 4 byte arrays:
|
|
// ASM-NOT: memcmp
|
|
return a == b;
|
|
}
|
|
|
|
// LLVM-LABEL: define{{.*}} @{{.*}}inv_dynamic_dynamic
|
|
// ASM-LABEL: inv_dynamic_dynamic{{.*}}:
|
|
bool inv_dynamic_dynamic(bool[] a, bool[] b)
|
|
{
|
|
// LLVM: call i32 @memcmp(
|
|
return a != b;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
assert( static_dynamic([true, false, true, false], [true, false, true, false]));
|
|
assert(!static_dynamic([true, false, true, false], [true, false, true, true]));
|
|
assert(!static_dynamic([true, false, true, false], [true, false, true, false, true]));
|
|
assert(!static_dynamic([true, false, true, false], [true, false, true]));
|
|
|
|
assert(!inv_dynamic_dynamic([true, false, true, false], [true, false, true, false]));
|
|
assert( inv_dynamic_dynamic([true, false, true, false], [true, false, true, true]));
|
|
assert( inv_dynamic_dynamic([true, false], [true]));
|
|
assert( inv_dynamic_dynamic([true, false, true, false], [true, false, true]));
|
|
|
|
// Make sure that comparing zero-length arrays with ptr=null is allowed.
|
|
bool* ptr = null;
|
|
assert(!inv_dynamic_dynamic(ptr[0..0], ptr[0..0]));
|
|
}
|