Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp93 struct ValueDFS { struct
94 int DFSIn = 0;
95 int DFSOut = 0;
96 unsigned int LocalNum = LN_Middle;
98 Value *Def = nullptr;
99 Use *U = nullptr;
101 PredicateBase *PInfo = nullptr;
102 bool EdgeOnly = false;
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3511 struct NewGVN::ValueDFS { struct in NewGVN
3512 int DFSIn = 0;
3513 int DFSOut = 0;
3514 int LocalNum = 0;
3519 PointerIntPair<Value *, 1, bool> Def;
3520 Use *U = nullptr;
3522 bool operator<(const ValueDFS &Other) const { in operator <()