mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
3dc9a2a61f
llvm-svn: 1503
30 lines
865 B
C++
30 lines
865 B
C++
//===- llvm/Analysis/LoopDepth.h - Loop Depth Calculation --------*- C++ -*--=//
|
|
//
|
|
// This file provides a simple class to calculate the loop depth of a
|
|
// BasicBlock.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_ANALYSIS_LOOP_DEPTH_H
|
|
#define LLVM_ANALYSIS_LOOP_DEPTH_H
|
|
|
|
#include <map>
|
|
class BasicBlock;
|
|
class Method;
|
|
namespace cfg {class Interval; }
|
|
|
|
class LoopDepthCalculator {
|
|
std::map<const BasicBlock*, unsigned> LoopDepth;
|
|
inline void AddBB(const BasicBlock *BB); // Increment count for this block
|
|
inline void ProcessInterval(cfg::Interval *I);
|
|
public:
|
|
LoopDepthCalculator(Method *M);
|
|
|
|
inline unsigned getLoopDepth(const BasicBlock *BB) const {
|
|
std::map<const BasicBlock*,unsigned>::const_iterator I = LoopDepth.find(BB);
|
|
return I != LoopDepth.end() ? I->second : 0;
|
|
}
|
|
};
|
|
|
|
#endif
|