diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-07 02:54:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-07 02:54:50 +0000 |
commit | e3d920699c6df959f3e0844aeadd983b2955b23e (patch) | |
tree | 7578dc6bd96037d61f965d03bac25fbe96259ad7 /lib/Target/X86/X86InstrInfo.cpp | |
parent | 865db4566e84b788e5738fec462804a779223b8b (diff) | |
download | external_llvm-e3d920699c6df959f3e0844aeadd983b2955b23e.zip external_llvm-e3d920699c6df959f3e0844aeadd983b2955b23e.tar.gz external_llvm-e3d920699c6df959f3e0844aeadd983b2955b23e.tar.bz2 |
Re-enable elimination of unnecessary SUBREG_TO_REG instructions in
LowerSubregs, and fix an x86-64 isel bug that this exposed.
SUBREG_TO_REG for x86-64 implicit zero extension is only safe for
isel to generate when the source is known to always have zeros in
the high 32 bits. The EXTRACT_SUBREG instruction does not clear
the high 32 bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrInfo.cpp')
-rw-r--r-- | lib/Target/X86/X86InstrInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index 61dcfa9..a871fa8 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp @@ -396,6 +396,7 @@ X86InstrInfo::X86InstrInfo(X86TargetMachine &tm) { X86::MOVZX32rr16, X86::MOVZX32rm16 }, { X86::MOVZX32rr8, X86::MOVZX32rm8 }, { X86::MOVZX64rr16, X86::MOVZX64rm16 }, + { X86::MOVZX64rr32, X86::MOVZX64rm32 }, { X86::MOVZX64rr8, X86::MOVZX64rm8 }, { X86::PSHUFDri, X86::PSHUFDmi }, { X86::PSHUFHWri, X86::PSHUFHWmi }, |