aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/StrongPHIElimination.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-05 00:59:57 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-05 00:59:57 +0000
commit6130f66eaae89f8878590796977678afa8448926 (patch)
tree9e0d41836f9fcae91af847f9483fcc3cb0ca780c /lib/CodeGen/StrongPHIElimination.cpp
parent4d519457d1ee72d14d62a5823b03449dc0e3df6e (diff)
downloadexternal_llvm-6130f66eaae89f8878590796977678afa8448926.zip
external_llvm-6130f66eaae89f8878590796977678afa8448926.tar.gz
external_llvm-6130f66eaae89f8878590796977678afa8448926.tar.bz2
Refactor code. Remove duplicated functions that basically do the same thing as
findRegisterUseOperandIdx, findRegisterDefOperandIndx. Fix some naming inconsistencies. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47927 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/StrongPHIElimination.cpp')
-rw-r--r--lib/CodeGen/StrongPHIElimination.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/CodeGen/StrongPHIElimination.cpp b/lib/CodeGen/StrongPHIElimination.cpp
index cdf827d..4611dae 100644
--- a/lib/CodeGen/StrongPHIElimination.cpp
+++ b/lib/CodeGen/StrongPHIElimination.cpp
@@ -351,10 +351,10 @@ static bool interferes(unsigned a, unsigned b, MachineBasicBlock* scan,
break;
}
// Store KillInsts if they match up with the definition
- } else if (LV.KillsRegister(curr, a)) {
+ } else if (curr->killsRegister(a)) {
if (def == MRI->getVRegDef(a)) {
kill = curr;
- } else if (LV.KillsRegister(curr, b)) {
+ } else if (curr->killsRegister(b)) {
if (def == MRI->getVRegDef(b)) {
kill = curr;
}
@@ -373,7 +373,7 @@ static bool interferes(unsigned a, unsigned b, MachineBasicBlock* scan,
break;
}
// Save KillInsts of First
- } else if (LV.KillsRegister(curr, a)) {
+ } else if (curr->killsRegister(a)) {
kill = curr;
}
// Symmetric with the above
@@ -386,7 +386,7 @@ static bool interferes(unsigned a, unsigned b, MachineBasicBlock* scan,
interference = false;
break;
}
- } else if (LV.KillsRegister(curr, b)) {
+ } else if (curr->killsRegister(b)) {
kill = curr;
}
}