diff options
-rw-r--r-- | include/llvm/Target/MRegisterInfo.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Target/MRegisterInfo.h b/include/llvm/Target/MRegisterInfo.h index 8221e606d8..41b01546ed 100644 --- a/include/llvm/Target/MRegisterInfo.h +++ b/include/llvm/Target/MRegisterInfo.h @@ -33,6 +33,7 @@ struct MRegisterDesc { /// namespace MRF { // MRF = Machine Register Flags enum { + Other = 0 << 0, // This is a non-standard register INT8 = 1 << 0, // This is an 8 bit integer register INT16 = 1 << 1, // This is a 16 bit integer register INT32 = 1 << 2, // This is a 32 bit integer register @@ -173,6 +174,12 @@ public: return get(RegNo).AliasSet; } + /// getName - Return the symbolic target specific name for the specified + /// physical register. + const char *getName(unsigned RegNo) const { + return get(RegNo).Name; + } + virtual const unsigned* getCalleeSaveRegs() const = 0; |