mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
39f4e8d9cc
This update was done with the following bash script: find test/Transforms -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP done mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186268 91177308-0d34-0410-b5e6-96231b3b80d8
73 lines
1.8 KiB
LLVM
73 lines
1.8 KiB
LLVM
; RUN: opt -S -instcombine < %s | FileCheck %s
|
|
|
|
; (-0.0 - X) * C => X * -C
|
|
define float @test1(float %x) {
|
|
%sub = fsub float -0.000000e+00, %x
|
|
%mul = fmul float %sub, 2.0e+1
|
|
ret float %mul
|
|
|
|
; CHECK-LABEL: @test1(
|
|
; CHECK: fmul float %x, -2.000000e+01
|
|
}
|
|
|
|
; (0.0 - X) * C => X * -C
|
|
define float @test2(float %x) {
|
|
%sub = fsub nsz float 0.000000e+00, %x
|
|
%mul = fmul float %sub, 2.0e+1
|
|
ret float %mul
|
|
|
|
; CHECK-LABEL: @test2(
|
|
; CHECK: fmul float %x, -2.000000e+01
|
|
}
|
|
|
|
; (-0.0 - X) * (-0.0 - Y) => X * Y
|
|
define float @test3(float %x, float %y) {
|
|
%sub1 = fsub float -0.000000e+00, %x
|
|
%sub2 = fsub float -0.000000e+00, %y
|
|
%mul = fmul float %sub1, %sub2
|
|
ret float %mul
|
|
; CHECK-LABEL: @test3(
|
|
; CHECK: fmul float %x, %y
|
|
}
|
|
|
|
; (0.0 - X) * (0.0 - Y) => X * Y
|
|
define float @test4(float %x, float %y) {
|
|
%sub1 = fsub nsz float 0.000000e+00, %x
|
|
%sub2 = fsub nsz float 0.000000e+00, %y
|
|
%mul = fmul float %sub1, %sub2
|
|
ret float %mul
|
|
; CHECK-LABEL: @test4(
|
|
; CHECK: fmul float %x, %y
|
|
}
|
|
|
|
; (-0.0 - X) * Y => -0.0 - (X * Y)
|
|
define float @test5(float %x, float %y) {
|
|
%sub1 = fsub float -0.000000e+00, %x
|
|
%mul = fmul float %sub1, %y
|
|
ret float %mul
|
|
; CHECK-LABEL: @test5(
|
|
; CHECK: %1 = fmul float %x, %y
|
|
; CHECK: %mul = fsub float -0.000000e+00, %1
|
|
}
|
|
|
|
; (0.0 - X) * Y => 0.0 - (X * Y)
|
|
define float @test6(float %x, float %y) {
|
|
%sub1 = fsub nsz float 0.000000e+00, %x
|
|
%mul = fmul float %sub1, %y
|
|
ret float %mul
|
|
; CHECK-LABEL: @test6(
|
|
; CHECK: %1 = fmul float %x, %y
|
|
; CHECK: %mul = fsub float -0.000000e+00, %1
|
|
}
|
|
|
|
; "(-0.0 - X) * Y => -0.0 - (X * Y)" is disabled if expression "-0.0 - X"
|
|
; has multiple uses.
|
|
define float @test7(float %x, float %y) {
|
|
%sub1 = fsub float -0.000000e+00, %x
|
|
%mul = fmul float %sub1, %y
|
|
%mul2 = fmul float %mul, %sub1
|
|
ret float %mul2
|
|
; CHECK-LABEL: @test7(
|
|
; CHECK: fsub float -0.000000e+00, %x
|
|
}
|