Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp190 struct TarjanSCC { struct
191 TarjanSCC() : Components(1) {} in TarjanSCC() argument
193 void Start(const Instruction *Start) { in Start()
198 const SmallPtrSetImpl<const Value *> &getComponentFor(const Value *V) const { in getComponentFor()
207 void FindSCC(const Instruction *I) { in FindSCC()
246 unsigned int DFSNum = 1;
247 SmallPtrSet<const Value *, 8> InComponent;
248 DenseMap<const Value *, unsigned int> Root;
249 SmallVector<const Value *, 8> Stack;
253 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components;
[all …]