Searched refs:VInfo (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h275 InfoRec *VInfo = &NodeToInfo[V]; local
276 if (VInfo->Parent < LastLinked)
277 return VInfo->Label;
282 Stack.push_back(VInfo);
283 VInfo = &NodeToInfo[NumToNode[VInfo->Parent]];
284 } while (VInfo->Parent >= LastLinked);
288 const InfoRec *PInfo = VInfo;
291 VInfo = Stack.pop_back_val();
292 VInfo
309 auto &VInfo = NodeToInfo[V]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp1347 void pushVariant(const TransVariant &VInfo, bool IsRead);
1505 // specified by VInfo.
1507 pushVariant(const TransVariant &VInfo, bool IsRead) { argument
1508 PredTransition &Trans = TransVec[VInfo.TransVecIdx];
1512 if (VInfo.ProcIdx != 0)
1513 Trans.ProcIndices.assign(1, VInfo.ProcIdx);
1516 if (VInfo.VarOrSeqDef->isSubClassOf("SchedVar")) {
1517 Record *PredDef = VInfo.VarOrSeqDef->getValueAsDef("Predicate");
1518 Trans.PredTerm.emplace_back(IsRead, VInfo.RWIdx,PredDef);
1519 RecVec SelectedDefs = VInfo
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2448 Optional<std::pair<SVal, QualType>> VInfo; local
2465 VInfo = std::make_pair(state->getLValue(FD, CXXThisVal), FD->getType());
2469 if (!VInfo)
2470 VInfo = std::make_pair(state->getLValue(VD, LocCtxt), VD->getType());
2472 SVal V = VInfo->first;
2473 bool IsReference = VInfo->second->isReferenceType();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp1014 auto EmitCmpRes = [&](const ComparisonCategoryInfo::ValueInfo *VInfo) {
1015 return Builder.getInt(VInfo->getIntValue());

Completed in 292 milliseconds