summaryrefslogtreecommitdiff
path: root/llvm/utils/TableGen/CodeGenRegisters.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/utils/TableGen/CodeGenRegisters.h')
-rw-r--r--llvm/utils/TableGen/CodeGenRegisters.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenRegisters.h b/llvm/utils/TableGen/CodeGenRegisters.h
index 15f08d1431f9..97f60811a7d8 100644
--- a/llvm/utils/TableGen/CodeGenRegisters.h
+++ b/llvm/utils/TableGen/CodeGenRegisters.h
@@ -353,8 +353,11 @@ namespace llvm {
// created by TableGen.
Record *getDef() const { return TheDef; }
+ std::string getNamespaceQualification() const;
const std::string &getName() const { return Name; }
std::string getQualifiedName() const;
+ std::string getIdName() const;
+ std::string getQualifiedIdName() const;
ArrayRef<ValueTypeByHwMode> getValueTypes() const { return VTs; }
unsigned getNumValueTypes() const { return VTs.size(); }
bool hasType(const ValueTypeByHwMode &VT) const;
@@ -365,7 +368,7 @@ namespace llvm {
llvm_unreachable("VTNum greater than number of ValueTypes in RegClass!");
}
- // Return true if this this class contains the register.
+ // Return true if this class contains the register.
bool contains(const CodeGenRegister*) const;
// Returns true if RC is a subclass.