Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Standalone View
test/Transforms/InstCombine/fmul.ll
Show First 20 Lines • Show All 117 Lines • ▼ Show 20 Lines | define float @test11(float %x, float %y) { | ||||
%a = fadd fast float %x, 1.0 | %a = fadd fast float %x, 1.0 | ||||
%b = fadd fast float %y, 2.0 | %b = fadd fast float %y, 2.0 | ||||
%c = fadd fast float %a, %b | %c = fadd fast float %a, %b | ||||
ret float %c | ret float %c | ||||
; CHECK-LABEL: @test11( | ; CHECK-LABEL: @test11( | ||||
; CHECK-NOT: fadd float | ; CHECK-NOT: fadd float | ||||
; CHECK: fadd fast float | ; CHECK: fadd fast float | ||||
} | } | ||||
; PR21126: http://llvm.org/bugs/show_bug.cgi?id=21126 | |||||
; With unsafe math, sqrt(X) * sqrt(X) is just X. | |||||
declare double @llvm.sqrt.f64(double) | |||||
attributes #0 = { "unsafe-fp-math"="true" } | |||||
hfinkel: We don't need the "unsafe-fp-math"="true" because you're just checking the 'fast' on the fmul… | |||||
spatelAuthorUnsubmitted Not Done ReplyInline ActionsThanks, Hal! Yes - the 'fast' alone is enough to do this optimization. I'm not a fan of the instruction-level fast-math flags...because it leads to another question. What should happen in the 2nd test case if it looks like this: define double @sqrt_squared2(double %f) #0 { %sqrt = call double @llvm.sqrt.f64(double %f) %mul1 = fmul fast double %sqrt, %sqrt %mul2 = fmul double %mul1, %sqrt ret double %mul2 } When the %mul1 operand is replaced in the 2nd fmul instruction, does that fmul instruction now become fast too? Is fast infectious? spatel: Thanks, Hal! Yes - the 'fast' alone is enough to do this optimization. I'm not a fan of the… | |||||
hfinkelUnsubmitted Not Done ReplyInline ActionsI think that you should change your mind ;) The motivation behind the fast-math flags, in addition to providing client more-precise control over what instructions might be folded, was to create a "fast math" system that could survive inlining. As a result, the answer to your last question is no, it is not infectious, it is designed so that inlined "fast math" functions can have their instructions retain that property without affecting operations from the caller (which might not be "fast math" -- a particular problem when you consider LTO). hfinkel: I think that you should change your mind ;)
The motivation behind the fast-math flags, in… | |||||
spatelAuthorUnsubmitted Not Done ReplyInline ActionsI'd love to love this. :) ..but, you see what happens in this example:
So in fact, fast is infectious, but silently so! LTO users should be aware that linking any unsafe code produces an overall unsafe program? spatel: I'd love to love this. :)
..but, you see what happens in this example:
1. There's no function… | |||||
hfinkelUnsubmitted Not Done ReplyInline ActionsSure, but that's normally what the user wants! They want fast semantics for the routines in one module, and precise semantics for routines in another, then they want LTO to inline one into the other. The fast flags are not meant to preserve a record of non-strict semantics -- that's not the optimizers job ;) -- but rather are intended to allow optimization control. hfinkel: Sure, but that's normally what the user wants! They want fast semantics for the routines in one… | |||||
spatelAuthorUnsubmitted Not Done ReplyInline ActionsOk, sold. :) I was just pretending to be an FP wonk. If the real FP wonks complain, please protect this optimization! I'll fix up the testcase and get this checked in. spatel: Ok, sold. :)
I was just pretending to be an FP wonk. If the real FP wonks complain, please… | |||||
define double @sqrt_squared1(double %f) #0 { | |||||
%sqrt = call double @llvm.sqrt.f64(double %f) | |||||
%mul = fmul fast double %sqrt, %sqrt | |||||
ret double %mul | |||||
; CHECK-LABEL: @sqrt_squared1( | |||||
; CHECK-NEXT: ret double %f | |||||
} | |||||
; With unsafe math, sqrt(X) * sqrt(X) is just X, | |||||
; but make sure another use of the sqrt is intact. | |||||
define double @sqrt_squared2(double %f) #0 { | |||||
%sqrt = call double @llvm.sqrt.f64(double %f) | |||||
%mul1 = fmul fast double %sqrt, %sqrt | |||||
%mul2 = fmul fast double %mul1, %sqrt | |||||
ret double %mul2 | |||||
; CHECK-LABEL: @sqrt_squared2( | |||||
; CHECK-NEXT: %sqrt = call double @llvm.sqrt.f64(double %f) | |||||
; CHECK-NEXT: %mul2 = fmul fast double %sqrt, %f | |||||
; CHECK-NEXT: ret double %mul2 | |||||
} |
We don't need the "unsafe-fp-math"="true" because you're just checking the 'fast' on the fmul, right? If you don't need it, please remove it.