Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTypeSize.h114 bool isNonZero() const { return !isZero(); } in isNonZero() function
115 explicit operator bool() const { return isNonZero(); }
230 bool isNonZero() const { return !isZero(); }
231 explicit operator bool() const { return isNonZero(); }
H A DKnownBits.h102 bool isNonZero() const { return !One.isNullValue(); } in isNonZero() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DLowLevelType.cpp26 assert(VT.getSizeInBits().isNonZero() && "invalid zero-sized type"); in LLT()
H A DAPFloat.cpp1061 if (addend.isNonZero()) { in multiplySignificand()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DReplaceWithVeclib.cpp130 if (VF.isNonZero() && VF != NumElements) { in replaceWithCallToVeclib()
H A DCodeGenPrepare.cpp4575 if (TS.isNonZero()) { in matchOperationAddr()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPFloat.h377 bool isNonZero() const { return category != fcZero; } in isNonZero() function
1226 bool isNonZero() const { return !isZero(); } in isNonZero() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp2628 if (S2.isNegative() && S2.isNonZero() && !S2.isNaN()) { in ConstantFoldAMDGCNCubeIntrinsic()
2639 if (S1.isNegative() && S1.isNonZero() && !S1.isNaN()) { in ConstantFoldAMDGCNCubeIntrinsic()
2650 if (S0.isNegative() && S0.isNonZero() && !S0.isNaN()) { in ConstantFoldAMDGCNCubeIntrinsic()
H A DValueTracking.cpp434 Known2.isNonZero()) || in computeKnownBitsMul()
435 (isKnownNegativeOp0 && isKnownNonNegativeOp1 && Known.isNonZero()); in computeKnownBitsMul()
3794 if (!DL.getTypeStoreSize(V->getType()).isNonZero()) in isBytewiseValue()
H A DInstructionSimplify.cpp4123 if (HasNoSignedZeros || (match(T, m_APFloat(C)) && C->isNonZero()) || in simplifySelectWithFCmp()
4124 (match(F, m_APFloat(C)) && C->isNonZero())) { in simplifySelectWithFCmp()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DIRBuilder.cpp1066 assert(EC.isNonZero() && "Cannot splat to an empty vector!"); in CreateVectorSplat()
H A DConstants.cpp2453 if (EltCount.isNonZero()) in getGetElementPtr()
2473 } else if (GTI.isSequential() && EltCount.isNonZero() && in getGetElementPtr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp5471 while (StWidth.isNonZero()) { in GenWidenVectorStores()
5493 } while (StWidth.isNonZero() && TypeSize::isKnownGE(StWidth, NewVTWidth)); in GenWidenVectorStores()
5511 } while (StWidth.isNonZero() && TypeSize::isKnownGE(StWidth, NewVTWidth)); in GenWidenVectorStores()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DPatternMatch.h719 bool isValue(const APFloat &C) { return C.isNonZero(); } in isValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5858 assert((UserVF.isNonZero() || isPowerOf2_32(MaxFixedVF.getFixedValue())) && in computeMaxVF()