2009-05-18 21:03:16 +02: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
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-06-19 04:17:53 +02:00
|
|
|
|
2011-03-10 02:51:42 +01:00
|
|
|
class LiveRangeEdit;
|
2009-05-19 19:52:31 +02:00
|
|
|
class MachineFunction;
|
2010-07-21 01:50:15 +02:00
|
|
|
class MachineFunctionPass;
|
2009-06-19 04:17:53 +02:00
|
|
|
class VirtRegMap;
|
2009-05-18 21:03:16 +02:00
|
|
|
|
|
|
|
/// Spiller interface.
|
|
|
|
///
|
|
|
|
/// Implementations are utility classes which insert spill or remat code on
|
|
|
|
/// demand.
|
|
|
|
class Spiller {
|
2011-12-20 03:50:00 +01:00
|
|
|
virtual void anchor();
|
2009-05-18 21:03:16 +02:00
|
|
|
public:
|
|
|
|
virtual ~Spiller() = 0;
|
2009-06-17 23:01:20 +02:00
|
|
|
|
2011-03-10 02:51:42 +01:00
|
|
|
/// spill - Spill the LRE.getParent() live interval.
|
|
|
|
virtual void spill(LiveRangeEdit &LRE) = 0;
|
2009-06-17 23:01:20 +02:00
|
|
|
|
2009-05-18 21:03:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Create and return a spiller object, as specified on the command line.
|
2010-07-21 01:50:15 +02:00
|
|
|
Spiller* createSpiller(MachineFunctionPass &pass,
|
|
|
|
MachineFunction &mf,
|
|
|
|
VirtRegMap &vrm);
|
2010-12-10 23:54:44 +01:00
|
|
|
|
|
|
|
/// Create and return a spiller that will insert spill code directly instead
|
|
|
|
/// of deferring though VirtRegMap.
|
|
|
|
Spiller *createInlineSpiller(MachineFunctionPass &pass,
|
|
|
|
MachineFunction &mf,
|
|
|
|
VirtRegMap &vrm);
|
|
|
|
|
2009-05-18 21:03:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|