Introduce the TargetInstrInfo::KILL machine instruction and get rid of the
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Mon, 28 Sep 2009 20:32:26 +0000 (20:32 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Mon, 28 Sep 2009 20:32:26 +0000 (20:32 +0000)
commit26207e5bf1123a793bd9b38bcda2f569a6b45ef2
tree6f8cfe636b0786c8e89fc7072bb060b4e659d9b9
parentc60e0bec11ab791968de8959794768ad45fccd4d
Introduce the TargetInstrInfo::KILL machine instruction and get rid of the
unused DECLARE instruction.

KILL is not yet used anywhere, it will replace TargetInstrInfo::IMPLICIT_DEF
in the places where IMPLICIT_DEF is just used to alter liveness of physical
registers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83006 91177308-0d34-0410-b5e6-96231b3b80d8
13 files changed:
include/llvm/Target/Target.td
include/llvm/Target/TargetInstrInfo.h
lib/Target/ARM/ARMBaseInstrInfo.cpp
lib/Target/ARM/ARMCodeEmitter.cpp
lib/Target/Alpha/AlphaCodeEmitter.cpp
lib/Target/PowerPC/PPCCodeEmitter.cpp
lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
lib/Target/X86/X86CodeEmitter.cpp
lib/Target/X86/X86InstrInfo.cpp
utils/TableGen/AsmWriterEmitter.cpp
utils/TableGen/CodeEmitterGen.cpp
utils/TableGen/CodeGenTarget.cpp
utils/TableGen/InstrInfoEmitter.cpp