- Added MCSubtargetInfo to capture subtarget features and scheduling
[oota-llvm.git] / lib / Target / SystemZ / SystemZSubtarget.h
1 //==-- SystemZSubtarget.h - Define Subtarget for the SystemZ ---*- 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 declares the SystemZ specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_SystemZ_SUBTARGET_H
15 #define LLVM_TARGET_SystemZ_SUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18 #include <string>
19
20 #define GET_SUBTARGETINFO_HEADER
21 #include "SystemZGenSubtarget.inc"
22
23 namespace llvm {
24 class GlobalValue;
25 class TargetMachine;
26
27 class SystemZSubtarget : public SystemZGenSubtargetInfo {
28   bool HasZ10Insts;
29 public:
30   /// This constructor initializes the data members to match that
31   /// of the specified triple.
32   ///
33   SystemZSubtarget(const std::string &TT, const std::string &CPU,
34                    const std::string &FS);
35
36   /// ParseSubtargetFeatures - Parses features string setting specified
37   /// subtarget options.  Definition of function is auto generated by tblgen.
38   void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
39
40   bool isZ10() const { return HasZ10Insts; }
41
42   bool GVRequiresExtraLoad(const GlobalValue* GV, const TargetMachine& TM,
43                            bool isDirectCall) const;
44 };
45 } // End llvm namespace
46
47 #endif  // LLVM_TARGET_SystemZ_SUBTARGET_H