<div dir="ltr"><div>Haven't heard of this archive format, but the documentation linked seems straightforward, thanks. Seems like a useful addition to LLVM tools. I'd be willing to review/help out with some patches here.</div><div><br></div>Conceptually, it seems like the current archive parsing logic could be adapted for this format. But as you note, it will take some refactoring, as the current code assumes GNU/BSD/COFF variants of the standard ar file format.<div><br></div><div>The first thing I'd probably start with is seeing if it makes sense to have ArchiveMemberHeader be an abstract class, with subclasses for the standard ar file format, and one for AIX w/ the different header struct. I'd also *not* try to force the fixed-length header format to fit inĀ ArchiveMemberHeader, but make that parsed just once during archive initialization -- it doesn't seem to fit the idiom very well.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Apr 12, 2021 at 3:43 PM David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">+Fangrui Song +James Henderson +Jordan Rupprecht<br>
<br>
Can't say I know too much about the architecture here, but perhaps<br>
these folks have some ideas.<br>
<br>
On Thu, Apr 1, 2021 at 1:02 AM GUESNET, ETIENNE via llvm-dev<br>
<<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> Hello,<br>
><br>
> I implement support of AIX archive (big archive / XCOFF) on LLVM.<br>
><br>
> I have done a prototype available here : <a href="https://github.com/EGuesnet/llvm-project/commit/1db5ddbdfea5614d0b91a8a6a1920ac630163ec0" rel="noreferrer" target="_blank">https://github.com/EGuesnet/llvm-project/commit/1db5ddbdfea5614d0b91a8a6a1920ac630163ec0</a> .<br>
><br>
> This prototype replaces support of GNU/BSD/... archive by big archive, but you can switch changing the include. I have implemented only read operation (t, x, p).<br>
><br>
><br>
><br>
> I want advices, especially to merge correctly support of Big archive and other archive. Main troubles to merge is big archive has a different header than other archive.<br>
><br>
> Moreover, big archives have a fix length header, and one header for each object; fix and object headers are different (they are the same structure for non-big archive). Big archives have member table and symbol table at the end of the archive, so you must stop to read it before the end; the location of these table are given with absolute offset, hard to take into account in current code.<br>
><br>
><br>
><br>
> Big archive documentation is here : <a href="https://www.ibm.com/support/knowledgecenter/en/ssw_aix_72/filesreference/ar_big.html" rel="noreferrer" target="_blank">https://www.ibm.com/support/knowledgecenter/en/ssw_aix_72/filesreference/ar_big.html</a> .<br>
><br>
><br>
><br>
> Thanks.<br>
><br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>