<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="auto">It does not work. I have tried to use the latest master today. But tblgen still give me information like </div><div dir="auto"><br></div><div dir="auto"><div dir="auto">error: Resources are defined for both SchedRead and its alias on processor MyArchModel</div><div dir="auto"><br></div><div dir="auto">def : ReadAdvance<MyReadVector, 3, [MyWriteAddVector]>;  <br></div><div dir="auto">^<br></div></div></div><div dir="ltr"><br></div><div>Unless I change "MyReadVector" to another read like "MyReadVector1", it would not work. Debugging into tblgen, there is no path to handle multiplle latencies for same Read...</div><div><br></div><div>Anyway as you reminded, I am searching for more Target and am looking into Pierre's change (I finally notice that he has a patch associated within the thread already :-) If it is feasible, I will try to make any suitable change back upstream)</div><div><br></div><div>-Garfee</div><br><div class="gmail_quote"><div dir="ltr">On Sat, Nov 17, 2018, 10:42 AM Andrew Trick <<a href="mailto:atrick@apple.com" target="_blank">atrick@apple.com</a> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><br><div><br><blockquote type="cite"><div>On Nov 16, 2018, at 6:31 PM, Garfee Guan <<a href="mailto:garfee.guan@gmail.com" rel="noreferrer" target="_blank">garfee.guan@gmail.com</a>> wrote:</div><br class="m_3101147901976302971gmail-m_3229694805414925795m_1009311763779090970Apple-interchange-newline"><div><div dir="auto"><div>Thanks Andrew. I have tried with recent tblgen, ReadAdvance would not work for multiple latencies. Maybe I should make improvement into tblgen if <span style="white-space:pre-wrap;font-family:sans-serif">Pierre-Andre does not have the change anymore.</span></div><div dir="auto"><font face="sans-serif"><span style="white-space:pre-wrap"><br></span></font></div><div dir="auto"><font face="sans-serif"><span style="white-space:pre-wrap">However, I just a little curious about the situation I met. The hardware forwording may fail for different reasons, which different register read may have different latencies, depending both on the register reader and writer. I am freshman into tblgen. So I wonder if any other Target already has other way to describe that .<br></span></font></div></div></div></blockquote><div><br></div><div>Does this work for you?</div><div><br></div>// Forward from a vector op (normal, add, mul) to a non-store.<br>def : ReadAdvance<MyReadVector, 5, [WriteVector]>;  <br>def : ReadAdvance<MyReadVector, 3, [MyWriteAddVector]>;<br>def : ReadAdvance<MyReadVector, 1, [MyWriteMulVector]>;</div><div><br></div><div>A ReadAdvance is associated with a pair of write resource -> read resource. You can specify as many variants of read/write resources as you want, even using arbitrary C++ code inside a predicate. So, in theory I think that should be flexible enough.</div><div><br></div><div>You can search the in-tree targets to see where ReadAdvance definitions are used. Sorry, I’m not familiar with anything beyond that, but maybe someone else on the list has dealt with the same problem.</div><div><br></div><div>-Andy</div><div><br><blockquote type="cite"><div><div dir="auto"><div dir="auto"><div class="gmail_quote" dir="auto"><div dir="ltr">On Fri, Nov 16, 2018, 8:00 AM Andrew Trick <<a href="mailto:atrick@apple.com" rel="noreferrer" target="_blank">atrick@apple.com</a> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><br><div><br><blockquote type="cite"><div>On Nov 14, 2018, at 10:52 PM, Garfee Guan via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" rel="noreferrer noreferrer" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:</div><br class="m_3101147901976302971gmail-m_3229694805414925795m_1009311763779090970m_-1843593469856779474Apple-interchange-newline"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><h1><font face="times new roman, serif" size="2"><span style="font-weight:400">Hi list,</span></font></h1><div><font face="times new roman, serif" size="2"><span style="font-weight:400">I happened to read below thread (written in 3 years ago). I think I may need this ReadAdvance feature to work with my ARCH.</span></font></div><div><font face="times new roman, serif" size="2"><br></font></div><div><font face="times new roman, serif" size="2">It is about the scheduler info which describes reading my ARCH's vector register. There are different latencies since forwarding/bypass appears. I give it as below example:<br><br>def : WriteRes<WriteVector,    [MyArchVALU]>  { let Latency = 6; }</font></div><div><font face="times new roman, serif" size="2">...</font></div><div><font face="times new roman, serif" size="2">def MyWriteAddVector : SchedWriteRes<[MyArchVALU]> { let Latency = 6; }<br></font></div><div><span style="font-family:"times new roman",serif">def MyWriteMulVector : SchedWriteRes<[MyArchVALU]> { let Latency = 6; }</span>  <font face="times new roman, serif" size="2"><br></font></div><div><font face="times new roman, serif" size="2">...</font></div><div><font face="times new roman, serif" size="2"><br></font></div><div><font face="times new roman, serif" size="2">Here I defined 3 different Writes with same latency number. Below shows the forwarding.</font></div><div><br></div><div><span style="font-family:"times new roman",serif">def : ReadAdvance<MyReadVector, 5, [WriteVector]>;</span>  <font face="times new roman, serif" size="2"><br>def : ReadAdvance<MyReadVector, 3, [MyWriteAddVector_3cycles]>;</font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">def : ReadAdvance<MyReadVector, 1, [MyWriteMulVector_5cycles]>;</span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">...</span></font></div><div><div><span style="font-family:"times new roman",serif">def : ReadAdvance<MyReadStoreVector, 0, [WriteVector]>;</span>  <font face="times new roman, serif" size="2"><br>def : ReadAdvance<MyReadStoreVector, 0, [MyWriteAddVector_3cycles]>;</font></div><div><font face="times new roman, serif" size="2">def : ReadAdvance<MyReadStoreVector, 0, [MyWriteMulVector_5cycles]>;</font></div><div><font face="times new roman, serif" size="2">...</font></div><br class="m_3101147901976302971gmail-m_3229694805414925795m_1009311763779090970m_-1843593469856779474gmail-Apple-interchange-newline"></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">Basically my intention is to model that, for any non-store instruction which reads vector, it forwards vector write to: </span></font><span style="font-family:"times new roman",serif">normally 1 cycle, </span><span style="font-family:"times new roman",serif">3 cycles for my ADD, </span><span style="font-family:"times new roman",serif">5 cycles for my MUL. </span><span style="font-family:"times new roman",serif">But for any store instruction takes vector register as source, It can not forward. So the latency is kept as 6.</span></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400"><br></span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">Unfortunately, above code can not be compiled by tblgen. I am not sure if I really need per-write cycle count with ReadAdvance, or there is any existed method to meet my requirement. Anyway the latencies here seems to be decided by considering both </span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400"><br></span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">a) 3 kinds of Write, </span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">b) 2 kinds of Read. </span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400"><br></span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">Therefore I doubt if it can not be modeled with current tblgen implement.</span></font></div></div></div></div></div></div></div></div></blockquote><div><br></div><div>I’m not sure if the TableGen bug mentioned below was ever fixed.</div><div><br></div><div>It looks to me like this should work, but I haven’t tried it:</div><div><br></div><div>def : WriteRes<WriteVector,    [MyArchVALU]>  { let Latency = 6; }<br>def MyWriteAddVector : SchedWriteRes<[MyArchVALU]> { let Latency = 6; }<br>def MyWriteMulVector : SchedWriteRes<[MyArchVALU]> { let Latency = 6; }  </div><div><br></div><div>// Forward from a vector op (normal, add, mul) to a non-store.<br>def : ReadAdvance<MyReadVector, 5, [WriteVector]>;  <br>def : ReadAdvance<MyReadVector, 3, [MyWriteAddVector]>;<br>def : ReadAdvance<MyReadVector, 1, [MyWriteMulVector]>;<br><br></div><div>Additionally, you could do this but I don’t think it would have any effect at all:</div><div><br></div>// Forward from a vector op (normal, add, mul) to a store.<br><div>def : ReadAdvance<MyReadStoreVector, 0, [WriteVector, MyWriteAddVector, MyWriteMulVector]>;<br><br></div><div>-Andy</div><div><br></div><blockquote type="cite"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div><font face="times new roman, serif" size="2"><span style="font-weight:400">--</span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">Garfee Guan,</span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">LLVM Compiler Backend Engineer</span></font></div><div><font face="times new roman, serif" size="2"><span style="font-weight:400">Enflame Technology Co.</span></font></div><div><font face="times new roman, serif" size="2">Website: <a href="http://www.enflame-tech.com/" rel="noreferrer noreferrer" target="_blank">http://www.enflame-tech.com/</a><br></font></div><div><font face="times new roman, serif" size="2"><br></font></div><div><font face="times new roman, serif" size="2">--------------------------------------------------------------------</font></div><h1 style="font-family:"Times New Roman"">[llvm-dev] Per-write cycle count with ReadAdvance<br></h1><b style="font-family:"Times New Roman";font-size:inherit">Pierre-Andre Saulais via llvm-dev</b><span style="font-family:"Times New Roman";font-size:inherit"> </span><a href="mailto:llvm-dev%40lists.llvm.org?Subject=Re%3A%20%5Bllvm-dev%5D%20Per-write%20cycle%20count%20with%20ReadAdvance&In-Reply-To=%3C565C3F99.9060206%40codeplay.com%3E" title="[llvm-dev] Per-write cycle count with ReadAdvance" style="font-family:"Times New Roman";font-size:inherit" rel="noreferrer noreferrer" target="_blank">llvm-dev at lists.llvm.org </a><br style="font-family:"Times New Roman";font-size:inherit"><i style="font-family:"Times New Roman";font-size:inherit">Mon Nov 30 04:22:49 PST 2015</i><span style="font-family:"Times New Roman";font-size:inherit"></span><div style="font-family:"Times New Roman";font-size:inherit"><br class="m_3101147901976302971gmail-m_3229694805414925795m_1009311763779090970m_-1843593469856779474webkit-block-placeholder"></div><ul style="font-family:"Times New Roman";font-size:inherit"><li>Previous message: <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/092870.html" rel="noreferrer noreferrer" target="_blank">[llvm-dev] difference with autotools,   cmake and ninja building methods</a></li><li>Next message: <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/092850.html" rel="noreferrer noreferrer" target="_blank">[llvm-dev] LLVM Weekly - #100, Nov 30th 2015</a></li><li><b>Messages sorted by:</b> <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/date.html#92849" rel="noreferrer noreferrer" target="_blank">[ date ]</a> <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/thread.html#92849" rel="noreferrer noreferrer" target="_blank">[ thread ]</a> <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/subject.html#92849" rel="noreferrer noreferrer" target="_blank">[ subject ]</a> <a href="http://lists.llvm.org/pipermail/llvm-dev/2015-November/author.html#92849" rel="noreferrer noreferrer" target="_blank">[ author ]</a></li></ul><hr style="font-family:"Times New Roman";font-size:inherit"><pre style="white-space:pre-wrap">Hi all,

