HomeSort by: relevance | last modified time | path
    Searched refs:DFSNum (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
GenericDomTree.h 751 unsigned DFSNum = 0;
752 ThisRoot->DFSNumIn = DFSNum++;
761 Node->DFSNumOut = DFSNum++;
769 Child->DFSNumIn = DFSNum++;
GenericDomTreeConstruction.h 65 unsigned DFSNum = 0;
191 if (BBInfo.DFSNum != 0) continue;
192 BBInfo.DFSNum = BBInfo.Semi = ++LastNum;
208 if (SIT != NodeToInfo.end() && SIT->second.DFSNum != 0) {
309 const unsigned SDomNum = NodeToInfo[NumToNode[WInfo.Semi]].DFSNum;
311 while (NodeToInfo[WIDomCandidate].DFSNum > SDomNum)
328 BBInfo.DFSNum = BBInfo.Semi = 1;
462 LLVM_DEBUG(dbgs() << "\t\t\tPrev DFSNum: " << Num << ", new DFSNum: "
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
NewGVN.cpp 208 Root[I] = ++DFSNum;
210 unsigned int OurDFS = DFSNum;
246 unsigned int DFSNum = 1;
881 Value *InstrFromDFSNum(unsigned DFSNum) { return DFSToInstr[DFSNum]; }
2102 auto DFSNum = InstrToDFSNum(X);
2103 if (DFSNum < MinDFS.second)
2104 MinDFS = {X, DFSNum};

Completed in 23 milliseconds