[clang] [AArch64][SME] Remove immediate argument restriction for svldr and svstr (PR #68908)
Dinar Temirbulatov via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 17 04:09:27 PDT 2023
================
@@ -9716,13 +9716,16 @@ Value *CodeGenFunction::EmitSMELdrStr(const SVETypeFlags &TypeFlags,
if (Ops.size() == 3) {
Function *Cntsb = CGM.getIntrinsic(Intrinsic::aarch64_sme_cntsb);
llvm::Value *CntsbCall = Builder.CreateCall(Cntsb, {}, "svlb");
- llvm::Value *MulVL = Builder.CreateMul(
- CntsbCall,
- Builder.getInt64(cast<llvm::ConstantInt>(Ops[2])->getZExtValue()),
- "mulvl");
+
+ llvm::Value *VecNum = Ops[2];
+ if (auto *C = dyn_cast<ConstantInt>(VecNum))
+ VecNum = Builder.getInt64(C->getZExtValue());
+
+ llvm::Value *MulVL = Builder.CreateMul(CntsbCall, VecNum, "mulvl");
Ops[1] = Builder.CreateGEP(Int8Ty, Ops[1], MulVL);
- Ops[0] = EmitTileslice(Ops[0], Ops[2]);
+ Ops[0] =
+ EmitTileslice(Ops[0], Builder.CreateIntCast(VecNum, Int32Ty, true));
----------------
dtemirbulatov wrote:
There are still reference to EmitTileslice() in ./clang/lib/CodeGen/CodeGenFunction.h, I think you need to remove it.
https://github.com/llvm/llvm-project/pull/68908
More information about the cfe-commits
mailing list