This adds AArch64 TargetParser support to define CPU aliases, and ports the definition of Grace over to that. This is following up on D136425.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Broadly good! Adding @tmatheson who is also looking at the targetparser code right now.
llvm/lib/Support/AArch64TargetParser.cpp | ||
---|---|---|
221 | Why not resolve the alias before the loop on line 208? And then you won't need to have two copies of the loop of CPUNames. |
llvm/lib/Support/AArch64TargetParser.cpp | ||
---|---|---|
221 | Ah yeah, of course, much better and good suggestion. Will fix. |
Why not resolve the alias before the loop on line 208? And then you won't need to have two copies of the loop of CPUNames.