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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_CODEGEN_SPILLER_H
|
|
|
|
#define LLVM_LIB_CODEGEN_SPILLER_H
|
2009-05-18 19:03:16 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-06-19 02:17:53 +00:00
|
|
|
|
2011-03-10 01:51:42 +00:00
|
|
|
class LiveRangeEdit;
|
2009-05-19 17:52:31 +00:00
|
|
|
class MachineFunction;
|
2010-07-20 23:50:15 +00:00
|
|
|
class MachineFunctionPass;
|
2009-06-19 02:17:53 +00:00
|
|
|
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 {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2009-05-18 19:03:16 +00:00
|
|
|
public:
|
|
|
|
virtual ~Spiller() = 0;
|
2009-06-17 21:01:20 +00:00
|
|
|
|
2011-03-10 01:51:42 +00:00
|
|
|
/// spill - Spill the LRE.getParent() live interval.
|
|
|
|
virtual void spill(LiveRangeEdit &LRE) = 0;
|
2009-06-17 21:01:20 +00:00
|
|
|
|
2009-05-18 19:03:16 +00:00
|
|
|
};
|
|
|
|
|
2010-12-10 22:54:44 +00: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 19:03:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|