<div dir="ltr"><div>Joe,</div><div><br></div><div>LLVM&#39;s MCJIT? Did you mean the REPL mode?</div><div><br></div><div>I&#39;m not ready to ask a question or understand the answer about them. Maybe it takes some time for me to handle them.</div><div>Currently, I want to concentrate on the immediate mode, dynamic/static linking on Windows (MSVC).<br></div><div><br></div><div>By the way, in Cygwin (although it uses similar ABI and the COFF format), immediate mode and dynamic linking worked without the dll import/export consideration, it was &#39;ld&#39;&#39;s magic. The immediate mode in Cygwin does not work if dllimport is applied. (same to Windows(MSVC) )</div><div><br></div><div>I think we may consider for only MSVC, if the REPL in Cygwin works without dllimport consideration.</div><div><br></div><div>-Han Sangjin</div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-05-10 2:06 GMT+09:00 Joe Groff <span dir="ltr">&lt;<a href="mailto:jgroff@apple.com" target="_blank">jgroff@apple.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
&gt; On May 7, 2016, at 4:01 PM, Sangjin Han &lt;<a href="mailto:tinysun.net@gmail.com">tinysun.net@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi all,<br>
&gt;<br>
&gt; I merged Saleem&#39;s #2080 to my working branch, and did some experiment.<br>
&gt;<br>
&gt; I could compile easily Hello.swift with #2080 merged one.<br>
&gt;<br>
&gt;   swiftc -c -o Hello.obj Hello.swift<br>
&gt;   clang -o Hello.exe Hello.obj -llibswiftCore -llibswiftSwiftOnoneSupport -Wl,&lt;some link options&gt;<br>
&gt;<br>
&gt; Without #2080, I should use the *.ll-modifying-trick. It is perfect in this example.<br>
&gt;<br>
&gt; But, we need the way to disable dllimport. The immediate mode did not work.<br>
<br>
</span>If it only affects immediate mode, this might be a problem with LLVM&#39;s MCJIT. I would recommend asking llvm-dev, cc-ing Lang Hames (<a href="mailto:lhames@apple.com">lhames@apple.com</a>), to see what the right thing to do to reference DLL exports from JIT code is.<br>
<span class="HOEnZb"><font color="#888888"><br>
-Joe<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
&gt;   swift Hello.swift<br>
&gt;   LLVM ERROR: Program used external function &#39;__imp_globalinit_33_1BDF70FFC18749BAB495A73B459ED2F0_func3&#39; which could not be resolved!<br>
&gt;<br>
&gt;   swift -O Hello.swift<br>
&gt;   LLVM ERROR: Program used external function &#39;__imp__swift_getExistentialTypeMetadata&#39; which could not be resolved!<br>
&gt;<br>
&gt; It seems swift.exe call directly the function in the DLL without import library.<br>
&gt;<br>
&gt; The feature also needed when we link to static library.<br>
&gt;<br>
&gt; I don&#39;t know about the SIL, IR, so it is thankful someone tell me how to approach this problem.<br>
<br>
<br>
<br>
&gt;<br>
&gt; 2016-05-07 5:01 GMT+09:00 Saleem Abdulrasool &lt;<a href="mailto:compnerd@compnerd.org">compnerd@compnerd.org</a>&gt;:<br>
&gt; On Thu, May 5, 2016 at 5:26 PM, 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 5, 2016, at 4:18 PM, Sangjin Han via swift-dev &lt;<a href="mailto:swift-dev@swift.org">swift-dev@swift.org</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; Hi,<br>
&gt; &gt;<br>
&gt; &gt; I made an experimental MSVC port. Of cause, dllimport/dllexport and the driver for linking and many other part is not implemented. But dynamic linking was possible with some trick.<br>
&gt; &gt;<br>
&gt; &gt; I think it is useful for designing, my observation about the experimental building of libswiftCore.dll, libswiftSwiftOnoneSupport.dll and linking of Hello.exe - its source has only &#39;print(&quot;Hello&quot;)&#39;.<br>
&gt; &gt;<br>
&gt; &gt; 1) SWIFT_RUNTIME_EXPORT was not enough for dllexport.<br>
&gt; &gt;   Hello.obj needed defined in libswift*.dll<br>
&gt; &gt;     _swift_getExistentialTypeMetadata,<br>
&gt; &gt;     _TFs5printFTGSaP__9separatorSS10terminatorSS_T_,<br>
&gt; &gt;     _TMSS,<br>
&gt; &gt;     _TZvOs7Process5_argcVs5Int32,<br>
&gt; &gt;     swift_bufferAllocate, ....<br>
&gt; &gt;   Some of above are dllexported by the macro, but _T* are not. Maybe, it generated by swiftc.exe.<br>
&gt; &gt;   I used the utility &#39;dlltool.exe&#39; from Cygwin/MinGW world. It extracts all symbols and generates &#39;allsymbol.def&#39;.<br>
&gt; &gt;   With that .def, I could build the all-symbol-dllexported libswiftCore.dll.<br>
&gt; &gt;   (I&#39;m hoping we can build it without this trick.)<br>
&gt;<br>
&gt; The _T symbols are emitted by the Swift compiler. You should modify swiftc&#39;s IRGen to generate public symbols with LLVM&#39;s &quot;dllexport&quot; storage class when targeting Windows.<br>
&gt;<br>
&gt; <a href="https://github.com/apple/swift/pull/2080" rel="noreferrer" target="_blank">https://github.com/apple/swift/pull/2080</a> is a first cut attempt to do this.<br>
&gt;<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>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; Saleem Abdulrasool<br>
&gt; compnerd (at) compnerd (dot) org<br>
&gt;<br>
<br>
</div></div></blockquote></div><br></div>