Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp99 struct ValueDFS { struct
100 int DFSIn = 0;
101 int DFSOut = 0;
102 unsigned int LocalNum = LN_Middle;
104 Value *Def = nullptr;
105 Use *U = nullptr;
107 PredicateBase *PInfo = nullptr;
108 bool EdgeOnly = false;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3481 struct NewGVN::ValueDFS { struct in NewGVN
3482 int DFSIn = 0;
3483 int DFSOut = 0;
3484 int LocalNum = 0;
3489 PointerIntPair<Value *, 1, bool> Def;
3490 Use *U = nullptr;
3492 bool operator<(const ValueDFS &Other) const { in operator <()