2009-05-18 19:03:16 +00:00
|
|
|
//===-- llvm/CodeGen/Spiller.h - Spiller -*- C++ -*------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SPILLER_H
|
|
|
|
#define LLVM_CODEGEN_SPILLER_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-06-02 16:53:25 +00:00
|
|
|
class LiveInterval;
|
2009-05-19 17:52:31 +00:00
|
|
|
class LiveIntervals;
|
2009-06-02 16:53:25 +00:00
|
|
|
class LiveStacks;
|
2009-05-19 17:52:31 +00:00
|
|
|
class MachineFunction;
|
|
|
|
class VirtRegMap;
|
2009-05-18 19:03:16 +00:00
|
|
|
|
|
|
|
/// Spiller interface.
|
|
|
|
///
|
|
|
|
/// Implementations are utility classes which insert spill or remat code on
|
|
|
|
/// demand.
|
|
|
|
class Spiller {
|
|
|
|
public:
|
|
|
|
virtual ~Spiller() = 0;
|
2009-05-19 17:51:26 +00:00
|
|
|
virtual std::vector<LiveInterval*> spill(LiveInterval *li) = 0;
|
2009-05-18 19:03:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Create and return a spiller object, as specified on the command line.
|
2009-05-19 17:51:26 +00:00
|
|
|
Spiller* createSpiller(MachineFunction *mf, LiveIntervals *li,
|
2009-06-02 16:53:25 +00:00
|
|
|
LiveStacks *ls, VirtRegMap *vrm);
|
2009-05-18 19:03:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|