mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 06:30:16 +00:00
New file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5097 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86c69a6cbe
commit
9208bbf5c9
32
lib/Target/MRegisterInfo.cpp
Normal file
32
lib/Target/MRegisterInfo.cpp
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
//===- MRegisterInfo.cpp - Target Register Information Implementation -----===//
|
||||||
|
//
|
||||||
|
// This file implements the MRegisterInfo interface.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "llvm/Target/MRegisterInfo.h"
|
||||||
|
|
||||||
|
MRegisterInfo::MRegisterInfo(const MRegisterDesc *D, unsigned NR,
|
||||||
|
regclass_iterator RCB, regclass_iterator RCE)
|
||||||
|
: Desc(D), NumRegs(NR), RegClassBegin(RCB), RegClassEnd(RCE) {
|
||||||
|
assert(NumRegs < FirstVirtualRegister &&
|
||||||
|
"Target has too many physical registers!");
|
||||||
|
|
||||||
|
PhysRegClasses = new const TargetRegisterClass*[NumRegs];
|
||||||
|
for (unsigned i = 0; i != NumRegs; ++i)
|
||||||
|
PhysRegClasses[i] = 0;
|
||||||
|
|
||||||
|
// Fill in the PhysRegClasses map
|
||||||
|
for (MRegisterInfo::regclass_iterator I = regclass_begin(),
|
||||||
|
E = regclass_end(); I != E; ++I)
|
||||||
|
for (unsigned i=0; i < (*I)->getNumRegs(); ++i) {
|
||||||
|
assert(PhysRegClasses[(*I)->getRegister(i)] == 0 &&
|
||||||
|
"Register in more than one class?");
|
||||||
|
PhysRegClasses[(*I)->getRegister(i)] = *I;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
MRegisterInfo::~MRegisterInfo() {
|
||||||
|
delete[] PhysRegClasses;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user