2003-09-30 18:37:50 +00:00
|
|
|
//===- IntervalPartition.h - Interval partition Calculation -----*- C++ -*-===//
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:19:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-24 04:07:37 +00:00
|
|
|
//
|
2002-04-28 16:19:42 +00:00
|
|
|
// This file contains the declaration of the IntervalPartition class, which
|
2002-04-27 06:56:12 +00:00
|
|
|
// calculates and represents the interval partition of a function, or a
|
2001-06-24 04:07:37 +00:00
|
|
|
// preexisting interval partition.
|
|
|
|
//
|
|
|
|
// In this way, the interval partition may be used to reduce a flow graph down
|
|
|
|
// to its degenerate single node interval partition (unless it is irreducible).
|
|
|
|
//
|
|
|
|
// TODO: The IntervalPartition class should take a bool parameter that tells
|
|
|
|
// whether it should add the "tails" of an interval to an interval itself or if
|
|
|
|
// they should be represented as distinct intervals.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_ANALYSIS_INTERVALPARTITION_H
|
|
|
|
#define LLVM_ANALYSIS_INTERVALPARTITION_H
|
2001-06-24 04:07:37 +00:00
|
|
|
|
|
|
|
#include "llvm/Analysis/Interval.h"
|
2002-01-30 23:27:55 +00:00
|
|
|
#include "llvm/Pass.h"
|
2008-03-21 23:51:57 +00:00
|
|
|
#include <map>
|
2001-06-24 04:07:37 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2001-06-24 04:07:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// IntervalPartition - This class builds and holds an "interval partition" for
|
2002-04-27 06:56:12 +00:00
|
|
|
// a function. This partition divides the control flow graph into a set of
|
2012-09-19 13:45:43 +00:00
|
|
|
// maximal intervals, as defined with the properties above. Intuitively, an
|
2013-12-05 05:44:44 +00:00
|
|
|
// interval is a (possibly nonexistent) loop with a "tail" of non-looping
|
2001-06-24 04:07:37 +00:00
|
|
|
// nodes following it.
|
|
|
|
//
|
2002-08-09 22:52:06 +00:00
|
|
|
class IntervalPartition : public FunctionPass {
|
2002-01-20 22:54:45 +00:00
|
|
|
typedef std::map<BasicBlock*, Interval*> IntervalMapTy;
|
2001-06-24 04:07:37 +00:00
|
|
|
IntervalMapTy IntervalMap;
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
typedef std::vector<Interval*> IntervalListTy;
|
2001-06-24 04:07:37 +00:00
|
|
|
Interval *RootInterval;
|
2002-08-09 22:52:06 +00:00
|
|
|
std::vector<Interval*> Intervals;
|
2001-06-24 04:07:37 +00:00
|
|
|
|
|
|
|
public:
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2007-05-01 21:15:47 +00:00
|
|
|
|
2014-04-15 04:59:12 +00:00
|
|
|
IntervalPartition() : FunctionPass(ID), RootInterval(nullptr) {
|
2010-10-19 17:21:58 +00:00
|
|
|
initializeIntervalPartitionPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2008-03-18 00:39:19 +00:00
|
|
|
|
2002-04-27 06:56:12 +00:00
|
|
|
// run - Calculate the interval partition for this function
|
2014-03-05 07:30:04 +00:00
|
|
|
bool runOnFunction(Function &F) override;
|
2001-06-24 04:07:37 +00:00
|
|
|
|
|
|
|
// IntervalPartition ctor - Build a reduced interval partition from an
|
|
|
|
// existing interval graph. This takes an additional boolean parameter to
|
|
|
|
// distinguish it from a copy constructor. Always pass in false for now.
|
|
|
|
//
|
|
|
|
IntervalPartition(IntervalPartition &I, bool);
|
|
|
|
|
2002-07-27 01:12:15 +00:00
|
|
|
// print - Show contents in human readable format...
|
2014-04-15 04:59:12 +00:00
|
|
|
void print(raw_ostream &O, const Module* = nullptr) const override;
|
2002-07-27 01:12:15 +00:00
|
|
|
|
2001-06-24 04:07:37 +00:00
|
|
|
// getRootInterval() - Return the root interval that contains the starting
|
2002-04-27 06:56:12 +00:00
|
|
|
// block of the function.
|
2001-06-24 04:07:37 +00:00
|
|
|
inline Interval *getRootInterval() { return RootInterval; }
|
|
|
|
|
|
|
|
// isDegeneratePartition() - Returns true if the interval partition contains
|
|
|
|
// a single interval, and thus cannot be simplified anymore.
|
2002-08-09 22:52:06 +00:00
|
|
|
bool isDegeneratePartition() { return Intervals.size() == 1; }
|
2001-06-24 04:07:37 +00:00
|
|
|
|
|
|
|
// TODO: isIrreducible - look for triangle graph.
|
|
|
|
|
|
|
|
// getBlockInterval - Return the interval that a basic block exists in.
|
|
|
|
inline Interval *getBlockInterval(BasicBlock *BB) {
|
|
|
|
IntervalMapTy::iterator I = IntervalMap.find(BB);
|
2014-04-15 04:59:12 +00:00
|
|
|
return I != IntervalMap.end() ? I->second : nullptr;
|
2001-06-24 04:07:37 +00:00
|
|
|
}
|
|
|
|
|
2002-04-27 06:56:12 +00:00
|
|
|
// getAnalysisUsage - Implement the Pass API
|
2014-03-05 07:30:04 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2002-04-27 06:56:12 +00:00
|
|
|
AU.setPreservesAll();
|
2002-01-30 23:27:55 +00:00
|
|
|
}
|
|
|
|
|
2002-08-09 22:52:06 +00:00
|
|
|
// Interface to Intervals vector...
|
|
|
|
const std::vector<Interval*> &getIntervals() const { return Intervals; }
|
|
|
|
|
2008-08-28 22:56:53 +00:00
|
|
|
// releaseMemory - Reset state back to before function was analyzed
|
2014-03-05 07:30:04 +00:00
|
|
|
void releaseMemory() override;
|
2002-01-30 23:27:55 +00:00
|
|
|
|
2008-08-28 22:56:53 +00:00
|
|
|
private:
|
2001-06-25 03:54:14 +00:00
|
|
|
// addIntervalToPartition - Add an interval to the internal list of intervals,
|
|
|
|
// and then add mappings from all of the basic blocks in the interval to the
|
|
|
|
// interval itself (in the IntervalMap).
|
2001-06-24 04:07:37 +00:00
|
|
|
//
|
2001-06-25 03:54:14 +00:00
|
|
|
void addIntervalToPartition(Interval *I);
|
2001-06-24 04:07:37 +00:00
|
|
|
|
|
|
|
// updatePredecessors - Interval generation only sets the successor fields of
|
|
|
|
// the interval data structures. After interval generation is complete,
|
2002-10-29 22:55:11 +00:00
|
|
|
// run through all of the intervals and propagate successor info as
|
2001-06-24 04:07:37 +00:00
|
|
|
// predecessor info.
|
|
|
|
//
|
|
|
|
void updatePredecessors(Interval *Int);
|
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-24 04:07:37 +00:00
|
|
|
#endif
|