I'm trying to make an array, and then update the values of certain cells if needed. From what I know, using the Stack Frame would be the best approach, but I can't get it to work. Anyone able to point me in the right direction?

Thanks!

link|improve this question

What does your code look like so far? – Jeremiah Willcock Feb 11 '11 at 5:41
feedback

1 Answer

up vote 1 down vote accepted

You should already have a good understanding of how array manipulation works in a language like C.

If you want to put an array in the current stack frame, and manipulate it there (and understand the benefits and issues of doing so), then you should do the following:

  1. First, take note of the current value of the stack pointer register ($sp). You will use this as the pointer to the start of the array. Store it in another register.
  2. First increment the stack pointer register ($sp) by however many bytes the array is. This will give you enough space to work.
  3. When you want to update the array, compute the address of the start of the array plus the array index. For example, to write or read element 5, add 5 to the start of the array, times the word size. On a 32-bit machine, multiply it by 4.
  4. Use the sw instruction to store a word in the array at that address, and use lw to load a word.
link|improve this answer
Will this allow me to update individual cells in the array? Like if I have array A, can I use your method to change A[6] to A[6]+1 or any other cell? – Parker Feb 11 '11 at 5:59
Sorry for late reply. Yes. My step 3 and 4 let you arbitrarily read and write any element of the array. So to do A[6] := A[6] + 1, you would first use step 3 to compute a pointer to A[6]. Then you would use lw to load the value at that address into a register. Then use inc (I think) to add 1 to it. Then use sw to write the value back to the address. – mgiuca Feb 14 '11 at 7:02
@Parker Did this answer help you? – mgiuca Mar 16 '11 at 1:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.