<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">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;background-color:#FFFFFF;font-family:Calibri,Arial,Helvetica,sans-serif;">
<p>I partially worked out that to do an assign I will need to manually assign a temporary first and then load data into it, which also means I'll need to set up a temporaries list in my code assembler as allocations must be done before anything else? or is
 it fine to allocate a variable mid-way through a function and the compiler will manage it?<br>
<br>
With that as well, if I had a function that loads a value from a pointer and then stores this value to multiple destinations, would it be ideal to store the value in an allocated temporary? would the load be called for each store if I don't allocate a temporary
 or will the load be called only the one time?<br>
<br>
- Paul<br>
</p>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b> jeremy@lakeman.me <jeremy@lakeman.me> on behalf of Jeremy Lakeman <Jeremy.Lakeman@gmail.com><br>
<b>Sent:</b> 16 March 2016 14:24<br>
<b>To:</b> Paul Hancock<br>
<b>Cc:</b> llvm-dev@lists.llvm.org<br>
<b>Subject:</b> Re: [llvm-dev] IRBuilder Assignment ( '=' ) operator?</font>
<div> </div>
</div>
<div>
<div dir="ltr">
<div>
<div>There is a store operation if you want the value on the stack or heap, but there is no assignment operator in IR.
<br>
</div>
CreateAdd returns an Instruction which represents both the operation and the result value. Value's are immutable and can be used as input arguments to any Instruction further down the control flow.<br>
</div>
<div><br>
</div>
The other thing you might need to research is the Phi Instruction. Which gives you a way to specify how the value in this basic block will be different based on how we reached this block in the control flow of the function.<br>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Wed, Mar 16, 2016 at 1:04 PM, Paul Hancock via llvm-dev
<span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex">
However I need the standard assignment operator so I can assign the value of a temporary to that of another temporary, or to create a new temporary from an existing one.<br>
<br>
- Paul<br>
<br>
________________________________________<br>
From: Tim Northover <<a href="mailto:t.p.northover@gmail.com">t.p.northover@gmail.com</a>><br>
Sent: 16 March 2016 13:11<br>
To: Paul Hancock<br>
Cc: <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
Subject: Re: [llvm-dev] IRBuilder Assignment ( '=' ) operator?<br>
<div class="HOEnZb">
<div class="h5"><br>
Hi Paul,<br>
<br>
On 15 March 2016 at 17:59, Paul Hancock via llvm-dev<br>
<<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
> In my code assembly system I have the various LH-RH operators, ADD, ADDF,<br>
> SUB, etc, using CreateAdd, CreateFAdd, etc, however I cant seem to locate<br>
> the correct function/s for the assignment operator.<br>
<br>
The assignment is automatic. The pointer you get back from CreateAdd<br>
can be used directly in other instructions. When this is transcribed<br>
to the textual IR, LLVM will put in the appropriate assignments (so it<br>
won't try to assign a store to anything for example, because it<br>
doesn't produce a value that can be used elsewhere).<br>
<br>
The Name parameter you pass to CreateAdd determines what variable will<br>
be assigned, otherwise an incrementing number will be used (%1, %2,<br>
...).<br>
<br>
Cheers.<br>
<br>
Tim.<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div>
</div>
</div>
</body>
</html>