2005-07-12 03:41:54 +02:00
|
|
|
//==-- llvm/Target/TargetSubtarget.h - Target Information --------*- C++ -*-==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-12 03:41:54 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the subtarget options of a Target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_TARGETSUBTARGET_H
|
|
|
|
#define LLVM_TARGET_TARGETSUBTARGET_H
|
|
|
|
|
2009-10-16 23:06:15 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
2005-07-12 03:41:54 +02:00
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-13 18:05:04 +02:00
|
|
|
class SDep;
|
2009-08-19 18:08:58 +02:00
|
|
|
class SUnit;
|
2009-11-10 01:48:55 +01:00
|
|
|
class TargetRegisterClass;
|
|
|
|
template <typename T> class SmallVectorImpl;
|
2009-08-13 18:05:04 +02:00
|
|
|
|
2005-07-12 03:41:54 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// TargetSubtarget - Generic base class for all target subtargets. All
|
|
|
|
/// Target-specific options that control code generation and printing should
|
|
|
|
/// be exposed through a TargetSubtarget-derived class.
|
|
|
|
///
|
|
|
|
class TargetSubtarget {
|
|
|
|
TargetSubtarget(const TargetSubtarget&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const TargetSubtarget&); // DO NOT IMPLEMENT
|
|
|
|
protected: // Can only create subclasses...
|
2005-07-12 04:41:19 +02:00
|
|
|
TargetSubtarget();
|
2005-07-12 03:41:54 +02:00
|
|
|
public:
|
2009-10-23 01:19:17 +02:00
|
|
|
// AntiDepBreakMode - Type of anti-dependence breaking that should
|
|
|
|
// be performed before post-RA scheduling.
|
|
|
|
typedef enum { ANTIDEP_NONE, ANTIDEP_CRITICAL, ANTIDEP_ALL } AntiDepBreakMode;
|
2009-11-13 20:52:48 +01:00
|
|
|
typedef SmallVectorImpl<TargetRegisterClass*> RegClassVector;
|
2009-10-23 01:19:17 +02:00
|
|
|
|
2005-07-12 03:41:54 +02:00
|
|
|
virtual ~TargetSubtarget();
|
2008-12-16 04:35:01 +01:00
|
|
|
|
|
|
|
/// getSpecialAddressLatency - For targets where it is beneficial to
|
|
|
|
/// backschedule instructions that compute addresses, return a value
|
|
|
|
/// indicating the number of scheduling cycles of backscheduling that
|
|
|
|
/// should be attempted.
|
|
|
|
virtual unsigned getSpecialAddressLatency() const { return 0; }
|
2009-08-13 18:05:04 +02:00
|
|
|
|
2009-10-16 23:06:15 +02:00
|
|
|
// enablePostRAScheduler - If the target can benefit from post-regalloc
|
|
|
|
// scheduling and the specified optimization level meets the requirement
|
2009-11-13 20:52:48 +01:00
|
|
|
// return true to enable post-register-allocation scheduling. In
|
|
|
|
// CriticalPathRCs return any register classes that should only be broken
|
|
|
|
// if on the critical path.
|
2009-10-23 01:19:17 +02:00
|
|
|
virtual bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
|
2009-11-10 01:15:47 +01:00
|
|
|
AntiDepBreakMode& Mode,
|
2009-11-13 20:52:48 +01:00
|
|
|
RegClassVector& CriticalPathRCs) const;
|
2009-08-13 18:05:04 +02:00
|
|
|
// adjustSchedDependency - Perform target specific adjustments to
|
|
|
|
// the latency of a schedule dependency.
|
2009-08-19 18:08:58 +02:00
|
|
|
virtual void adjustSchedDependency(SUnit *def, SUnit *use,
|
2009-09-30 02:10:16 +02:00
|
|
|
SDep& dep) const { }
|
2005-07-12 03:41:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|