summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:45:07 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-07-10 19:45:07 +0000
commit627eb31cd791f808eaa048478d01222577a30a1a (patch)
treefe0bf050c3d6580bc4fd0a53da7b0242aae98fc8 /lib
parent51bda6fccbbea7b88ecf6a69c567085fd64eeb5f (diff)
downloadllvm-627eb31cd791f808eaa048478d01222577a30a1a.tar.gz
llvm-627eb31cd791f808eaa048478d01222577a30a1a.tar.bz2
llvm-627eb31cd791f808eaa048478d01222577a30a1a.tar.xz
Change interface to MachineInstr::substituteValue to specify more precisely
which args can be substituted: defsOnly, defsAndUses or usesOnly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/MachineInstr.cpp28
1 files changed, 21 insertions, 7 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp
index ffb2ae9c4e..b0e1779f28 100644
--- a/lib/CodeGen/MachineInstr.cpp
+++ b/lib/CodeGen/MachineInstr.cpp
@@ -153,29 +153,43 @@ MachineInstr::SetRegForImplicitRef(unsigned i, int regNum)
// Subsitute all occurrences of Value* oldVal with newVal in all operands
-// and all implicit refs. If defsOnly == true, substitute defs only.
+// and all implicit refs.
+// If defsOnly == true, substitute defs only.
unsigned
-MachineInstr::substituteValue(const Value* oldVal, Value* newVal, bool defsOnly)
+MachineInstr::substituteValue(const Value* oldVal, Value* newVal,
+ bool defsOnly, bool notDefsAndUses,
+ bool& someArgsWereIgnored)
{
+ assert((defsOnly || !notDefsAndUses) &&
+ "notDefsAndUses is irrelevant if defsOnly == false.");
+
unsigned numSubst = 0;
// Subsitute operands
for (MachineInstr::val_op_iterator O = begin(), E = end(); O != E; ++O)
if (*O == oldVal)
- if (!defsOnly || !O.isUseOnly())
+ if (!defsOnly ||
+ notDefsAndUses && O.isDefOnly() ||
+ !notDefsAndUses && !O.isUseOnly())
{
O.getMachineOperand().value = newVal;
++numSubst;
}
+ else
+ someArgsWereIgnored = true;
// Subsitute implicit refs
for (unsigned i=0, N=getNumImplicitRefs(); i < N; ++i)
if (getImplicitRef(i) == oldVal)
- if (!defsOnly || !getImplicitOp(i).opIsUse())
+ if (!defsOnly ||
+ notDefsAndUses && getImplicitOp(i).opIsDefOnly() ||
+ !notDefsAndUses && !getImplicitOp(i).opIsUse())
{
getImplicitOp(i).value = newVal;
++numSubst;
}
+ else
+ someArgsWereIgnored = true;
return numSubst;
}
@@ -191,10 +205,10 @@ static inline std::ostream&
OutputValue(std::ostream &os, const Value* val)
{
os << "(val ";
+ os << (void*) val; // print address always
if (val && val->hasName())
- return os << val->getName() << ")";
- else
- return os << (void*) val << ")"; // print address only
+ os << " " << val->getName() << ")"; // print name also, if available
+ return os;
}
static inline void OutputReg(std::ostream &os, unsigned RegNo,