[PATCH] D144570: [X86] Add support for using Sched/Codesize information to `X86FixupInstTuning` Pass.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 7 02:03:39 PST 2023


RKSimon added a comment.

Add ICX test runs to tuning-shuffle-unpckpd.ll so we have test coverage ?



================
Comment at: llvm/lib/Target/X86/X86FixupInstTuning.cpp:101
+    unsigned Size = TII->get(Opcode).getSize();
+    if (Size)
+      return Size;
----------------
```
if (unsigned Size = TII->get(Opcode).getSize())
  return Size;
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D144570



More information about the llvm-commits mailing list