Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DOperator.h61 bool isFast() const { return cast<llvm::FPMathOperator>(Val)->isFast(); } in isFast() function
H A DInstruction.h240 bool isFast() const { return cast<llvm::Instruction>(Val)->isFast(); } in isFast() function
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFMF.h72 bool isFast() const { return all(); } in isFast() function
H A DOperator.h286 bool isFast() const {
H A DInstruction.h649 LLVM_ABI bool isFast() const LLVM_READONLY;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1984 if (!CI->isFast()) in optimizeCAbs()
2015 if (!CI->isFast()) in optimizeCAbs()
2071 if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) { in replacePowWithExp()
2608 if (!Log->isFast() || !Arg || !Arg->isFast() || !Arg->hasOneUse()) in optimizeLog()
2740 if (!CI->isFast()) in optimizeSqrt()
2744 if (!I || I->getOpcode() != Instruction::FMul || !I->isFast()) in optimizeSqrt()
2765 cast<Instruction>(Op0)->isFast()) { in optimizeSqrt()
2770 cast<Instruction>(Op1)->isFast()) { in optimizeSqrt()
2843 if (!CI->isFast() || !OpC->isFast()) in optimizeTrigInversionPairs()
4110 else if (isa<FPMathOperator>(CI) && CI->isFast()) in optimizeCall()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp624 bool Instruction::isFast() const { in isFast() function in Instruction
626 return cast<FPMathOperator>(this)->isFast(); in isFast()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIVDescriptors.cpp875 I1->isFast()) || in isConditionalRdxPattern()
876 (m_FMul(m_Value(Op1), m_Value(Op2)).match(I1) && (I1->isFast())) || in isConditionalRdxPattern()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h2260 void IncrementPasteCounter(bool isFast) { in IncrementPasteCounter() argument
2261 if (isFast) in IncrementPasteCounter()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp1025 !I.isFast()) { in canVectorizeInstrs()
H A DSLPVectorizer.cpp9216 return I && I->isBinaryOp() && !I->isFast(); in getScalarsVectorizationState()
9313 return I && !I->isFast(); in getScalarsVectorizationState()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp419 return UnsafeFPMath || FPOp->isFast(); in isUnsafeMath()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DInstruction.cpp199 GenericSetter<&Instruction::isFast, &Instruction::setFast>>(this); in setFast()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp1033 if (I.isFast()) { in visitFMul()