Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp86 struct ValueDFS { struct
87 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;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp3522 struct NewGVN::ValueDFS { struct in NewGVN
3523 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 <()