<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="">Hi Fraser,<div class=""><br class=""></div><div class="">I think we want stick to being explicit about what the method does:</div><div class="">- No TRI, whole Reg</div><div class="">- TRI, Reg or super Reg</div><div class="">I.e., no magic aliases check unless we asked for.</div><div class=""><br class=""></div><div class="">You are right that we miss the any part of Reg option here. If adding an Overlap flag like we have for the Defs works for you, I would say, that’s the way to go.</div><div class=""><br class=""></div><div class="">I am surprised we didn’t need it sooner.</div><div class=""><br class=""></div><div class="">Cheers,</div><div class="">-Quentin<br class=""><div><blockquote type="cite" class=""><div class="">On Oct 4, 2016, at 4:00 AM, Fraser Cormack 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="">
  

    <meta http-equiv="content-type" content="text/html; charset=utf-8" class="">
  
  <div bgcolor="#FFFFFF" text="#000000" class="">
    Hi,<br class="">
    <br class="">
    I was wondering what MachineInstr::findRegisterUseOperandIdx
    "means". I have a situation where an instruction writes R0 and
    another reads R0lo - the lower half of R0. Using
    Use::findRegisterUseOperandIdx(R0) returns -1, because it only
    checks against exact matches and "is-Reg-a-subreg-of-MOReg" 
    matches, of which neither are true.<br class="">
    <br class="">
    However, the instruction reads _part_ of R0, so should it return
    true? It's really a question of semantics, as either:<br class="">
    <br class="">
    1) findRegisterUseOperandIdx returns the index if the instruction
    reads the <i class="">whole</i> of Reg, or<br class="">
    2) findRegisterUseOperandIdx returns the index if the instruction
    reads <i class="">any part</i> of Reg<br class="">
    <br class="">
    If it's 2) then it appears as if there's a bug in there. If it's 1)
    by design, then it doesn't seem to me as though there's a convenient
    way of doing 2).<br class="">
    <br class="">
    There is another option, namely:<br class="">
    <br class="">
    3) findRegisterUseOperandIdx can do 1) or 2), depending on a flag<br class="">
    <br class="">
    There's an "Overlap" parameter to
    MachineInstr::findRegisterDefOperandIdx - would that do the trick,
    and do we want to add it to findRegisterUseOperandIdx?<br class="">
    <br class="">
    What do people think?<br class="">
    <br class="">
    Cheers,<br class="">
    Fraser<br class="">
    <pre class="moz-signature" cols="72">-- 
Fraser Cormack
Staff Software Engineer, Compilers
Codeplay Software Ltd
Level C, Argyle House
3 Lady Lawson St,
Edinburgh EH3 9DR
Tel: +44 (0)131 466 0503
Website: <a class="moz-txt-link-freetext" href="http://www.codeplay.com/">http://www.codeplay.com</a>
Twitter: <a class="moz-txt-link-freetext" href="https://twitter.com/codeplaysoft">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: Regent House, 316 Beulah Hill, London, United Kingdom, SE19 3HF</pre>
  </div>

_______________________________________________<br class="">LLVM Developers mailing list<br class=""><a href="mailto:llvm-dev@lists.llvm.org" class="">llvm-dev@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev<br class=""></div></blockquote></div><br class=""></div></body></html>