Searched refs:VInfo (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | GenericDomTreeConstruction.h | 39 InfoRec &VInfo = DT.Info[DT.Roots[i]]; in DFSPass() 40 VInfo.DFSNum = VInfo.Semi = ++N; in DFSPass() 41 VInfo.Label = V; in DFSPass() 122 typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &VInfo = in Eval() local 124 typename GraphT::NodeType* VAncestor = DT.Vertex[VInfo.Parent]; in Eval() 127 if (Visited.insert(VAncestor).second && VInfo.Parent >= LastLinked) { in Eval() 134 if (VInfo.Parent < LastLinked) in Eval() 140 typename GraphT::NodeType* VLabel = VInfo.Label; in Eval() 142 VInfo.Label = VAncestorLabel; in Eval() 143 VInfo.Parent = VAInfo.Parent; in Eval()
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | GenericDomTreeConstruction.h | 242 InfoRec *VInfo = &NodeToInfo[V]; in eval() local 243 if (VInfo->Parent < LastLinked) in eval() 244 return VInfo->Label; in eval() 249 Stack.push_back(VInfo); in eval() 250 VInfo = &NodeToInfo[NumToNode[VInfo->Parent]]; in eval() 251 } while (VInfo->Parent >= LastLinked); in eval() 255 const InfoRec *PInfo = VInfo; in eval() 258 VInfo = Stack.pop_back_val(); in eval() 259 VInfo->Parent = PInfo->Parent; in eval() 260 const InfoRec *VLabelInfo = &NodeToInfo[VInfo->Label]; in eval() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | GenericDomTreeConstruction.h | 275 InfoRec *VInfo = &NodeToInfo[V]; in eval() local 276 if (VInfo->Parent < LastLinked) in eval() 277 return VInfo->Label; in eval() 282 Stack.push_back(VInfo); in eval() 283 VInfo = &NodeToInfo[NumToNode[VInfo->Parent]]; in eval() 284 } while (VInfo->Parent >= LastLinked); in eval() 288 const InfoRec *PInfo = VInfo; in eval() 291 VInfo = Stack.pop_back_val(); in eval() 292 VInfo->Parent = PInfo->Parent; in eval() 293 const InfoRec *VLabelInfo = &NodeToInfo[VInfo->Label]; in eval() [all …]
|
/external/llvm/utils/TableGen/ |
D | CodeGenSchedule.cpp | 970 void pushVariant(const TransVariant &VInfo, bool IsRead); 1147 pushVariant(const TransVariant &VInfo, bool IsRead) { in pushVariant() argument 1149 PredTransition &Trans = TransVec[VInfo.TransVecIdx]; in pushVariant() 1153 if (VInfo.ProcIdx != 0) in pushVariant() 1154 Trans.ProcIndices.assign(1, VInfo.ProcIdx); in pushVariant() 1157 if (VInfo.VarOrSeqDef->isSubClassOf("SchedVar")) { in pushVariant() 1158 Record *PredDef = VInfo.VarOrSeqDef->getValueAsDef("Predicate"); in pushVariant() 1159 Trans.PredTerm.push_back(PredCheck(IsRead, VInfo.RWIdx,PredDef)); in pushVariant() 1160 RecVec SelectedDefs = VInfo.VarOrSeqDef->getValueAsListOfDefs("Selected"); in pushVariant() 1164 assert(VInfo.VarOrSeqDef->isSubClassOf("WriteSequence") && in pushVariant() [all …]
|
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenSchedule.cpp | 1351 void pushVariant(const TransVariant &VInfo, bool IsRead); 1513 pushVariant(const TransVariant &VInfo, bool IsRead) { in pushVariant() argument 1514 PredTransition &Trans = TransVec[VInfo.TransVecIdx]; in pushVariant() 1519 if (VInfo.VarOrSeqDef->isSubClassOf("SchedVar")) { in pushVariant() 1520 Record *PredDef = VInfo.VarOrSeqDef->getValueAsDef("Predicate"); in pushVariant() 1521 Trans.PredTerm.emplace_back(IsRead, VInfo.RWIdx,PredDef); in pushVariant() 1522 RecVec SelectedDefs = VInfo.VarOrSeqDef->getValueAsListOfDefs("Selected"); in pushVariant() 1526 assert(VInfo.VarOrSeqDef->isSubClassOf("WriteSequence") && in pushVariant() 1528 SelectedRWs.push_back(SchedModels.getSchedRWIdx(VInfo.VarOrSeqDef, IsRead)); in pushVariant() 1531 const CodeGenSchedRW &SchedRW = SchedModels.getSchedRW(VInfo.RWIdx, IsRead); in pushVariant()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 2537 Optional<std::pair<SVal, QualType>> VInfo; in VisitCommonDeclRefExpr() local 2554 VInfo = std::make_pair(state->getLValue(FD, CXXThisVal), FD->getType()); in VisitCommonDeclRefExpr() 2558 if (!VInfo) in VisitCommonDeclRefExpr() 2559 VInfo = std::make_pair(state->getLValue(VD, LocCtxt), VD->getType()); in VisitCommonDeclRefExpr() 2561 SVal V = VInfo->first; in VisitCommonDeclRefExpr() 2562 bool IsReference = VInfo->second->isReferenceType(); in VisitCommonDeclRefExpr()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGExprAgg.cpp | 1042 auto EmitCmpRes = [&](const ComparisonCategoryInfo::ValueInfo *VInfo) { in VisitBinCmp() argument 1043 return Builder.getInt(VInfo->getIntValue()); in VisitBinCmp()
|