Searched refs:KnownValue (Results 1 – 5 of 5) sorted by relevance
2790 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 …]
536 Constant *KnownValue = nullptr; member
2015 Info->KnownValue = ConstantInt::getTrue(TI->getContext()); in hasPartialIVCondition()2020 Info->KnownValue = ConstantInt::getFalse(TI->getContext()); in hasPartialIVCondition()
2211 (PartiallyInvariant && !PartialIVInfo.KnownValue->isOneValue())) { in unswitchNontrivialInvariants()3377 } else if ((PartialIVInfo.KnownValue->isOneValue() && in findBestNonTrivialUnswitchCandidate()3379 (!PartialIVInfo.KnownValue->isOneValue() && in findBestNonTrivialUnswitchCandidate()
13206 std::optional<bool> KnownValue; variable13215 KnownValue = !!(*Val); in ConditionResult()13221 KnownValue(std::nullopt) {} in ConditionResult()13230 std::optional<bool> getKnownValue() const { return KnownValue; } in getKnownValue()