mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
fix formatting; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219645 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab1f4ef9a2
commit
e0a0018345
@ -304,40 +304,32 @@ Instruction *InstCombiner::visitMul(BinaryOperator &I) {
|
||||
return Changed ? &I : nullptr;
|
||||
}
|
||||
|
||||
//
|
||||
// Detect pattern:
|
||||
//
|
||||
// log2(Y*0.5)
|
||||
//
|
||||
// And check for corresponding fast math flags
|
||||
//
|
||||
|
||||
/// Detect pattern log2(Y * 0.5) with corresponding fast math flags.
|
||||
static void detectLog2OfHalf(Value *&Op, Value *&Y, IntrinsicInst *&Log2) {
|
||||
if (!Op->hasOneUse())
|
||||
return;
|
||||
|
||||
if (!Op->hasOneUse())
|
||||
return;
|
||||
IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op);
|
||||
if (!II)
|
||||
return;
|
||||
if (II->getIntrinsicID() != Intrinsic::log2 || !II->hasUnsafeAlgebra())
|
||||
return;
|
||||
Log2 = II;
|
||||
|
||||
IntrinsicInst *II = dyn_cast<IntrinsicInst>(Op);
|
||||
if (!II)
|
||||
return;
|
||||
if (II->getIntrinsicID() != Intrinsic::log2 || !II->hasUnsafeAlgebra())
|
||||
return;
|
||||
Log2 = II;
|
||||
Value *OpLog2Of = II->getArgOperand(0);
|
||||
if (!OpLog2Of->hasOneUse())
|
||||
return;
|
||||
|
||||
Value *OpLog2Of = II->getArgOperand(0);
|
||||
if (!OpLog2Of->hasOneUse())
|
||||
return;
|
||||
Instruction *I = dyn_cast<Instruction>(OpLog2Of);
|
||||
if (!I)
|
||||
return;
|
||||
if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
|
||||
return;
|
||||
|
||||
Instruction *I = dyn_cast<Instruction>(OpLog2Of);
|
||||
if (!I)
|
||||
return;
|
||||
if (I->getOpcode() != Instruction::FMul || !I->hasUnsafeAlgebra())
|
||||
return;
|
||||
|
||||
if (match(I->getOperand(0), m_SpecificFP(0.5)))
|
||||
Y = I->getOperand(1);
|
||||
else if (match(I->getOperand(1), m_SpecificFP(0.5)))
|
||||
Y = I->getOperand(0);
|
||||
if (match(I->getOperand(0), m_SpecificFP(0.5)))
|
||||
Y = I->getOperand(1);
|
||||
else if (match(I->getOperand(1), m_SpecificFP(0.5)))
|
||||
Y = I->getOperand(0);
|
||||
}
|
||||
|
||||
static bool isFiniteNonZeroFp(Constant *C) {
|
||||
|
Loading…
Reference in New Issue
Block a user