Searched defs:ValueDFS (Results 1 – 2 of 2) sorted by relevance
86 struct ValueDFS { struct87 int DFSIn = 0;88 int DFSOut = 0;89 unsigned int LocalNum = LN_Middle;91 Value *Def = nullptr;92 Use *U = nullptr;94 PredicateBase *PInfo = nullptr;95 bool EdgeOnly = false;
3522 struct NewGVN::ValueDFS { struct in NewGVN3523 int DFSIn = 0;3524 int DFSOut = 0;3525 int LocalNum = 0;3530 PointerIntPair<Value *, 1, bool> Def;3531 Use *U = nullptr;3533 bool operator<(const ValueDFS &Other) const { in operator <()