1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Read in declared reg sizes

llvm-svn: 15960
This commit is contained in:
Chris Lattner 2004-08-21 02:24:57 +00:00
parent b85cd02a4e
commit 820f674293
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();
}