Home
last modified time | relevance | path

Searched refs:ReciprocalDivisor (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLICM.cpp932 auto ReciprocalDivisor = BinaryOperator::CreateFDiv(One, Divisor); in hoistRegion() local
933 ReciprocalDivisor->setFastMathFlags(I.getFastMathFlags()); in hoistRegion()
934 SafetyInfo->insertInstructionTo(ReciprocalDivisor, I.getParent()); in hoistRegion()
935 ReciprocalDivisor->insertBefore(&I); in hoistRegion()
936 ReciprocalDivisor->setDebugLoc(I.getDebugLoc()); in hoistRegion()
939 BinaryOperator::CreateFMul(I.getOperand(0), ReciprocalDivisor); in hoistRegion()
947 hoist(*ReciprocalDivisor, DT, CurLoop, CFH.getOrCreateHoistedBlock(BB), in hoistRegion()
949 HoistedInstructions.push_back(ReciprocalDivisor); in hoistRegion()