Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DAttributor.h2790 void joinOR(base_t AssumedValue, base_t KnownValue) override {
2791 this->Known |= KnownValue;
2795 this->Known &= KnownValue;
2839 void joinOR(base_t AssumedValue, base_t KnownValue) override {
2840 this->Known = std::max(this->Known, KnownValue);
2844 this->Known = std::min(this->Known, KnownValue);
2875 void joinOR(base_t AssumedValue, base_t KnownValue) override {
2876 this->Assumed = std::min(this->Assumed, KnownValue);
2880 this->Assumed = std::max(this->Assumed, KnownValue);
2918 Known |= KnownValue;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h536 Constant *KnownValue = nullptr; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp2015 Info->KnownValue = ConstantInt::getTrue(TI->getContext()); in hasPartialIVCondition()
2020 Info->KnownValue = ConstantInt::getFalse(TI->getContext()); in hasPartialIVCondition()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimpleLoopUnswitch.cpp2211 (PartiallyInvariant && !PartialIVInfo.KnownValue->isOneValue())) { in unswitchNontrivialInvariants()
3377 } else if ((PartialIVInfo.KnownValue->isOneValue() && in findBestNonTrivialUnswitchCandidate()
3379 (!PartialIVInfo.KnownValue->isOneValue() && in findBestNonTrivialUnswitchCandidate()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13206 std::optional<bool> KnownValue; variable
13215 KnownValue = !!(*Val); in ConditionResult()
13221 KnownValue(std::nullopt) {} in ConditionResult()
13230 std::optional<bool> getKnownValue() const { return KnownValue; } in getKnownValue()