[all-commits] [llvm/llvm-project] 816a39: [AArch64][SVE] NFC: Add tests for masked mla/mls p...
Cullen Rhodes via All-commits
all-commits at lists.llvm.org
Tue Jul 26 01:15:46 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 816a395bf613bb0b9ab4407eeac38b13333ae085
https://github.com/llvm/llvm-project/commit/816a395bf613bb0b9ab4407eeac38b13333ae085
Author: Cullen Rhodes <cullen.rhodes at arm.com>
Date: 2022-07-26 (Tue, 26 Jul 2022)
Changed paths:
M llvm/test/CodeGen/AArch64/sve-masked-int-arith.ll
Log Message:
-----------
[AArch64][SVE] NFC: Add tests for masked mla/mls patterns (D130492)
Commit: 6082051da158699864fc873df494ad66e271ee22
https://github.com/llvm/llvm-project/commit/6082051da158699864fc873df494ad66e271ee22
Author: Cullen Rhodes <cullen.rhodes at arm.com>
Date: 2022-07-26 (Tue, 26 Jul 2022)
Changed paths:
M llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
M llvm/lib/Target/AArch64/SVEInstrFormats.td
M llvm/test/CodeGen/AArch64/sve-masked-int-arith.ll
Log Message:
-----------
[AArch64][SVE] Add patterns to select mla/mls
Adds patterns for:
add(a, select(mask, mul(b, c), splat(0))) -> mla(a, mask, b, c)
sub(a, select(mask, mul(b, c), splat(0))) -> mls(a, mask, b, c)
Reviewed By: paulwalker-arm
Differential Revision: https://reviews.llvm.org/D130492
Compare: https://github.com/llvm/llvm-project/compare/7a5cb15ea6fa...6082051da158
More information about the All-commits
mailing list