為什麼這篇Mips sll鄉民發文收入到精華區:因為在Mips sll這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者ericzx70116 (PigJames)看板Grad-ProbAsk標題[理工] [計組]M...
這個是題目
For the following C statement, what is the corresponding MIPS assembly code?
Assume that the variables f, g, h, i, and j
are assigned to registers $s0, $s1, $s2, $s3, and $s4, respectively.
Assume that the base address of the arrays A and B are in registers $s6 and
$7, respectively.
B[8] = A[i–j];
然後我在網路上找的答案說
sub $t0, $s3, $s4 # $t0 = i-j
sll $t0, $t0, 2 # $t0 = (i-j) * 4
lw $t1, 0($s6) # $t1 = A[0]
add $t1, $t1, $t0 # $t1 = &A[i-j] <--
lw $t1, 0($t1) # $t1 = A[i-j]
sw $t1, 32($s7) # B[8] = A[i-j]
為什麼 add $t1, $t1 ,$t0 會是 $t1 = &A[i-j]
而不是 $t1 = A[0] + (i-j)呢?
會有這個疑問是因為我在老師上課的投影片中看到類似的是,
題目
g = h + A[8];
$s1=g
$s2=h
$s3=A[0]
答案
la $s3, value # $s3 = &A[0]
lw $t0, 32($s3) # $t0=A[8]
li $s2, 1 # h=1
add $s1, $s2, $t0 # g=h+A[8]=1+9=10 <--
value: .word 1, 2, 3, 4, 5, 6, 7, 8, 9 # A[0]…A[8]
______________________________________________________
還有一個問題就是我不太了解 $s3 = A[0] << 這個意思是什麼意思,
老師上課說這表示 $s3 存的是 A[]的base address
可是如果$s3存的是address的話,上面的 g=h+A[8] 不就不成立了嗎?
因為$t0是 32($s3) 是 A[8]的address , address應該不可以跟數值相加才對不是嗎?
麻煩各位大大了,抱歉><
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.119.121.6
※ 文章網址: https://www.ptt.cc/bbs/Grad-ProbAsk/M.1477574265.A.350.html
※ 編輯: ericzx70116 (140.119.121.6), 10/27/2016 21:22:04
※ 編輯: ericzx70116 (140.119.121.6), 10/27/2016 21:24:54