HomeSort by relevance Sort by last modified time
    Searched defs:DFSIn (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 51 LastInsn(nullptr), FirstInsn(nullptr), DFSIn(0), DFSOut(0) {
106 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut())
114 unsigned getDFSIn() const { return DFSIn; }
115 void setDFSIn(unsigned I) { DFSIn = I; }
132 unsigned DFSIn, DFSOut; // In & Out Depth use to determine
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
LexicalScopes.h 160 LastInsn(0), FirstInsn(0), DFSIn(0), DFSOut(0), IndentLevel(0) {
215 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut())
223 unsigned getDFSIn() const { return DFSIn; }
224 void setDFSIn(unsigned I) { DFSIn = I; }
241 unsigned DFSIn, DFSOut; // In & Out Depth use to determine
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
LexicalScopes.h 108 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut())
116 unsigned getDFSIn() const { return DFSIn; }
117 void setDFSIn(unsigned I) { DFSIn = I; }
134 unsigned DFSIn = 0; // In & Out Depth use to determine scope nesting.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 101 int DFSIn = 0;
141 bool SameBlock = std::tie(A.DFSIn, A.DFSOut) == std::tie(B.DFSIn, B.DFSOut);
151 return std::tie(A.DFSIn, A.DFSOut, A.LocalNum, A.Def, A.U) <
152 std::tie(B.DFSIn, B.DFSOut, B.LocalNum, B.Def, B.U);
250 return (VDUse.DFSIn >= Stack.back().DFSIn &&
284 VD.DFSIn = DomNode->getDFSNumIn();
596 VD.DFSIn = DomNode->getDFSNumIn();
609 VD.DFSIn = DomNode->getDFSNumIn()
    [all...]

Completed in 2053 milliseconds