- Change MachineInstr::isIdenticalTo to take a new option that determines whether...
authorEvan Cheng <evan.cheng@apple.com>
Wed, 3 Mar 2010 01:44:33 +0000 (01:44 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 3 Mar 2010 01:44:33 +0000 (01:44 +0000)
commit506049f29f4f202a8e45feb916cc0264440a7f6d
treee64fb0945798d2e0f46b23f121554317bf0a1f84
parentd89347cb49178da65a1c72cde5d54e79007d57ae
- Change MachineInstr::isIdenticalTo to take a new option that determines whether it should skip checking defs or at least virtual register defs. This subsumes part of the TargetInstrInfo::isIdentical functionality.
- Eliminate TargetInstrInfo::isIdentical and replace it with produceSameValue. In the default case, produceSameValue just checks whether two machine instructions are identical (except for virtual register defs). But targets may override it to check for unusual cases (e.g. ARM pic loads from constant pools).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97628 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/CodeGen/MachineInstr.h
include/llvm/Target/TargetInstrInfo.h
lib/CodeGen/MachineInstr.cpp
lib/CodeGen/MachineLICM.cpp
lib/CodeGen/TargetInstrInfoImpl.cpp
lib/Target/ARM/ARMBaseInstrInfo.cpp
lib/Target/ARM/ARMBaseInstrInfo.h