Home
last modified time | relevance | path

Searched refs:InEdges (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceCfgNode.cpp55 for (SizeT i = 0; i < InEdges.size(); ++i) { in replaceInEdge()
56 if (InEdges[i] == Old) { in replaceInEdge()
57 InEdges[i] = New; in replaceInEdge()
97 Succ->InEdges.push_back(this); in computePredecessors()
102 InEdges.clear(); in computeSuccessors()
304 NewNode->InEdges.push_back(Pred); in splitIncomingEdge()
313 for (CfgNode *&I : InEdges) { in splitIncomingEdge()
475 for (CfgNode *Pred : InEdges) { in advancedPhiLowering()
879 if (InEdges.empty()) in contractIfEmpty()
908 for (CfgNode *Pred : InEdges) { in contractIfEmpty()
[all …]
DIceCfgNode.h71 const NodeList &getInEdges() const { return InEdges; } in getInEdges()
119 void addInEdge(CfgNode *In) { InEdges.push_back(In); } in addInEdge()
146 NodeList InEdges; /// in no particular order variable
DIceCfg.cpp230 const auto &InEdges = Node->getInEdges(); in fixPhiNodes() local
234 for (SizeT i = 0; i < InEdges.size(); ++i) { in fixPhiNodes()
235 Phi->setLabel(i, InEdges[i]); in fixPhiNodes()
DWasmTranslator.cpp334 const auto &InEdges = Control.toCfgNode()->getInEdges(); in Phi() local
335 assert(Count == InEdges.size()); in Phi()
349 Phi->addArgument(Op, InEdges[i]); in Phi()
/external/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp353 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop. in calcLoopBranchHeuristics() local
361 InEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
373 (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + in calcLoopBranchHeuristics()
377 if (!InEdges.empty()) in calcLoopBranchHeuristics()
388 if (uint32_t numInEdges = InEdges.size()) { in calcLoopBranchHeuristics()
390 for (unsigned SuccIdx : InEdges) in calcLoopBranchHeuristics()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp614 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop. in calcLoopBranchHeuristics() local
628 InEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
635 InEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
645 (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + in calcLoopBranchHeuristics()
656 if (uint32_t numInEdges = InEdges.size()) { in calcLoopBranchHeuristics()
659 for (unsigned SuccIdx : InEdges) in calcLoopBranchHeuristics()
/external/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp423 DirectEdges InEdges; member
647 DestInfo.InEdges.push_back(E.get()); in populateCounters()
673 Count.CountValue = sumEdgeCount(Count.InEdges); in populateCounters()
685 uint64_t Total = Count.CountValue - sumEdgeCount(Count.InEdges); in populateCounters()
686 setEdgeCount(Count.InEdges, Total); in populateCounters()
/external/llvm-project/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp792 SmallVector<unsigned, 8> InEdges; // Edges from header to the loop. in calcLoopBranchHeuristics() local
808 InEdges.push_back(I.getSuccessorIndex()); in calcLoopBranchHeuristics()
818 (InEdges.empty() ? 0 : LBH_TAKEN_WEIGHT) + in calcLoopBranchHeuristics()
831 if (uint32_t numInEdges = InEdges.size()) { in calcLoopBranchHeuristics()
834 for (unsigned SuccIdx : InEdges) in calcLoopBranchHeuristics()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp905 DirectEdges InEdges; member
934 InEdges.push_back(E); in addInEdge()
1111 if (DestInfo.CountValid && DestInfo.InEdges.size() == 1) in setInstrumentedCounts()
1231 Count->CountValue = sumEdgeCount(Count->InEdges); in populateCounters()
1250 uint64_t InSum = sumEdgeCount(Count->InEdges); in populateCounters()
1253 setEdgeCount(Count->InEdges, Total); in populateCounters()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp981 DirectEdges InEdges; member
1010 InEdges.push_back(E); in addInEdge()
1196 if (DestInfo.CountValid && DestInfo.InEdges.size() == 1) in setInstrumentedCounts()
1320 Count->CountValue = sumEdgeCount(Count->InEdges); in populateCounters()
1339 uint64_t InSum = sumEdgeCount(Count->InEdges); in populateCounters()
1342 setEdgeCount(Count->InEdges, Total); in populateCounters()