[lld] [LLD][COFF] Add basic ARM64X dynamic relocations support (PR #118035)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 4 05:52:36 PST 2024


================
@@ -2555,6 +2566,33 @@ void Writer::addBaserelBlocks(std::vector<Baserel> &v) {
   relocSec->addChunk(make<BaserelChunk>(page, &v[i], &v[0] + j));
 }
 
+void Writer::createDynamicRelocs() {
+  if (!ctx.dynamicRelocs)
+    return;
+
+  const uint32_t coffHeaderOffset = dosStubSize + sizeof(PEMagic);
+  const uint32_t peHeaderOffset = coffHeaderOffset + sizeof(coff_file_header);
+  const uint32_t dataDirOffset = peHeaderOffset + sizeof(pe32plus_header);
----------------
mstorsjo wrote:

Oh, skipping the DOS stub for ARM targets sounds like a nice cleanup that we probably could/should do as well. Then it's indeed good to have such asserts in place to make sure that whatever changes we do (including making the offset runtime calculated), this stays in sync.

https://github.com/llvm/llvm-project/pull/118035


More information about the llvm-commits mailing list