Yes, changing parameters will create a new Node, but is there some way I can force a new node with the same parameters?<div>-Joe</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Dec 1, 2012 at 10:57 PM, Triple Yang <span dir="ltr"><<a href="mailto:triple.yang@gmail.com" target="_blank">triple.yang@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi, Joseph, I guess getLoad() will either search an existed SDValue<br>
*OR* create a new one for a non-existed one depending on real<br>
parameters.<br>
<br>
Since you use exactly the same attributes dupVal/dupNode have, no<br>
doubt getLoad() return the old one.<br>
<br>
I am not sure it's *volatile* that let you get a new result, you might<br>
want to try change some other parameters and check what it turns out.<br>
<br>
Regards.<br>
<div><div class="h5"><br>
2012/12/2 Joseph Pusdesris <<a href="mailto:joe@pusdesris.com">joe@pusdesris.com</a>><br>
><br>
> So I think I have made some progress.<br>
> SDValue dupVal  = consumer->getOperand(OpNo);<br>
> LoadSDNode *dupNode = (LoadSDNode*) dupVal.getNode();<br>
><br>
> SDValue newLoad = CurDAG->getLoad(dupVal.getValueType(), dupVal.getDebugLoc(),<br>
>                                dupVal.getOperand(0), dupVal.getOperand(1),<br>
>                                dupNode->getPointerInfo(),<br>
>                                dupNode->isVolatile(), dupNode->isNonTemporal(),<br>
>                                dupNode->isInvariant(), dupNode->getAlignment(),<br>
>                                dupNode->getTBAAInfo(), dupNode->getRanges());<br>
> However, my problem now is that it will re-use the same load still.  If I change something, like setting volatile to true for example, it will create a new node, but otherwise it will not.  Any ideas?<br>
> -Joe<br>
><br>
><br>
> On Fri, Nov 30, 2012 at 9:55 PM, Joseph Pusdesris <<a href="mailto:joe@pusdesris.com">joe@pusdesris.com</a>> wrote:<br>
>><br>
>> Hi, I am writing an llvm target and I need both loads for isel reasons, but I am struggling to find the right way.  I have been trying to use DAG.getLoad() to make a copy, then just change the operand in the consumers, but I cannot seem to get all of the arguments needed for that function in order to make the copy.  Any help would be great, thanks!<br>


>> -Joe<br>
><br>
><br>
><br>
</div></div>> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
><br>
<br>
<br>
<br>
--<br>
杨勇勇 (Yang Yongyong)<br>
</blockquote></div><br></div>