<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
Hi,
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<div style="font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
I have found a bug when passing fixed-length vectors to/from functions in RISC-V. I'm a bit rusty on the CC support in general (let alone on those for RISC-V) so I was hoping for some pointers on how to fix it.</div>
<div style="font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Take this program:<br>
</div>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<blockquote style="margin-top: 0px; margin-bottom: 0px;"><span style="font-family: "Courier New", monospace;">declare i32 @foo(<4 x i8>)</span>
<div><br>
</div>
<div><span style="font-family: "Courier New", monospace;">define i32 @bar(<4 x i8> %v) {</span></div>
<div><span style="font-family: "Courier New", monospace;">  %r = call i32 @foo(<4 x i8> %v)</span></div>
<div><span style="font-family: "Courier New", monospace;">  ret i32 %r</span></div>
<div><span style="font-family: "Courier New", monospace;">}</span></div>
</blockquote>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
And compile with for RV64:</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<span style="font-family: "Courier New", monospace;">$> llc -mtriple riscv64 bug.ll -o - -stop-after finalize-isel</span></div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<span style="font-family: "Courier New", monospace;">stack:</span>
<div><span style="font-family: "Courier New", monospace;">  - { id: 0, name: '', type: default, offset: 0,
<b>size: 4, alignment: 4</b>,</span></div>
<div><span style="font-family: "Courier New", monospace;">      stack-id: default, callee-saved-register: '', callee-saved-restored: true,</span></div>
<div><span style="font-family: "Courier New", monospace;">      debug-info-variable: '', debug-info-expression: '', debug-info-location: '' }</span></div>
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<b><span style="font-family: "Courier New", monospace;">    SD killed %4, %stack.0, 24 :: (store 8 into %stack.0)</span></b>
<div><b><span style="font-family: "Courier New", monospace;">    SD killed %3, %stack.0, 16 :: (store 8 into %stack.0)</span></b></div>
<div><b><span style="font-family: "Courier New", monospace;">    SD killed %2, %stack.0, 8 :: (store 8 into %stack.0)</span></b></div>
<div><b><span style="font-family: "Courier New", monospace;">    SD killed %1, %stack.0, 0 :: (store 8 into %stack.0)</span></b></div>
<div><span style="font-family: "Courier New", monospace;">    %5:gpr = ADDI %stack.0, 0</span>
<div><span style="font-family: "Courier New", monospace;">    $x10 = COPY %5</span></div>
<div><span style="font-family: "Courier New", monospace;">    PseudoCALL target-flags(riscv-plt) @foo, csr_ilp32_lp64, implicit-def dead $x1, implicit $x10, implicit-def $x2, implicit-def $x10</span></div>
<br>
</div>
You'll notice that the v4i8 parameter has been split into 4 8-byte registers and passed indirectly through the stack as a 32-byte object, but the temporary stack location has been created according to v4i8, whose store size and alignment are both 4 bytes. This
 clobbers the stack and will produce misaligned stores.<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Should we be storing these with four SDs but to a 32-byte sized and 8-byte aligned location, or should they be truncating SB stores? I couldn't find the answer in the RISC-V ABI docs.<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Regardless of what we should be doing, I couldn't see that LLVM would currently handle either particularly well. For truncating stores, I couldn't see a way of getting at what would be the "IntermediateVT" (e.g. i8) through ISD::InputArg and ISD::OutputArg
 in the backend. For correcting the size & alignment of the stack location, I'm not convinced the issue is only in the RISC-V backend; in SelectionDAGISel::LowerArguments it looks as though it's possible for PartBase to get out of sync when NumValues != 1 &&
 VT.getStoreSize() != NumRegs * RegisterVT.getStoreSize(). Is that documented?<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Any pointers on where to take this would be appreciated.<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
<br>
</div>
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">
Thanks,<br>
</div>
<div>
<div id="Signature">
<div>
<div></div>
<div id="divtagdefaultwrapper" dir="ltr" style="font-size: 12pt; color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif;">
<span style="font-size:10pt"></span>
<div id="divtagdefaultwrapper" dir="ltr" style="font-size: 12pt; color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif;">
<span style="font-size:10pt"></span>
<p style="margin-top:0px; margin-bottom:0px; margin-top:0; margin-bottom:0"><span id="ms-rterangepaste-start"></span></p>
<span style="font-size:10pt"></span>
<pre class="moz-signature" cols="72"><span style="font-size:10pt">Fraser Cormack</span><span style="font-size:10pt"></span><span style="font-size:10pt"><br>Senior Software Eng</span><span style="font-size:10pt"></span><span style="font-size:10pt">ineer, Compilers</span></pre>
<pre class="moz-signature" cols="72"><span style="font-size:10pt">Codeplay Software Ltd</span><span style="font-size:10pt"></span><span style="font-size:10pt"><br>Level C, Argyle House</span><span style="font-size:10pt"></span><span style="font-size:10pt">
3 Lady Lawson St</span><span style="font-size:10pt"></span><span style="font-size:10pt"><br>Edinburgh EH3 9DR</span><span style="font-size:10pt"></span><span style="font-size:10pt">
</span></pre>
<pre class="moz-signature" cols="72"><span style="font-size:10pt">Tel: +44 (0)131 466 0503</span><span style="font-size:10pt"><br>Website: </span><a class="moz-txt-link-freetext" href="http://www.codeplay.com"><span style="font-size:10pt">http://www.codeplay.com</span></a><span style="font-size:10pt"></span><span style="font-size:10pt"></span><span style="font-size:10pt"><br>Twitter: </span><a class="moz-txt-link-freetext" href="https://twitter.com/codeplaysoft"><span style="font-size:10pt">https://twitter.com/codeplaysoft</span></a><span style="font-size:10pt"></span><span style="font-size:10pt">
</span></pre>
<pre class="moz-signature" cols="72"><span style="font-size:8pt">This email and any attachments may contain confidential and /or privileged information and is for use by the addressee only. If you are not the intended recipient, please notify Codeplay Software Ltd immediately and delete the message from your computer. You may not copy or forward it, or use or disclose its contents to any other person. Any views or other information in this message which do not relate to our business are not authorized by Codeplay software Ltd, nor does this message form part of any contract unless so stated.
As internet communications are capable of data corruption Codeplay Software Ltd does not accept any responsibility for any changes made to this message after it was sent. Please note that Codeplay Software Ltd does not accept any liability or responsibility for viruses and it is your responsibility to scan any attachments.</span><span style="font-size:10pt"><br></span><span style="font-size:10pt"></span><span style="font-size:8pt">Company registered in England and Wales, number: 04567874
Registered office: Regent House, 316 Beulah Hill, London, United Kingdom, SE19 3HF</span><span style="font-size:10pt"></span><span style="font-size:10pt"></span><span id="ms-rterangepaste-end"></span><span style="font-size:10pt"></span></pre>
<p style="margin-top:0px; margin-bottom:0px"></p>
<span style="font-size:10pt"></span></div>
<span style="font-size:10pt"></span></div>
</div>
</div>
</div>
</body>
</html>