[PATCH] D75388: Expand interleaved memory access pass to identify certain shuffle_vector and transform it into target specific intrinsics.
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 15 09:50:46 PDT 2020
RKSimon added inline comments.
================
Comment at: llvm/include/llvm/Analysis/TargetTransformInfo.h:976
+ int getInterleavedMemoryOpCost(Instruction *I, unsigned VF, unsigned Opcode,
+ Type *VecTy, unsigned Factor,
ArrayRef<unsigned> Indices, unsigned Alignment,
----------------
Since you're changing the function signature anyway would it make sense to change this to a VectorType *VecTy? There's been chatter on other patches about making this jump in general as many of the TTI calls expect a vector anyhow.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75388/new/
https://reviews.llvm.org/D75388
More information about the llvm-commits
mailing list