On Wednesday, May 18, 2016, Joe Groff &lt;<a href="mailto:jgroff@apple.com">jgroff@apple.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
&gt; On May 18, 2016, at 1:51 PM, Saleem Abdulrasool via swift-dev &lt;<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;swift-dev@swift.org&#39;)">swift-dev@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&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;<br>
&gt; Consider the following swift code:<br>
&gt;<br>
&gt; final class _ContiguousArrayStorage&lt;Element&gt; { }<br>
&gt;<br>
&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;<br>
&gt;     __TMPCs23_ContiguousArrayStorage:<br>
&gt;       ...<br>
&gt;       .long __TMnCs23_ContiguousArrayStorage-(__MPCs23_ContiguousArrayStorage+128)<br>
&gt;       ...<br>
&gt;<br>
&gt; This generates a IMAGE_REL_I386_REL32 relocation which is the 32-bit relative displacement of the target.<br>
&gt;<br>
&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;<br>
&gt;     _TMPCs23_ContiguousArrayStorage:<br>
&gt;       ...<br>
&gt;       .long _TMnCs23_ContiguousArrayStorage-(_MPCs23_ContiguousArrayStorage+128)<br>
&gt;       ...<br>
&gt;<br>
&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;<br>
&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>
<br>
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</blockquote><div><br></div>Yeah, it would make interoperability harder.  But, is there a loader for macho on Windows?<div><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
-Joe</blockquote></div><br><br>-- <br>Saleem Abdulrasool<br>compnerd (at) compnerd (dot) org<br>