summaryrefslogtreecommitdiff
path: root/include/llvm/MC
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-07-22 00:44:39 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-07-22 00:44:39 +0000
commit8ca9a862038e8c4e9a2ca73b3b75e1be3425155f (patch)
tree573000f2bc2c04810c2ccfef09c8b5e52d85a636 /include/llvm/MC
parent6b598748b1e03b6b188726d5a0fef2a6abc29562 (diff)
downloadllvm-8ca9a862038e8c4e9a2ca73b3b75e1be3425155f.tar.gz
llvm-8ca9a862038e8c4e9a2ca73b3b75e1be3425155f.tar.bz2
llvm-8ca9a862038e8c4e9a2ca73b3b75e1be3425155f.tar.xz
Teach tblgen to emit MCRegisterClasses.
- This currently introduces more instances of the static DenseSet dtor, but that should be fixable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135735 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC')
-rw-r--r--include/llvm/MC/MCRegisterInfo.h39
1 files changed, 34 insertions, 5 deletions
diff --git a/include/llvm/MC/MCRegisterInfo.h b/include/llvm/MC/MCRegisterInfo.h
index 7593c07493..7ed84f214d 100644
--- a/include/llvm/MC/MCRegisterInfo.h
+++ b/include/llvm/MC/MCRegisterInfo.h
@@ -40,10 +40,15 @@ public:
unsigned RS, unsigned Al, int CC, bool Allocable,
iterator RB, iterator RE)
: ID(id), Name(name), RegSize(RS), Alignment(Al), CopyCost(CC),
- Allocatable(Allocable), RegsBegin(RB), RegsEnd(RE) {
- for (iterator I = RegsBegin, E = RegsEnd; I != E; ++I)
- RegSet.insert(*I);
- }
+ Allocatable(Allocable), RegsBegin(RB), RegsEnd(RE) {}
+
+ /// initMCRegisterClass - Initialize initMCRegisterClass. *DO NOT USE*.
+ // FIXME: This could go away if RegSet would use a constant bit field.
+ void initMCRegisterClass() {
+ RegSet.resize(getNumRegs());
+ for (iterator I = RegsBegin, E = RegsEnd; I != E; ++I)
+ RegSet.insert(*I);
+ }
/// getID() - Return the register class ID number.
///
@@ -128,10 +133,14 @@ struct MCRegisterDesc {
/// virtual methods.
///
class MCRegisterInfo {
+public:
+ typedef const MCRegisterClass *regclass_iterator;
private:
const MCRegisterDesc *Desc; // Pointer to the descriptor array
unsigned NumRegs; // Number of entries in the array
unsigned RAReg; // Return address register
+ const MCRegisterClass *Classes; // Pointer to the regclass array
+ unsigned NumClasses; // Number of entries in the array
DenseMap<unsigned, int> L2DwarfRegs; // LLVM to Dwarf regs mapping
DenseMap<unsigned, int> EHL2DwarfRegs; // LLVM to Dwarf regs mapping EH
DenseMap<unsigned, unsigned> Dwarf2LRegs; // Dwarf to LLVM regs mapping
@@ -141,10 +150,16 @@ private:
public:
/// InitMCRegisterInfo - Initialize MCRegisterInfo, called by TableGen
/// auto-generated routines. *DO NOT USE*.
- void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA) {
+ void InitMCRegisterInfo(const MCRegisterDesc *D, unsigned NR, unsigned RA,
+ MCRegisterClass *C, unsigned NC) {
Desc = D;
NumRegs = NR;
RAReg = RA;
+ Classes = C;
+ NumClasses = NC;
+ // FIXME: This should go away.
+ for (unsigned i = 0; i != NC; ++i)
+ C[i].initMCRegisterClass();
}
/// mapLLVMRegToDwarfReg - Used to initialize LLVM register to Dwarf
@@ -273,6 +288,20 @@ public:
if (I == L2SEHRegs.end()) return (int)RegNum;
return I->second;
}
+
+ regclass_iterator regclass_begin() const { return Classes; }
+ regclass_iterator regclass_end() const { return Classes+NumClasses; }
+
+ unsigned getNumRegClasses() const {
+ return (unsigned)(regclass_end()-regclass_begin());
+ }
+
+ /// getRegClass - Returns the register class associated with the enumeration
+ /// value. See class MCOperandInfo.
+ const MCRegisterClass getRegClass(unsigned i) const {
+ assert(i < getNumRegClasses() && "Register Class ID out of range");
+ return Classes[i];
+ }
};
} // End llvm namespace