mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
503ec9826c
This reverts commit r222142. This is causing/exposing an execution-time regression in spec2006/gcc and coremark on AArch64/A57/Ofast. Conflicts: test/Transforms/Reassociate/optional-flags.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222398 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
980 B
LLVM
33 lines
980 B
LLVM
; RUN: opt < %s -reassociate -S | FileCheck %s
|
|
|
|
define float @fmultistep1(float %a, float %b, float %c) {
|
|
; Check that a*a*b+a*a*c is turned into a*(a*(b+c)).
|
|
; CHECK-LABEL: @fmultistep1
|
|
; CHECK-NEXT: fadd fast float %c, %b
|
|
; CHECK-NEXT: fmul fast float %a, %tmp2
|
|
; CHECK-NEXT: fmul fast float %tmp3, %a
|
|
; CHECK-NEXT: ret float
|
|
|
|
%t0 = fmul fast float %a, %b
|
|
%t1 = fmul fast float %a, %t0 ; a*(a*b)
|
|
%t2 = fmul fast float %a, %c
|
|
%t3 = fmul fast float %a, %t2 ; a*(a*c)
|
|
%t4 = fadd fast float %t1, %t3
|
|
ret float %t4
|
|
}
|
|
|
|
define float @fmultistep2(float %a, float %b, float %c, float %d) {
|
|
; Check that a*b+a*c+d is turned into a*(b+c)+d.
|
|
; CHECK-LABEL: @fmultistep2
|
|
; CHECK-NEXT: fadd fast float %c, %b
|
|
; CHECK-NEXT: fmul fast float %tmp, %a
|
|
; CHECK-NEXT: fadd fast float %tmp1, %d
|
|
; CHECK-NEXT: ret float
|
|
|
|
%t0 = fmul fast float %a, %b
|
|
%t1 = fmul fast float %a, %c
|
|
%t2 = fadd fast float %t1, %d ; a*c+d
|
|
%t3 = fadd fast float %t0, %t2 ; a*b+(a*c+d)
|
|
ret float %t3
|
|
}
|