Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp475 struct LoopDepthTree { struct
477 using iterator = LoopsOnLevelTy::iterator;
480 LoopDepthTree(LoopInfo &LI) : Depth(1) { in LoopDepthTree() function
494 void descend() { in descend()
507 bool empty() const { return size() == 0; } in empty()
509 unsigned getDepth() const { return Depth; } in getDepth()
511 iterator begin() { return LoopsOnLevel.begin(); } in begin()
512 iterator end() { return LoopsOnLevel.end(); } in end()
519 SmallPtrSet<const Loop *, 8> RemovedLoops;
522 unsigned Depth;
[all …]