<div dir="ltr">On Thu, May 19, 2016 at 12:29 PM, Joe Groff <span dir="ltr">&lt;<a href="mailto:jgroff@apple.com" target="_blank">jgroff@apple.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
&gt; On May 19, 2016, at 12:22 PM, Tom Birch &lt;<a href="mailto:froody@gmail.com">froody@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Would it be acceptable to make relative pointers optional, so we can pay the extra load-time cost on platforms where it&#39;s hard/undesirable to implement them?<br>
<br>
</span>That&#39;s also a reasonable answer, since sliding DLLs is already fairly costly. We&#39;d need a bunch of extra tests to ensure both the relative and absolute forms work, though maybe with David Farler&#39;s work to abstract relative addresses it&#39;s already straightforward to have the RelativePointer&lt;..&gt; templates in the runtime work in a platform-independent way.</blockquote><div><br></div><div>Would be interesting to at least see if this is possible.  Any hints on where to get started with testing/prototyping such an approach?</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="HOEnZb"><font color="#888888"><br>
-Joe<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
&gt; cheers,<br>
&gt; Tom<br>
&gt;<br>
&gt; On Thu, May 19, 2016 at 9:51 AM Joe Groff via swift-dev &lt;<a href="mailto:swift-dev@swift.org">swift-dev@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; On May 18, 2016, at 6:01 PM, Saleem Abdulrasool &lt;<a href="mailto:compnerd@compnerd.org">compnerd@compnerd.org</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; On Wednesday, May 18, 2016, Joe Groff &lt;<a href="mailto:jgroff@apple.com">jgroff@apple.com</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; &gt; On May 18, 2016, at 1:51 PM, Saleem Abdulrasool via swift-dev &lt;<a href="mailto:swift-dev@swift.org">swift-dev@swift.org</a>&gt; wrote:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Hi,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; It seems that there are assumptions about the ability to create relative address across sections which doesn&#39;t seem possible on Windows ARM.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Consider the following swift code:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; final class _ContiguousArrayStorage&lt;Element&gt; { }<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; When compiled for Windows x86 (via swiftc -c -target i686-windows -parse-as-library -parse-stdlib -module-name Swift -o Swift.obj reduced.swift) it will generate the metadata pattern as:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;     __TMPCs23_ContiguousArrayStorage:<br>
&gt; &gt; &gt;       ...<br>
&gt; &gt; &gt;       .long __TMnCs23_ContiguousArrayStorage-(__MPCs23_ContiguousArrayStorage+128)<br>
&gt; &gt; &gt;       ...<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; This generates a IMAGE_REL_I386_REL32 relocation which is the 32-bit relative displacement of the target.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; On Windows ARM (swiftc -c -target i686-windows -parse-pas-library -parse-stdlib -module-name Swift -o Swift.obj reduced.swift) it will generate similar assembly:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt;     _TMPCs23_ContiguousArrayStorage:<br>
&gt; &gt; &gt;       ...<br>
&gt; &gt; &gt;       .long _TMnCs23_ContiguousArrayStorage-(_MPCs23_ContiguousArrayStorage+128)<br>
&gt; &gt; &gt;       ...<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; However, this generates an IMAGE_REL_ARM_ADDR32 relocation which is the 32-bit VA of the target.  If the symbol are in the same section, it is possible to get a relative value.  However, I don&#39;t really see a way to generate a relative offset across sections.  There is no relocation in the COFF ARM specification which provides the 32-bit relative displacement of the target.  There are 20, 23, and 24 bit relative displacements designed specifically for branch instructions, but none that would operate on generic data.<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; Is there a good way to address this ABI issue?  Or perhaps do we need something more invasive to support such targets?  Now, I might be completely overlooking something simple that I didn&#39;t consider, so pointing that out would be greatly appreciated as well.<br>
&gt; &gt;<br>
&gt; &gt; That&#39;s unfortunate. One possibly-crazy solution would be to use a different object format that does support the necessary relocations, such as LLVM&#39;s win32-macho target. That would forgo interoperability with non-LLVM toolchains, of course<br>
&gt; &gt;<br>
&gt; &gt; Yeah, it would make interoperability harder.  But, is there a loader for macho on Windows?<br>
&gt;<br>
&gt; Sorry, if it wasn&#39;t clear, I meant that you could use mach-o (or ELF, or any object format really) for .o and .a files. You&#39;d still link them into PE executables and DLLs.<br>
&gt;<br>
&gt; -Joe<br>
&gt; _______________________________________________<br>
&gt; swift-dev mailing list<br>
&gt; <a href="mailto:swift-dev@swift.org">swift-dev@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-dev" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-dev</a><br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Saleem Abdulrasool<br>compnerd (at) compnerd (dot) org</div>
</div></div>