MIPS Assembly Pointer to a Pointer? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T08:02:26Zhttp://stackoverflow.com/feeds/question/98236http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98236/mips-assembly-pointer-to-a-pointer1MIPS Assembly Pointer to a Pointer?Tim Sally2008-09-19T00:12:40Z2008-09-19T00:21:17Z
<p>I think I know how to handle this case, but I just want to make sure I have it right. Say you have the following C code:</p>
<pre><code>int myInt = 3;
int* myPointer = &myInt;
int** mySecondPointer = myPointer;
</code></pre>
<p>P contains an address that points to a place in memory which has another address. I'd like to modify the second address. So the MIPS code:</p>
<pre><code>la $t0, my_new_address
lw $t1, ($a0) # address that points to the address we want to modify
sw $t0, ($t1) # load address into memory pointed to by $t1
</code></pre>
<p>Is that the way you would do it?</p>
http://stackoverflow.com/questions/98236/mips-assembly-pointer-to-a-pointer/98295#982952Answer by Nils Pipenbrinck for MIPS Assembly Pointer to a Pointer?Nils Pipenbrinck2008-09-19T00:21:17Z2008-09-19T00:21:17Z<p>Yes, that's correct as far as I can tell. It would have been easier if you used the same variable names (e.g. symbols instead of hard register names).</p>
<p>Why haven't you simply compiled the c-code and took a look at the list-file or assembly-output? I always do that when in doubt.</p>