Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit 1187443

Browse files
bitshifteralexcrichton
authored andcommitted
Add accessors for MCSubtargetInfo CPU and Feature tables
1 parent f128612 commit 1187443

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

include/llvm/MC/MCSubtargetInfo.h

+9
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ class MCSubtargetInfo {
180180
return Found != ProcDesc.end() && StringRef(Found->Key) == CPU;
181181
}
182182

183+
183184
/// Returns string representation of scheduler comment
184185
virtual std::string getSchedInfoStr(const MachineInstr &MI) const {
185186
return {};
@@ -188,6 +189,14 @@ class MCSubtargetInfo {
188189
virtual std::string getSchedInfoStr(MCInst const &MCI) const {
189190
return {};
190191
}
192+
193+
ArrayRef<SubtargetFeatureKV> getCPUTable() const {
194+
return ProcDesc;
195+
}
196+
197+
ArrayRef<SubtargetFeatureKV> getFeatureTable() const {
198+
return ProcFeatures;
199+
}
191200
};
192201

193202
} // end namespace llvm

0 commit comments

Comments
 (0)