[mips] [IAS] Restore STI.FeatureBits in .set pop.
[oota-llvm.git] / include / llvm / MC / MCSubtargetInfo.h
1 //==-- llvm/MC/MCSubtargetInfo.h - Subtarget 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_MC_MCSUBTARGETINFO_H
15 #define LLVM_MC_MCSUBTARGETINFO_H
16
17 #include "llvm/MC/MCInstrItineraries.h"
18 #include "llvm/MC/SubtargetFeature.h"
19 #include <string>
20
21 namespace llvm {
22
23 class StringRef;
24
25 //===----------------------------------------------------------------------===//
26 ///
27 /// MCSubtargetInfo - Generic base class for all target subtargets.
28 ///
29 class MCSubtargetInfo {
30   std::string TargetTriple;            // Target triple
31   std::string CPU; // CPU being targeted.
32   ArrayRef<SubtargetFeatureKV> ProcFeatures;  // Processor feature list
33   ArrayRef<SubtargetFeatureKV> ProcDesc;  // Processor descriptions
34
35   // Scheduler machine model
36   const SubtargetInfoKV *ProcSchedModels;
37   const MCWriteProcResEntry *WriteProcResTable;
38   const MCWriteLatencyEntry *WriteLatencyTable;
39   const MCReadAdvanceEntry *ReadAdvanceTable;
40   MCSchedModel CPUSchedModel;
41
42   const InstrStage *Stages;            // Instruction itinerary stages
43   const unsigned *OperandCycles;       // Itinerary operand cycles
44   const unsigned *ForwardingPaths;     // Forwarding paths
45   FeatureBitset FeatureBits;           // Feature bits for current CPU + FS
46
47 public:
48   void InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS,
49                            ArrayRef<SubtargetFeatureKV> PF,
50                            ArrayRef<SubtargetFeatureKV> PD,
51                            const SubtargetInfoKV *ProcSched,
52                            const MCWriteProcResEntry *WPR,
53                            const MCWriteLatencyEntry *WL,
54                            const MCReadAdvanceEntry *RA,
55                            const InstrStage *IS,
56                            const unsigned *OC, const unsigned *FP);
57
58   /// getTargetTriple - Return the target triple string.
59   StringRef getTargetTriple() const {
60     return TargetTriple;
61   }
62
63   /// getCPU - Return the CPU string.
64   StringRef getCPU() const {
65     return CPU;
66   }
67
68   /// getFeatureBits - Return the feature bits.
69   ///
70   const FeatureBitset& getFeatureBits() const {
71     return FeatureBits;
72   }
73
74   /// setFeatureBits - Set the feature bits.
75   ///
76   void setFeatureBits(const FeatureBitset &FeatureBits_) {
77     FeatureBits = FeatureBits_;
78   }
79
80   /// InitMCProcessorInfo - Set or change the CPU (optionally supplemented with
81   /// feature string). Recompute feature bits and scheduling model.
82   void InitMCProcessorInfo(StringRef CPU, StringRef FS);
83
84   /// InitCPUSchedModel - Recompute scheduling model based on CPU.
85   void InitCPUSchedModel(StringRef CPU);
86
87   /// ToggleFeature - Toggle a feature and returns the re-computed feature
88   /// bits. This version does not change the implied bits.
89   FeatureBitset ToggleFeature(uint64_t FB);
90
91   /// ToggleFeature - Toggle a feature and returns the re-computed feature
92   /// bits. This version does not change the implied bits.
93   FeatureBitset ToggleFeature(const FeatureBitset& FB);
94
95   /// ToggleFeature - Toggle a set of features and returns the re-computed
96   /// feature bits. This version will also change all implied bits.
97   FeatureBitset ToggleFeature(StringRef FS);
98
99   /// getSchedModelForCPU - Get the machine model of a CPU.
100   ///
101   MCSchedModel getSchedModelForCPU(StringRef CPU) const;
102
103   /// getSchedModel - Get the machine model for this subtarget's CPU.
104   ///
105   const MCSchedModel &getSchedModel() const { return CPUSchedModel; }
106
107   /// Return an iterator at the first process resource consumed by the given
108   /// scheduling class.
109   const MCWriteProcResEntry *getWriteProcResBegin(
110     const MCSchedClassDesc *SC) const {
111     return &WriteProcResTable[SC->WriteProcResIdx];
112   }
113   const MCWriteProcResEntry *getWriteProcResEnd(
114     const MCSchedClassDesc *SC) const {
115     return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
116   }
117
118   const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC,
119                                                   unsigned DefIdx) const {
120     assert(DefIdx < SC->NumWriteLatencyEntries &&
121            "MachineModel does not specify a WriteResource for DefIdx");
122
123     return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
124   }
125
126   int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx,
127                            unsigned WriteResID) const {
128     // TODO: The number of read advance entries in a class can be significant
129     // (~50). Consider compressing the WriteID into a dense ID of those that are
130     // used by ReadAdvance and representing them as a bitset.
131     for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx],
132            *E = I + SC->NumReadAdvanceEntries; I != E; ++I) {
133       if (I->UseIdx < UseIdx)
134         continue;
135       if (I->UseIdx > UseIdx)
136         break;
137       // Find the first WriteResIdx match, which has the highest cycle count.
138       if (!I->WriteResourceID || I->WriteResourceID == WriteResID) {
139         return I->Cycles;
140       }
141     }
142     return 0;
143   }
144
145   /// getInstrItineraryForCPU - Get scheduling itinerary of a CPU.
146   ///
147   InstrItineraryData getInstrItineraryForCPU(StringRef CPU) const;
148
149   /// Initialize an InstrItineraryData instance.
150   void initInstrItins(InstrItineraryData &InstrItins) const;
151
152   /// Check whether the CPU string is valid.
153   bool isCPUStringValid(StringRef CPU) {
154     auto Found = std::find_if(ProcDesc.begin(), ProcDesc.end(),
155                               [=](const SubtargetFeatureKV &KV) {
156                                 return CPU == KV.Key; 
157                               });
158     return Found != ProcDesc.end();
159   }
160 };
161
162 } // End llvm namespace
163
164 #endif