Searched refs:CondValue (Results 1 – 5 of 5) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/TableGen/ |
H A D | Error.cpp | 160 auto *CondValue = dyn_cast_or_null<IntInit>(Condition->convertInitializerTo( in CheckAssert() local 162 if (!CondValue) in CheckAssert() 164 else if (!CondValue->getValue()) { in CheckAssert()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | LazyValueInfo.cpp | 1170 typedef PointerIntPair<Value *, 1, bool> CondValue; typedef 1173 Value *Val, CondValue CondVal, bool isRevisit, in getValueFromConditionImpl() 1175 SmallVectorImpl<CondValue> &Worklist) { in getValueFromConditionImpl() 1191 CondValue NKey(N, !isTrueDest); in getValueFromConditionImpl() 1209 auto LV = Visited.find(CondValue(L, isTrueDest)); in getValueFromConditionImpl() 1210 auto RV = Visited.find(CondValue(R, isTrueDest)); in getValueFromConditionImpl() 1229 Worklist.push_back(CondValue(L, isTrueDest)); in getValueFromConditionImpl() 1231 Worklist.push_back(CondValue(R, isTrueDest)); in getValueFromConditionImpl() 1242 SmallVector<CondValue> Worklist; in getValueFromCondition() 1244 CondValue CondKey(Cond, isTrueDest); in getValueFromCondition() [all …]
|
/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/ |
H A D | TypeErasedDataflowAnalysis.cpp | 267 auto [Cond, CondValue] = in computeBlockInputState() 274 Analysis.transferBranchTypeErased(CondValue, Cond, PredState.Lattice, in computeBlockInputState()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | SCCPSolver.cpp | 1220 ValueLatticeElement CondValue = getValueState(I.getCondition()); in visitSelectInst() local 1221 if (CondValue.isUnknownOrUndef()) in visitSelectInst() 1224 if (ConstantInt *CondCB = getConstantInt(CondValue)) { in visitSelectInst()
|
/openbsd/gnu/llvm/clang/lib/Lex/ |
H A D | PPDirectives.cpp | 725 const bool CondValue = DER.Conditional; in SkipExcludedConditionalBlock() local 730 (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), in SkipExcludedConditionalBlock() 734 if (CondValue) { in SkipExcludedConditionalBlock()
|