[PATCH] D148192: [JITLink][ELF][PPC64] Add skeleton ppc64 support and ELF/ppc64 JITLink backend.
Lang Hames via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 12 22:20:44 PDT 2023
lhames added a comment.
Hi All,
I've added a few of the usual JIT reviewers, and some of you who I've seen make recent contributions to LLVM's PowerPC target library. If there's anyone else who you think should take a look please feel free to add them.
I'm not familiar with PowerPC nomenclature so I'd especially appreciate tips on naming. E.g. should it be "ppc64", "PPC64", "PowerPC64"?
I plan to add at least one basic relocation next. The aim is to make the ELF/ppc64 backend project accessible to the community by getting the JITLink boilerplate out of the way so that any interested committers can focus on implementing the ppc64 specifics.
The skeleton itself is sufficient to get a basic, relocation-free program running:
int main(void) {
return 0;
}
(As tested on a POWER9 instance that has been generously provided to me by osuosl.org)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148192/new/
https://reviews.llvm.org/D148192
More information about the llvm-commits
mailing list