Test Failure: Transforms/InstCombine/double-float-shrink-2.ll

Test source: git

Comments: LLVM PR49080

Log:

Source: <stdin>
ERROR: Unsupported instruction:   store volatile double %D, double* undef, align 8
ERROR: Unsupported instruction:   store volatile double %D, double* undef, align 8

----------------------------------------
define float @test_shrink_libcall_floor(float %C) {
%0:
  %D = fpext float %C to double
  %E = floor double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_floor(float %C) {
%0:
  %1 = floor float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_ceil(float %C) {
%0:
  %D = fpext float %C to double
  %E = ceil double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_ceil(float %C) {
%0:
  %1 = ceil float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_round(float %C) {
%0:
  %D = fpext float %C to double
  %E = round double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_round(float %C) {
%0:
  %1 = round float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_roundeven(float %C) {
%0:
  %D = fpext float %C to double
  %E = roundeven double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_roundeven(float %C) {
%0:
  %1 = roundeven float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_nearbyint(float %C) {
%0:
  %D = fpext float %C to double
  %E = call double @nearbyint(double %D)
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_nearbyint(float %C) {
%0:
  %1 = call float @llvm.nearbyint.f32(float %C) noread nowrite nofree willreturn
  ret float %1
}
Transformation doesn't verify!
ERROR: Couldn't prove the correctness of the transformation
Alive2 approximated the semantics of the programs and therefore we
cannot conclude whether the bug found is valid or not.

Approximations done:
 - Unknown libcall: @llvm.nearbyint.f32
 - Unknown libcall: @nearbyint



----------------------------------------
define float @test_shrink_libcall_trunc(float %C) {
%0:
  %D = fpext float %C to double
  %E = trunc double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_trunc(float %C) {
%0:
  %1 = trunc float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_fabs(float %C) {
%0:
  %D = fpext float %C to double
  %E = fabs double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_fabs(float %C) {
%0:
  %1 = fabs float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_libcall_fabs_fast(float %C) {
%0:
  %D = fpext float %C to double
  %E = fabs fast double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_libcall_fabs_fast(float %C) {
%0:
  %1 = fabs fast float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_ceil(float %C) {
%0:
  %D = fpext float %C to double
  %E = ceil double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_ceil(float %C) {
%0:
  %1 = ceil float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_fabs(float %C) {
%0:
  %D = fpext float %C to double
  %E = fabs double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_fabs(float %C) {
%0:
  %1 = fabs float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_floor(float %C) {
%0:
  %D = fpext float %C to double
  %E = floor double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_floor(float %C) {
%0:
  %1 = floor float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_nearbyint(float %C) {
%0:
  %D = fpext float %C to double
  %E = call double @llvm.nearbyint.f64(double %D) noread nowrite nofree willreturn
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_nearbyint(float %C) {
%0:
  %1 = call float @llvm.nearbyint.f32(float %C) noread nowrite nofree willreturn
  ret float %1
}
Transformation doesn't verify!
ERROR: Couldn't prove the correctness of the transformation
Alive2 approximated the semantics of the programs and therefore we
cannot conclude whether the bug found is valid or not.

Approximations done:
 - Unknown libcall: @llvm.nearbyint.f32
 - Unknown libcall: @llvm.nearbyint.f64



----------------------------------------
define half @test_shrink_intrin_rint(half %C) {
%0:
  %D = fpext half %C to float
  %E = call float @llvm.rint.f32(float %D) noread nowrite nofree willreturn
  %F = fptrunc float %E to half
  ret half %F
}
=>
define half @test_shrink_intrin_rint(half %C) {
%0:
  %1 = call half @llvm.rint.f16(half %C) noread nowrite nofree willreturn
  ret half %1
}
Transformation doesn't verify!
ERROR: Couldn't prove the correctness of the transformation
Alive2 approximated the semantics of the programs and therefore we
cannot conclude whether the bug found is valid or not.

Approximations done:
 - Unknown libcall: @llvm.rint.f16
 - Unknown libcall: @llvm.rint.f32



----------------------------------------
define float @test_shrink_intrin_round(float %C) {
%0:
  %D = fpext float %C to double
  %E = round double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_round(float %C) {
%0:
  %1 = round float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_roundeven(float %C) {
%0:
  %D = fpext float %C to double
  %E = roundeven double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_roundeven(float %C) {
%0:
  %1 = roundeven float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_shrink_intrin_trunc(float %C) {
%0:
  %D = fpext float %C to double
  %E = trunc double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_trunc(float %C) {
%0:
  %1 = trunc float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define <2 x float> @test_shrink_intrin_ceil_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = ceil <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_ceil_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = ceil <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define <2 x float> @test_shrink_intrin_fabs_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = fabs <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_fabs_multi_use(<2 x float> %C) {
%0:
  %1 = fabs <2 x float> %C
  %E = fpext <2 x float> %1 to <2 x double>
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define <2 x float> @test_shrink_intrin_floor_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = floor <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_floor_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = floor <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define <2 x float> @test_shrink_intrin_nearbyint_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = call <2 x double> @llvm.nearbyint.v2f64(<2 x double> %D) noread nowrite nofree willreturn
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_nearbyint_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = call <2 x double> @llvm.nearbyint.v2f64(<2 x double> %D) noread nowrite nofree willreturn
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define <2 x half> @test_shrink_intrin_rint_multi_use(<2 x half> %C) {
%0:
  %D = fpext <2 x half> %C to <2 x float>
  %E = call <2 x float> @llvm.rint.v2f32(<2 x float> %D) noread nowrite nofree willreturn
  %F = fptrunc <2 x float> %E to <2 x half>
  call void @use_v2f32(<2 x float> %E)
  ret <2 x half> %F
}
=>
define <2 x half> @test_shrink_intrin_rint_multi_use(<2 x half> %C) {
%0:
  %1 = call <2 x half> @llvm.rint.v2f16(<2 x half> %C) noread nowrite nofree willreturn
  %E = fpext <2 x half> %1 to <2 x float>
  call void @use_v2f32(<2 x float> %E)
  ret <2 x half> %1
}
Transformation doesn't verify!
ERROR: Couldn't prove the correctness of the transformation
Alive2 approximated the semantics of the programs and therefore we
cannot conclude whether the bug found is valid or not.

Approximations done:
 - Unknown libcall: @llvm.rint.v2f16
 - Unknown libcall: @llvm.rint.v2f32



----------------------------------------
define <2 x float> @test_shrink_intrin_round_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = round <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_round_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = round <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define <2 x float> @test_shrink_intrin_roundeven_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = roundeven <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_roundeven_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = roundeven <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  call void @use_v2f64(<2 x double> %E)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define <2 x float> @test_shrink_intrin_trunc_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = trunc <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
=>
define <2 x float> @test_shrink_intrin_trunc_multi_use(<2 x float> %C) {
%0:
  %D = fpext <2 x float> %C to <2 x double>
  %E = trunc <2 x double> %D
  %F = fptrunc <2 x double> %E to <2 x float>
  call void @use_v2f64(<2 x double> %D)
  ret <2 x float> %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_shrink_intrin_fabs_fast(float %C) {
%0:
  %D = fpext float %C to double
  %E = fabs fast double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_fabs_fast(float %C) {
%0:
  %1 = fabs fast float %C
  ret float %1
}
Transformation doesn't verify!
ERROR: Timeout


----------------------------------------
define float @test_no_shrink_intrin_floor(double %D) {
%0:
  %E = floor double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_floor(double %D) {
%0:
  %E = floor double %D
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_no_shrink_intrin_ceil(double %D) {
%0:
  %E = ceil double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_ceil(double %D) {
%0:
  %E = ceil double %D
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_no_shrink_intrin_round(double %D) {
%0:
  %E = round double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_round(double %D) {
%0:
  %E = round double %D
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_no_shrink_intrin_roundeven(double %D) {
%0:
  %E = roundeven double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_roundeven(double %D) {
%0:
  %E = roundeven double %D
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_no_shrink_intrin_nearbyint(double %D) {
%0:
  %E = call double @llvm.nearbyint.f64(double %D) noread nowrite nofree willreturn
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_nearbyint(double %D) {
%0:
  %E = call double @llvm.nearbyint.f64(double %D) noread nowrite nofree willreturn
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_no_shrink_intrin_trunc(double %D) {
%0:
  %E = trunc double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_no_shrink_intrin_trunc(double %D) {
%0:
  %E = trunc double %D
  %F = fptrunc double %E to float
  ret float %F
}
Transformation seems to be correct! (syntactically equal)


----------------------------------------
define float @test_shrink_intrin_fabs_double_src(double %D) {
%0:
  %E = fabs double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_fabs_double_src(double %D) {
%0:
  %1 = fptrunc double %D to float
  %F = fabs float %1
  ret float %F
}
Transformation seems to be correct!


----------------------------------------
define float @test_shrink_intrin_fabs_fast_double_src(double %D) {
%0:
  %E = fabs fast double %D
  %F = fptrunc double %E to float
  ret float %F
}
=>
define float @test_shrink_intrin_fabs_fast_double_src(double %D) {
%0:
  %1 = fptrunc double %D to float
  %F = fabs fast float %1
  ret float %F
}
Transformation doesn't verify!
ERROR: Target is more poisonous than source

Example:
double %D = #xd031000100000000 (-1968467283881440100585036328445195176424105566799786464289737049740724496498688)

Source:
double %E = NaN
float %F = NaN

Target:
float %1 = #xff800000 (-oo)
float %F = poison
Source value: NaN
Target value: poison


------------------- SMT STATS -------------------
Num queries: 102
Num invalid: 0
Num skips:   0
Num trivial: 51 (33.3%)
Num timeout: 15 (14.7%)
Num errors:  0 (0.0%)
Num SAT:     69 (67.6%)
Num UNSAT:   18 (17.6%)
Alive2: Transform doesn't verify; aborting!

stderr:

+ : 'RUN: at line 2'
+ /home/nlopes/alive2/build/opt-alive.sh -instcombine -S -mtriple i386-pc-linux
+ /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/InstCombine/double-float-shrink-2.ll

FileCheck error: '<stdin>' is empty.
FileCheck command line:  /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/InstCombine/double-float-shrink-2.ll

 

<-- Back