2003-09-30 20:37:50 +02:00
|
|
|
//===- IntervalPartition.h - Interval partition Calculation -----*- C++ -*-===//
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:19:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-24 06:07:37 +02:00
|
|
|
//
|
2002-04-28 18:19:42 +02:00
|
|
|
// This file contains the declaration of the IntervalPartition class, which
|
2002-04-27 08:56:12 +02:00
|
|
|
// calculates and represents the interval partition of a function, or a
|
2001-06-24 06:07:37 +02: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_INTERVAL_PARTITION_H
|
|
|
|
#define LLVM_INTERVAL_PARTITION_H
|
|
|
|
|
|
|
|
#include "llvm/Analysis/Interval.h"
|
2002-01-31 00:27:55 +01:00
|
|
|
#include "llvm/Pass.h"
|
2008-03-22 00:51:57 +01:00
|
|
|
#include <map>
|
2001-06-24 06:07:37 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2001-06-24 06:07:37 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// IntervalPartition - This class builds and holds an "interval partition" for
|
2002-04-27 08:56:12 +02:00
|
|
|
// a function. This partition divides the control flow graph into a set of
|
2001-06-24 06:07:37 +02:00
|
|
|
// maximal intervals, as defined with the properties above. Intuitively, a
|
|
|
|
// BasicBlock is a (possibly nonexistent) loop with a "tail" of non looping
|
|
|
|
// nodes following it.
|
|
|
|
//
|
2002-08-10 00:52:06 +02:00
|
|
|
class IntervalPartition : public FunctionPass {
|
2002-01-20 23:54:45 +01:00
|
|
|
typedef std::map<BasicBlock*, Interval*> IntervalMapTy;
|
2001-06-24 06:07:37 +02:00
|
|
|
IntervalMapTy IntervalMap;
|
|
|
|
|
2002-01-20 23:54:45 +01:00
|
|
|
typedef std::vector<Interval*> IntervalListTy;
|
2001-06-24 06:07:37 +02:00
|
|
|
Interval *RootInterval;
|
2002-08-10 00:52:06 +02:00
|
|
|
std::vector<Interval*> Intervals;
|
2001-06-24 06:07:37 +02:00
|
|
|
|
|
|
|
public:
|
2007-05-06 15:37:16 +02:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2007-05-01 23:15:47 +02:00
|
|
|
|
2008-09-04 19:05:41 +02:00
|
|
|
IntervalPartition() : FunctionPass(&ID), RootInterval(0) {}
|
2008-03-18 01:39:19 +01:00
|
|
|
|
2002-04-27 08:56:12 +02:00
|
|
|
// run - Calculate the interval partition for this function
|
2002-06-25 18:13:24 +02:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2001-06-24 06:07:37 +02: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 03:12:15 +02:00
|
|
|
// print - Show contents in human readable format...
|
2004-12-07 05:03:45 +01:00
|
|
|
virtual void print(std::ostream &O, const Module* = 0) const;
|
2006-12-17 06:15:13 +01:00
|
|
|
void print(std::ostream *O, const Module* M = 0) const {
|
|
|
|
if (O) print(*O, M);
|
|
|
|
}
|
2002-07-27 03:12:15 +02:00
|
|
|
|
2001-06-24 06:07:37 +02:00
|
|
|
// getRootInterval() - Return the root interval that contains the starting
|
2002-04-27 08:56:12 +02:00
|
|
|
// block of the function.
|
2001-06-24 06:07:37 +02: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-10 00:52:06 +02:00
|
|
|
bool isDegeneratePartition() { return Intervals.size() == 1; }
|
2001-06-24 06:07:37 +02: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);
|
|
|
|
return I != IntervalMap.end() ? I->second : 0;
|
|
|
|
}
|
|
|
|
|
2002-04-27 08:56:12 +02:00
|
|
|
// getAnalysisUsage - Implement the Pass API
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
2002-01-31 00:27:55 +01:00
|
|
|
}
|
|
|
|
|
2002-08-10 00:52:06 +02:00
|
|
|
// Interface to Intervals vector...
|
|
|
|
const std::vector<Interval*> &getIntervals() const { return Intervals; }
|
|
|
|
|
2008-08-29 00:56:53 +02:00
|
|
|
// releaseMemory - Reset state back to before function was analyzed
|
|
|
|
void releaseMemory();
|
2002-01-31 00:27:55 +01:00
|
|
|
|
2008-08-29 00:56:53 +02:00
|
|
|
private:
|
2001-06-25 05:54:14 +02: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 06:07:37 +02:00
|
|
|
//
|
2001-06-25 05:54:14 +02:00
|
|
|
void addIntervalToPartition(Interval *I);
|
2001-06-24 06:07:37 +02:00
|
|
|
|
|
|
|
// updatePredecessors - Interval generation only sets the successor fields of
|
|
|
|
// the interval data structures. After interval generation is complete,
|
2002-10-29 23:55:11 +01:00
|
|
|
// run through all of the intervals and propagate successor info as
|
2001-06-24 06:07:37 +02:00
|
|
|
// predecessor info.
|
|
|
|
//
|
|
|
|
void updatePredecessors(Interval *Int);
|
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2001-06-24 06:07:37 +02:00
|
|
|
#endif
|