-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[Clang][LLVM] Implement multi-multi vectors MOP4{A/S} #129230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
a5c547f
to
62bf165
Compare
[IsStreaming, IsInOutZA], | ||
checks>; | ||
def _2x2 : SInst<"svmop4" # mode # "[_2x2]_" # za # "[_{d}_{3}]", | ||
"vi2.x2.u", t, MergeNone, "aarch64_sme_sumop4" # mode # i # "_wide_2x2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"vi2.x2.u", t, MergeNone, "aarch64_sme_sumop4" # mode # i # "_wide_2x2", | |
"vi22.u", t, MergeNone, "aarch64_sme_sumop4" # mode # i # "_wide_2x2", |
[IsStreaming, IsInOutZA], | ||
checks>; | ||
def _2x2 : SInst<"svmop4" # mode # "[_2x2]_" # za # "[_{d}_{3}]", | ||
"vi2.u2.x", t, MergeNone, "aarch64_sme_usmop4" # mode # i # "_wide_2x2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"vi2.u2.x", t, MergeNone, "aarch64_sme_usmop4" # mode # i # "_wide_2x2", | |
"vi22.x", t, MergeNone, "aarch64_sme_usmop4" # mode # i # "_wide_2x2", |
clang/include/clang/Basic/arm_sme.td
Outdated
"vi2u", t, MergeNone, "aarch64_sme_sumop4" # mode # i # "_wide_2x1", | ||
[IsStreaming, IsInOutZA], | ||
checks>; | ||
def _2x2 : SInst<"svmop4" # mode # "[_2x2]_" # za # "[_{d}_{3}]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/"[2x2]" /"[2x2]"/
and # za # value should start with ''
clang/include/clang/Basic/arm_sme.td
Outdated
} | ||
|
||
let SMETargetGuard = "sme2,sme-mop4" in { | ||
defm SVFMOP4A_HtoS : MOP4<"a", "za32", "hb", "aarch64_sme_mop4a_wide", [ImmCheck<0, ImmCheck0_3>]>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this patch will be rebased, when this is done the _ at the should be gone
62bf165
to
7c7e50a
Compare
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/162/builds/19320 Here is the relevant piece of the build log for the reference
|
Implement all multi-multi {BF/F/S/U/SU/US}MOP4{A/S} instructions in clang and llvm following the acle in https://github.com/ARM-software/acle/pull/381/files
Fix some of the recently-added tests (PRs llvm#127797, llvm#128854, llvm#129226 and llvm#129230) which were incorrectly defined.
Implement all multi-multi {BF/F/S/U/SU/US}MOP4{A/S} instructions in clang and llvm following the acle in https://github.com/ARM-software/acle/pull/381/files