From bbaa5685b2c3460616ed799ba19cdd3aa9514c01 Mon Sep 17 00:00:00 2001 From: Nitin John Raj Date: Wed, 22 Feb 2023 12:18:05 -0800 Subject: [PATCH] [RISCV] Replaced !subst chain with !foldl Reviewed By: craig.topper, MaskRay Differential Revision: https://reviews.llvm.org/D144531 --- llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td | 45 +++++++++++++------------ 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td b/llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td index 0f2dacc..9d763df 100644 --- a/llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td +++ b/llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td @@ -48,27 +48,30 @@ defvar TA_MA = 3; //===----------------------------------------------------------------------===// class PseudoToVInst { - string VInst = !subst("_M8", "", - !subst("_M4", "", - !subst("_M2", "", - !subst("_M1", "", - !subst("_MF2", "", - !subst("_MF4", "", - !subst("_MF8", "", - !subst("_B1", "", - !subst("_B2", "", - !subst("_B4", "", - !subst("_B8", "", - !subst("_B16", "", - !subst("_B32", "", - !subst("_B64", "", - !subst("_MASK", "", - !subst("_TIED", "", - !subst("_TU", "", - !subst("F16", "F", - !subst("F32", "F", - !subst("F64", "F", - !subst("Pseudo", "", PseudoInst))))))))))))))))))))); + defvar AffixSubsts = [["Pseudo", ""], + ["F64", "F"], + ["F32", "F"], + ["F16", "F"], + ["_TU", ""], + ["_TIED", ""], + ["_MASK", ""], + ["_B64", ""], + ["_B32", ""], + ["_B16", ""], + ["_B8", ""], + ["_B4", ""], + ["_B2", ""], + ["_B1", ""], + ["_MF8", ""], + ["_MF4", ""], + ["_MF2", ""], + ["_M1", ""], + ["_M2", ""], + ["_M4", ""], + ["_M8", ""] + ]; + string VInst = !foldl(PseudoInst, AffixSubsts, Acc, AffixSubst, + !subst(AffixSubst[0], AffixSubst[1], Acc)); } // This class describes information associated to the LMUL. -- 2.7.4