Read in declared reg sizes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15960 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-08-21 02:24:57 +00:00
parent b4d83c1f2c
commit 7a680c6064
2 changed files with 7 additions and 1 deletions

View File

@ -24,8 +24,9 @@ namespace llvm {
struct CodeGenRegister {
Record *TheDef;
const std::string &getName() const;
unsigned DeclaredSpillSize, DeclaredSpillAlignment;
CodeGenRegister(Record *R) : TheDef(R) {}
CodeGenRegister(Record *R);
};

View File

@ -112,6 +112,11 @@ void CodeGenTarget::ReadRegisters() const {
Registers.assign(Regs.begin(), Regs.end());
}
CodeGenRegister::CodeGenRegister(Record *R) : TheDef(R) {
DeclaredSpillSize = R->getValueAsInt("SpillSize");
DeclaredSpillAlignment = R->getValueAsInt("SpillAlignment");
}
const std::string &CodeGenRegister::getName() const {
return TheDef->getName();
}