[llvm] r283084 - [AVX-512] Remove isCheapAsAMove flag from VMOVAPSZ128rm_NOVLX and friends.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 2 19:22:33 PDT 2016
Author: ctopper
Date: Sun Oct 2 21:22:33 2016
New Revision: 283084
URL: http://llvm.org/viewvc/llvm-project?rev=283084&view=rev
Log:
[AVX-512] Remove isCheapAsAMove flag from VMOVAPSZ128rm_NOVLX and friends.
This was accidentally copy and pasted from other Pseudos in the file.
Modified:
llvm/trunk/lib/Target/X86/X86InstrAVX512.td
Modified: llvm/trunk/lib/Target/X86/X86InstrAVX512.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrAVX512.td?rev=283084&r1=283083&r2=283084&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrAVX512.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrAVX512.td Sun Oct 2 21:22:33 2016
@@ -2812,7 +2812,7 @@ defm VMOVDQU64 : avx512_load_vl<0x6F, "v
// Special instructions to help with spilling when we don't have VLX. We need
// to load or store from a ZMM register instead. These are converted in
// expandPostRAPseudos.
-let isReMaterializable = 1, isAsCheapAsAMove = 1, canFoldAsLoad = 1,
+let isReMaterializable = 1, canFoldAsLoad = 1,
isPseudo = 1, SchedRW = [WriteLoad], mayLoad = 1, hasSideEffects = 0 in {
def VMOVAPSZ128rm_NOVLX : I<0, Pseudo, (outs VR128X:$dst), (ins f128mem:$src),
"", []>;
More information about the llvm-commits
mailing list