Reapply r79127. It was fixed by d0k.
[oota-llvm.git] / include / llvm / Target / TargetSubtarget.h
1 //==-- llvm/Target/TargetSubtarget.h - Target Information --------*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the subtarget options of a Target machine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_TARGETSUBTARGET_H
15 #define LLVM_TARGET_TARGETSUBTARGET_H
16
17 namespace llvm {
18
19 class SDep;
20
21 //===----------------------------------------------------------------------===//
22 ///
23 /// TargetSubtarget - Generic base class for all target subtargets.  All
24 /// Target-specific options that control code generation and printing should
25 /// be exposed through a TargetSubtarget-derived class.
26 ///
27 class TargetSubtarget {
28   TargetSubtarget(const TargetSubtarget&);   // DO NOT IMPLEMENT
29   void operator=(const TargetSubtarget&);  // DO NOT IMPLEMENT
30 protected: // Can only create subclasses...
31   TargetSubtarget();
32 public:
33   virtual ~TargetSubtarget();
34
35   /// getSpecialAddressLatency - For targets where it is beneficial to
36   /// backschedule instructions that compute addresses, return a value
37   /// indicating the number of scheduling cycles of backscheduling that
38   /// should be attempted.
39   virtual unsigned getSpecialAddressLatency() const { return 0; }
40
41   // adjustSchedDependency - Perform target specific adjustments to
42   // the latency of a schedule dependency.
43   virtual void adjustSchedDependency(SDep&) const { };
44 };
45
46 } // End llvm namespace
47
48 #endif