2011-07-01 21:01:15 +00:00
|
|
|
//==-- llvm/Target/TargetSubtargetInfo.h - Target Information ----*- C++ -*-==//
|
2005-07-12 01:41:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-12 01:41:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the subtarget options of a Target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-01 21:01:15 +00:00
|
|
|
#ifndef LLVM_TARGET_TARGETSUBTARGETINFO_H
|
|
|
|
#define LLVM_TARGET_TARGETSUBTARGETINFO_H
|
2005-07-12 01:41:54 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2012-03-25 18:09:44 +00:00
|
|
|
#include "llvm/Support/CodeGen.h"
|
2009-10-16 21:06:15 +00:00
|
|
|
|
2005-07-12 01:41:54 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2012-09-18 03:32:57 +00:00
|
|
|
class MachineInstr;
|
2009-08-13 16:05:04 +00:00
|
|
|
class SDep;
|
2009-08-19 16:08:58 +00:00
|
|
|
class SUnit;
|
2009-11-10 00:48:55 +00:00
|
|
|
class TargetRegisterClass;
|
2012-09-18 03:32:57 +00:00
|
|
|
class TargetSchedModel;
|
2009-11-10 00:48:55 +00:00
|
|
|
template <typename T> class SmallVectorImpl;
|
2009-08-13 16:05:04 +00:00
|
|
|
|
2005-07-12 01:41:54 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
2011-07-01 21:01:15 +00:00
|
|
|
/// TargetSubtargetInfo - Generic base class for all target subtargets. All
|
2005-07-12 01:41:54 +00:00
|
|
|
/// Target-specific options that control code generation and printing should
|
2011-07-01 21:01:15 +00:00
|
|
|
/// be exposed through a TargetSubtargetInfo-derived class.
|
2005-07-12 01:41:54 +00:00
|
|
|
///
|
2011-07-01 21:01:15 +00:00
|
|
|
class TargetSubtargetInfo : public MCSubtargetInfo {
|
2012-09-17 06:59:23 +00:00
|
|
|
TargetSubtargetInfo(const TargetSubtargetInfo&) LLVM_DELETED_FUNCTION;
|
|
|
|
void operator=(const TargetSubtargetInfo&) LLVM_DELETED_FUNCTION;
|
2005-07-12 01:41:54 +00:00
|
|
|
protected: // Can only create subclasses...
|
2011-07-01 21:01:15 +00:00
|
|
|
TargetSubtargetInfo();
|
2005-07-12 01:41:54 +00:00
|
|
|
public:
|
2009-10-22 23:19:17 +00:00
|
|
|
// AntiDepBreakMode - Type of anti-dependence breaking that should
|
|
|
|
// be performed before post-RA scheduling.
|
|
|
|
typedef enum { ANTIDEP_NONE, ANTIDEP_CRITICAL, ANTIDEP_ALL } AntiDepBreakMode;
|
2012-02-22 05:59:10 +00:00
|
|
|
typedef SmallVectorImpl<const TargetRegisterClass*> RegClassVector;
|
2009-10-22 23:19:17 +00:00
|
|
|
|
2011-07-01 21:01:15 +00:00
|
|
|
virtual ~TargetSubtargetInfo();
|
2008-12-16 03:35:01 +00:00
|
|
|
|
2012-09-18 03:32:57 +00:00
|
|
|
/// Resolve a SchedClass at runtime, where SchedClass identifies an
|
|
|
|
/// MCSchedClassDesc with the isVariant property. This may return the ID of
|
|
|
|
/// another variant SchedClass, but repeated invocation must quickly terminate
|
|
|
|
/// in a nonvariant SchedClass.
|
|
|
|
virtual unsigned resolveSchedClass(unsigned SchedClass, const MachineInstr *MI,
|
|
|
|
const TargetSchedModel* SchedModel) const {
|
|
|
|
return 0;
|
2012-09-18 03:18:56 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 08:47:29 +00:00
|
|
|
/// \brief True if the subtarget should run MachineScheduler after aggressive
|
|
|
|
/// coalescing.
|
|
|
|
///
|
|
|
|
/// This currently replaces the SelectionDAG scheduler with the "source" order
|
|
|
|
/// scheduler. It does not yet disable the postRA scheduler.
|
|
|
|
virtual bool enableMachineScheduler() const;
|
|
|
|
|
2009-10-16 21:06:15 +00:00
|
|
|
// enablePostRAScheduler - If the target can benefit from post-regalloc
|
|
|
|
// scheduling and the specified optimization level meets the requirement
|
2009-11-13 19:52:48 +00:00
|
|
|
// return true to enable post-register-allocation scheduling. In
|
|
|
|
// CriticalPathRCs return any register classes that should only be broken
|
2012-09-14 20:26:39 +00:00
|
|
|
// if on the critical path.
|
2009-10-22 23:19:17 +00:00
|
|
|
virtual bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
|
2009-11-10 00:15:47 +00:00
|
|
|
AntiDepBreakMode& Mode,
|
2009-11-13 19:52:48 +00:00
|
|
|
RegClassVector& CriticalPathRCs) const;
|
2009-08-13 16:05:04 +00:00
|
|
|
// adjustSchedDependency - Perform target specific adjustments to
|
|
|
|
// the latency of a schedule dependency.
|
2012-09-14 20:26:39 +00:00
|
|
|
virtual void adjustSchedDependency(SUnit *def, SUnit *use,
|
2009-09-30 00:10:16 +00:00
|
|
|
SDep& dep) const { }
|
2005-07-12 01:41:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|