I am working on a backend that uses the ProcResource scheduling model 
and one limitation I found is that while it is possible to specify 
multiple SchedWrites in a ReadAdvance record, each write uses the same 
cycle count. I tried writing multiple ReadAdvance records for the same 
SchedRead, but tablegen does not seem to allow that.

It would be useful to have a per-write cycle count to model different 
pipeline bypasses, where the cycle count depends on the (read, write) 
pair and not just on the read.

Two possible solutions are: 1) changing the 'Cycles' field in 
(Proc)ReadAdvance to be a list of int and 2) changing tablegen to allow 
multiple (Proc)ReadAdvance records with the same read resource.

The former solution doesn't seem ideal as it requires repeating the 
cycle count many times for targets that use long SchedWriteRes lists:

-def : ReadAdvance<ReadIM, 1, [WriteImm,WriteI,
+def: ReadAdvance<ReadIM, [1, 1, 1, 1, 1, 1, 1, 1], [WriteImm, WriteI,
                                WriteISReg, WriteIEReg,WriteIS,
                                WriteID32,WriteID64,
                                WriteIM32,WriteIM64]>;

The latter is a bit more verbose when per-write cycle count is used, but 
requires no change to existing targets. It is also easier to visually 
match cycle counts to write types:

def : ReadAdvance<ReadFoo, 2, [WriteType1]>;
def : ReadAdvance<ReadFoo, 4, [WriteType2]>;
def : ReadAdvance<ReadFoo, 3, [WriteType3]>;

I have a patch for the second solution. Would that benefit any in-tree 
target?

Thanks,
Pierre-Andre

-- 
Pierre-Andre Saulais
Principal Software Engineer, Compilers
Codeplay Software Ltd
Level C, Argyle House
3 Lady Lawson St,
Edinburgh EH3 9DR
Tel: 0131 466 0503
Fax: 0131 557 6600
Website: <a href="http://www.codeplay.com/" rel="noreferrer noreferrer" target="_blank">http://www.codeplay.com</a>
Twitter: <a href="https://twitter.com/codeplaysoft" rel="noreferrer noreferrer" target="_blank">https://twitter.com/codeplaysoft</a>

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.
Company registered in England and Wales, number: 04567874
Registered office: 81 Linkfield Street, Redhill RH1 6BY

-------------- next part --------------
A non-text attachment was scrubbed...
Name: multiple_readadvance.patch
Type: text/x-patch
Size: 6336 bytes
Desc: not available
URL: <<a href="http://lists.llvm.org/pipermail/llvm-dev/attachments/20151130/08d3acbf/attachment.bin" rel="noreferrer noreferrer" target="_blank">http://lists.llvm.org/pipermail/llvm-dev/attachments/20151130/08d3acbf/attachment.bin</a>></pre></div></div></div></div></div></div>
_______________________________________________<br>LLVM Developers mailing list<br><a href="mailto:llvm-dev@lists.llvm.org" rel="noreferrer noreferrer" target="_blank">llvm-dev@lists.llvm.org</a><br><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br></div></blockquote></div><br></div></blockquote></div></div></div>
</div></blockquote></div><br></div></blockquote></div></div></div>