2005-07-12 01:41:54 +00:00
|
|
|
//==-- llvm/Target/TargetSubtarget.h - Target Information --------*- C++ -*-==//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_TARGETSUBTARGET_H
|
|
|
|
#define LLVM_TARGET_TARGETSUBTARGET_H
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-08-13 16:05:04 +00:00
|
|
|
class SDep;
|
2009-08-19 16:08:58 +00:00
|
|
|
class SUnit;
|
2009-08-13 16:05:04 +00:00
|
|
|
|
2005-07-12 01:41:54 +00: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 02:41:19 +00:00
|
|
|
TargetSubtarget();
|
2005-07-12 01:41:54 +00:00
|
|
|
public:
|
|
|
|
virtual ~TargetSubtarget();
|
2008-12-16 03:35:01 +00: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 16:05:04 +00:00
|
|
|
|
2009-09-30 00:10:16 +00:00
|
|
|
// enablePostRAScheduler - Return true to enable
|
|
|
|
// post-register-allocation scheduling.
|
|
|
|
virtual bool enablePostRAScheduler() const { return false; }
|
|
|
|
|
2009-08-13 16:05:04 +00:00
|
|
|
// adjustSchedDependency - Perform target specific adjustments to
|
|
|
|
// the latency of a schedule dependency.
|
2009-08-19 16:08:58 +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
|