mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-01 10:02:42 +00:00
[SimplifyLibCalls] Transform log(exp2(y)) to y*log(2) under fast-math.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbb7433e07
commit
24c91af18b
@ -1322,6 +1322,15 @@ Value *LibCallSimplifier::optimizeLog(CallInst *CI, IRBuilder<> &B) {
|
||||
return B.CreateFMul(OpC->getArgOperand(1),
|
||||
EmitUnaryFloatFnCall(OpC->getOperand(0), Callee->getName(), B,
|
||||
Callee->getAttributes()), "mul");
|
||||
|
||||
// log(exp2(y)) -> y*log(2)
|
||||
if (F && Name == "log" && TLI->getLibFunc(F->getName(), Func) &&
|
||||
TLI->has(Func) && Func == LibFunc::exp2)
|
||||
return B.CreateFMul(
|
||||
OpC->getArgOperand(0),
|
||||
EmitUnaryFloatFnCall(ConstantFP::get(CI->getType(), 2.0),
|
||||
Callee->getName(), B, Callee->getAttributes()),
|
||||
"logmul");
|
||||
return Ret;
|
||||
}
|
||||
|
||||
@ -2301,7 +2310,6 @@ void LibCallSimplifier::replaceAllUsesWith(Instruction *I, Value *With) {
|
||||
// log, logf, logl:
|
||||
// * log(exp(x)) -> x
|
||||
// * log(exp(y)) -> y*log(e)
|
||||
// * log(exp2(y)) -> y*log(2)
|
||||
// * log(exp10(y)) -> y*log(10)
|
||||
// * log(sqrt(x)) -> 0.5*log(x)
|
||||
//
|
||||
|
@ -13,5 +13,18 @@ entry:
|
||||
; CHECK: ret double %call
|
||||
; CHECK: }
|
||||
|
||||
define double @test3(double %x) #0 {
|
||||
%call2 = call double @exp2(double %x) #0
|
||||
%call3 = call double @log(double %call2) #0
|
||||
ret double %call3
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @test3
|
||||
; CHECK: %call2 = call double @exp2(double %x)
|
||||
; CHECK: %call3 = call double @log(double %call2)
|
||||
; CHECK: ret double %call3
|
||||
; CHECK: }
|
||||
|
||||
declare double @log(double) #0
|
||||
declare double @exp2(double)
|
||||
declare double @llvm.pow.f64(double, double)
|
||||
|
@ -22,7 +22,20 @@ define double @test2(double ()* %fptr, double %p1) #0 {
|
||||
; CHECK-LABEL: @test2
|
||||
; CHECK: log
|
||||
|
||||
define double @test3(double %x) #0 {
|
||||
%call2 = call double @exp2(double %x) #0
|
||||
%call3 = call double @log(double %call2) #0
|
||||
ret double %call3
|
||||
}
|
||||
|
||||
; CHECK-LABEL: @test3
|
||||
; CHECK: %call2 = call double @exp2(double %x) #0
|
||||
; CHECK: %logmul = fmul fast double %x, 0x3FE62E42FEFA39EF
|
||||
; CHECK: ret double %logmul
|
||||
; CHECK: }
|
||||
|
||||
declare double @log(double) #0
|
||||
declare double @exp2(double) #0
|
||||
declare double @llvm.pow.f64(double, double)
|
||||
|
||||
attributes #0 = { "unsafe-fp-math"="true" }
|
||||
|
Loading…
x
Reference in New Issue
Block a user