2017-08-29 22:32:07 +00:00
|
|
|
//===- llvm/CodeGen/Spiller.h - Spiller -------------------------*- C++ -*-===//
|
2009-05-18 19:03:16 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-05-18 19:03:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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
|
|
|
|
2017-08-29 22:32:07 +00:00
|
|
|
class LiveRangeEdit;
|
|
|
|
class MachineFunction;
|
|
|
|
class MachineFunctionPass;
|
|
|
|
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();
|
2017-08-29 22:32:07 +00:00
|
|
|
|
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;
|
2017-08-29 22:32:07 +00:00
|
|
|
|
|
|
|
virtual void postOptimization() {}
|
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
|
|
|
|
2017-08-29 22:32:07 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_LIB_CODEGEN_SPILLER_H
|