[PATCH] D137431: [AArch64] RME MEC instructions and system registers
Sam Elliott via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 8 07:37:55 PST 2022
lenary added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp:3490
{"mops", {AArch64::FeatureMOPS}},
+ {"mec", {AArch64::FeatureMEC}},
// FIXME: Unsupported extensions
----------------
keith.walker.arm wrote:
> lenary wrote:
> > This should not be included. These names are supposed to be the same as command-line extension options, which MEC doesn't have.
> >
> > At the very least, it's also untested, but I think it should be removed, not tested.
> So I assume we want uses of MEC to be gated on the use of AArch64::FeatureRME instead.
Not quite. This array is only for allowing `.arch_extension <string>` to enable specific features, which is part of the public interface, and we don't want if there's not a corresponding extension for `-march=<version>+<string>`
FeatureMEC in AArch64.td should remain.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137431/new/
https://reviews.llvm.org/D137431
More information about the llvm-commits
mailing list