Home
last modified time | relevance | path

Searched refs:DFSIn (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp87 int DFSIn = 0; member
125 assert((A.DFSIn != B.DFSIn || A.DFSOut == B.DFSOut) && in operator ()()
127 bool SameBlock = A.DFSIn == B.DFSIn; in operator ()()
139 return std::tie(A.DFSIn, A.LocalNum, isADef) < in operator ()()
140 std::tie(B.DFSIn, B.LocalNum, isBDef); in operator ()()
164 assert(DomASrc->getDFSNumIn() == (unsigned)A.DFSIn && in comparePHIRelated()
166 assert(DomBSrc->getDFSNumIn() == (unsigned)B.DFSIn && in comparePHIRelated()
168 assert(A.DFSIn == B.DFSIn && "Values must be in the same block"); in comparePHIRelated()
315 return (VDUse.DFSIn >= Stack.back().DFSIn && in stackIsInScope()
349 VD.DFSIn = DomNode->getDFSNumIn(); in convertUsesToDFSOrdered()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h107 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut()) in dominates()
115 unsigned getDFSIn() const { return DFSIn; } in getDFSIn()
116 void setDFSIn(unsigned I) { DFSIn = I; } in setDFSIn()
133 unsigned DFSIn = 0; // In & Out Depth use to determine scope nesting. variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3523 int DFSIn = 0; member
3572 return std::tie(DFSIn, DFSOut, LocalNum, Def, U) < in operator <()
3573 std::tie(Other.DFSIn, Other.DFSOut, Other.LocalNum, Other.Def, in operator <()
3595 VDDef.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered()
3654 VDUse.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered()
3684 VD.DFSIn = DomNode->getDFSNumIn(); in convertClassToLoadsAndStores()
3754 void push_back(Value *V, int DFSIn, int DFSOut) { in push_back() argument
3756 DFSStack.emplace_back(DFSIn, DFSOut); in push_back()
3761 bool isInScope(int DFSIn, int DFSOut) const { in isInScope() argument
3764 return DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second; in isInScope()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLexicalScopes.cpp334 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; in dump()