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

Commit

Permalink
Add accessors for MCSubtargetInfo CPU and Feature tables
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter authored and alexcrichton committed Jan 26, 2018
1 parent f128612 commit 1187443
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions include/llvm/MC/MCSubtargetInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ class MCSubtargetInfo {
return Found != ProcDesc.end() && StringRef(Found->Key) == CPU;
}


/// Returns string representation of scheduler comment
virtual std::string getSchedInfoStr(const MachineInstr &MI) const {
return {};
Expand All @@ -188,6 +189,14 @@ class MCSubtargetInfo {
virtual std::string getSchedInfoStr(MCInst const &MCI) const {
return {};
}

ArrayRef<SubtargetFeatureKV> getCPUTable() const {
return ProcDesc;
}

ArrayRef<SubtargetFeatureKV> getFeatureTable() const {
return ProcFeatures;
}
};

} // end namespace llvm
Expand Down

0 comments on commit 1187443

Please sign in to comment.