[PATCH] D136957: [AArch64] Add support for the Cortex-A715 CPU
Dave Green via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 28 09:56:25 PDT 2022
dmgreen added inline comments.
================
Comment at: llvm/lib/Support/Host.cpp:216
.Case("0xd41", "cortex-a78")
+ .Case("0xd00", "cortex-a715")
.Case("0xd44", "cortex-x1")
----------------
Should be 0xd4d I think, according to the MIDR in the TRM.
================
Comment at: llvm/lib/Target/AArch64/AArch64.td:771
+ FeaturePostRAScheduler,
+ FeatureCmpBccFusion]>;
+
----------------
Please add FeatureLSLFast and FeatureFuseAdrpAdd.
================
Comment at: llvm/lib/Target/AArch64/AArch64.td:1244
[TuneA710]>;
+def : ProcessorModel<"cortex-a715", CortexA57Model, ProcessorFeatures.A715,
+ [TuneA715]>;
----------------
This can use NeoverseN2Model.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136957/new/
https://reviews.llvm.org/D136957
More information about the cfe-commits
mailing list