Home
last modified time | relevance | path

Searched defs:ValueDFS (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DPredicateInfo.cpp100 struct ValueDFS { struct
101 int DFSIn = 0;
102 int DFSOut = 0;
103 unsigned int LocalNum = LN_Middle;
105 Value *Def = nullptr;
106 Use *U = nullptr;
108 PredicateBase *PInfo = nullptr;
109 bool EdgeOnly = false;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DPredicateInfo.h237 using ValueDFS = PredicateInfoClasses::ValueDFS; variable
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DNewGVN.cpp3524 struct NewGVN::ValueDFS { struct in NewGVN
3525 int DFSIn = 0;
3526 int DFSOut = 0;
3527 int LocalNum = 0;
3532 PointerIntPair<Value *, 1, bool> Def;
3533 Use *U = nullptr;
3535 bool operator<(const ValueDFS &Other) const { in operator <()