<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
I was going to wait until Neil Trevett got back to me about becoming a SPIR-V TSG advisor but this seems like just as good an opportunity. Please see the previous discussion [1] if you have not already, there were many relevant points made.
<div class=""><br class="">
</div>
<div class="">First, I’d like to note that while clang may be the primary motivator for many of the readers here it is not the only frontend that would like to make use of proper SPIR-V support in LLVM. In particular, the current implementation of builtins
 as Itanium with extensions mangled C++ is much more difficult to use (even if those frontends have a C++ mangler, the extensions make it unusable), compared to intrinsics which is _the_ way backends for LLVM expose builtins. This is an absolute requirement
 for me for SPIR-V support in upstream LLVM.</div>
<div class=""><br class="">
</div>
<div class="">I’d much rather have this as a target than as an external library, but if it means I get intrinsics faster then I’m all for it.</div>
<div class=""><br class="">
</div>
<div class="">Could you please link the thread mentioned?</div>
<div class=""><br class="">
</div>
<div class="">Thanks,</div>
<div class="">Nic</div>
<div class=""><br class="">
</div>
<div class="">P.S. Feel free to use the tablegen descriptions of the SPIR-V format from [2]</div>
<div class="">
<div class=""><br class="">
</div>
<div class="">[1]: <a href="http://lists.llvm.org/pipermail/llvm-dev/2017-May/112538.html" class="">http://lists.llvm.org/pipermail/llvm-dev/2017-May/112538.html</a></div>
<div class="">[2]: <a href="https://github.com/thewilsonator/llvm-target-spirv" class="">
https://github.com/thewilsonator/llvm-target-spirv</a> </div>
<div class=""><br class="">
</div>
<div class="">
<div>
<blockquote type="cite" class="">
<div class="">On 10 Sep 2018, at 11:10 pm, Anastasia Stulova via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" class="">llvm-dev@lists.llvm.org</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div class="">Hello,<br class="">
<br class="">
Since 2015 Khronos has switched to the new portable intermediate format SPIR-V, which has replaced the original SPIR. The advantage is that it offers higher portability across different toolchains. There was a talk about it at a Dev Meeting:<br class="">
<a href="http://llvm.org/devmtg/2017-03//2017/02/20/accepted-sessions.html#17" class="">http://llvm.org/devmtg/2017-03//2017/02/20/accepted-sessions.html#17</a><br class="">
<br class="">
LLVM currently only supports SPIR format for OpenCL in Clang. Several Khronos vendors (ARM, AMD, Intel, Xilinx, Codeplay and others) are interested in adding support for SPIR-V, which should gradually replace the old SPIR once products are no longer shipped
 with the old format. Here is the detailed description:<br class="">
https://github.com/KhronosGroup/SPIRV-LLVM-Translator/wiki/SPIRV-Toolchain-for-Clang<br class="">
<br class="">
To summarize, the idea is to add a SPIR-V target triple to Clang that can be used to generate a SPIR-V binary for OpenCL code. There was a separate thread regarding generation of SPIR-V binary and the community suggested that a translator from LLVM IR to SPIR-V
 can be used as an external tool, called llvm-spirv. This can be invoked similar to such tools as ptxas and fatbinary for the CUDA toolchain:<br class="">
http://lists.llvm.org/pipermail/llvm-dev/2018-February/121440.html<br class="">
<br class="">
An example of how Clang can be used to target SPIR-V:<br class="">
<br class="">
clang -c test.cl -target spirv[32|64]-unknown-unknown -o test.spv<br class="">
<br class="">
This will result in the following Clang actions:<br class="">
<br class="">
(1) clang -cc1 -triple spirv[32|64]-unknown-unknown test.cl -emit-llvm-bc -o test.bc<br class="">
<br class="">
(2) llvm-spirv test.bc -o test.spv<br class="">
<br class="">
SPIR-V generation is essential for completion of OpenCL C++ support in Clang, as newer OpenCL standards require frontend invocation to be performed offline, producing the SPIR-V binary that can be then loaded at application execution time. Besides that, it
 will also allow Clang to be used as a complete standalone tool to generate portable binaries that can then be consumed by different proprietary toolchains. In addition, this will open a path to the LLVM backends for various languages and frontends that already
 generate SPIR-V.<br class="">
<br class="">
A more detailed explanation of the complete design proposal is given in this Wiki page:<br class="">
https://github.com/KhronosGroup/SPIRV-LLVM-Translator/wiki/SPIRV-Toolchain-for-Clang<br class="">
<br class="">
Looking forward to any feedback about the proposal or possible collaborations,<br class="">
<br class="">
Thanks!<br class="">
<br class="">
Anastasia<br class="">
_______________________________________________<br class="">
LLVM Developers mailing list<br class="">
llvm-dev@lists.llvm.org<br class="">
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev<br class="">
</div>
</div>
</blockquote>
</div>
<br class="">
</div>
</div>
</body>
</html>