[PATCH] D86613: [ARM][LowOverheadLoops] Liveouts and reductions

Sam Parker via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 26 23:43:06 PDT 2020


samparker added inline comments.


================
Comment at: llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp:643
+    return !isVectorPredicated(Def) &&
+           Def->getOpcode() == ARM::MVE_VMOVimmi32 &&
+           Def->getOperand(1).getImm() == 0;
----------------
SjoerdMeijer wrote:
> Is this the only instruction that could zero initialise that def?
It's the only way that I saw, but there's probably more. It's the common and easy case to catch though.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D86613/new/

https://reviews.llvm.org/D86613



More information about the llvm-commits mailing list