summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineRegisterInfo.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-16 22:34:08 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-16 22:34:08 +0000
commitc035c940a656f34a58ebe22fcc5f9b2a7d8e97fb (patch)
treedafece65a47d774ec131ca06120699dca710bb33 /lib/CodeGen/MachineRegisterInfo.cpp
parent61425c0a7f4e3608a85f7bbf254cd052a15b7446 (diff)
downloadllvm-c035c940a656f34a58ebe22fcc5f9b2a7d8e97fb.tar.gz
llvm-c035c940a656f34a58ebe22fcc5f9b2a7d8e97fb.tar.bz2
llvm-c035c940a656f34a58ebe22fcc5f9b2a7d8e97fb.tar.xz
Extract method for detecting constant unallocatable physregs.
It is safe to move uses of such registers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148259 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineRegisterInfo.cpp')
-rw-r--r--lib/CodeGen/MachineRegisterInfo.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineRegisterInfo.cpp b/lib/CodeGen/MachineRegisterInfo.cpp
index 67291a0eb8..6ec55247bf 100644
--- a/lib/CodeGen/MachineRegisterInfo.cpp
+++ b/lib/CodeGen/MachineRegisterInfo.cpp
@@ -263,3 +263,21 @@ void MachineRegisterInfo::dumpUses(unsigned Reg) const {
void MachineRegisterInfo::freezeReservedRegs(const MachineFunction &MF) {
ReservedRegs = TRI->getReservedRegs(MF);
}
+
+bool MachineRegisterInfo::isConstantPhysReg(unsigned PhysReg,
+ const MachineFunction &MF) const {
+ assert(TargetRegisterInfo::isPhysicalRegister(PhysReg));
+
+ // Check if any overlapping register is modified.
+ for (const unsigned *R = TRI->getOverlaps(PhysReg); *R; ++R)
+ if (!def_empty(*R))
+ return false;
+
+ // Check if any overlapping register is allocatable so it may be used later.
+ if (AllocatableRegs.empty())
+ AllocatableRegs = TRI->getAllocatableSet(MF);
+ for (const unsigned *R = TRI->getOverlaps(PhysReg); *R; ++R)
+ if (AllocatableRegs.test(*R))
+ return false;
+ return true;
+}