/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | PredicateInfo.cpp | 100 int DFSIn = 0; member 142 assert((A.DFSIn != B.DFSIn || A.DFSOut == B.DFSOut) && in operator ()() 144 bool SameBlock = A.DFSIn == B.DFSIn; in operator ()() 156 return std::tie(A.DFSIn, A.LocalNum, isADef) < in operator ()() 157 std::tie(B.DFSIn, B.LocalNum, isBDef); in operator ()() 182 assert(DomASrc->getDFSNumIn() == (unsigned)A.DFSIn && in comparePHIRelated() 184 assert(DomBSrc->getDFSNumIn() == (unsigned)B.DFSIn && in comparePHIRelated() 186 assert(A.DFSIn == B.DFSIn && "Values must be in the same block"); in comparePHIRelated() 280 return (VDUse.DFSIn >= Stack.back().DFSIn && in stackIsInScope() 314 VD.DFSIn = DomNode->getDFSNumIn(); in convertUsesToDFSOrdered() [all …]
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | PredicateInfo.cpp | 99 int DFSIn = 0; member 137 assert((A.DFSIn != B.DFSIn || A.DFSOut == B.DFSOut) && in operator ()() 139 bool SameBlock = A.DFSIn == B.DFSIn; in operator ()() 151 return std::tie(A.DFSIn, A.LocalNum, isADef) < in operator ()() 152 std::tie(B.DFSIn, B.LocalNum, isBDef); in operator ()() 177 assert(DomASrc->getDFSNumIn() == (unsigned)A.DFSIn && in comparePHIRelated() 179 assert(DomBSrc->getDFSNumIn() == (unsigned)B.DFSIn && in comparePHIRelated() 181 assert(A.DFSIn == B.DFSIn && "Values must be in the same block"); in comparePHIRelated() 328 return (VDUse.DFSIn >= Stack.back().DFSIn && in stackIsInScope() 362 VD.DFSIn = DomNode->getDFSNumIn(); in convertUsesToDFSOrdered() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | LexicalScopes.h | 51 LastInsn(nullptr), FirstInsn(nullptr), DFSIn(0), DFSOut(0) { in LexicalScope() 106 if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut()) in dominates() 114 unsigned getDFSIn() const { return DFSIn; } in getDFSIn() 115 void setDFSIn(unsigned I) { DFSIn = I; } in setDFSIn() 132 unsigned DFSIn, DFSOut; // In & Out Depth use to determine variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LexicalScopes.h | 107 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
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | LexicalScopes.h | 107 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
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | NewGVN.cpp | 3453 int DFSIn = 0; member 3502 return std::tie(DFSIn, DFSOut, LocalNum, Def, U) < in operator <() 3503 std::tie(Other.DFSIn, Other.DFSOut, Other.LocalNum, Other.Def, in operator <() 3525 VDDef.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered() 3584 VDUse.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered() 3614 VD.DFSIn = DomNode->getDFSNumIn(); in convertClassToLoadsAndStores() 3683 void push_back(Value *V, int DFSIn, int DFSOut) { in push_back() argument 3685 DFSStack.emplace_back(DFSIn, DFSOut); in push_back() 3690 bool isInScope(int DFSIn, int DFSOut) const { in isInScope() argument 3693 return DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second; in isInScope() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | NewGVN.cpp | 3500 int DFSIn = 0; member 3549 return std::tie(DFSIn, DFSOut, LocalNum, Def, U) < in operator <() 3550 std::tie(Other.DFSIn, Other.DFSOut, Other.LocalNum, Other.Def, in operator <() 3572 VDDef.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered() 3631 VDUse.DFSIn = DomNode->getDFSNumIn(); in convertClassToDFSOrdered() 3661 VD.DFSIn = DomNode->getDFSNumIn(); in convertClassToLoadsAndStores() 3729 void push_back(Value *V, int DFSIn, int DFSOut) { in push_back() argument 3731 DFSStack.emplace_back(DFSIn, DFSOut); in push_back() 3736 bool isInScope(int DFSIn, int DFSOut) const { in isInScope() argument 3739 return DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second; in isInScope() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 325 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; in dump()
|
/external/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 319 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; in dump()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 334 err << "DFSIn: " << DFSIn << " DFSOut: " << DFSOut << "\n"; in dump()
|