[all-commits] [llvm/llvm-project] 253dc1: [RISCV] Cleanup some V intrinsic names used in tes...
Craig Topper via All-commits
all-commits at lists.llvm.org
Wed Dec 30 12:38:19 PST 2020
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 253dc16f9eb0701305272dc5a438e1f766b4ad60
https://github.com/llvm/llvm-project/commit/253dc16f9eb0701305272dc5a438e1f766b4ad60
Author: Craig Topper <craig.topper at sifive.com>
Date: 2020-12-30 (Wed, 30 Dec 2020)
Changed paths:
M llvm/test/CodeGen/RISCV/rvv/vfirst-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfmv.v.f-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfmv.v.f-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfredmax-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfredmax-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfredmin-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfredmin-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfredosum-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfredosum-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfredsum-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfredsum-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwadd-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwadd-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwadd.w-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwadd.w-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwmul-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwmul-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwredosum-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwredosum-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwredsum-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwredsum-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwsub-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwsub-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vfwsub.w-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vfwsub.w-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vmadc-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vmadc-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vmadc.carry.in-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vmadc.carry.in-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vmsbc-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vmsbc-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vmsbc.borrow.in-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vmsbc.borrow.in-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vmv.v.x-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vmv.v.x-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vpopc-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredand-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredand-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredmax-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredmax-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredmaxu-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredmaxu-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredmin-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredmin-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredminu-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredminu-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredor-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredor-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredsum-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredsum-rv64.ll
M llvm/test/CodeGen/RISCV/rvv/vredxor-rv32.ll
M llvm/test/CodeGen/RISCV/rvv/vredxor-rv64.ll
Log Message:
-----------
[RISCV] Cleanup some V intrinsic names used in tests to match the type overloads used. Add some missing double tests on rv32. NFC
The matching for intrinsic names is forgiving about types in the
name being absent or wrong. Once the intrinsic is parsed its
name will remangled to include the real types.
This commit fixes the names to have at least enough correct types
so that the name used in the test is a prefix of the canonical name.
The big missing part is the type for the VL parameter which changes
size between rv32 and rv64.
While I was in here I noticed that we were missing some tests for
double on rv32 so I fixed that by copying from rv64 and fixing up
the VL argument type.
More information about the All-commits
mailing list