diff options
author | David Green <david.green@arm.com> | 2022-10-01 15:40:59 +0100 |
---|---|---|
committer | David Green <david.green@arm.com> | 2022-10-01 15:40:59 +0100 |
commit | 781b491bba9d798e53f7784dced3c2be77c81dd4 (patch) | |
tree | eef67317b982da43b3c3dab226915a3cf6afecb8 /llvm/lib/Transforms/Utils/LoopVersioning.cpp | |
parent | 4a549be9c3677c75c3ad2c8881a46fb59e245823 (diff) | |
download | llvm-781b491bba9d798e53f7784dced3c2be77c81dd4.zip llvm-781b491bba9d798e53f7784dced3c2be77c81dd4.tar.gz llvm-781b491bba9d798e53f7784dced3c2be77c81dd4.tar.bz2 |
[Clang][AArch64] Support AArch64 target(..) attribute formats.
This adds support under AArch64 for the target("..") attributes. The
current parsing is very X86-shaped, this patch attempts to bring it line
with the GCC implementation from
https://gcc.gnu.org/onlinedocs/gcc/AArch64-Function-Attributes.html#AArch64-Function-Attributes.
The supported formats are:
- "arch=<arch>" strings, that specify the architecture features for a
function as per the -march=arch+feature option.
- "cpu=<cpu>" strings, that specify the target-cpu and any implied
atributes as per the -mcpu=cpu+feature option.
- "tune=<cpu>" strings, that specify the tune-cpu cpu for a function as
per -mtune.
- "+<feature>", "+no<feature>" enables/disables the specific feature, for
compatibility with GCC target attributes.
- "<feature>", "no-<feature>" enabled/disables the specific feature, for
backward compatibility with previous releases.
To do this, the parsing of target attributes has been moved into
TargetInfo to give the target the opportunity to override the existing
parsing. The only non-aarch64 change should be a minor alteration to the
error message, specifying using "CPU" to describe the cpu, not
"architecture", and the DuplicateArch/Tune from ParsedTargetAttr have
been combined into a single option.
Differential Revision: https://reviews.llvm.org/D133848
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopVersioning.cpp')
0 files changed, 0 insertions, 0 deletions