Lines Matching refs:SimpleV
6181 std::optional<Value *> SimpleV = A.getAssumedSimplified( in reproduceValue() local
6183 if (!SimpleV.has_value()) in reproduceValue()
6186 if (*SimpleV) in reproduceValue()
6187 EffectiveV = *SimpleV; in reproduceValue()
6790 std::optional<Constant *> SimpleV = in getAPInt() local
6792 if (!SimpleV) in getAPInt()
6794 if (auto *CI = dyn_cast_or_null<ConstantInt>(*SimpleV)) in getAPInt()
6803 if (std::optional<Constant *> SimpleV = in getSize() local
6805 if (*SimpleV) in getSize()
6806 return *SimpleV; in getSize()
10824 std::optional<Value *> SimpleV = in addValue() local
10826 if (SimpleV.has_value() && !*SimpleV) { in addValue()
10837 if (!SimpleV.has_value()) in addValue()
10840 if (*SimpleV) in addValue()
10841 VPtr = *SimpleV; in addValue()
11113 std::optional<Value *> SimpleV = A.getAssumedSimplified( in handleSelectInst() local
11115 if (!SimpleV.has_value()) in handleSelectInst()
11117 if (*SimpleV) { in handleSelectInst()
11118 addValue(A, getState(), **SimpleV, CtxI, II.S, getAnchorScope()); in handleSelectInst()
11237 std::optional<Value *> SimpleV = A.getAssumedSimplified( in handlePHINode() local
11239 if (!SimpleV.has_value()) in handlePHINode()
11241 if (!(*SimpleV)) in handlePHINode()
11243 addValue(A, getState(), **SimpleV, &PHI, II.S, getAnchorScope()); in handlePHINode()