[llvm] [TTI][CostModel] Add cost modeling for expandload and compressstore intrinsics (PR #122882)

Sergey Kachkov via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 3 02:58:40 PST 2025


================
@@ -1469,6 +1469,13 @@ class BasicTTIImplBase : public TargetTransformInfoImplCRTPBase<T> {
                                        true, CostKind);
   }
 
+  InstructionCost getExpandCompressMemoryOpCost(
+      unsigned Opcode, Type *DataTy, bool VariableMask, Align Alignment,
+      TTI::TargetCostKind CostKind, const Instruction *I = nullptr) {
+    return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment, VariableMask,
+                                       true, CostKind);
----------------
skachkov-sc wrote:

Done

https://github.com/llvm/llvm-project/pull/122882


More information about the llvm-commits mailing list